If you have ever worked IT at a company that uses Mac's for their employees, you've had a need to get system information from a computer that you didn't have password access to. That's where the XXXX tool comes in; Because MacOS
Docker has become a crucial server platform for a lot of companies or even personal projects. Here's the easiest way that I have found to install the main engine on Ubuntu 21.04+. This works with both Server and Non-Server configurations.
Samba is one of the easiest ways to create a network share on a Linux computer, however consuming those shares on a headless server client, while fairly simple, can have a lot of confusing options. Here is the simplest method I have seen:
Ever be SSH'd into a server and need to track down an instance of a word that's causing an error, but don't know how to search for it? Well, let's fix that!
While this app has been around for years and years,
Want the list of all Public IP addresses associated with your Amazon Web Services account? Install aws-cli, configure, then:
aws ec2 describe-network-interfaces --query NetworkInterfaces[].Association.PublicIp
The result is a JSON array, so you can sort numerically with jq:
aws ec2 describe-network-interfaces --query NetworkInterfaces[].Association.PublicIp | jq 'sort_by(
If you are using ZSH or running any current MacOS, you can save a step when navigating the command prompt by enabling the following config option:
echo "setopt autocd" >> ~/.zshrc
This will allow you to not need to type the cd command when trying to change
I have been using VIM as my command-line editor of choice for years and years (aside from my brief affair with EMACS), and one thing that was missing was colorization of code in it. Turns out to be a SUPER simple fix:
echo "syntax on" >> ~/.vimrc
Web ads suck. From annoying, auto-playing video ads to full-screen take over ads on mobile devices, they simply suck. I have found a solution, and this is how I got it setup and running.