58
votes
32answers
3k views
What are your programming exercises?
Do you have any programming "exercises" that you do in order to hone your programming skills? Anything from FizzBuzz to more complicated problems to get you thinking about real-life scenarios that …
36
votes
44answers
4k views
What are some exercises you do to make you a better programmer?
Lately, I have taken to programming without a mouse to force myself to become more comfortable with different shortcuts. It's been a good exercise as I feel using shortcuts is essential for …
19
votes
13answers
854 views
Recommend an algorithms exercise book?
I have a little book called Problems on Algorithms by Ian Parberry which is chock full of exercises related to the study of algorithms. Can anybody recommend similar books?
What I am not looking for …
12
votes
14answers
575 views
Programming exercises to learn a new language
I can not seem to find this exactly as a post, but what I am looking for is a list of exercises to help me get better at programming. Like Fibonacci sequences, temperature conversions, etc. A website …
10
votes
5answers
317 views
Emacs exercises to become more comfortable and familiar with the editor itself as well as Lisp?
There's a great project called the Ruby Koans, it's a series of tasks to exercise yourself in the Ruby language, stepping you through the standard library using the Ruby Unit Testing suite as a …
10
votes
14answers
294 views
Games for learning
I often find myself wasting a lot of time playing short games like Mine Sweeper or Solitaire in between my studying. I am looking for a better habit to replace this one.
I have learned a lot by …
9
votes
3answers
108 views
Debugging exercises
Is there something like Project Euler, but with each task consisting of a broken program which you have to fix? So one can improve debugging skills. Where you can post your improved version, and it …
7
votes
5answers
835 views
Bjarne’s new book - anyone done the exercises?
I'm doing the exercises in Stroustrup's new book "Programming Principles and Practice Using C++" and was wondering if anyone on SO has done them and is willing to share the knowledge? Specifically …
5
votes
7answers
286 views
Where can I find C coding exercises to practice?
Tutorials are a dime a dozen, but I'd like to find a list of exercises online that I could attempt to practice what I'm learning. The sort of things that start with "Write a program to..."
I'm an …
5
votes
13answers
743 views
Interesting coding exercises for noobs
I am running a series of workshops for colleagues cross training to C#. The theory content is fine, but I am finding it hard to come up with interesting exercises for them to do.
Anyone have an …
4
votes
4answers
123 views
What is a good way to conduct a Group Kata?
I'd like to conduct a group Kata session, to get my software developer group to pick up the practice.
I'm thinking of giving some of the sample problems out there, and splitting the group into two
…
4
votes
1answer
162 views
Tips and exercises for caring for your hands over time? [closed]
I've noticed lately after ten years as a full-time programmer/computer user ( and hobby guitarist ) that my hands are starting to get a bit tight in certain movements. I'm sure this is a matter of …
4
votes
6answers
866 views
Classic programming exercises
I was looking for some good programming exercises for some mentoring. Something like:
projecteuler.net: good for the mathematical side but somewhat abstract
DNS client: good exercise + concrete …
3
votes
5answers
253 views
How many different ways are there to concatenate two files line by line using Perl?
Suppose file1 looks like this:
bye bye
hello
thank you
And file2 looks like this:
chao
hola
gracias
The desired output is this:
bye bye chao
hello hola
thank you gracias
I myself have …
3
votes
5answers
674 views
Where can I find a collection regular expression exercises for Perl?
I learned a lot of Perl RegEx syntax rules, but probably the only way to actually be able to write them is to do a bunch of 'RegEx' related exercises.
I looked over the other "Learn RegEx" threads on …
