Passbolt – Command Line Interface Go Application For MacOS (With TAB Completion)
With Passbolt installed and running, including Firefox add-on and iOS App, there is something missing.. What about. The terminal? Here’s how you install the terminal application on MacOs. First, make sure you have Go installed. If not, follow the install instructions on: https://go.dev/dl/ Second, update your .zshrc to make use of the correct $GOPATH: and […]
Kubernetes – Pretty Kubectl Output With Kubecolor
Not everything in this world has to be black and white. It can be yellow, red or green… Such as with Kubecolor! Kubecolor (https://github.com/hidetatz/kubecolor) is a wonderful little utility that turns the black, grey and white output from kubectl. And makes it pretty with color! Install it on Mac with: And turn this: Into this!: […]
How To: Netcat – Check for open ports with the command line
Kitty Port-checking When troubleshooting a network integration or any other connection issue in Linux, step one is usually a matter of checking to see if the network port on the other side is even responding. Netcat -The network Swiss Army knife (Hobbit, not nmap)- is the right tool for the job. Before we begin, NetCat […]
Fun with loops, filin’ up the hard-drive
for i in fil{1..1000} do touch $i echo “==========Hello world, im here, im ready==========” > $i done Result…
How To: Send and receive files with Ncat (formerly NetCat)
As with any application in Linux, piping the output from an application to a logfile or perhaps another application. Can sometimes clarify what is going on. It would be even better if you could “cat” any output over the Network (Ncat, get it?) to another computer. That is where Ncat comes in. First, some basics […]