Page 1 of 2 [ 17 posts ]  Go to page 1, 2  Next

VincentVanJones
Velociraptor
Velociraptor

User avatar

Joined: 8 Sep 2008
Age: 33
Gender: Male
Posts: 462

30 Jan 2010, 7:55 pm

I am learning c++ (again). I kept dropping it in the past because I got frustrated but I am older now and more able to focus. Furthest I ever got was a 2d ship (.png) that I could control with arrow keys and fire a missile. Ages ago though and I lost the code. So recently I picked it up again. Trying to figure out why I would use Recursion for the projects I have in mind and wondering how Function Overloading (Polymorphism) works. I get that it does but having multiple functions with the same name seems abit scary to me (I would think it would cause run time errors)

Anyways, I was wondering if there were any other fledgling coders like myself. I am a novice by all means but I am trying. I always wanted to start a coding club at some point, maybe it could be on WP.

So, if anybody else on here is learning to code or wants to let me know. I would be interested.

Currently keeping to c++.



Roxas_XIII
Veteran
Veteran

User avatar

Joined: 8 Jan 2007
Age: 33
Gender: Male
Posts: 3,217
Location: Laramie, WY

30 Jan 2010, 8:58 pm

I'm learning C++ at college, since I'm going into a computer science degree it's a necessary part of my education.

So far it's a little iffy, but I'm getting the hang of it.


_________________
"Yeah, so this one time, I tried playing poker with tarot cards... got a full house, and about four people died." ~ Unknown comedian

Happy New Year from WP's resident fortune-teller! May the cards be ever in your favor.


VincentVanJones
Velociraptor
Velociraptor

User avatar

Joined: 8 Sep 2008
Age: 33
Gender: Male
Posts: 462

30 Jan 2010, 9:00 pm

I slipped since last time I coded.. took me far to long to get the Area of a rectangle to come out with my function

#include <iostream>

using namespace std;

unsigned long int Perimeter(unsigned short int width, unsigned short int length)
{
return width * 2 + length * 2;
}

int main()
{

return Perimeter(6,4);

return 0;
}

finally got it to work. I feel dumb.



TheSpecialKid
Velociraptor
Velociraptor

User avatar

Joined: 30 Aug 2008
Age: 34
Gender: Male
Posts: 432
Location: Denmark

30 Jan 2010, 9:03 pm

I've just learned the basics of VB6, and I already know PHP.
I haven't been doing much C++, except for hello world, and some other playing with it.
But again, that's a start.

I would like to learn it, but for the time being, I have alot of other things to do, that is more important.
(I am educating, to become a regular supporter. I thought that would be a good start)



Apera
Veteran
Veteran

User avatar

Joined: 23 Feb 2008
Age: 34
Gender: Male
Posts: 871
Location: In Your Eyes

30 Jan 2010, 9:31 pm

I did C++ during my first year, then changed majors. It generally started to annoy me... first with the functions, but the classes were the last straw. Having to write ten pages before even getting to Main... :wall:

I like VB much better. Still has its oddities... but is nicer to work with.


_________________
When I allow it to be
There's no control over me
I have my fears
But they do not have me


KazigluBey
Velociraptor
Velociraptor

User avatar

Joined: 3 Jan 2009
Age: 46
Gender: Male
Posts: 405

30 Jan 2010, 9:44 pm

Visual Basic, Visual Basic Applications and Visual Basic Script (yeah I know, all relatively the same)
Actionscript
Javascript

And other "languages"

HTML
XML



I'd really like to dive into python, but don't have time.



StevieC
Veteran
Veteran

User avatar

Joined: 30 Dec 2009
Age: 35
Gender: Male
Posts: 649
Location: Cupboard under the Stairs

30 Jan 2010, 10:18 pm

woohoo same here: visual basic 6, ASP (active server pages/vb server script), PHP, Javascript.

i have been looking into objective-c for iPod/iPhone :P


_________________
I'm a PC and Ubuntu was my idea.


My RSS feed:
www.steviecandtheplacetobe.net/rss.xml


KazigluBey
Velociraptor
Velociraptor

User avatar

Joined: 3 Jan 2009
Age: 46
Gender: Male
Posts: 405

30 Jan 2010, 10:25 pm

