I definitely agree that programmers and writers have the same mantra. For writers, it is simply to write, there is no way around it. For programmers it is to well.. program. With that said I think there are a few things that all programmers should do.
Most of these areas are really about stripping away the mystery and getting you to think about what is really happening below the level you are operating at.
In no particular order:
Learn several languages
Learn LISP/Scheme, asm language of your choice, C/C++, SmallTalk
Get yourself exposed to different programming languages for the same reasons it is worth learning other spoken languages. These expose you to totally different modes of thought and will get you to look at problems in an entirely new light.
Write a language.
This will get you to think about languages at a deeper level. Just get something out and working before you try and create the next big language.
Write an multi-threaded OS
Writing an OS will expose you directly to hardware, memory management, threading, protected memory, and get you to understand the machine. Be prepared for immense frustration, and deep satisfaction the first time you get a machine to boot to a prompt. :)
Write a game
I'm a bit biased on this one. Game's are immensely practical applications that force you to not only dig into numerous computer science and code construction problems, but they force you to be practical. For real fun, try writing to an older platform such as the PS1 or even the Atari 2600 (Stella manuals can be found online). These are "tricky" architectures that will force you to really understand them before creating anything interesting.
There are clearly many other areas to work on and things to do in order to improve yourself as a programmer. Some will be very craft related, and others are going to push your boundaries of knowledge. The above list are great sets of projects to set out to accomplish. You will be forced to grow as a programmer when working on them, and they will also set your resume apart for the future.