13
17 Comments

What's the first thing you remember coding?

Showing my age here...

For me it was the Christmas I got a Commodore 64. There was some code at the back of the manual for animating a blue sprite from top-right to bottom-left.

Required lots of numbers but I remember being blown away.

I was about 7 🤣

on July 8, 2022
  1. 2

    Almost the same experience...

    I was 7 or 8 and wrote the first code out of the manual. The only exception is that my computer was Didaktik Gama (a local ZX Spectrum clone).

  2. 2

    10 Print "Geoff is Cool"
    20 Goto 10

    Yes I am that old. It's in the Basic language for those who don't recognize it . Forgive me I might have been 14 when I wrote that donkey years ago.

    1. 1

      This, plus copying code out of magazines to play massively underwhelming games. A friend and I would spend whole afternoons plugging away at code we largely didn't understand, hoping that the Spectrums notoriously dodgy power cable didn't decide to die on us midway, leaving us to start all over again...

  3. 1

    I started in my last year of high school. Got pretty hooked on building an E-Commerce Brand on Shopify. My goal was to implement additional features using PHP.

    Honestly I had no idea how this all worked and felt lost coding. Fortunately I starting self learning how to code 1,5 years ago and now I am at a point were I wanna start my own SaaS.

    So my learning here was that it's totally normal to feel completely clueless when you start coding or learn a new framework, technology. But the more you learn the more you will master.

  4. 1

    10 PRINT "COREY."
    20 GOTO 10

    RUN

  5. 1

    Something in Visual Basic (the classic one). Woow!

  6. 1

    Nice! I wish I had one of those.

    Mine was "Hello, world!" for MS-DOS in C++.

    #include <iostream.h>
    
    int main() {
        cout << "Hello, world!\n";
        return 0;
    }
  7. 1

    The beeping of Close Encounters of the Third kind in Basic on an Atari 800XL.

  8. 1

    The first thing I actually completed was a Space Invaders clone with Star Trek-themed enemies.

  9. 1

    a simple web page with a fancy <marquee> tag (¬_¬ ), in 2013 I guess 😪

  10. 1

    print the statement "Hello World"!

  11. 1

    I suppose most of us just code "Hello, world!" in choosed programming language. TBH, I don't remember my first bigger program, but I think it was something related with text processing and URLs in Perl. It was about 15 years ago, so I could forgot about something.

  12. 1

    I remember stealthily coding a really basic text game early during my high school CS class, because I never found formal teaching very interesting. Was in C++, only language I knew at the time.

    Technically not the first, but it is the first thing I remember that wasn’t just basic variable assignment.

  13. 1

    If we call HTML coding nowadays, surely writing BBCode to format forum posts counts :krad:

  14. 1

    I modified likes of my facebook post using inspect element, I tried all day and hoped that the likes will show even if I refresh the page 😭

    1. 1

      Hehe - pretty sure I've tried something similar in the past - if only it were so easy!