Patent Database Search Results: Cairns AND Helotes in US Patent Collection (uspto.gov)
Wednesday, April 20, 2022
Friday, April 8, 2022
Simple KVM on Ubuntu Server
1. Install KVM, this tutorial is really good:
https://linuxize.com/post/how-to-install-kvm-on-ubuntu-20-04/
2. Install Cockpit and Cockpit Machines
https://www.tecmint.com/manage-kvm-virtual-machines-using-cockpit-web-console/
3. Reboot your machine
4. Navigate to <your-machine-ip-address>:9090 and login and use the graphical interface to create your VM's.
Monday, March 28, 2022
NGrok Alternative sish
While trying to find an open source alternative to ngrok, I stumbled upon this great post about deploying sish:
https://trustmeiamaninja.github.io/posts/deploying-sish/
Friday, March 25, 2022
enfj-mbti personality type...
Saturday, March 12, 2022
Open Source Video Editing
Saturday, March 5, 2022
CairnsCoin
I created a token on the Solana Blockchain:
https://explorer.solana.com/address/9bFhiz8pNDxfNxFoA2Tdf3UwAV7XwGEbCC8penaExj6
I plan to use it for an application that I am building. Once I get a prototype working I will share a link to the application.
Sunday, February 13, 2022
Pretty Print with Docker
Install "jq"
sudo apt install jq -y
Test docker command with formatting:
docker ps --format='{{json .}}' | jq --color-output
Create alias
alias dockerpps="docker ps --format='{{json .}}' | jq --color-output"