Email aliases to fight off spam and improve securityIf you use an email long enough, you know how much spam that email will get - some even pass through the filter and reach your inbox. When this happens, you can do three things: Add filtering to delete emails from a specific domain/email address aut...Mar 6, 2023·4 min read·21
How to use the Gatsby elasticlunr plugin with MDXSince I've recently moved from using markdownRemark to MDX on all my Gatsby Sites, the instructions to some plugins might not be that straightforward to follow. Recently, I've created a Digital Garden and wanted to add a search bar to it. On one of ...Oct 27, 2020·7 min read·103
How to keep your npm dependencies updatedIt's always a good idea to keep dependencies updated, from performance gains to fixing security issues, it just makes sense to update. But your project might depend on a lot of dependencies and if you haven't worked on a project for a few months, cha...Oct 22, 2020·2 min read·274
How to get the PID of process and send signalsOn my previous article, I've talked about Linux Signals and how you can send a specific signal with the kill command. On this article, I will talk a bit more about job control. How you can see running processes and how to use the knowledge we gained ...Oct 21, 2020·5 min read·270
Understanding Linux SignalsSignals provide a method for the user to communicate directly with a process, they indicate that an important event has occurred and something should happen. For example, when you are running a program and you use CTRL+C to stop the program, you are...Oct 16, 2020·4 min read·151
Setting up Windows Terminal with ZshI've written a quick post about Moving to Windows from a Mac. On that post, I've mentioned how I've been using the Windows Terminal as my main terminal. The Windows Terminal is great, but has a few problems: Pretty simple theme (a grey text on a bla...Oct 15, 2020·9 min read·738
Add code highlighting to MDXI've recently dropped markdownRemark and started using MDX to write my posts. MDX is great since it allows you to import components and even write code that will be converted as expected. You can also use graphql queries on your posts which is very u...Oct 10, 2020·10 min read·143