Posts
- Protecting SSH Keys with macOS Secure Enclave (Native Approach)
I’ve been paranoid about my SSH keys for a while now. They just sit there in ~/.ssh/, protected by nothing but file permissions. Any malicious …
7 min read - Publishing Multi-Platform Docker Images to Github Container Registry
TL;DR: If you’re just here for the commands, jump to the Quick Reference at the bottom. Why I Needed This I’ve been working with …
8 min read - Add Remark42 comments to Hugo website
Disqus wasn’t cutting it for me anymore, so I explored privacy-first alternatives and landed on Remark42. This post covers how I set it up from …
11 min read - How to Redirect www to Root Domain on Cloudflare Pages
Prerequisites: Your website is hosted on Cloudflare Pages. Your website is not accessible when there is www in front of your apex domain. You kind of …
4 min read - GraphQL schema: use it in a sentence
TL;DR Bad idea query getCompanyInfo($id: Int!) { company(id: $id) { companyId companyName companyConditionValue companyConditionComment } } Good idea …
3 min read - Using Anki to study programming
Why it works Anki is based on spaced repetition learning technique. I will try to explain it shortly. When you learn something new you have to repeat …
3 min read - Getting started with Jekyll
Install ruby Here I assume that you have brew already installed on your Mac machine. Install it first if you don’t have it. I had to do the …
3 min read - Host your personal blog on GitHub Pages
The initial idea was to write a small post about how to create a Jekyll blog hosted on GitHub. However, when I started to dig dipper and had realized …
1 min read - How to host Angular application on GitHub Pages
[Last update 04-04-2017] To install the command run the following: npm i -g angular-cli-ghpages Note: you have to create the dist folder in before …
1 min read