Speaking of mobile devices, I was looking into iPhone development with a friend, but because I'm on Verizon, it would be futile for me. Now that I have the HTC Eris, I'm considering Android, but again lack the time. :(



tttnjfttt
Blue Jay
Blue Jay

User avatar

Joined: 26 Dec 2009
Age: 43
Gender: Female
Posts: 95

31 Jan 2010, 3:49 pm

Coding has been my obsession since August. Most of the time I code in Java, but I am currently in a class at the local college on making iPhone apps, so I have begun venturing out to objective C.

I also do a little asp, and an learning java script. I really prefer the object oriented stuff though.



QuantumCowboy
Veteran
Veteran

User avatar

Joined: 13 May 2007
Age: 46
Gender: Male
Posts: 897
Location: (1/√2)|0> + (1/√2)|1>

31 Jan 2010, 7:40 pm

I have been coding for decades now. Started with BASIC when I was in Grammar School. My university program (Computer Engineering) obviously involved significant amounts of coding in several languages.

Most of what I had done was for: personal use, educational, or hobby use. However, about a year and a half ago, I started getting paid to program. This is somewhat ironic, as my real interest and expertise is in Hardware Design... :shrug:


_________________
The ket always seems to psi over its own indeterminacy.


jbtamug99
Emu Egg
Emu Egg

User avatar

Joined: 30 Jan 2010
Age: 47
Gender: Male
Posts: 5

01 Feb 2010, 4:56 am

Ditto on growing up on BASIC on an Apple ][e, then onto Pascal and then Fortran. Then too many years of doing web design and wanting to pluck my eyes out doing Flash and javascript. Just a smidge of C++ on the side and a lot of shell scripting.

Working on re-learning the C++ and dipping into Objective-C on Xcode to try and earn some play money making iPhone apps or something.


_________________
AS score: 128 of 200 / NT score: 79 of 200


Garriond
Hummingbird
Hummingbird

User avatar

Joined: 13 Jun 2006
Age: 49
Gender: Male
Posts: 23
Location: Germany

01 Feb 2010, 3:23 pm

Mostly C++. Since last year Objective-C as well.



ruveyn
Veteran
Veteran

User avatar

Joined: 21 Sep 2008
Age: 88
Gender: Male
Posts: 31,502
Location: New Jersey

01 Feb 2010, 4:10 pm

I spent 45 doing software development (I am retired now). I programmed in everything from FORTRAN and PLI to PERL with Object Oriented Languages in between.

ruveyn



Last edited by ruveyn on 02 Feb 2010, 5:30 pm, edited 1 time in total.

Jpeg
Sea Gull
Sea Gull

User avatar

Joined: 24 Nov 2009
Age: 32
Gender: Male
Posts: 235
Location: Missouri

01 Feb 2010, 4:40 pm

I know PHP, Python, C++, Java, and LabVIEW. I also tried VB a couple years ago but don't remember it enough to make anything useful.


_________________
"All we have to decide is what to do with the time that is given us"


Laar
Yellow-bellied Woodpecker
Yellow-bellied Woodpecker

User avatar

Joined: 4 Jan 2010
Age: 33
Gender: Male
Posts: 68

01 Feb 2010, 5:18 pm

I have programmed though not a lot in C++ and Java. I've learned a bit of basic (enough to understand it can be useful, but in most cases other languages are better) and php (but not enough to make something useful, I hate the $-signs). My 'native' programming language is C#, there is a lot in common with Java, but I find the language itself better. I've done something in C++, and found it quite old and fells like you have to do things twice. Certainly with respect to the newer languages (Java and C#). Though my perception could be clouded by the fact that I've not learned it well, and without any good books.

If you really want to learn C++ you should buy a good book (other ppl around here might have good suggestions), as that is the best way of learning it (apart from the necessary practice). Or at least that's what I've found out with C#, and a lot of programmers say so.



peterd
Veteran
Veteran

User avatar

Joined: 25 Dec 2006
Age: 72
Gender: Male
Posts: 1,351

02 Feb 2010, 4:38 am

I spent 35 doing software development (I am not retired yet). I programmed in everything from FORTRAN and PLI to PERL with Object Orient Languages in between, and then moved on to Java. These days, I'm force-fed Java and do XQuery for light relief.