struct AmardeepBiswas {
name: String,
role: String,
location: String,
languages: Vec<String>,
interests: Vec<String>,
currently_learning: String,
}
impl AmardeepBiswas {
fn new() -> Self {
Self {
name: "Amardeep Biswas".to_string(),
role: "Systems Developer & Programmer".to_string(),
location: "India".to_string(),
languages: vec![
"Rust".to_string(),
"C".to_string(),
"Python".to_string()
],
interests: vec![
"Systems Programming".to_string(),
"Performance Optimization".to_string(),
"Low-level Development".to_string(),
"Open Source".to_string()
],
currently_learning: "Advanced Rust & Systems Design".to_string(),
}
}
fn say_hi(&self) {
println!("Thanks for dropping by! Let's build fast and reliable software together! π");
}
}
fn main() {
let me = AmardeepBiswas::new();
me.say_hi();
}// Current Learning Path
enum Focus {
WebAssembly { target: "Browser + Server" },
AsyncRuntime { tokio: true, performance: "Ultra" },
SystemsDesign { memory_safe: true, zero_cost: true },
Concurrency { channels: "mpsc", actors: "Actix" },
WebDev { framework: "Axum", database: "SQLx" },
CLI { clap: "v4", performance: "Blazing" },
}
impl Focus {
fn current_projects(&self) -> Vec<&str> {
vec![
"π High-performance web services",
"β‘ Systems utilities & CLI tools",
"π§ Memory-safe C alternatives",
"π WebAssembly experiments",
"π― Concurrent data processing"
]
}
}|
π¦ Rust Development
|
β‘ Systems Approach
|
|
System Utilities Blazing fast command-line tools |
High-Performance APIs Async web services with Axum |
WASM Experiments Browser & server-side WASM |
"Write code that runs fast, fails safe, and scales infinitely"
fn development_principles() -> Vec<&'static str> {
vec![
"π¦ Memory safety without garbage collection",
"β‘ Zero-cost abstractions for maximum performance",
"π Fearless concurrency with ownership system",
"π― Type-driven development for correctness",
"π Performance-first, but readable code",
"β»οΈ Sustainable software with minimal dependencies"
]
}// Weekly Development Breakdown
let coding_time = HashMap::from([
("Rust", "12h 30m"), // π¦ Systems & Web development
("C", "6h 45m"), // β‘ Performance optimization
("Python", "4h 15m"), // π Automation & tooling
("TOML/YAML", "1h 30m"), // π Configuration files
("Shell", "45m"), // π§ Build scripts & automation
]);
total_focus: "Rust-first development with systems programming"


