Posts Archive.

2025

2024

2023

Simple Self-hosted Log Navigation

/simple-linux-logging/ There are a bunch of ways to deal with the plethora of logs when self-hosting or running a homelab. And, some are more sensible than others. As with everything Linux setup, there are simple ways, complicated ways, overly complicated ways, the enterprise ways and the complicated enterprise ways. If you've got a low power requirement or low headache requirement, you may prefer the simplest, most native approach when dealing with non-critical systems like a homelab and self-hosted services. i.e. I'd rather not host an application for logging when there are some great native alternatives. Here's some groundwork information and a few great tools that will get you get started with logging. I'm going to cover: - logging basics on Linux - `lnav` 2023-11-27
CLI, HOMELAB, LINUX, SELF-HOSTED, TOOLS

Run a Cron Bash Backup Script Safely

/run-bash-once/ You might already be using the cron scheduler to run a daily bash script, perhaps you're backing up files using rclone or rsync? What happens if that script runs for more than 24 hours (or whatever time interval you're using)? Bad things, as multiple instances of backup scripts can interfere with each other and corrupt data. This bash one-liner stops a script running again if it's already running elsewhere. 2023-06-01
BASH, CODE, CRON, LINUX, TOOLS

2022

Remember tar flags the easy way.

/linux-compression-tar-zip/ `tar` is one of those commands that used all the time in the terminal on bash, but it's not easy to remember the flags or parameters for compression and extraction of `.tar.gz` files. Here's my dumb and easy to remember method for remembering the tar command options. *(I don't remember where I first came across this).* 2022-08-08
BASH, CODE, LINUX, TOOLS

2021

Deploy with Rsync on Github Actions

/github-actions-deploy-with-rsync/ There's a lot of great ways to deploy code into production nowadays. Some cloud providers even handle deployment themselves, you setup a repository in Bitbucket or Github, connect the Cloud provider and they'll build and deploy the code based on your specifications. There's also a bunch of third-party providers that can do this for you, acting as the "deployment middle man". This is great for teams or complex systems with complex build requirements, but what if you have a simple or legacy app that doesn't support these methods and you don't want to continue relying on manually uploading code via SFTP (or FTPS... *shudder*)? Well it's not an ideal solution but you can use **Rsync** on [Github Actions](https://docs.github.com/en/actions) for this. Github also has a generous free plan so it usually doesn't cost a penny - depending on how often you deploy. 2021-10-02
CICD, CODE, DEVOPS, FEATURED, GITHUB, LINUX, TOOLS

Text-to-Speech for Linux

/advanced-tts-text-to-speech-on-linux/ Those of us with dyslexia know that writing great emails (or any other written communication for that matter!) can be tricky at the best of times. Being able to check your writing with a text-to-speech app is a great help, and you may already be aware of the `say` programme for TTS on macOS. It can be setup with a keyboard shortcut to speak aloud any selected text. You can even get real human-sounding voices, rather than programmatic-robotic voices from back-in-the-day, they use real inflections and pick up on grammar too. This sort of tool is called "Advanced TTS" or Advanced Text-to-Speech, and it's great for checking the flow of your emails. However, a great TTS is harder to get on a Linux desktop. There are a few easy-to-install TTS applications on the various Linux repositories, but they're old-school at best (think 1990s Sci-Fi robot tones). These sorts of TTS apps are not the most helpful for checking human inflections and grammar in a chunk of text. There are some great Firefox web-browser add-ons for using advanced AI-based TTS for selected text on webpages. However, these add-ons won't help outside the web-browser, and you may be sacrificing your privacy to the operators of the add-on as they sit between you and the advanced TTS providers like Google Cloud. Thankfully, all the big-players in the cloud now offer their own TTS or Text-to-speech APIs. This means that we can use them pretty easily on Linux, with just hacky script, some... 2021-05-10
CODE, FEATURED, GCC, GCP, LINUX, PHP, TEXT-TO-SPEECH, TOOLS, TTS

2020

2019

tmux-hints.sh v0.3 Update! The Terminal Cheat-sheet app for Devs

/tmux-hints-sh-v0-3-update/ 'tmux-hints' is a small shell script I wrote to display a live cheat-sheet - or key-mapping notes - in a terminal running tmux. As you switch from one program to another, your notes update automatically with that programs notes instead. Great for new key-combos and noobs alike. After gaining some popularity, mainly from Reddit, I had some great feedback ready to put into action. Version 0.3, improves on existing concepts and implementation mainly thanks to /u/vogelke and others commenting their experiences. 2019-12-23
BASH, CHEATSHEET, CODE, DOTFILES, FEATURED, OPENSOURCE, TERMINAL, TMUX, TMUXHINTS, TOOL, VIM, ZSH

How to track button clicks in Google Analytics simply with jQuery/JavaScript?

/how-to-track-button-clicks-in-google-analytics-simply-with-jquery-javascript/ TLDR; Track & analyse button clicks (events) on website pages with Google Analytics by pasting these few lines of jQuery/JavaScript code onto your site under the Google Analytics code. It'll find most common button types and send clicks to Google Analytics for analysis. The jQuery/JavaScript code for tracking GA button click events is here hosted on GitHub Gists: View the Code Gist on GitHub 2019-10-25
ANALYTICS, CODE, GOOGLEANALYTICS, JAVASCRIPT, JQUERY, SME, TRACKING, UX

SFTP for Vim

/sftp-for-vim/ A great replacement to Sublime Text 3's SFTP plugin with a similar setup and workflow, but with the power of Vim. Whether you're a hardened vim veteran or new to vim for web development using SFTP is now the secure FTP standard over SSH - it's become a common feature built into most graphical IDEs. 2019-09-16
CODE, PLUGIN, SFTP, TERMINAL, TMUX, TOOLS, VIM, ZSH

tmux-hints.sh: The auto cheatsheet for vim, zsh, tmux etc.

/tmux-hints-sh-auto-cheatsheet-for-vim-zsh-tmux/ Being comfortable using terminal means nothing when getting used to new shortcuts, key-combos and custom mappings can be a memory-game. I've ended up with a bunch of note files containing hints for all the things I should have remembered by now. There's a better way... 2019-07-17
BASH, CHEATSHEET, CODE, DOTFILES, OPENSOURCE, TERMINAL, TMUX, TMUXHINTS, TOOLS, VIM, ZSH
The end of time, as this blog knows it.