I'm a Junior Full Stack Web Developer with a strong focus on Frontend Development and web design. I'm a very curious person, who loves a challenge and always wants to learn new skills, and that's one of the reasons why I decided to switch from cosmetics and design into the IT area (I was previously a beautician/dressmaker).
- I'm Chilean
- My favorite programming area is Front-End Development
- I like making crafts in my spare time, I also have a YouTube channel about it
- π± Iβm currently learning about Node JS and Woocommerce
A little more about me, but expressed using python π
import random
from datetime import date
def This_Year(experience = 0):
give_up = False
current_year = date.today().year
my_state = [
"I am the best!πͺ",
"Burnout π«",
"Impostor syndrome π",
"I don't know anything βΉοΈ",
"I have to try again π¬"
]
for day in range(1,366):
print(f"Day {day} of this year")
print("My State today: ", random.choice(my_state))
# This code will never run
if give_up:
raise Exception()
experience += 1
print(f"This year {current_year} I gained {experience} experience points")
print(f"Happy {current_year + 1}!!!!")
This_Year()