Yuvin logo Yuvin's Test Services
๐ŸŒฑ Since September 2024

Where It All Began

Before the website, before the servers, before any of the games โ€” Yuvin's Test Services started in September 2024 as a handful of tiny Python programs running in the Command Prompt. No interface, no colours, no branding. Just a kid learning to code, one print() at a time. These are the five original scripts, exactly as they were written.

yuvin.py โ€” the very first line of the whole project.

yuvin (2024 SAVED).py
print("Hello, I am Yuvin. I am learning code today!")

talk_to_me.py โ€” learning to ask a question and answer back.

talk_to_me (2024 SAVED).py
name = input("What is your name?")
print("Hello", name.strip() .capitalize())

age_check.py โ€” the first taste of if / elif logic (with some cheeky messages).

age_check (2024 SAVED).py
age = 79

if age <8:
    print("uhh thats impossible lil buddy")
elif age < 10:
    print("I am a young coder!")
elif age < 12:
    print("Okay you are a new coder...good for you.")
elif age > 20 and age < 50:
    print("uhm okay didn't know you were over 20 years old but okie")
else:
    print("too old.. why are you even trying coding at this age??")

age_decider.py โ€” the true ancestor of the Age Tester: now it asks you.

age_decider (2024 SAVED).py
age_text = input("How old are you?")
age = int(age_text)

if age < 10:
    print("You are a young coder!")
elif age < 13:
    print("You are a pre-teen coder!")
else:
    print("You are a coder!")

family_tester.py โ€” name and age together, four categories deep. The most advanced of the five.

family_tester (2024 SAVED).py
name = input("What is your name?")
name = name.strip().capitalize()

age_text = input("How old are you?")
age = int(age_text)

if age < 10:
    print("Hello", name + "! You are a young coder!")
elif age < 13:
    print("Hello", name + "! You are a pre teen coder!")
elif age < 18:
    print("Hello", name + "! You are a teen coder!")
else:
    print("Hello", name + "! You are an adult coder!")

From five little Command Prompt scripts in September 2024, Yuvin's Test Services grew into a website in early 2025 โ€” starting with the Age Tester โ€” and has since become a full platform with personality assessments, skill-building games, and a whole lot more. Everything you see today started with print("Hello, I am Yuvin. I am learning code today!").

Want to see how the experiences grew up too? Step into the โฐ Time Machine for early versions and real screenshots from when they were first being built.