the-curious
Learning to Code & Community Member
$ whoami
// Just someone who likes to learn
const developer = {
    name: 'the-curious',
    level: 'beginner-intermediate',
    os: 'linux',
    location: '127.0.0.1:3000',
    communities: [
        'jtechforums.org',
        'mitmachim.top'
    ],
    motto: 'ask questions, learn, repeat'
};
$ cat skills.json

Learning

  • HTML/CSS
  • JavaScript (basics)
  • Python (beginner)

Tools I Use

  • Linux (main OS)
  • VS Code
  • Git (still figuring out)
  • Terminal
  • Browser DevTools

Interests

  • Web Development
  • Problem Solving
  • Community Forums
$ cat current_learning.txt
// What I'm working on right now
const currentFocus = {
    this_week: 'JavaScript DOM manipulation',
    struggling_with: 'async/await concepts',
    next_goal: 'build a simple todo app',
    reading: 'MDN docs daily',
    practice: 'experimenting with code daily'
};
$ ls projects/

Small Projects

  • Basic calculator in JS
  • CSS flexbox experiments
  • Linux command practice scripts

Learning Projects

  • Following online tutorials
  • Recreating simple websites
  • Breaking things to learn how they work
$ python3 -c "print('my_thoughts')"
# Still learning, but enjoying the journey
def current_status():
    thoughts = [
        "Curiosity is not a disadvantage, it's a big advantage",
        "Every bug is a learning opportunity",
        "Google and Stack Overflow are my friends",
        "Community helps when I'm stuck",
        "Small progress is still progress"
    ]
    return thoughts

# My daily routine
while learning:
    try:
        code_something()
        test_it()
    except Error as e:
        ask_for_help(e)
        learn_from_mistake()
$ git log --oneline
Questions Asked
24/6
Curiosity Mode
1%
Of What I Want to Learn
$ curl -X GET /contact