_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _______ _
/ /\ /\ \ /\ \ _ /\ \ /\ \ / /\ / /\ /\ \ / /\ /\_\/\_\ _ /\ \ /\ \ /\ \ /\ \ / ___ /\ /\ \
/ / \ \ \ \ / \ \ /\_\/ \ \____ / \ \ / / \ / / \ / \ \ / / \ / / / / //\_\ \ \ \ / \ \ \_\ \ / \ \ / /\__\ \ \/ \ \
/ / /\ \ /\ \_\ / /\ \ \_/ / / /\ \_____\/ /\ \ \ / / /\ \ / / /\ \ / /\ \_\ / / /\ \ /\ \/ \ \/ / / /\ \_\/ /\ \ \ /\__ \/ /\ \ \ / / / \_\/ /\ \_\
/ / /\ \ \ / /\/_/ / / /\ \___/ / / /\/___ / / /\ \_\ / / /\ \ \ / / /\ \ \ / / /\/_/ / / /\ \ \ / \____\__/ / / /\/_/ / /\ \ \ / /_ \ \/_/\ \ \ / / / / / /\/_/
/ / /\ \_\ \ / / / / / / \/____/ / / / / / / /_/ / / / / / \ \ \ / / / \ \ \ / / / ______ / / / \ \ \ / /\/________/ / / / / / / \ \_\/ / /\ \ \ / / / \ \ \ / /_/_
/ / /\ \ \___\ / / / / / / / / / / / / / / / /__\/ / / / /___/ /\ \ / / /___/ /\ \ / / / /\_____\/ / /___/ /\ \ / / /\/_// / /\ \ / / / / / / / / / / / \/_/ / / / \ \ \ / /___/\
/ / / \ \ \__/ / / / / / / / / / / / / / / / /_____/ / / /_____/ /\ \ / / /_____/ /\ \ / / / \/____ / / /_____/ /\ \ / / / / / /\ \_\ / / / / / / / / / / / / / / _ \ \ \ / /\__ \ \
/ / /____\_\ \ ___/ / /__ / / / / / /\ \ \__/ / / / /\ \ \ / /_________/\ \ \ / /_________/\ \ \ / / /_____/ / / /_________/\ \ \/ / / / / / / / /_/ / / / / /___/ / / / / / / /_/\_\____/ / // / /__\ \ \
/ / /__________\/\__\/_/___\/ / / / / / \ \___\/ / / / \ \ \/ / /_ __\ \_\/ / /_ __\ \_\/ / /______\/ / / /_ __\ \_\/_/ / / / / / /__\/ / / / /____\/ /_/ / / /_____/ /_____/ // / /____\ \ \
\/_____________/\/_________/\/_/ \/_/ \/_____/\/_/ \_\/\_\___\ /____/_/\_\___\ /____/_/\/___________/\_\___\ /____/_/ \/_/ \/_______/ \/_________/\_\/ \________/\_____\/ \/__________\/
struct Developer {
name: String,
role: String,
current_focus: Vec<String>,
last_active: DateTime<Utc>,
}
impl Developer {
fn new() -> Self {
Developer {
name: String::from("Agamjot Singh Bindra"),
role: String::from("Student Developer"),
current_focus: vec!["Systems Programming", "Web Development", "AI/ML"],
last_active: Utc.ymd(2025, 1, 6).and_hms(07, 44, 36),
}
}
}
interface Project {
name: string;
status: "In Development" | "Completed" | "Planning";
stack: string[];
description: string;
}
const currentProject: Project = {
name: "[PortfoliOS]",
status: "In Development",
stack: ["Rust", "Assembly"],
description: `
A full fledged OS,
With own sandboxed programming language,
For my portfolio, in a CLI
`
};
def get_daily_routine():
return {
"coding_hours": "Too many to count π€",
"coffee_cups": "β",
"favorite_editor": "RustRover/Webstorm", # β€οΈ to school for that
"current_status": "actually studying for 10th boards"
}