Tinkering with bare metal
I made the choice to move to codeberg for my work. I will still use github and maintain any existing projects but no new work will be here, unless I need to collaborate with people.
type Information = Vec<String>;
fn myself() -> Information {
let shawon: Information = vec![
"PhD @ TU/e Eindhoven".to_string(),
"Open Source LLMs".to_string(),
"Learning Dyanmics in larger models, Evaluations".to_string(),
"Pytorch, CUDA, Jax, Pallas".to_string(),
"Photography, Music, Books".to_string(),
];
shawon
}



