Skip to content

Instantly share code, notes, and snippets.

View thelostone-mc's full-sized avatar
🤖
/co(de|ok|ffee)/g

Aditya Anand M C thelostone-mc

🤖
/co(de|ok|ffee)/g
  • Allo, ex-gitcoin , ex-paypal
  • Tamil Nadu, India
View GitHub Profile
const CONFUSABLES = {
"0": "O",
"1": "l",
"֭": "֖",
"֮": "֘",
"֨": "֙",
"֤": "֚",
"᪴": "ۛ",
"⃛": "ۛ",
"ؙ": "̓",

🦀 30-Day Rust Learning Plan

Week 1: Core Language + Ownership Mastery

Day Date Focus Task
1 2025-04-30 Install & Hello World Set up Rust + cargo, print something
2 2025-05-01 Variables & Data Types Learn let, mut, primitives, String vs &str
3 2025-05-02 Functions & Control Flow Write conditionals, loops, functions
4 2025-05-03 Ownership & Moves Read Ch. 4 of The Book + examples