When you are learning a new language, what is your favorite first (or close to first) exercise that you do to get the hang of it? And why?
EDIT: Preferably looking for things that are more complicated that 'Hello World'.
|
4
|
When you are learning a new language, what is your favorite first (or close to first) exercise that you do to get the hang of it? And why? EDIT: Preferably looking for things that are more complicated that 'Hello World'.
|
|||
|
|
|
|
Pick a task(s) that you already understand. That way you limit the amount of "new stuff" you need to assimilate. |
||
|
|
|
|
I like games for learning programming because the business rules are carefully delineated. The first three programs I write in a new language are Ro-Sham-Bo, Blackjack, and Video Poker. |
||
|
|
|
|
Console based Tetris |
||
|
|
|
|
I usually do the following (in the order presented):
After that its on to a real project... |
||
|
|
|
|
Larry O'Brien had a great series of blogs titled '15 Exercises to know A programming Language' Part 1 Part 2 Part 3 See Larry's Blog for the details. Part 1. Calculations
Part 2. Data Structures
Part 3. Libraries
If you can do all these things in 2 languages, I'm sure google has a job for you |
||
|
|
Drag-and-drop image gallery. When I was cutting my teeth on Win32 and MFC, this was one of my first projects. Pretty quickly I ported all my code into ActiveX controls. Then I rewrote the thing in Java. For kicks, I rewrote it again in pure Javascript. When I broke into .Net, I rewrote the thing again in C#. Last but not least, I used it as an exercise for learning Objective-C and UIKit. Why? It's a visually appealing toy, for one thing. It's nice to get instant gratification from your code, I think, and working with images is one of the most gratifying things I can think of. |
||
|
|
|
|
My equivalent of a hello world is to do the following:
I feel after doing the above I get a good feel for the language and a good introduction to the IDE and how easy (or really how difficult) it is to work with the language and the environment it runs in. After that if I want to go further I will use the language in a real project that I need to do (probably a utility of some kind). |
||
|
|
|
|
Often I'll implement the k-means clustering algorithm. |
||
|
|
|
|
I usually don't do very well with it unless I have a "real" project to apply it to. Even made up ones get boring fast. In fact, I find it helpful to throw yourself in the middle of a bigger project and make small changes to something that already works. YMMV |
||
|
|
|
|
I like to learn a new language by doing a "real" task (for "personal" use) My first java program was a client for an online multiplayer game (that I then released into public domain) My first vb.net program was a front-end for my digital video recorder My first VHDL "program" was a 64x32 led array controller |
||
|
|
|
|
other than hello world, I try to port one of the existing programs to the new languange. this will challenge me to learn some good old techniques in the new language and help me build a new library of classes or helpers.. |
||
|
|
|
Ray tracer. |
||||
|
|
|
Red-Black tree. |
||||||
|
|
|
Connect to data somehow, whether it be a database, file or other... |
||
|
|
|
|
Personally I like to make a simple echo server and client to get the hang of network programming with that language. |
||
|
|
|
|
'hello world!' I really do think this a good place to start. Its basic and only takes a few seconds but you make sure your compiler is running and you have everything in place. Once you have that done you can keep going. Add a variable, print to database, print to file. Make sure you know how to leave comments. This could all take a mater of 5 minutes. But its important stuff. |
|||
|
|