vote up 176 vote down star
79

For me, I've always wanted to finish the O'Reilly "Mastering Regular Expressions" book. When I need a Regexp, I manage to get the one I need eventually, but it takes more effort than it should.

Learning a specific technology or language always seems to bubble up ahead of this.

flag
show 6 more comments

230 Answers

1 2 3 4 5 8 next
vote up 278 vote down check

Functional Programming.

link|flag
2  
While learning Haskell I came to realize this: to solve a software engineering problem, and to describe the solution in a given language; these are two separate programming skills. A pivotal moment in my ongoing quest for enlightenment. – Internet Friend Sep 23 '08 at 19:30
1  
I'm still far from mastering functional programming, but some of the functional stuff in the STL and Boost is starting to make sense. Even seems useful... – Ferruccio Nov 11 '08 at 16:26
show 12 more comments
vote up 191 vote down

Getting fully into automated unit testing

link|flag
1  
I did want to do this, and I've done it now... highly recommended. – Rick Sep 24 '08 at 13:37
1  
Yeah, I'm the same as Rick. Its the best way to work by far. I've found that I more done working with unit tests than trying to debug on the fly, and I have a fully automated test suite to go with it. – Bazman Sep 24 '08 at 22:05
show 1 more comment
vote up 172 vote down

Games programming... 3d graphics particularly.

link|flag
2  
I would highly recommend the book "3D Math Primer for Graphics and Game Development" before starting graphics programing. – Corin Oct 23 '08 at 14:07
show 7 more comments
vote up 134 vote down
  • Fully implementing a language (lexer + parser + (compiler|interpreter) [+ runtime])
  • Assembler/bytecode (it's as close to the [virtual] metal as it gets!)
link|flag
3  
ANTLR will get you far for language impl. as long as u know what you're doing with the grammar. – Mark Cidade Dec 5 '08 at 19:09
show 7 more comments
vote up 113 vote down

Multithreaded programming is something that I sometimes have to use but know next to nothing about.

link|flag
1  
Actually, having someone "knowing next to nothing about multithreading" write multi-threaded code sounds scary to me. It so easy to introduce subtle bugs and races even when you know what you're doing... 1. You should take the time to learn it 2. Write extensive unit tests!!! – Hershi Sep 25 '08 at 8:02
4  
Both c# and java have more then enough langauge support to keep you well out of trouble. <q>"Write extensive unit tests!!!"</q> you would need theaded tests. Most race conditions are hard to reproduce, so you could have a unit test that passed 95% of the time and hit the run condition the other 5%. – David Waters Sep 25 '08 at 8:41
2  
Find programming! easy I threaded multi pfft. – silky Sep 29 at 11:02
show 5 more comments
vote up 108 vote down

This is crazy, but writing device drivers :-)

link|flag
show 8 more comments
vote up 89 vote down

Learn a scripting language like Ruby or Python. A nice scripting language under your sleeve can really increase productivity.

link|flag
7  
Ooh, ooh, can I plug powershell here? No? Oh, well... – Jay Bazuzi Sep 24 '08 at 18:38
2  
Go to diveintopython.org you'll be amazed how fast you pick it up. – too much php Dec 22 '08 at 21:34
show 5 more comments
vote up 74 vote down

Finding more free time to work on personal programming projects.

link|flag
vote up 71 vote down

Lisp / Scheme. I hear you feel enlightened after grokking it.

link|flag
4  
My 2-cents: If you want to learn Lisp for "learning" the Lisp way, then learn Scheme, if you want to learn Lisp for software development, learn Common Lisp – Amit May 18 at 11:50
show 3 more comments
vote up 66 vote down

For sure, Regular Expressions. Have you ever seen the 6,343 character RegEx pattern for RFC822 validating email addresses? Abusive...

http://www.codinghorror.com/blog/archives/000214.html

link|flag
4  
Regular expressions are complex enough to be considered a language in their own right. Learn them, and you can use them in almost any programming language. They give a great return on investment. – Liam Sep 25 '08 at 10:18
1  
Even the most horrific-looking regex can be broken down into tiny steps that are easy enough to understand on their own. Once you know the rules and just break it down then they're not all that bad. – Wayne Koorts Jun 11 at 20:28
show 1 more comment
vote up 51 vote down

Become a WinDbg ninja.

link|flag
1  
Me too! Recently I got fed up with my editor hanging, causing unsaved work to be lost, and decided to try debugging it with WinDbg. After a couple of hours I was able to pinpoint the WaitForMultipleObjects() call that was causing the hang despite no source code -- now I'm a WinDbg convert! – j_random_hacker Feb 23 at 11:00
show 2 more comments
vote up 46 vote down

Read The Art of Computer Programming, and say I understood everything without lying.

link|flag
2  
Voted up although we all know that's absolutely impossible, don't we? – IlDan Jul 13 at 21:27
show 2 more comments
vote up 42 vote down

10-finger keyboard typing

