Latest articles
Dumping a binary file with od(1)
I was recently working on an embedded device that provided a limited CLI interface and was looking for an utility to dump a binary file.
I was aware of hexdump(1) but alas, it was not available on my platform. That is how I discovered od(1).
Reducing PDF filesize with the Command Line using Ghostscript (gs)
I use the following command line to reduce the PDF filesize:
gs -sDEVICE=pdfwrite -dCompatibilityLevel=1.4 -dPDFSETTINGS=/screen -dNOPAUSE -dQUIET -dBATCH -sOutputFile=output.pdf input.pdf
This command line can be used to reduce the PDF filesize on Linux.
Emacs #filename# ???
Sometimes Emacs saves a file under #filename#
instead of filename
. That's because of auto-save. To disable this behavior while keeping the benefit of auto-save enable auto-save-visited-mode
.
How to check ssh public key fingerprints?
The authenticity of host omecha.info (89.234.176.136)' can't be established. ECDSA key fingerprint is SHA256:v7u4albDUtGH1EXWEwlt0KnzY9GDY5EqodUymKSbiSw Are you sure you want to continue connecting (yes/no)?
If you have ever used SSH, you have encountered this prompt. If you often SSH to new machines and you are like me, you probably type 'yes' without thinking about it.
In this article I describe how you can check your SSH fingerprints.
SSH escape commands for fun and profit
We can never say it enough, but OpenSSH is an amazing tool. Lately, I have been playing with VMs and a friend of mine showed me some really cool tricks with SSH. The SSH escape ~
commands!