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.
print("Hello, I am Yuvin. I am learning code today!")
talk_to_me.py — learning to ask a question and answer back.
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 = 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_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.
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.