Posts

Kart Business Project

Predictions for the Future of Programming Future in 2030

OCR Software made by Abanoub Hanna - Software Developer

make CLI cheat-sheet

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 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

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 …

macptopbm: convert a MacPaint file into a PBM image

macptopbm: convert a MacPaint file into a PBM image

macptopbm is a command-line program to convert a MacPaint file into a PBM image. Read a MacPaint file as input and produce a PBM image as output. Convert a MacPaint file into a PGM image: macptopbm …

macchina: display information about your computer

macchina: display information about your computer

macchina is a command-line program to display information about your computer. List out system information, with either default settings or those specified in your configuration file: macchina Specify …

m4b-tool: merge, split, and manipulate audiobook files with chapters

m4b-tool: merge, split, and manipulate audiobook files with chapters

m4b-tool is a command-line to merge, split, and manipulate audiobook files with chapters. Create an audiobook with the audio files in the input directory: m4b-tool merge path/to/input_directory …

m4: Process macros in a file

m4: Process macros in a file

m4 is a macro processor. Process macros in a file: m4 path/to/file Define a macro before processing files: m4 [-D|--define] macro_name=macro_value path/to/file More information: …

ldc: D compiler using LLVM as a backend

ldc: D compiler using LLVM as a backend

ldc is a D compiler using LLVM as a backend. Compile a source code file into an executable binary: ldc2 path/to/source.d -of=path/to/output_executable Compile the source code file without linking: …

ld: link object files together

ld: link object files together

ld is a command-line program to link object files together. Link a specific object file with no dependencies into an executable: ld path/to/file.o --output path/to/output_executable Link two object …

lazygit: TUI for managing Git repositories, branches, and more

lazygit: TUI for managing Git repositories, branches, and more

lazygit is a simple terminal UI for Git commands, providing an intuitive interface for managing repositories. Open Lazygit in the current repository: lazygit Open Lazygit for a specific Git …