[OT] Programming

[OT] Programming

I’m interested in starting to learn to programme, I’ll probably go with some iTunes U to start with but i ultimately maybe want to become proficient with python for max and modul8.

Does anyone know any forums that are good for programming?

Also can anyone recommend any books that lay down the basics of computing? Theres too much jargon, i can tell a CPU from RAM but i would quite like to get more of a background knowledge into computing and when i try and google this i get tuts on how to print emails :@

Im on the same boat and started with Itunes U just like you. My goal is to create some app, even for free, to put up in Itunes to better my resume. So I started to read a book about Objective C: “Cocoa Programming for Mac OSX 3rd Edition” and so far the author does a good job explaining the concepts. One point they say is that while it is possible to develop Cocoa with Python and ruby, they dont use that technique on the book.

That said, IRL friends tell me to start with C+ or C# since thats the foundation to Cocoa plus for the job market those are more requested than Cocoa. Even then what I read is that no matter what language you end up learning, the basics apply to all. I have put a short term goal on this and is to develop the stoplight program which is what my local university asks to develop for n00bs. The stoplight program is a drawing of a stoplight and 3 boxes with the 3 colors. You click red and red lights up so on so forth.

Dont be discouraged about India and China beign proficient and getting all the jobs. It’s a preparation needed for the job market and a great skill to have. Feel free to PM me any finds you have on the subject and maybe we could give support to one another on the matter.

If I was you I would start with JavaScript (not the same as java). This language is quite similar to C and C++ but very forgiving and will let you miss some things out and take short cuts but still work.

You need to get the basic’s down. It starts off pretty easy just just need to learn about variables and using a few basic functions. then move onto loops. then objects.

Some would argue that its better to learn C first the only issue with this is you will crash ur comp every 10 mins in the early days

Check out the MIT Open Course Ware for 6.00, specifically the Video Lectures. While I haven’t taken this class, I know many students take it to learn programming. I also think you might find the first chapter or two of the 6.01 Course Notes helpful - we do all of our programming in Python for this class.

A text that I have used that I think does a good job of explaining fundamental programming concepts is “C++ For Scientists and Engineers” by Gary Bronson. You might find this helpful as well.

6.00 OCW:

6.01 Course Notes:
http://mit.edu/6.01/mercurial/spring11/www/handouts/readings.pdf

My final 2 cents:
Learn to program in whatever language you want. Once you understand the concepts, it is fairly easy to apply what you know to other languages. I personally think either C++ or Python would be a great choice for a beginner.

I’ve found that youtube is very usefull… I’ve actually started writing a program although i’ve dropped that task due to a huge amount of work coming in… give me a shout and I’ll be happy to help

Enroll in Introduction to Programming at Cypress College (cypresscollege.edu).

Professor McKnights curriculum is the best intro to programming ive seen anywhere.

hes also custom written tools that REALLY help you learn the actual aspects of design (learning to right GOOD code) as well as a good primer on syntax. The course covers visual C# as well as Visual Basic. So you get a bit of both the easy as well as the c structure to give you a good head start.

you can take the course online. you’ll have to buy one book but Professor McKinight writes all his own textbooks too, so theyre very course specific. This guys been teaching programming for over 20 years. One of the best educators Iv’e ever run across in my life.

Free book download…or you can purchase the dead tree version. This is a good introduction to programming in general, and to python in particular.

I also like Wesley Chun’s Core Python Programming. Wesely is a good guy, and writes in a clear, easy to follow style.

[ame=“Amazon.com”]Amazon.com: Core Python Programming (2nd Edition) (9780132269933): Wesley Chun: Books@@AMEPARAM@@http://ecx.images-amazon.com/images/I/51qvS8cyLCL.@@AMEPARAM@@51qvS8cyLCL[/ame]

When learning a language, I recommend having a couple specific projects in mind to use as a learning tool. In this case, write something that will work on your music collection (or maybe a backup of your music collection). Here is a project outline I gave someone else a couple of years ago. Maybe this will give you some ideas about useful things you can do.

TBH, I’m not sure that’s a good idea - if you start off sloppy, then you get used to not declaring ior initialising variables, for the same reason avoid Visual Basic.

Only really true if you raw write to the kernel, or do excessive buggering about with pointers. Which you wouldn’t in the early days.

I started out with BASIC (which I wouldn’t recommend as it can lead to bad habits - use of GOTO), then properly learned to program in Fortran, then Cm the PROLOG and god knows what else in the end. the noe that stood me in best stead was learning C properly, then learning a decent OO language - probably Java.

I’ve learned programming in Pascal then latter Delphi at university…
My first job was as PL/SQL Programmer. PLSQL is a language that is used inside Oracle Database to create stored packages, procedures, functions, etc…
Now I’m a Performance Analyst and Oracle DBA. I work mainly identifying performance issues in general applications and databases.

As you see, the language that you start can define the path that you will choose in the future, so it’s wise to take some time, look at the place in the market that you want to be in 3 years, talk to professionals that are alredy SENIOR (5 years) in this place and then make your decision.

I wish I had a chance to know java and object oriented programming in my first years of work, now it’s hard for me to go back and learn all again…

Just a few cents :smiley:

If you want something to pad your resume, start learning .NET now - very easy to get contracting jobs nowadays with good .NET skills.

SQL / Oracle is always good, and gives you a bit of programming knowledge when doing things like stored procedures.

Once you know .NET and T-SQL, you can do some pretty crazy stuff with a simple UI. I’ve found comfort in Sencha (formally ExtJS - like Jquery but imo more powerful of a javascript framework) + classic ASP + SQL Enterprise 2008.

I think the best advice that been given is thinking what you want to do.

The way you are taught a promming language is often very differnt to how u actually program it when you know wat ur doing. I know saying that is a little odd, however for alot of people it is very true