Programming

General programming concepts

4 Posts

Posts in Programming

Cargo and crates.io

Customizing builds with release profiles

Cargo has two main profiles:
1. Dev profile - Used when you run cargo build
2. Release profile - Used when you run cargo …

January 1, 2026

Bash scripting

Rolling

Bash (Bourne-Again SHell) - Used to write scripts and run commands in unix based systems.

Shell - Text based interface to talk to the computer. Its's both a command …

December 23, 2025

Git basics

Rolling

Git - Version control system

Uses

  • Tracking code changes
  • Collaborating

Key Git Concepts

  1. Repository - A folder where git tracks project …

December 23, 2025

Vim basics

Rolling

Modes

Normal Mode

Used for :
1. Moving the cursor
2. Deleting characters, words, lines etc
3. Performing operations such as Copy and Paste

Basic Movement

December 23, 2025