Last Saturday, I gave a brief presentation on shell scripting and bats, a bash based automated testing system at MashhadBUG. Please Don't forget to check the references at the end of the post.
Recently I asked a question on OpenSD IRC channel which led to a question entirely different. What's the smallest/longest manpage you ever read?
$ find /usr/local/share/man -type f -exec wc -l {} \; | sort
On OpenBSD 6.2, the smallest is dcphy(4) with 23 lines and the …
There is a good tutorial on How to include graphviz graphs in github. Basically it introduced me to an online web service which takes graphviz scripts as part of a url query string and renders it into an image type. It is a very good idea for many reasons …
A cross compiler is a compiler capable of creating executable code for a platform other than the one on which the compiler is running. For example, a compiler that runs on a Windows 7 PC but generates code that runs on Android smartphone is a cross compiler.
Before …
Scratchpad is one of the coolest, and unique features in i3. Scratchpad is basically a hidden workspace that you can send your programs into it.
There is no way to open that workspace. Instead, when using
scratchpad show
, the window will be shown again, as a floating window, centered on …