blog.tnez.dev
Thoughts on software, technology, and more
Recent Posts
-
Yet Another Hello World 2025-03-16
Welcome to my new blog! This is the first post in what I hope will be a long series of interesting articles and thoughts. ## Why a new blog? I wanted a simple, clean platform to share thoughts, code snippets, and technical explorations. T -
Introducing Actions: A Wrapper for Your Business Logic 2023-07-11
## TL;DR `@tnezdev/actions` is a wrapper for your business logic that produces consistently shaped responses and encourages easy unit testing. - Repo: https://www.github.com/tnez/actions - NPM: https://www.npmjs.com/package/@tnezdev/actio -
Enable Key Repeat in Github Codespaces in OS X 2022-07-13
When navigating in [vim-mode](https://github.com/VSCodeVim/Vim) I sometimes hold the j or k keys to move up or down. I know, there are more efficient ways to get around, but oh well, it's what I find myself doing. Out -
Interactive Rebase on Initial Commit 2022-05-13
I often find myself at the beginning of a project wanting to rebase the first few messy commits into something a bit more meaningful. Often I'll want to squash down my first few messy commits: ```git c88ab47c ah, finally it is working ✅ 3e -
My First Raycast Script 2022-04-20
## Context I use [Raycast](https://www.raycast.com) as my central application / task launcher. You should check it out if you are running **OSX** because it is _pretty cool_! So far, I mainly use it to launch applications or open web-page -
Looping in Fish Shell 2022-04-19
## Looping Forever Do something again and again, sleeping for 30 seconds in between until you break the process. ```fish while true; echo "Hello Again"; sleep 30; end ``` ## Looping a specified number of times Loop for 10 times. `` -
Quick Notes: AWS CLI 2021-04-19
## Creating Access Keys 1. Login to the [AWS Console](https://console.aws.amazon.com) 1. Create an **IAM User** and specify **Programatic Access** 1. Attach **PowerUserAccess** policy 1. Save the credentials `.csv` ## Adding a new profile -
Syncing System Clock in Arch Linux 2021-02-19
## Problem I noticed my system clock was drifting quite a bit (in to the future) from the time I observed on my phone and other clocks. This is a [known limitation](https://wiki.archlinux.org/index.php/System_time#Time_skew) of all softwar -
Auto-Format on Save in NeoVim After Switching to LSP 2021-02-13
## Context In the past I had [Conquer of Completion (CoC)](https://github.com/neoclide/coc.nvim) setup to auto-format on save using [Prettier](https://prettier.io). For other reasons I have switched from [CoC](https://github.com/neoclide/c -
Hello World 2021-01-01
## What is this? This is a dummy post so that I can work on the layout of `/posts/[slug]`. ## What am I going to say? I honestly don't know. But I'm going to give this a go for a bit and see if anything sticks. Most likely, I'll post ex