π 42 - Paris Alumni & Graduated
πΌ Audio Programmer at Ubisoft on Anvil Pipeline
π MobyGames Profile
| Language | Proficiency |
|---|---|
| π«π· French | Native language |
| π¬π§ English | B2 (TOEIC) |
| π―π΅ Japanese | Learning (N5) |
#include <iostream>
#include <string>
using namespace std;
int main()
{
string name = "Valentin Deschamps";
string title = "Audio Programmer";
cout << name << "\n";
cout << title << "\n\n";
cout << "Experienced software engineer with a passion for creating elegant and
efficient solutions to complex problems. Skilled in C++ and Python, with a strong
background in data structures and algorithms.\n";
cout << "One trick I like to use when debugging is to print out the values of
variables at different points in my code. This helps me understand the flow
of my program and identify any issues.\n";
cout << "A little known fact about me is that I love working with legacy code.
There's just something about navigating through thousands of lines of poorly documented,
spaghetti code that really gets me going.\n";
return 0;
}