Eyes Above The Waves

Robert O'Callahan. Christian. Repatriate Kiwi. Hacker.

Wednesday 2 April 2008

Kindling Enthusiasm

The last two weeks have been lots of fun. The family time in Melbourne and Sydney was very refreshing and I still managed to get a few days work in.

On Monday I gave my pitch at the University of Queensland. Not a huge audience but not embarrassing. Today I had a pretty big crowd at the University of Sydney, 120-odd probably. They seemed pretty enthusiastic. Or maybe it's just me, because I get really enthusiastic when I get to talk about Mozilla to a lot of people. I wonder how it comes across...

I've been talking to my university hosts about student quality, enrollment numbers and curriculum. Like most places, UQ and Sydney saw a big drop in student numbers and quality after the dot-com boom ended, and only now are things turning around. And as I've complained before, supply and demand forces are driving students and schools away from fundamental computer science and low-on-the-stack software development, towards framework consumption and short-term "job skills". Today I met some sharp students though, so the well isn't completely dry!

I've heard complaints that partly due to the media, software development is viewed as deadly boring and students turn away to become lawyers and accountants instead (!). I understand that at some level, but at another level I don't. The basic rule of software is if you can dream it, you can build it. What can be more intoxicating than that? Is the problem that beautiful code doesn't look good on TV?

True, the "IT" jobs a lot of students are looking at probably are boring as dust. So in my talk I try to communicate a little bit of the excitement I feel. I talk about the importance of the open Web, I talk about security, about serving 150M users, about the challenge of low-in-the-stack programming, about making the rules and shaping the future. I talk about how open source participation can open doors and how the industry worldwide is starved of genuine talent for this kind of work. (Yesterday one of my friends pointed out that the multicore world is going to make our work even harder and put an even tighter squeeze on the market of people who can do it.)

The irony is that for a long time, the industry was desperate to achieve "software reuse". In a sense, our success at that has contributed to these problems I'm complaining about.



Comments

Shawn Wilsher
I don't agree with the sentiment that multicore will make our work harder. Sure, we may have to think about things a bit more to make sure they are correct, but you can still write serial code.
Then, with the emergence of libraries like Intel's Threading Building Blocks [1], AME [2], and other libraries, programmers can think less and less about concurrency, and more about the problem (and the concurrency just happens where appropriate).
[1] http://threadingbuildingblocks.org
[2] http://research.microsoft.com/research/sv/ame/
bp
Way to skip UTS :(
Robert O'Callahan
Sorry, but 5 universities in 10 days was enough for one trip.
Shawn: sure you can write serial code. It just won't be fast. If your competitors are parallel and getting 10X speedup on 100 cores, and you're running on one core, you're not really in the game. And just parallelizing some hot part of your code is unlikely to work because of Amdahl's law.
The libraries and frameworks and languages we have today are no panacea. Trust me on this, I know many of the people who are doing this work.
Jeff
I am wondering if pure functional languages (like haskell) are the answer to achieving ubiquitous parallelism. Does referential transparency of code mean that the compiler has a chance of figuring out what functions can run in parallel???