Tmux Session Communication


A lot of frontend frameworks take the design decision for the project file structure to dictate the structure of the API. Let’s mirror that with Elixir’s Plug library
I find myself very regularly needing to understand what has changed in a specific file compared to (most commonly master
) another Git branch.There’s no quickfire git
command which will just take the file and branch you want and hand you back the file unfortunately, so we are left to come up with other means.
First article of the new year, and I tell myself that this time, this time I’ll actually stick to writing!As every developer knows, you can’t just go and start writing articles, you need to build the platform which they will be hosted on first!
Sometimes when programming in various languages, it can be incredibly useful to be able to adapt the core primitive or third party types in your platform. A particular library’s API not quite to your liking? Need an additional sorting function on that damned list type? Sounds like a nice, ergonomic way of wrapping that external type to provide more functionality is in order.