Tinkering with bare metal
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".to_string(),
"Photography, Music, Books".to_string(),
];
shawon
}



