NickBusey.com

Technically minded engineer with a passion for innovation.

HomelabOS v0.7 - 50+ new services! Release notes and installation video

2020-05-18 Code
Today we released v0.7 of HomelabOS! HomelabOS is an effort to make it as easy as possible for anyone to host their own cloud-style services, either at home, or on a server they control in the cloud. The goal is to provide a few simple commands to the user, and handle setting everything up for them as easily as possible. Since the last release we have added over 50 more services, for over 100 services total! Continue reading

Introducing tckr.html - A simple calculator strip. Like ticker tape, with variables.

2020-01-28 Code
I’ve been wanting a tool lately where it functions kind of like a blank text document, but when you type some math it actually evaluates the formula for you, letting you save the output for use in further equations. So, last night I built it over the course of maybe two hours. It’s simple. It does what it says on the box. It’s portable (just one .html file). It’s easy. Continue reading

HomelabOS v0.6 - Release Notes and Installation Video

2019-05-31 Code
Yesterday I released v0.6 of HomelabOS. HomelabOS is an effort to make it as easy as possible for anyone to host their own cloud-style services, either at home, or on a server they control in the cloud. The goal is to provide a few simple commands to the user, and handle setting everything up for them as easily as possible. It includes over 50 services that can be easily enabled, deployed, and backed up. Continue reading

tor_ssh.sh - One command to enable SSH access via Tor to any Ubuntu server.

2019-03-01 Code
At Grownetics we install onsite servers at our clients’ facilities so they can continue to use the system, even if their internet goes out. These servers have fail over connections, and may change connection at any time, and due to the onsite nature of things, we may not be able to have ports forwarded or expect there to be a static IP. In these cases a VPN is a nice thing to have, and we use Tinc for this. Continue reading

Simplest Journal Solution

2019-01-29 Code
This is my simple journal solution. Put the code belowe in your ~/.zshrc or ~/.bashrc Type a j from a terminal, type some notes, save and exit. The script creates a file in the format of ~/journal/2019/01-29.md and automatically pushes it to git. EDITOR=vim journal() { mkdir -p ~/journal/`date +%Y` $EDITOR ~/journal/`date +%Y`/`date +%m-%d.md` (cd ~/journal/; git pull; git add *; git commit -a -m "Update `date +%Y-%m-%d`"; git push) } alias j=journal Easy, simple, effective. Continue reading

Sniffing one's own farts: Moving from GitHub to Gitlab

2018-09-04 Code

I recently announced a new side project of mine, HomelabOS on Reddit.

There was a lot of great feedback, and then there was the hilarious comment in the screenshot.

oh god...one of those people that moved to gitlab to 'send a message'.

OP sounds like the kind of person that sniffs their own farts

While I do enjoy the occassional whiff of gourmet flatulence, I thought I would address my actual motivations behind moving my projects from GitHub to GitLab.

Continue reading
Older posts