Quick Tricks Bash script to check SSL certificate expiry This script iterates through my list of targets, checks the certificate expiry and prints the details.
Quick Tricks Decode Webpages using FireFox Plugin Create a FireFox extension that allows post processing a webpage. Use a mapping file to decode hidden values.
Quick Tricks Cmake, Conan, and GTest Example A minimal example of a project that uses cmake, conan, and gtest. I make use of the very handy cmake-conan wrapper. This setup also works seamlessly in CLion
Quick Tricks List GitHub Repositories with Search Term GitHub provides search functionality, but it returns every mention in code. I just needed the list of repositories. Using the GitHub API we are able to fetch these results.
Quick Tricks Rotating Password Generation Command Use Linux Watch to continually generate passwords for you
Quick Tricks Batch convert video files with grep, xargs, sed and ffmpeg Explore a combination of tools including pipe, grep, find, xargs, and sed to do some video conversion
Quick Tricks Multiple Git accounts with different SSH keys It's quite simple to setup multiple Git (in this case GitHub) accounts on the same machine, each using different SSH keys. The scenario that I use this for is to have both a personal account and a work account. Host github-personal HostName github.com IdentityFile ~/.ssh/personal_github_
Quick Tricks Application Data Sync with WebDAV Use WebDAV in your application to sync files (sqlite in my case) between devices. Storage backed by NextCloud, AWS S3, Google Drive, Dropbox and more