Info | |
---|---|
Full Name | Andrea Oxana Da Silva Pinto π©π½βπ» |
Date of Birth | September 11, 1994 π |
Place of Birth | Moscow, Russia π·πΊ |
Nationality | Brazilian π§π· |
Where I'm living | Venezuela π»πͺ |
College Degree | Bachelor Degree in Computer Sciences π©π½βπ |
Occupation | Sr. Software Engineer π©π½βπ» | React.js | React Native | Expo | JavaScript | TypeScript | Python | Node.js |
Skills | JavaScript, TypeScript, Python, React Native, Expo, Jest, React Native Testing Library, MobX π₯·π½ |
Stuff I've worked with | ReactJS, Flask, Firebase, MySQL, PostgreSQL, VueJS, Angular 4, AngularJS, Java, Vaadin, Spring Boot, HTML, CSS, JQuery, PHP, Laravel, CodeIgniter, Slim, WordPress, WooCommerce, SAP, Figma ππ½ |
Languages | Spanish π»πͺ, English πΊπΈ, Portuguese π§π· |
Hobbies | Dance ππ½ Travel |
Interests | AI, Machine Learning, Data Science, UI/UX, Mobile Apps, Web Apps |
Full Version
React Native Resume
Feel free to check out my collection of projects, where I've poured my passion and skills into creating various software solutions. Each project showcases different aspects of my expertise and the technologies I love working with.
Here are a few featured projects:
- Project 1: TODO App - A TODO App developed with React Native CLI and Redux Toolkit.
- Project 2: Calculator App - A Calculator App developed with React Native CLI.
- Project 3: News App - A News App developed with React Native CLI, Redux Toolkit, and TypeScript and a NewsAPI.
You can find more projects and detailed descriptions in my Projects Repository, where I've organized them to help you navigate through my coding journey.
Explore the code, dive into the documentation, and feel free to reach out if you have any questions or feedback. Your curiosity and interest mean a lot to me as a developer!
Happy exploring! π
Can you solve the classic FizzBuzz problem? Write a program that prints the numbers from 1 to 100, but for multiples of 3, print "Fizz" instead of the number, and for multiples of 5, print "Buzz". For numbers that are multiples of both 3 and 5, print "FizzBuzz". Have fun!
Click for Solution in Python
for num in range(1, 101):
if num % 3 == 0 and num % 5 == 0:
print("FizzBuzz")
elif num % 3 == 0:
print("Fizz")
elif num % 5 == 0:
print("Buzz")
else:
print(num)
Click for Solution in JavaScript
for (let num = 1; num <= 100; num++) {
if (num % 3 === 0 && num % 5 === 0) {
console.log('FizzBuzz');
} else if (num % 3 === 0) {
console.log('Fizz');
} else if (num % 5 === 0) {
console.log('Buzz');
} else {
console.log(num);
}
}
- "Clean Code: A Handbook of Agile Software Craftsmanship" by Robert C. Martin
- "You Don't Know JS" series by Kyle Simpson
- "Atomic Habits: An Easy & Proven Way to Build Good Habits & Break Bad Ones" by James Clear
-
Why do programmers prefer using the dark mode? Because light attracts bugs!
-
Why did the web developer stay at the hotel? Because he lost his keys!
-
Why did the developer go to therapy? Because he had too many issues!
-
Why do programmers hate nature? It has too many bugs!
-
Why was the JavaScript developer sad? Because he didn't know how to "null" his emotions!
Remember, laughter is the best debugging tool! π€£
"The only way to do great work is to love what you do." - Steve Jobs
"It does not matter how slowly you go as long as you do not stop." - Confucius
Updated and maintained with β€οΈ by @andreaintech