Tinkering with bare metal
#include <string>
#include <vector>
typedef std::vector<std::string> Information;
Information myself() {
Information shawon = {
"MSc in Computational Linguistics",
"Applied Natural Language Processing, Grounding Vision in Language",
"RAG, Fine Tuning LLMs and Synthetic Data Deneration",
"Pytorch, Jax, CUDA, Pallas",
"Photography, Music, Books"
};
return shawon;
}