TIL means Today I Learned. And that's what this series/category is all about - short and quick articles about everyday problems that I have dealt with, and along solving them, I came up to an interesting solution that you might also implement one day.
What did I learn today?
TIL: Cleaning your Git repository by removing the unused branches
| 2 min read
Ever had a headache because of the number of branches you have on your repo locally? If so, take advantage of the tips from this post :)
TIL: Ecto’s Repo.stream/1
| 3 min read
Working with large sets of data can be slow, hard and annoying. Fortunately, Elixir and Ecto provide Streams - a simple, performant and elegant solution for all your data transformation problems.