vote up 179 vote down star
84

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 281 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 95 vote down

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

link|flag
10  
Ooh, ooh, can I plug powershell here? No? Oh, well... – Jay Bazuzi Sep 24 '08 at 18:38
3  
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 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 114 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
5  
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
3  
Find programming! easy I threaded multi pfft. – silky Sep 29 at 11:02
show 5 more comments
vote up 110 vote down

This is crazy, but writing device drivers :-)

link|flag
show 8 more comments
vote up 53 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 4 vote down

I think it would be great to master stored procedures in SQL Server. I used them on a few projects a lot when I first discovered them but haven't really gone any further than that. I think mastering SQL in any way is an invaluable skill to have.

link|flag
vote up 193 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 173 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 77 vote down

Finding more free time to work on personal programming projects.

link|flag
vote up 5 vote down

Faster at cranking out unit tests (so I don't have to put off writing them when time gets tight as it always does in a project).

link|flag
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 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
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 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 137 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 10 vote down

Inversion of Control and Dependency Injection... truly, not just the theoretical part.

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

Silverlight and WPF

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

Assembly language for 80386, 80486 processors.

Really, Thought i'll learn for just the thrill.

Havent gone further than 8085 in college

link|flag
vote up 3 vote down

Learn to use a php framework.

link|flag
vote up 3 vote down

Concurrency

link|flag
vote up 5 vote down

On the advice of jjnguy, here is my answer:

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.

link|flag
vote up 5 vote down

Objective C 2.0

sigh... I really really really can't get into it because my personal sense of aesthetics is violated by its syntax.

I promise to try harder tho.

link|flag
1  
I hear you, my brother. I love using my Macs, but I just can't bring myself to spend much time on Obj-C as it causes me pain. That language needs so much syntactic sugar it would get diabetes if it were all added at once. – KevDog Sep 23 '08 at 15:19
show 1 more comment
vote up 0 vote down

I agree, Regex really..

link|flag
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 5 vote down

Embarrassingly, really learning regular expressions.

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

I've never written an app that interfaces with a real DB.

I'm learning to do so on a web app that I'm writing. Everything I've done for work or fun has just used binary and text files for IO.

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.