vote up 18 vote down star
20

What are your favorite code kata?

  • What do you do to practice software development?
  • Where do you go to find new small projects to practice?

We already know Jeff's answers.

flag

75% accept rate

10 Answers

vote up 0 vote down

I have found that the #1 thing that's actually had an noticeable impact on improving my programming ability is just attempting to get the "Accepted" answer on StackOverflow. That's why I keep coming back.

link|flag
vote up 10 vote down

Take a look at Larry O'Brien's 15 Exercises to Know A Programming Language (Part 1, Part 2, Part 3).

For example the first exercise is:

Write a program that takes as its first argument one of the words 'sum,' 'product,' 'mean,' or 'sqrt' and for further arguments a series of numbers. The program applies the appropriate function to the series.

Educational goals of exercise 1:

Requires basic control flow, basic operators, and the math library. (Complex numbers available?)
What are arrays like?
What about parsing / implicit conversion?
Are functions first-class (availability of Map() and Apply())?
Error handling: What happens on invalid data?

The exercises often build on themselves and use code or data from previous tasks. The exercises in general tend to be much more practical and less "puzzley" than Project Euler

link|flag
1  
Your links don't work anymore. Use this: knowing.net/index.php/2006/… – Joe W. Jul 24 at 11:16
vote up 0 vote down

@Jason:

I won't disagree that the question sounds subjective. But I'll argue strongly that there are questions that sound subjective that can result in quality information that is not debatable.

So in this case, "What are your favorite code kata?" seems to mean something like "list code kata that you have found useful", not "what are the best code kata" or "let's debate the merits of code kata and one over another". And "list code kata that you have found useful" is as valid as any other "question" that yields a list of resources for answers.

http://beta.stackoverflow.com/questions/41988/how-to-get-kids-into-programming

http://beta.stackoverflow.com/questions/33478/can-you-recommend-an-aspnet-control-library

http://beta.stackoverflow.com/questions/23391/increases-skills-what-should-i-learn

Those three links are topics that you've participated in that could be deemed rather subjective in nature. Number one is arguably more about child psychology. Number two will yield answers rooted far more in personal style and preference than in hard fact. Number three is quite in line with this question right here. It stands a good chance of yielding a good list of useful links for people looking to improve. You didn't have a problem with those questions, yet you have a problem with this one, which might have yielded more useful information before we turned it into a discussion.

link|flag
vote up 0 vote down
  • What do you do to practice software development?

    Lead a team that builds real-world production software that are used by thousands everyday.

  • Where do you go to find new small projects to practice?

    My very own machine. Every now and then I find something on my machine that annoys me or requires a few steps to accomplish, I then set out to write a program that would deal with the annoyance and/or reduce steps to accomplish some tasks.
    .
    BATch files and powershell scripts are good "small project" practice from time to time as well as rolling/maintaining your own "AutoHotkey" scripts. And since I am a command line junkies, I have a lot of ideas for console applications as well.
    .
    And there are all the puzzles, just go to some online browser-game like Neopets and try to write a program that solves one of their minigames efficiently.

link|flag
vote up 1 vote down

For pure problem-solving and algorithm skills, try the IOI problems - they're great fun, and come with some evil test data. If you catch it at the same time as the contest itself, they often hold an online contest where you can try the questions in more realistic conditions.

Note: the 2008 website is incredibly ropy, if you're after this year's questions.

link|flag
It takes some digging to get to the sites. You have to go to the end of the Wikipedia article, then look at the each ioi site, such as ioi2004.org, and then look around for the tasks. – Spencer K Nov 18 '08 at 18:46
vote up 15 vote down

I pick up some excercises from Project Euler when I can:

Project Euler is a series of challenging mathematical/computer programming problems that will require more than just mathematical insights to solve. Although mathematics will help you arrive at elegant and efficient methods, the use of a computer and programming skills will be required to solve most problems.

http://projecteuler.net/

link|flag
7  
I don't agree. PE is far more about the math than it is about programming. It definitely hones your math and algorithm design skills, but they aren't really software engineering exercises. – Adam Jaskiewicz Apr 30 at 17:34
vote up 3 vote down

Etudes for Programmers is quite outdated, and the etudes may be too large to be "kata", but its Russian translation was quite an inspiration for me when I was learning to code.

link|flag
I loved that book when I started programming. – Kwang Mark Eleven Jul 23 at 15:50
vote up 1 vote down

I found a link to Project Euler last night through XKCD's blag [sic]. I like his suggestion that:

"it’s a great way to learn a language; I started picking up Python last year by doing the first couple dozen Project Euler problems in it." source

I'm trying to work through them from a Test Driven Development perspective myself, as a way of reinforcing the fundamentals.

link|flag
vote up 2 vote down

Jason,

Consider a person comes to Stack Overflow. Consider this person searches for Code Kata. Consider there is a thread with many links and examples of great exercises.

Such a thread could be very useful to a programmer looking to become more skilled.

We can moderate the heck out of Stack Overflow and try to make it an online amalgam of all of the existing and yet-to-be-written O'Reilly Cookbooks, or we can let it grow organically, when such growth still moves it toward its ultimate goal: making better programmers.

link|flag
+1, well said - you certainly have a way with words – slf Oct 8 at 16:05
vote up 1 vote down

for practice:

1. find a bottleneck
2. fix it
3. sleep
4. goto 1

for new projects:

1. talk to your geek friends
2. read blogs of your geek friends
3. fill like everyone is doing something interesting and you just sitting around
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.