blog.emil.moeLaravel Default Models ExplainedIn Laravel, Eloquent ORM facilitates defining relationships between models, such as a Post belonging to an Author. Typically, if a Post's Author is missing, accessing the author results in an error. Default models address this issue. By implementing ...Jun 10, 2024·2 min read
blog.emil.moeSetting Up a Docker-Hosted Droplet on DigitalOcean Using Terraform: A Step-by-Step GuideWelcome to the world of cloud infrastructure, where ease of deployment and scalability are paramount. Today, we're going to walk through setting up a Droplet (a virtual server) on DigitalOcean, one of the most user-friendly cloud platforms. Our focus...Jan 4, 2024·3 min read
blog.emil.moeIntroduction to Terraform on DigitalOceanGetting started with Terraform on DigitalOcean can be an exciting journey for developers and DevOps engineers looking to manage infrastructure as code. In this blog post, we'll guide you through the basics of using Terraform with DigitalOcean, helpin...Jan 4, 2024·3 min read
blog.emil.moeRealistic Employee Profiles using Faker in PythonIn the world of software development, testing is a crucial aspect of ensuring the reliability and functionality of your applications. One common challenge in testing is generating realistic and diverse sets of data for your test cases. This is where ...Dec 16, 2023·3 min read
blog.emil.moeLaravel Translatable AttributesIn order to fluently support multilingual, I created this trait for Laravel. My ambition was to make it as seamlessly integrated as possible and to follow the semantics of Laravel. You may also choose to install it with composer: composer require clo...Sep 1, 2021·4 min read