Results 1 to 39 of 39

Thread: What was your first programming project?

  1. #1

    Thread Starter
    Fanatic Member bgmacaw's Avatar
    Join Date
    Mar 2007
    Location
    Atlanta, GA USA
    Posts
    524

    What was your first programming project?

    In this thread, Kleinma makes a good point about novice programmers biting off more than they can chew as a first project, particular if they're trying to write a complex game or something like that.

    So, I thought I'd ask here what your first 'real world', personal, programming project was. By that I mean something outside of academic work or a programming job.

    Did it get completed? Did you learn a lot from it? What was it? What did you write it in?

    My first such project was, yes, a game, an adventure style text game for the Timex Sinclair. It was a pretty short adventure since I only had 2k of memory to work with. I did learn a good bit from it though.

  2. #2
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    Re: What was your first programming project?

    honestly, I can't remember that far back.... I'm pretty sure it was some sort of text based game too... I know I've done text games, ASCII games... sprite games... and every single one of them sucked more than a Hoover.

    The first project I did for outside consumption was a tracking system for yearbook sales at my high school.

    -tg
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  3. #3
    WiggleWiggle dclamp's Avatar
    Join Date
    Aug 2006
    Posts
    3,527

    Re: What was your first programming project?

    Well i remember that my dad would make programs in VB5 on his computer for Trade shows for his company, and I loved watching him make them because it was interesting, so i asked if he can put it on my computer and....

    from there i really just make the interface, and he would add basic programming to it. After watching him do this, i learned, and caught on fast. Now thanks to him i have possibly have found my career in life
    My usual boring signature: Something

  4. #4
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: What was your first programming project?

    It was a commodore 64 game called "highway to work" in which you drove a car up a scrolling road (2d duh) and avoided the huge number of potholes. I consider this my first project because it was the first one i completed that had sound in it.
    My light show youtube page (it's made the news) www.youtube.com/@lightsofelberfeld
    Contact me on the socials www.facebook.com/lordorwell

  5. #5
    I'm about to be a PowerPoster!
    Join Date
    Jan 2005
    Location
    Everywhere
    Posts
    13,647

    Re: What was your first programming project?

    Web browser shell. I learnt a lot from it; mostly, just how little a coder can actually do on their own. I never finished it.

    I still bite off far more than I can chew, though.

  6. #6
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: What was your first programming project?

    A database program using dBASE II (back in 1982) that automated the budget preparation process for my department.

  7. #7
    Frenzied Member SeanK's Avatar
    Join Date
    May 2002
    Location
    Boston MA
    Posts
    1,160

    Re: What was your first programming project?

    A warehouse inventory system using VB3 and Access 2.0
    Beantown Boy
    Please use [highlight=vb]your code goes in here[/highlight] tags when posting code.
    When you have received an answer to your question, please mark it as resolved using the Thread Tools menu.

  8. #8
    Fanatic Member Slaine's Avatar
    Join Date
    Jul 2002
    Posts
    641

    Re: What was your first programming project?

    A text adventure game, on the Commodore 16.

    Later ported to the Dragon 32 and BBC B.

    This was followed by a snake game.

    The one I most proud of though was a later one, which was a game of life simulation on the BBC B, written entirely in assembler and worked in real time.
    Martin J Wallace (Slaine)

  9. #9
    Raging swede Atheist's Avatar
    Join Date
    Aug 2005
    Location
    Sweden
    Posts
    8,018

    Re: What was your first programming project?

    I started 2 years ago with VB6, I think I made some kinda IE shell, 6 months later i jumped to VB .Net, and here I am.

    Why cant I too have a great story to tell
    Last edited by Atheist; Jul 12th, 2007 at 11:34 AM.
    Rate posts that helped you. I do not reply to PM's with coding questions.
    How to Get Your Questions Answered
    Current project: tunaOS
    Me on.. BitBucket, Google Code, Github (pretty empty)

  10. #10
    Frenzied Member tr333's Avatar
    Join Date
    Nov 2004
    Location
    /dev/st0
    Posts
    1,605

    Re: What was your first programming project?

    I started out creating a simple program for sending e-mails using cdosys in VB.NET. I use it every time i'm learning a new language, the first program always being a clone of this program. It's always useful for showing the similarities and differences in each language for doing specific tasks.
    CSS layout comes in to the 21st century with flexbox!
    Just another Perl hacker,

  11. #11
    Giants World Champs!!!! Mark Gambo's Avatar
    Join Date
    Sep 2003
    Location
    Colorado
    Posts
    2,965

    Re: What was your first programming project?

    Here is my first program which was written in C Programming Language:

    C Code:
    1. #include <stdio.h>
    2.  
    3. main()
    4. {
    5.   for(;;)
    6.       {
    7.           printf ("Hello World!\n");
    8.       }
    9. }
    Regards,

    Mark

    Please remember to rate posts! Rate any post you find helpful. Use the link to the left - "Rate this Post". Please use [highlight='vb'] your code goes in here [/highlight] tags when posting code. When a question you asked has been resolved, please go to the top of the original post and click "Thread Tools" then select "Mark Thread Resolved."


  12. #12
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: What was your first programming project?

    I had a couple of text adventures i was working on also, but since i ripped the parser source code from someone else (a text adventure called Hospital), i don't count them. I do however remember the first program i wrote that did nothing but make me feel good:
    10 print "John";
    20 goto 10

    later i expanded it to detect key presses, then later still showed how many times it printed my name with a counter loop. etc. Breaking into OOP from basic 2.0 and 6510 assembly was not easy.
    My light show youtube page (it's made the news) www.youtube.com/@lightsofelberfeld
    Contact me on the socials www.facebook.com/lordorwell

  13. #13
    PowerPoster abhijit's Avatar
    Join Date
    Jun 1999
    Location
    Chit Chat Forum.
    Posts
    3,228

    Re: What was your first programming project?

    Quote Originally Posted by bgmacaw
    So, I thought I'd ask here what your first 'real world', personal, programming project was. By that I mean something outside of academic work or a programming job.

    Did it get completed? Did you learn a lot from it? What was it? What did you write it in?
    It was a keylogger. It was very lame and did not work. I wrote it entirely in VB using windows API calls. It was buggy and I never got around to fixing it.
    Everything that has a computer in will fail. Everything in your life, from a watch to a car to, you know, a radio, to an iPhone, it will fail if it has a computer in it. They should kill the people who made those things.- 'Woz'
    save a blobFileStreamDataTable To Text Filemy blog

  14. #14
    Member
    Join Date
    Jul 2007
    Posts
    59

    Re: What was your first programming project?

    Quote Originally Posted by bgmacaw
    In this thread, Kleinma makes a good point about novice programmers biting off more than they can chew as a first project, particular if they're trying to write a complex game or something like that.

    So, I thought I'd ask here what your first 'real world', personal, programming project was. By that I mean something outside of academic work or a programming job.

    Did it get completed? Did you learn a lot from it? What was it? What did you write it in?

    My first such project was, yes, a game, an adventure style text game for the Timex Sinclair. It was a pretty short adventure since I only had 2k of memory to work with. I did learn a good bit from it though.
    My first project. Was a yahoo games Id grabber and spammer.. went from room to room switching id, rooms and servers.. Killed the dupes when saving.. and Also put in the first ever option to Steal tables as they were created.. as a user created a table the bots would auto join the table and start a game.. haha..

    Was a neat program..

  15. #15
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: What was your first programming project?

    you're so cool...

    my first qbasic program took a 24-bit .bmp and let you replace 3 bits of the color depth with your own information, basically letting you hide files inside the bitmap. Believe me, your eyes can't tell the difference between 21 and 24 bit.
    my first complete program written in vb5 was a program for aol chatrooms. It detected when someone started scrolling crap off the screen, and automatically ignored them. I still have that source code, but it doesn't work in newer versions of AOL since they use custom message numbers in their windows in a useless attempt to stop 3rd-party programs from linking in to them.
    My light show youtube page (it's made the news) www.youtube.com/@lightsofelberfeld
    Contact me on the socials www.facebook.com/lordorwell

  16. #16
    Frenzied Member oceanebelle's Avatar
    Join Date
    Jun 2005
    Location
    my n00k.
    Posts
    1,064

    Re: What was your first programming project?

    It was C Program about simulating a student record or something using lots of pointers and structural programming. I really forgot. LOLz I was in 3rd year computer science in the university and some team from the Computer Engineering Department want some small coding job done for their project for a fee (1500PHP). I finished the program and was paid the fee.

    Next was my first application in VB using SQL Server as back-end database for the final project of students of Information Technology from another school.
    I was still learning VB then, since I was not given much VB projects at work. It was a class management system complete with testing modules. I was able to finish since I got rather obsessed with it. lolz. No fee though since it was my younger sister's request. She is IT but she got nothing out of it whatsoever.

  17. #17
    Fanatic Member CodedFire's Avatar
    Join Date
    Aug 2007
    Location
    In Cog Neato
    Posts
    568

    Re: What was your first programming project?

    Mine was a calculator with a win Form. It was alot harder than i thought, obviously not the calculator part but the GUI. little things like double clicking the = button or say the * realy screwed my app up.

    I think everyone should build a GUI calculator. There is so much learning in it that you would be supprised!

  18. #18
    Banned
    Join Date
    Nov 2005
    Posts
    2,367

    Re: What was your first programming project?

    I had to draw an animated 2d city with LogoWriter. Mind you, I was in 3rd grade.

  19. #19
    Banned
    Join Date
    Aug 2007
    Location
    near Boston, MA
    Posts
    5

    Re: What was your first programming project?

    My first programming project was a text-editor. I think text-editors are a good way of getting beginners interested. Just invoking simple properties of the RichTextBox got me interested in vb.net!

  20. #20
    PowerPoster Fazi's Avatar
    Join Date
    Aug 2005
    Location
    Underworld
    Posts
    2,525

    Re: What was your first programming project?

    My first project w...a...s. Yah Actually, I did not started with my first project. I directly went to my Second Project

    So i cant comment. sorry.

  21. #21
    PowerPoster Fazi's Avatar
    Join Date
    Aug 2005
    Location
    Underworld
    Posts
    2,525

    Re: What was your first programming project?

    Hah, That was a JK. sorry.

    I just did a Prayer Time Table using VB6 way back in 1999. I put all twelve months schedule in Twelve forms . I Prompt the user to select the month which he want to see the prayer time (No detection of Current date or time) . user select the month and i load the perticuler month form with an MMC Control sound of 'Call to Prayer' .

    Before learning VB6. I learned Pascal,Basic,Foxpro,Dbase etc in the DICS. Except Class excercises, no external projects
    Last edited by Fazi; Aug 3rd, 2007 at 01:04 PM.

  22. #22
    Addicted Member
    Join Date
    Feb 2006
    Location
    Maryland
    Posts
    182

    Re: What was your first programming project?

    My first project, was a text editor and a webbrowser. I was working on 2 at one tme.

  23. #23
    Fanatic Member
    Join Date
    Aug 2003
    Posts
    601

    Re: What was your first programming project?

    First program was a program when you clicked a command button in VB3, it would show a porno picture =)

    first real project was an AOL module called "Riddlebox" that me and another guy "Nexus" programmed.

  24. #24
    New Member
    Join Date
    May 2009
    Posts
    7

    Re: What was your first programming project?

    A tabbed web browser....
    advanced!

  25. #25
    PowerPoster JuggaloBrotha's Avatar
    Join Date
    Sep 2005
    Location
    Lansing, MI; USA
    Posts
    4,286

    Re: What was your first programming project?

    The first language I started in was QBasic 1.1, I couldn't tell you what the program did since I was 12 back when I wrote it.

    Unless batch files count, I started tweaking and writing those back when I was 10
    Currently using VS 2015 Enterprise on Win10 Enterprise x64.

    CodeBank: All ThreadsColors ComboBoxFading & Gradient FormMoveItemListBox/MoveItemListViewMultilineListBoxMenuButtonToolStripCheckBoxStart with Windows

  26. #26
    Hyperactive Member Max Peck's Avatar
    Join Date
    Oct 2007
    Posts
    384

    Re: What was your first programming project?

    My first commercial programming projects were for a company called Energy Management Associates back in 1978. Writing sections of code for a large power-plant simulation called Promod III. The entire thing was written in FORTRAN IV. We ran the simulation on Prime minicomputers and could compile it to run on IBM 360's.

    My first large program on a PC was a text editor called "ED" which was written in IBM PC Basic (later compiled MS Basic) under PC DOS 1.1. I still keep a copy of ED on my machines today; still runs in a DOS session!

    -MP
    The name's "Peck" .... "Max Peck"

    "If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." - Red Adair

  27. #27
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: What was your first programming project?

    I wrote a program for c=64 that was offered to be published by loadstar magazine in 1989. It was called highway to work and it was basically a sprite car driving up a road with random potholes on it. The road was character art and the potholes were * (which is huge on a c-64). I wrote the road-scrolling-up routine in assembly but the rest of the program ran in basic. Unfortunately for my wallet, Loadstar was changing management and they sent me a retraction letter saying the game was too simple for a disk format and i should submit it to a magazine.

  28. #28
    PowerPoster Nightwalker83's Avatar
    Join Date
    Dec 2001
    Location
    Adelaide, Australia
    Posts
    13,344

    Re: What was your first programming project?

    I think the first project I tried to create was a instant messenger application in VB6! However, I gave up on it before a finished creating it.
    when you quote a post could you please do it via the "Reply With Quote" button or if it multiple post click the "''+" button then "Reply With Quote" button.
    If this thread is finished with please mark it "Resolved" by selecting "Mark thread resolved" from the "Thread tools" drop-down menu.
    https://get.cryptobrowser.site/30/4111672

  29. #29
    Fanatic Member Psyrus's Avatar
    Join Date
    Jul 2000
    Location
    NJ
    Posts
    602

    Re: What was your first programming project?

    I think my very first project was a calculator written in C. It was crappy and only did basic math. The first code I ever wrote was of course a "Hello World" program.

    My first paid gig was a website that I created for a landscaping firm. I got $100 per page. Of course I tried to convince them that a multi-page website was in their best interest.

    I still have a lot of half-finished projects lying around only taking up space.
    Chris

    VB 6.0 Calendar App Video Gamers Group
    Don't forget to rate people if they helped you.

  30. #30
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: What was your first programming project?

    Quote Originally Posted by Psyrus View Post
    I think my very first project was a calculator written in C. It was crappy and only did basic math. The first code I ever wrote was of course a "Hello World" program.

    My first paid gig was a website that I created for a landscaping firm. I got $100 per page. Of course I tried to convince them that a multi-page website was in their best interest.

    I still have a lot of half-finished projects lying around only taking up space.
    i custom created some functions that treated numbers as strings and then performed math on them the same way a human does. carry the one, etc. Side effect? No limit on how big the numbers could be.

  31. #31
    Not NoteMe SLH's Avatar
    Join Date
    Mar 2002
    Location
    192.168.0.1 Preferred Animal: Penguin Reason for errors: Line#38
    Posts
    3,051

    Re: What was your first programming project?

    I did a few basic 'you control a circle who has to avoid a bouncing, growing square' type games first (in RM BASIC!).
    Every time i learn a new language i remake the old bouncing square game.

    The first non-trivial thing i wrote was Gems N Rocks:

    http://www.vbforums.com/showthread.php?t=253989
    Quotes:
    "I am getting better then you guys.." NoteMe, on his leet english skills.
    "And I am going to meat her again later on tonight." NoteMe
    "I think you should change your name to QuoteMe" Shaggy Hiker, regarding NoteMe
    "my sweet lord jesus. I've decided never to have breast implants" Tom Gibbons
    Have I helped you? Please Rate my posts.


  32. #32
    PowerPoster Jenner's Avatar
    Join Date
    Jan 2008
    Location
    Mentor, OH
    Posts
    3,712

    Re: What was your first programming project?

    My first actual program besides stupid stuff was a little choose-your-own-adventure type game program written in Apple 2e BASIC based on the Transformers. It was over 300 lines of code.

    My first program that actually mattered to anything or anyone was a graphical (i.e. non-text based) version of Connect 4 that was written in Apple Basic on an Apple 2e in 10th grade as my final assignment. It was a 2-player game.

    My first programming management project was organizing and programming an LPMUD called TimeWarp MUD. It started off with me and another mudder I know from a different game, grew to 6 programmers after the first month and upwards of about 20 the following. Since the guy I started with had no desire to manage anything, I pretty much assumed role of project manager and directed it's construction. It was written in an internal C derivative called LPC

    My first professional program was a ambulance logging and routing program done through the school written in VB6. It really was "bit off more than we could chew" both for me as a programmer and for the industrial engineering professors who later realized that their routing mathematics worked well for towmotors shop floors set up like grids, but lousy on city streets which can curve all other the place. At least I got paid for the junk I was able to cobble together.

    My first successful professional program was when I was working for Chrysler, I wrote a program to import text files generated by a CMM into an Access database and select and graph the results. It was written in Access's VBA. I tried to make a VB6 version, but Crystal couldn't do nearly the reporting that Access had available at the time so it was scrapped.
    My CodeBank Submissions: TETRIS using VB.NET2010 and XNA4.0, Strong Encryption Class, Hardware ID Information Class, Generic .NET Data Provider Class, Lambda Function Example, Lat/Long to UTM Conversion Class, Audio Class using BASS.DLL

    Remember to RATE the people who helped you and mark your forum RESOLVED when you're done!

    "Two things are infinite: the universe and human stupidity; and I'm not sure about the universe. "
    - Albert Einstein

  33. #33
    New Member
    Join Date
    May 2009
    Posts
    4

    Re: What was your first programming project?

    How can i forget ?

    Converting Numbers to Number words...
    835 to Eight hundred and Thirty Five ......upto 10 digits or more ....

  34. #34
    Hyperactive Member BillGeek's Avatar
    Join Date
    Jun 2006
    Location
    Canada
    Posts
    440

    Re: What was your first programming project?

    What do you consider programming?

    My first "code" I wrote was a DOS Batch-shell:
    Code:
    @ECHO OFF
    CLS
    ECHO * * * * * * *
    ECHO * Installer *
    ECHO * * * * * * *
    XCOPY <sourcefile> <destinationfile>
    ECHO <sourcefile> Copied.
    etc...

    After that I started learning QBASIC (never did anything, but learnt nonetheless) and then VB6. My first official coding and compiling project was a turn-based quiz game for a junior developer competition at my school. I got the lowest marks because I didn't have supporting documentation or commented code.

  35. #35
    Lively Member
    Join Date
    Jan 2008
    Location
    Belfast - N.Ireland
    Posts
    97

    Re: What was your first programming project?

    random number generater for lottery type application, it simply choose 6 unique random numbers between 1-49

    i failed it as they proved my code wrong as it generated the same number twice it did win the best looking app though - just a pity it didnt work lol

  36. #36
    Lively Member Shaq's Avatar
    Join Date
    May 2009
    Location
    Rhode Island
    Posts
    89

    Re: What was your first programming project?

    My first project was called Piggie Poundage. It wasn't my idea, it was the first assignment in my programming class. You had to input the quantities of different foods and how many calories each food had. Then it calculated how many miles you had to run to burn it off.

  37. #37
    Frenzied Member
    Join Date
    Jul 2008
    Location
    Rep of Ireland
    Posts
    1,380

    Re: What was your first programming project?

    First proper project was this: http://www.vbforums.com/showthread.php?t=541447 but nobody used it!

  38. #38
    Addicted Member
    Join Date
    May 2009
    Location
    USA
    Posts
    237

    Re: What was your first programming project?

    My first project was making a chat spammer that spammed out different phrases every few minutes, It was actually made for a porn site who was looking for something of the sort and It was for AOL/AIM Chat rooms, It was to advertise there site all day.

    I got 50 dollars for it and it was pretty decent. (Made in visual basic 6.0)
    This was also about 3 years ago.

  39. #39
    coder. Lord Orwell's Avatar
    Join Date
    Feb 2001
    Location
    Elberfeld, IN
    Posts
    7,628

    Re: What was your first programming project?

    Quote Originally Posted by VBFiEND View Post
    My first project was making a chat spammer that spammed out different phrases every few minutes, It was actually made for a porn site who was looking for something of the sort and It was for AOL/AIM Chat rooms, It was to advertise there site all day.

    I got 50 dollars for it and it was pretty decent. (Made in visual basic 6.0)
    This was also about 3 years ago.
    you suck. do you realize that teen rooms and younger were spammed like this? This is the main reason aol went to the irc-style "moderator" in each room, giving members the ability to boot other members.


    .
    .
    .
    fortunately i also wrote a program for aol. It detected keywords, repeated phrases, etc, and auto-ignored people.

    But since we're talking about aol programs, i never understood why people felt it necessary to troll the chatrooms to get email addresses. All you had to do was visit the room list and you could get a list of everyone in the room. Tell me there is any kind of legitimate use for that power! Anyway starting with 7.0 (i think) they changed to custom numbers in their chat window so it wouldnt respond to standard windows messages anymore. Really didnt make any difference since eventually people decoded the new ones, but all was quiet for a little while.

    Also oddly, they used an activex dll in their app with the ability (among other things) to sign on. I wonder if anyone ever made use of it? I discovered it on accident while i was hexing the program to let it run more than one instance. Didnt really work too well though. In some cases, changing a combobox on one instance was reflected on another. I would guess it was broadcasting window messages.
    Last edited by Lord Orwell; May 26th, 2009 at 03:26 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width