link|flag
1  
Where did you get the extra 2 fingers? Personally I only have 8. Just imagine how much easier it would be to type with 10. – Kibbee Sep 26 '08 at 13:00
27  
Thumb is a subclass of Finger. – Ctrl Alt D-1337 Jan 25 at 8:13
1  
No No, thumb and finger(along with toes!) are both subclasses of digit appendage. – Neil N Sep 2 at 16:58
1  
maybe 10 in octal...? – elcuco Oct 3 at 14:21
3  
wtf, Americans don't count "thumbs" as fingers? – hasen j Oct 10 at 23:29
show 1 more comment
vote up 40 vote down

Haskell

I would like to become proficient in functional programming. Coming from an OO background this would provide me with another perspective to solving coding problems.

link|flag
1  
Done Haskell.. Thank God for imperative languages. Functional programming is a nightmare, especially if you want to try your luck at GUIs with them :P – waqasahmed Aug 28 at 1:01
show 1 more comment
vote up 39 vote down

Non-trivial assembly language programming.

link|flag
13  
Is there any other kind?? – TonyOssa Sep 24 '08 at 1:34
1  
Sure I can play with adders and simple loops (and call system calls) all day long, but actually go and make something usefull is a lot more complicated. – Luka Marinko Oct 11 '08 at 22:56
show 3 more comments
vote up 37 vote down

Anger management. Yes, that is a programming skill.

link|flag
5  
+5 Insightful? :) – Christian Vest Hansen Sep 24 '08 at 7:28
show 1 more comment
vote up 35 vote down

Distributed computing. Being able to design & implement systems like world community grid or folding@home.

link|flag
1  
I've always wanted to design a distributed 3D renderer that would be akin to these. – Cristián Romo Sep 24 '08 at 3:06
vote up 32 vote down

For me it would be writing compilers.

I'm surprised aku hasn't closed this thread yet.

link|flag
show 1 more comment
vote up 31 vote down

C++

Never learned it and always wanted to.

link|flag
1  
A hard language to master but great to use once you get good at it... – Rui Curado Sep 24 '08 at 13:43
11  
Useful like a bullet in your foot. – Andrei Rinea Oct 26 '08 at 22:11
2  
Why bother nowadays? – Lucas Jones May 13 at 19:05
1  
It's my first major language, started at age 13 (after basic and asm) and it still rules my world. Albeit having learnt Haskell, Ada, Java, Javascript, C# and Python afterwards, I still find them to be mostly subsets of C++. ;) – Marcus Lindblom Oct 24 at 19:13
show 7 more comments
vote up 26 vote down

Unit testing for a web application.

link|flag
vote up 25 vote down

Don't laugh...
...XSLT

link|flag
10  
You can learn it, but will cost you 3 sanity points. Do you still want to learn it? – troelskn May 18 at 11:56
1  
XSLT's great! I've yet to see a comparably useful tool for transforming xml (or really, tree structures). – Eamon Nerbonne Sep 22 at 10:05
show 6 more comments
vote up 24 vote down

Write a natural language parser.

You could do a lot of cool stuff with it and I think you would learn a lot.

link|flag
3  
ooff, that's a hard one baby. Good luck with that. – KevDog Sep 23 '08 at 18:30
vote up 22 vote down

Python. Also motivation to do my own personal projects after 8 hours of programming at work.

link|flag
show 2 more comments
vote up 18 vote down

Infallibility.

link|flag
6  
just type iddqd – bobobobo Aug 8 at 3:31
show 4 more comments
vote up 18 vote down

Becoming better at finding and fixing memory leaks.

link|flag
2  
It's easy ... just use C# ;-) – Joel Martinez Nov 20 '08 at 17:53
2  
That's like saying you want to become better at tuning a carburetor. Just switch to a fuel injection system (Java, C#, basically any modern language). Ignore that advice if you actually need to use languages without automatic GC on a daily basis. That is becoming more and more rare. – William Brendel Dec 22 '08 at 21:11
4  
... or stick with C++, but use RAII and boost::shared_ptr<T>. – j_random_hacker Feb 23 at 1:54
1  
Or use valgrind – Ben Aug 8 at 4:15
show 1 more comment
vote up 18 vote down

It has to be unit and regression testing. I know the theory behind them, but not always when and how best to implement them.

link|flag
show 2 more comments
vote up 18 vote down

Multi-threaded programming... Seems easy but very tricky to do it properly.

link|flag
show 2 more comments
vote up 17 vote down

Manipulating audio data. I love music and it would be fun to figure out how to generate effects, or generate algorithms to create music.

link|flag
show 4 more comments
vote up 12 vote down

Distributed Communication (such as WCF) ... I've used my share of soap web services, et al, but I don't feel that I've mastered the art of having systems talk to each other over the wire.

Edit: Since I've written this, I have gone on to learn and use WCF successfully ... quite happy with it :-)

link|flag
1 2 3 4 5 8 next

Your Answer

Get an OpenID
or

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