Nov 21, 2009
Pages: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11

How Long Have You Been Programming ?

free web hosting

Read Latest Entries..: (Post #101) by xboxrulz on Mar 7 2009, 03:05 AM.
I'm a Java freak, if I want to do something, I'd do it in Java. I don't like C, but C++ is good. I've been programming since grade 10 (or about 14-15 yrs old). Now in college, I'm learning C++, but still accidentally add Java stuff sometimes lol.xboxrulz
Read the FIRST post of this Topic. - Express your Opinion! Contribute Knowledge :-).

Open Discussion & Free Web Hosting > Computers & Tech > Programming

How Long Have You Been Programming ?

miCRoSCoPiC^eaRthLinG
Lets start this thread and find out more about our coding roadmap!

The first code I ever wrote was on a BBC Micro Computer that came with its on embedded ROM-OS and ROM-BASIC - this was when I was in my 5th grade (1990-91). It was pretty powerful for those times, offering decent 16-color graphics and a powerful sound engine behind it (using normal computer speakers) - that PCs never achieved.

In about an year or so, I shifted over to PCs coz the lack of applications for the BBC Micro was getting to me (all appz for it had to be either written in Assembly or that ROM Basic). Then came GW-BASIC 2.0 on DOS 4.0. That was fun - big fun.

It any of you still have the old basic interpreters (GW/QB) try out this code - this was one of my very first experiments with CGA graphics. It struck me so amazing at that time that I was able to magnify screen text and add touches of color through a few simple lines of coding.
CODE
CLS
SCREEN 1
PRINT "Text:";
INPUT text$
FOR x = 48 TO 48 + 10 * LEN(text$)
  FOR y = 0 TO 8
      IF POINT(x, y) <> 0 THEN
          LINE (10 + x * 2, 50 + y * 2)-(12 + x * 2, 52 + y * 2), 2, B
          LINE (12 + x * 2, 52 + y * 2)-(14 + x * 2, 54 + y * 2), 1, B
      END IF
  NEXT
NEXT


Next came QuickBASIC, and then Pascal... finally leading to C & Assembly - in such quick succession that I lost count. Now I'm armed with Java, JScript & PHP a little bit, quite solid on the C++, C# & VB.NET Front.

That would be 15 years now smile.gif God, can't imagine so much time has passed by in between.

 

 

 


Comment/Reply (w/o sign-up)

vizskywalker
Similar progression for me. In 5th grade I started in Qbasic. Dabbled in assembly for libraries for qb7.1, then gave up. I switched over to c++, didn't like it and moved to working with websites. I learned HTML (which is NOT a programming language, it is a markup language) and javascript. Then my free webhoster allowed perl CGI scripts, so I gobbled that up. Feeling more confident with my ability I went back to c++ and added java.

Then I got a TI83+ and started programing in BASIC for that. I wanted more control and started learning assembly for the calc and quickly switched to assembly for the pc. Then I joined astahost, got my hosting and started learning PHP and mySQL because I had access to it.

Somewhere along the way I also learned VB.

I hope to progress soon to GEL. GEL is a language I am writing in assembly designed primrily for making games. There are currently no high level languages that I can think of that are not based on other languages designed for games. So I decided to start work on GEL. (GEL = Game Engineering Language and is pronounced JEHL (the eh means short E)).

~Viz

P.S. I am going to try out your code m^e, it looks really good. It reads like it checks a point and if it exists then it drawsa box for the point somewhere else, but shouldn't it be BF not B to fill in the box?
P.P.S. Do you know any vesa coding in assembly?
P.P.P.S If anyone wants to help on the GEL project, PM me.

 

 

 


Comment/Reply (w/o sign-up)

miCRoSCoPiC^eaRthLinG
Yaah - try experimenting with both BF & B - BF would draw Filled Boxes - here I'm drawing a simple non-filled rectangle for each point. You could also experiment with hatch patterns by adding in hex values after the B/BF...
Like:
CODE
LINE (10 + x * 2, 50 + y * 2)-(12 + x * 2, 52 + y * 2), 2, BF, &HF3E

Comment/Reply (w/o sign-up)

vizskywalker
Cool, I never knew about the hatch patterns, how does the hex value determine hatchiness?

~Viz

Comment/Reply (w/o sign-up)

miCRoSCoPiC^eaRthLinG
That I've long forgotten - but I used to experiment around with different values and find a hatch to my liking. Infact when I used this function regularly, I'd built up a reference table of patterns & their hex values - but don't have a copy anymore.

Try putting it in a for loop - I mean fill up the screen with horizontal lines with different hex values using a for loop and you'll get an idea.

Comment/Reply (w/o sign-up)

Forge
I have been coding since when, hm I believe I started with QBasic at an age of 7? and moved onto Visual Basic at 10. Now I am 15 years old and I am programming Visual Basic, Delphi and PHP at the same time.

Comment/Reply (w/o sign-up)

oncombeureum
smile.gif
wah, in such a way, I feel almost as same as you.
i woke every morning realizing my self, what's the next programming i should read or *worse* understood.
ha..

your code like a sweet memory.

biggrin.gif

Comment/Reply (w/o sign-up)

michaellam
It's interesting how everyone started out programming by a computer... I started to learn how to program in 7th grade by a calculator. It's a pitiful age to start since I can never catch up with anyone smile.gif. Well, it began with a Texas Instruments Calculator, the TI 83 Plus. Learning how to make BASIC programs on that thing was awesome. Then I moved on to computers and started learning all the basics as mentioned above, QBasic, Visual Basic, etc... Then eventually leading up to C++. I would love to learn assembly but I don't have the time anymore...

