Ccsmincsm.hashnode.dev·May 6 · 1 min readupdate, upgrade and clean linux pkgsIts tedious to do it again and again, type the commands separately to update and upgrade system packages and I did not know that they leave some garbage files that we need to clean to free the disk-sp00
Ccsmincsm.hashnode.dev·Aug 31, 2025 · 1 min readCompiling C++ codeC++ Compilation on Linux Mint C++ Compilation Process: We write C++ code in files with .cpp or .c++ extensions. We give these files to C++ compiler(which is g++) to compile. The compiler compiles our source files into an executable file(a binary ...00
Ccsmincsm.hashnode.dev·Aug 31, 2025 · 1 min readCode editorUse vs code without any extensions for writing c++ code. Reasons: It has good code editor with syntax highlighting. It has integrated terminal, which is very important. Available on most platforms for free. vs code website link: link00
Ccsmincsm.hashnode.dev·Aug 30, 2025 · 1 min readCompiler setupC++ compiler setup on Linux Mint: Run these commands in terminal: sudo apt update && sudo apt upgrade sudo apt install build-essential Check if g++ (our c++ compiler) is installed by running: g++ --version It should print something like this: g++ ...00
Ccsmincsm.hashnode.dev·Aug 26, 2024 · 1 min readzig: CommentsZig has only single-line comments, but with three variants: Normal comments: // This is a comment! std.debug.print("hello world!",.{}); // This is also a comment! doc-comments: /// This function prints 'hello!' top-level doc comments: //! T...00