All Posts
480 posts

nasm: portable 80x86 assembler command cheat-sheet
nasm is the Netwide Assembler, a portable 80x86 assembler. More information: https://nasm.us . Assemble source.asm into a binary file source, in the (default) raw binary format: nasm source.asm …

Nano editor command line cheat-sheet
nano is a command-line text editor. An enhanced Pico clone. Start the editor: nano Start the editor without using configuration files: nano [-I|--ignorercfiles] Open specific files, moving to the next …

apt and apt-get complete cheat-sheet
What is apt ? 🔗 apt (and apt-get) is a package manager. It is used in Debian Linux-based operating system and all other Linux distributions built upon Debian such as the famous Ubuntu and its flavors …

naabu: port scanner
naabu is a fast port scanner written in Go with a focus on reliability and simplicity. Note: Some features are only activated when naabu is run with root privileges such as SYN scan. More information: …

makepasswd: generate and encrypt passwords
makepasswd is a command-line program to generate and encrypt passwords. More information: https://manpages.debian.org/latest/makepasswd/makepasswd.1.en.html . Generate a random password (8 to 10 …

makensis: Cross-platform compiler for NSIS installers
makensis is a cross-platform compiler for NSIS installers. It compiles a NSIS script into a Windows installer executable. More information: https://nsis.sourceforge.io/Docs/Chapter3.html . Compile a …

Makebuildserver: create an F-Droid build server virtual machine
makebuildserver is a command line application to create an F-Droid build server virtual machine. More information: https://f-droid.org/en/docs/Build_Server_Setup/ . Create a new virtual machine or …

make CLI cheat-sheet
make is a task runner for targets described in Makefile. Mostly used to control the compilation of an executable from source code. More information: https://www.gnu.org/software/make/manual/make.html …

magick cheat-sheet
magick 🔗 Create, edit, compose, or convert between image formats. This tool replaces convert in ImageMagick 7+. See magick convert to use the old tool in versions 7+. (below) More information: …

Magento CLI cheat-sheet
Manage the Magento PHP framework. Enable one or more modules: magento module:enable module1 module2 ... Disable one or more modules: magento module:disable module1 module2 ... Update the database …