Trippy is a command line tool designed for network troubleshooting and diagnostic purposes. It combines the functionalities of traditional tools like ping and traceroute to provide enhanced visibility into network...
The eza tool is a modern replacement for the traditional Unix ls command. It is designed to be more user-friendly and visually appealing while providing additional functionality. This tutorial demonstrates...
Deno is a JavaScript runtime which is based on the V8 engine and written by using the Rust programming language. Deno serves as an alternative to Node.js. This tutorial demonstrates...
Bun is a modern JavaScript runtime and package manager designed to be fast and efficient. It serves as an alternative to traditional JavaScript runtime like Node.js. Bun is built from...
NASM, which stands for Netwide Assembler, is an assembler for the x86 and x86-64 computer architectures. It is used to convert assembly language code into machine code that can be...
Sccache is a command line tool that speeds up the recompilation process by caching previously compiled objects. Sccache include support for C, C++, Rust, and other languages. By caching previous...
The wget is a command line tool that is popular for web server interactions. A common use case is sending Basic Authentication credentials, which is a simple authentication method integrated...
Curl is a powerful command line tool for interacting with web servers. One of the common tasks you might need to perform is sending Basic Authentication credentials. Basic Authentication is...
The wget is a command line tool for sending requests to the server. One of its features is the ability to set timeouts, preventing commands from running indefinitely if a...
Interacting with web services and APIs often requires sending HTTP requests. Among the various tools available for this purpose, wget stands out as a versatile command line utility. It supports...