Actually, if one was to consider HTML as a programming language, then one can say I started programming by 5th grade... but HTML isn't... smile.gif

If some of you wish you could learn your first programming earlier, when would it be? I say, I wished I could have started programming in 3rd grade (I mastered my basic math by then) so I would have the time to learn Assembly by now... smile.gif

Comment/Reply (w/o sign-up)

vizskywalker
Age three or four, that is when I was first allowed to use a computer for games. I had already mastered large number multiplication and long division and had a good grasp of how math topics worked. And at the time my sister was making a program in QBasic for school.

~Viz

Comment/Reply (w/o sign-up)

VJgamer
I am now 17 years old and have been programming for about 5 years.

I currently develop programs in QBasic, Visual Basic, and Flash Action Script.

I am currently learning both Java and C++. I know QBasic and Visual Basic very very well, and am getting relly good at programming in flash.

Comment/Reply (w/o sign-up)

Latest Entries

xboxrulz
I'm a Java freak, if I want to do something, I'd do it in Java. I don't like C, but C++ is good. I've been programming since grade 10 (or about 14-15 yrs old). Now in college, I'm learning C++, but still accidentally add Java stuff sometimes lol.

xboxrulz

Comment/Reply (w/o sign-up)

Zen
I first got interested from playing asteroids 24/7 when I was younger. I went through HTML -> Javascript and even played around in Microsoft Presentations making a knight move around through buttons and killing (making disapear) the enemy. All that was what brought me to wondering, how does it work.

I've been programming for 4 years though. My first program was a walking stickman in Turing in Gr9. Turing is a beginners programming language developed by the University of Toronto for all those wondering. The problems with it are too numerous and only one company was in charge of development. The company died of two years ago, so basically the language went to the dumpster.

I learn Java in school thanks to our curriculum last year. Since the class went along at a snails pace I looked at PHP (I know it's a bamboo raft) and learnt interaction with MySql. I toyed round with the concepts of AJAX then, and now I've started learn OOP in Java alongside C++.

Comment/Reply (w/o sign-up)

joseph77
i've been learning different programming language for 2 years now, since my current degree i took in college is BS in Information Technology. I've been learning C/C++ programming during my freshman year, Java Programming & Web Programming on the 1st semester of my sophomore year and now currenlty taking up assembly language with interfacing...

Comment/Reply (w/o sign-up)

Chesso
Yeah I started a bit like that, just modifying some mIRC scripts, or more examining them to see which piece does what.

It helps to gain a better understand of what more specific things do, especially if you can't manage to build things yourself from scratch, or know how to use certain functions and/or features etc.

Comment/Reply (w/o sign-up)

Andres Martinez Andrade
QUOTE(Eggie @ Jan 20 2008, 08:40 AM) *
i've been programming for about 1 month....i didnt even create my own scripts...i downloaded them and rebuilded,fixed,debugged and other things....never created one from scratch


That is great, rebuilding scripts is a good way of learning how to program. I use to do that in high school when I make web pages, I create some things and other parts were modified scripts. Is a good way because you learn how things are programmed and then you can learn those techniques and create your own. Nowadays I program almost everything I use; I only download some complex and very good scripts (like scriptacolous.js).

Comment/Reply (w/o sign-up)


Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

This textarea will convert to Rich-Text automatically (IE, Firefox, Chrome)

Pages: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11
Similar Topics

Keywords : long, programming

  1. Introduction To Programming
    (3)
  2. A Few Thoughts On Freelance Programming
    Some things I've learned along the way. (9)
    I've been freelancing my PHP / Web skills for about 8 months now. It seems like every job I
    have taken is always much larger than I planned on. About 4 months ago, I answered an ad for Joomla
    Tutoring! I get to the website, take a look around and realize that something is very wrong... The
    individual that hired me to be a tutor had hired another developer to set up the new Joomla based
    site and create a new template for it. Generally speaking, if you are really good at HTML and CSS,
    you can create a Joomla template with very little PHP knowledge. At first I was....
  3. Programming C In Windows
    2 questions (10)
    Ok I usually would use Linux to program because there is a compiler (gcc), but I need to use Windows
    to program for now because of a few unexplained reasons. I need to find a compiler for Windows that
    will compile the C language. I have tried Microsoft Visual C++ Express 2008 but I find it to be way
    too bulky and hard to use. The command-line compiler is similar to gcc I guess, and it creates
    executable files for Windows, but the compiler in the actual program compiles C++ but not C for some
    reason. And it will only compile files in projects, not standalone files. In my....
  4. What Books/e-books/articles Would You Guys Recommend For Beginners To Programming?
    (1)
    I'm looking to become somewhat knowledgeable in the area of programing one day and would like to
    know what some of you "experts" recommend as far as good reads on the subject for beginners.
    Thanks.....
  5. Please Help Me Out In Qt Programming In Linux
    (2)
    ppl, i need ur help,.... i have a project to do... we decided on Qt but no1 in my group knows about
    it... so please ppl can u find project sources ot even tutorials... Actually i m doin a proj on
    library management so if u can help even in just basic layout n connection wid forms... you can
    even contact me @ whihathac_AT_hotmail_DOT_com....

    1. Looking for long, programming

See Also,

*SIMILAR VIDEOS*
Searching Video's for long, programming
advertisement



How Long Have You Been Programming ?

Affordable Web Hosting, Low cost Web Hosting - ComputingHost.com