Are plan files the new 10k-line PRs?
If you're interested in keeping up with my writing, you can subscribe to my newsletter 👇, find me as germsvel on twitter, or follow my RSS feed.
Recently, thoughtbot decided to make Upcase free. It has a lot of great learning materials, especially when it comes to Rails, vim, test-driven development, and tmux.
Concurrency is a first-class citizen in the Elixir platform. The concurrency model is that of isolated, independent processes that share no memory and communicate via asynchronous message passing. In other words, a process can run concurrently without concern of others, and processes communicate with each other only via send-and-forget messages.
One of the benefits of tests is that they are the first piece of code that will interact with our application. As such, they can offer valuable insights into the application's complexity.
Supervision trees are awesome. For a while I was a bit confused as to how to use the simple_one_for_one
supervision strategy. Let’s look at it step by step by creating a simple
bank account from which we can deposit and withdraw money.
When working on a feature, I often find pieces of code that I have not seen before. In order to better understand the class or method, I like to use tests as documentation and as a way to explore the code's functionality.