Omarchy
There is a new Linux distribution in town, and it’s making waves. Omarchy is an arch-linux based distribution intended for developers and its quickly gaining popularity since it’s release this summer. The creator is David Heinemeier Hansson (DHH). DHH is the creator of Ruby on Rails and CTO of 37signals. From what I’ve understood the reason for creating it is that he was fed up by the decline of macs and started looking into how Linux fared as a developer OS. Well, he did indeed put together something quite awesome for developers. Here’s a few highlights that comes to mind: ...
Tools I use
I recently got a new work computer and went through the process of setting it up. In the likely event that I need to go trough this process again I’ve listed most of the tools and documented the installation process of them. The list is non-exhaustive as I’m sure I’ve forgotten some kind of obscure linux CLI tool I use once a month. Whenever I discover something new or swap out a tool I’ll document it here. My development workflow revolves heavily around WSL so the biggest section is related to getting a nice Linux development environment inside WSL setup. Hopefully you’ll find something cool in here. ...
Building a personal website with Hugo and Github Pages
There’s a ton of different frameworks, tools and platforms available when building a personal website today. In this post I’ll go into how and why I chose to build my webpage using the Hugo framework. I’ll also show how to setup the hosting on Github pages which includes pushing the webpage from a private repository to a public one with Github Actions. My requirements for the tech stack were: Fast Low maintenance Easy to create and manage content Content version control Automated deployment Low cost Hugo is a static site generator which typically makes loading of webpages extremely fast. Static sites are also in general low maintenance. All content are markdown files which makes it easy to see changes with git and makes the content highly portable. By hosting it on github pages we get automated deployment from github actions and low cost. I only pay for the domain itself. ...