Experience
Well, I've made a few websites and some photoshop projects.
Oh, I also have made a Space-Invader-like game with PyGame library.
Skills
Projects
None really, yet.
But here's a code example:
⁄⁄function that counts letters in strings
function count(string) {
let obj = {};
for (ch of string) {
obj[ch] ? obj[ch]++ : obj[ch] = 1;
}
return obj;
}
⁄⁄function that converts rgb to hex
function rgb(r, g, b) {
return [r, g, b].map(v => {
if (v > 255) return 255;
if (v < 0) return 0;
return v;
})
.map(v => v.toString(16))
.map(v => v.length == 1 ? '0' + v : v)
.reduce((v, res) => v + res, '')
.toUpperCase();
}
About Me
-
Resilient and Persistent
I've faced various challenges, both physical and emotional, that taught me resilience and adaptability.
These experiences help me stay calm under pressure and find practical solutions. -
Open Minded
I've had the chance to try different things and directions, skills and hobbies.
I easily adapt to new trends, environments and ideas. -
Easily Immerse in the Task
I commit to each task with attention to detail, aiming for exceptional results, but I know when to stop and move on.
Education
- RS-School JS ⁄ Frontend course. Hopefully.
- English Level: B2
Interests
Programming
D&D
Music
Amateur Film Making