$ ls

../
blog.txt

$ cat blog.txt

2024-04-16

I just learned that you can set up ssh aliases using the ~/.ssh/config file. I don't know how I've gone this long without knowing this! It's way better than typing out complicated SSH commands or pushing up until you find the last time you ssh'd into it.

Example usage here:

Host tilde
    HostName tilde.town
    User dustin
    IdentityFile "~/id_rsa"

You can also set a port or an IP for the hostname:

Host srv
    HostName 123.456.0.1
    User dustin
    Port 1234

You can then SSH using the alias, such as these commands for those two examples above:

ssh tilde
    ssh srv

2024-03-18

I have long been enjoying the posts of Noisy Deadlines. In particular, she's posted quite a few insights into her personal routine and how she manages her tasks and such. I highly recommend her blog and all the posts on there!

2024-03-07

I set up this new site today! I'll add little thoughts here from time to time. No RSS feed or anything like that, just occasional thoughts that anybody that passes through this site can read. No idea what the content of the posts will be, but I don't think I'll even title them, just have the date, and they'll all just be listed on this page.