Tinkering with bare metal
#include <string>
#include <vector>
typedef std::vector<std::string> Information;
Information myself() {
Information shawon = {
"Doctoral Researcher @ TU/e Eindhoven"
"OpenEuroLLM",
"Grounding Vision in Language, Evaluations",
"Pytorch, CUDA",
"Photography, Music, Books"
};
return shawon;
}