This is the eighth episode of the StackOverflow podcast, wherein Joel and I discuss the following:
- As of our next podcast, we will be hosted at ITConversations — the NPR of podcasts. A good outfit to be associated with!
- Yes, Joel does pronounce “wav file” as “wohv file”. I have no idea. Ask him.
- Joel keynoted the Rails conference. Josh Susser said “If you missed it, count yourself lucky.” Apparently at least David Heinemeier Hansson liked it.
- It’s true that I objected to David’s attitude towards people who don’t use Macs, but it’s possible to have objections to specific statements people make, or specific beliefs they may have, and still respect them as a person. Disagreement does not mean we are mortal enemies. David has a lot of smart, interesting things to say. That just wasn’t one of them.
- “The programming community is larger than any one particular tribe.” But why are certain communities more insular and insecure than others? Joel relates this to cognitive dissonance.
- I remain a big fan of Clay Shirky and his latest book. How big a fan? It’s Clay Shirky’s Internet, We Just Live In It. I believe every working programmer who touches the web should read his latest book, Here Comes Everybody.
- On addressing criticism — “there arise a new, young generation of rebels who remember not when you were the young rebel, writing new things, and making no claim to authority.”
- I found Paulo’s thoughtful criticism of our podcast and I wanted to address it. To quote Randy Pausch: “That’s a lesson that stuck with me my whole life. When you see yourself doing something badly and nobody’s bothering to tell you anymore, that’s a very bad place to be. Your critics are your ones telling you they still love you and care.”
- Joel feels like he was misunderstood on the topic of exceptions. Well, if you were writing a memory allocator for an operating system, anyway.
- Joel and I do agree that threading is hard. It’s amazing that web apps largely get a pass on this, thanks to the architecture of the webserver model.
- I give a shout-out to Rick Brewster of Paint.NET who calls the (excellent) threading code he wrote in Paint.NET “easily the most complex code in Paint.NET”
- We’re using SQL Server 2005 as the underlying database for stackoverflow.com. We engage in a brief discussion of the pros and cons of Oracle and MySQL databases in our (limited) experience.
- Joel describes his frustration with the way some writers turn single anecdotes into statements of truth, both on the internet and off. Of course Joel and I are both guilty of this, too.
- In my better blog posts, I tend to use more of a meta-aggregation model, where I do research and summarize what I found. I point to a lot of different opinions, then offer my own — but I try to diligently avoid clinging religiously to my opinions. In the face of new, better data, I can be convinced. I firmly believe in strong opinions, weakly held.
- When it comes to Domain Specific Languages, we definitely prefer them to a bunch of XML. I am particularly fond of SQL and Regular Expressions as mini-DSLs — I believe in embracing the concept of languages inside languages.
- Joel and I are still very excited about Microsoft’s DLR (IronPython and IronRuby) as an escape route from the superficial differences between the Coke and Pepsi of C# and VB.NET.
- welcome Geoff Dalgas to the stackoverflow.com programming team!
- As usual, thank you for all the questions and for the Wiki edits!
We also answered the following listener question:
- Tendayi Mawushe: In the enterprise Java world, you can’t do much without writing a lot of XML. In response to that, a new idea little domain specific languages is emerging. What are your thoughts on this?
If you’d like to submit a question to be answered in our next episode,
record an audio file (90 seconds or less) and mail it to podcast@stackoverflow.com. You can record a question using nothing but a telephone and a web browser.
The transcript wiki for this episode is available for public editing.



June 4th, 2008 at 4:51 am
First visit to the site. I was thinking “there’s something wrong with the logo” for a good 4 seconds. Brilliant!
June 4th, 2008 at 6:19 am
Brent, I’d like some of what you’re on, sir.
June 4th, 2008 at 6:23 am
Regarding the comments on extrapolation and anecdotal reality; this is in fact a fundermental part of human nature! Take the following example:
A snake bites a boy in your village and he dies, or at least becomes seriously sick.
The next time you come across a snake in your village you don’t think “hey, I don’t yet have a sufficiently large data sample to form an opinion so I’ll assume this snake is harmless”, no, you assume that ALL sankes are dangerous and beat the thing to death.
Interestingly, this is a very widespread phenomenon in the areas of car manufacturers; “I once had a XXXX and it was crap; therefore all XXXX’s are crap”.
It’s hard to get annoyed about human nature.
June 4th, 2008 at 6:36 am
My apologies for my bad spelling in the previous post - I have lived in Sweden too long!
June 4th, 2008 at 7:27 am
Jeff and Joel,
Even if stack overflow doesn’t happen, I’d still listen to your conversations. Great podcast. Please go on.
June 4th, 2008 at 9:55 am
Regarding DSLs, I think we’re seeing a lot of DSLs embedded in other languages as strings (regex, XML, SQL). A lot of effort is being made to move some of these out into fist class concepts, such as regex’s in perl, XML literals in VB and LINQ.
However, though I could be *very* wrong here, a lot of the time there isn’t a huge benefit to moving them out of strings other than stronger compile time checking. (I personally would say LINQ is an exception here).
I’ve been thinking recently about an extensible component to a compiler which allows you to append a prefix to a string ( e.g. {Regex}”a*”) which would specify a class with which to verify the validity of the string, called at compile time.
The effect of this would be compile time verification of DSLs embedded in strings. Of course, once it’s verified the DSL it behaves just like a normal string (so you would still have to have Regex myRegex = new Regex({Regex}”a*”);) This avoids the complexity and risks of a fully extensible compiler at the cost of some flexibility.
June 4th, 2008 at 12:19 pm
Regarding DSLs, i am not sure what Joel ment when he talked about “creating arrays in the fly”?
You can do that since .net 1.0 I believe:
int[] MyArray = { 1, 2, 3 };
June 4th, 2008 at 12:25 pm
Just noticed this link, which has a good picture showing an overview of compiling a piece of code for Parrot.
http://en.wikipedia.org/wiki/Parser_Grammar_Engine
June 4th, 2008 at 2:33 pm
Hass,
Your quote:
““I once had a XXXX and it was crap; therefore all XXXX’s are crap”.”
That is a fundamental phenomenon in our culture. What they are really saying is:
“I learned something a while back and I have formed my opinion now. Nothing will ever alter that opinion again because I am too lazy to even think about realizing that the only thing that is constant is change.”
June 4th, 2008 at 4:23 pm
@Michael
The comment Joel made about not being able to create arrays on the fly was with regard to Java rather than .Net. However, he’s wrong about that too because the following has been possible since as long as I’ve been using Java:
Integer[] numbers = {1, 2, 3};
I think Joel also said you can’t create Lists on the fly in Java. I don’t know if this is “on the fly”, but IMO it’s pretty close:
List numbers = Arrays.asList(1, 2, 3);
June 4th, 2008 at 4:59 pm
Joel made some comments about how SQL Server isn’t self tuning, and that you have to manually run sp_updatestats to keep your statistics up to date. I haven’t found that to be the case - a default SQL Server 2005 installation automatically creates and updates statistics, and those options have always worked for me. There’s also an Auto Update Statistics Asynchronously option to prevent performance issue from updating stats under heavy database load. So, while he may have run into an issue where that didn’t work, it may have been due to a specific case (such as a DBA turning off the Auto Update Statistics feature). It’s definitely incorrect to say that SQL Server isn’t self tuning.
Another unappreciated feature is that SQL Server will detect and fix corrupted indexes. I was very surprised to find that MySQL didn’t do this when I first worked with it (probably improved by now), and a stats corruption issue took the entire database server down until you ran some index cleanup commands.
June 4th, 2008 at 8:45 pm
Jeff and Joel,
Thanks for continuing to produce this podcast! I thoroughly enjoy listening to your conversations about technology.
As Joel said, though, I would try to steer clear of politics as much as possible. You guys have a wide audience with, I’m sure, just as wide a variety of opinions. It could be off-putting to some listeners, even when you feel the comment to be fairly innocuous.
I look forward to seeing stackoverflow.com in action! Best of luck!
June 4th, 2008 at 11:49 pm
Joel made a comment that he had an issue with a MySQL SELECT statement. I can recall that we had the same happening with SQL Server 6.0 where a SELECT COUNT on a view returned the wrong number of rows. This error was only present on a specific 6.0.XX version, and I have spend at least one month before I have found out that it is a SQL not an application error.
But I’m sure they have fixed it by now … or not?
June 5th, 2008 at 12:40 am
regarding the podcast name… currently it’s “podcast #8″, could you call it “stackoverflow #8″? Then it displays nicely on my cheapo mp3 player.
June 5th, 2008 at 1:22 am
Re: [ICR]’s comment on DSLs..
I think your regex example might be implementable in C++0x using the “user-defined literals” feature.
If you use the variadic templated form (”template”) then you might be able to verify that the sequence of characters is a valid regex at compile time.
http://en.wikipedia.org/wiki/C%2B%2B0x#User-defined_literals
June 5th, 2008 at 6:26 am
A few days ago, I was listening to the podcast was marvelling at how open you are with your plans for the site. Then, today I came across this article (http://www.unionsquareventures.com/2008/06/the_spooky_econ.html)
The author says:
“Simply put the entrepreneurs who are aggressively open in describing their plans seem to do better than the ones who are cagey.”
I definitely agree with this statement. Keep up the good work with the podcasts. I definitely find them interesting.
June 5th, 2008 at 6:36 am
Regarding “LINQ has it backwards”: Anders Hejlsberg, Chief Language Strategist at Microsoft talks about this (among other things) in Software Engineering Radio (thanks for that tip, BTW) episode 97 (http://www.se-radio.net/podcast/2008-05/episode-97-interview-anders-hejlsberg).
June 5th, 2008 at 8:51 am
Jeff, when you mentioned that databases should look at the queries coming in, and “self-optimize” by putting in the right indices, and otherwise trying to find out the best way to satisfy a similar query in the future, it sounded like you were reading my mind. Whenever I’m working with other people on database-level stuff, I always complain about this. DBAs within hearing distance always roll their eyes, but forcing an application developer to tune their app to accommodate the low-level intricacies of the DB vendors’ implementation is so 20th century, not just wrong from an abstraction point of view. I think your reasoning and comment on the “Oracle priesthood” is spot-on, and part of the problem.
June 5th, 2008 at 10:16 am
I wrote something similar on the “vocal niche programmers” that puts a different spin on it:
http://www.pchristensen.com/blog/articles/hey-language-snobs-dont-pinch-pennies/
I put niche languages (I called them “snob” languages) in the same category as Joel puts the Mac - a luxury good for a certain hobby. In this case, the hobby is programming as a craft, abstraction, type systems, etc.
June 5th, 2008 at 10:19 am
I thought of arrays “on-the-fly” as in:
for (int i : {1,2,3}) or some_func_with_arrays({1,2,3})
Jeff/Joel: Will the podcast still be available through here your website’s feed? I prefer the “warm start” to IT Conversation’s 1 min. of ads, although I guess I could just skip it…
June 6th, 2008 at 4:05 am
Speaking of cheapo mp3 players, my Creative will let me browse through artists but choosing “Joel & Jeff” will show an empty album list, so I can’t pick a podcast for listening but I have to add “all track from this artist” to a playlist and then skip the ones I don’t want. I think it could be fixed by adding an album title to the file tags…
June 6th, 2008 at 9:29 am
I disagree with Joel on the use of exceptions: I think they make code clearer and easier to understand, and therefore *less* prone to bugs.
I was going to write a long comment, but instead I wrote it up as a blog post:
http://www.justsoftwaresolutions.co.uk/design/exceptions-make-for-elegant-code.html
June 6th, 2008 at 11:02 am
Also, a terrible nitpick but for anything other than Microsoft products it’s S-Q-L not Sequel.
June 6th, 2008 at 7:33 pm
Just noticed the logo on joelonsoftware.com as a complete logo. In my browser on my first visit here, the final w in stackoverflow was actually cut off so the logo appeared as stackoverflo. That is the explanation for my original comment. :)
When first seeing this, I thought the logo was being clipped (which is was) but after a few seconds, I thought it was a brilliant joke to show an stack unable to hole the final w char.
Perhaps something to try… or at least fix the page’s design (I’m using FF2 on Mac OS X default minimum font size 10px). ctrl and mouse wheel scrolling reveals the full logo - much to my dissapointment ;-).
June 6th, 2008 at 11:51 pm
I’m not so sure I’d trust a “self-tuning” database to create an index for me based on usage, mostly because indices aren’t free. An index can speed up queries, but the trade-off is that it slows down inserts and increases file size. Maybe this is just indicative of my comfort level because I (think I) know how indices work, yet I trust the query optimizer to do its thing w/out really understanding it; which is to say: maybe a DB could automagically create appropriate indexes if I could somehow communicate my priorities vis a vis performance (e.g. OLTP vs. data warehouse).
Regardless, I wear both a DBA hat and a Developer hat (among others) so joev’s comment kind of resonated with me, especially this bit:
“Whenever I’m working with other people on database-level stuff, I always complain about this. DBAs within hearing distance always roll their eyes, but forcing an application developer to tune their app to accommodate the low-level intricacies of the DB…”
I don’t know about Oracle, but I think SQL Server does tend to hide/handle the “low-level intricacies” fairly well. The disconnect between programmers and DBAs is all about modes of thought for attacking a problem. Coding is inherently iterative and sequential: first you do this, then this, and then finally that. SQL is all about sets and operations that act on whole classes of things (i.e. tables) instead of individual instances (i.e. rows). DBAs may roll their eyes because they’ve seen some developers write staggeringly inefficient SQL, and developers get frustrated because it seems like DBAs want to arbitrarily make their lives harder (i.e. more work to code).
The ideal situation would be that the “other people” with whom joev is working on “database-level stuff” would include a DBA. If there’s one close enough to overhear and roll his eyes, he should probably just mosey on over and offer to help with the data access layer.
June 7th, 2008 at 8:29 am
I did find it hilarious that after hearing Joel and Jeff discussing how they didn’t want a theme tune, and how all those ads at the start of podcasts just put people off, etc…then the IT Conversations guys put a bunch of self-promo stuff at the start of the podcast, and a cheesy sax theme for good measure. And then did the same at the end. Maybe they could add a loud burst of static every now and then to really top the job off? :-)
Other than that, I enjoy the podcasts - something to kill the time during my commute - I barely notice the drive when I have a stackoverflow podcast to listen to.
Jeff really should learn C, though.
June 8th, 2008 at 6:47 am
love the podcast, i enjoy it more than reading blog posts.
at about 58:30 Joel complains about the var keyword in C# 3.0 - which I found amusing. C# is never going to go completely to a type inferred system (where types are always inferred from the use). the argument for this restriction is readability. restricting the “var” keyword to local scope means consumers of an public api won’t see confusing things like void MyMethod(var b,var c) — this is important because it’s a REAL problem in completely inferred languages. You’ll find haskell programmers need to use comments to supplement the function definitions, otherwise no one can use the confusing thing.
To say C# is behind python and ruby is a false comparison, since C# is statically typed and ruby/pyth are dynamic.
June 9th, 2008 at 12:51 am
Vijay’s comment just reminded me about that part of the podcast. You may be interested to know that C++ is gaining type inference for variables in the C++0x standard (currently due 2009). You will be able to write
auto x=foo(3,”hello”);
and the type of x will be deduced from the return type of foo. This is not dissimilar to the way that parameter types for function templates can be deduced today.
See http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2006/n1984.pdf
for the full details.
June 9th, 2008 at 12:26 pm
Regarding DSLs, I really liked the 3-parter Jeff Moser wrote somewhat on the subject. Part 1 is here. Well worth a read.
June 10th, 2008 at 7:21 am
When Joel mentioned composing lists of lists, he was probably meaning something like this:
var list = {1, 2, {3.1, 3.2, 3.4}, new Four(), {5.1, {”5.2.1″, “5.2.2″}, 5.3}, six};
In any case having ability to compose arbitrary lists of lists is basically an ability to describe data structures of arbitrary complexity, which is nothing more than description of a configuration data. Which is the simplest of the use cases for DSL’s. In this sense - XML and JSON and YAML are all DSL’s for storing configuration data.
DSL’s, as I’ve understood them an be just that or way much more, if need be.
The primary benefit of having DSL is to be able to define behavior of the domain area in terms of the domain itself, thus effectively making it possible for programmers and domain experts to “speak the same language”.
In the most advanced cases - DSL’s can be quite close full blown programming languages (e.g. I might be getting it wrong, but the FogCreek’s Wasabi can also be called in some way, a DSL, since it has been designed and implemented to solve a particular problem domain)
June 10th, 2008 at 4:22 pm
With all respect, it’s fine to be strongly opinionated but one should also know when to shut up, it really got annoying to listen to in the end I’m sorry to say.
- “Where’s DSL’s coming from, patterns people”
No meta-programming comes from the other camp, those who like language oriented programming as oppose to API oriented programming. Big in this game is Martin Fowler, who also hosts a DSL podcast: http://www.thoughtworks.com/what-we-say/podcasts.html
“Is it coming from java”
Hardly, that’s why we have to many libraries/frameworks in Java which is very much API oriented programming (no properties, no events, no type inference, no closures etc.).
“Seems like they are using a programming language which doesn’t have a good enough way to express trees as literals, which you can’t in neither Java nor C#”
That’s actually all LINQ is about, a type-safe way of building tree literals and evaluating these at runtime.
“Can I create a list on the fly?”
C# allows instantiation and population in-line through collection/object initializes, which composes really well and is one of the pillars of LINQ.
“I was disappointed with LINQ, the syntax is backwards yada yada I don’t buy it”
Well LINQ is not SQL, it is a general purpose query API with syntactical support, that just so happens to have a data provider layer which can talk to SQL databases. It allows for type-safety and code completion, which we have never had before and that’s quite groundbreaking really.
“They have this concept of a variant… you can’t use that as an argument to a function…. a lot becomes impossible for no reason”
No it’s not a variant (like you may know from VB6), it’s just a placeholder for the actual type. If you could cross a stack frame boundary, you could no longer infer this at compile time and hence it would have to be determined dynamically through a VTABLE lookup at runtime.
“C# is not yet doing the dynamic thing”
No, and it never will. C# is a static language and I just don’t see how it makes sense to compare it to Python/Ruby which may throw a kin to MethodNotFound exceptions in your face at any given time because they are - dynamic.
June 10th, 2008 at 6:22 pm
Casper Bang: I too initially found the ignorance amusing, and then annoying.
Do what I did — unsubscribe!
I feel better already.
I’ve come to the website to leave feedback about why I left, but you’ve done a beautiful job, although I still confess I don’t understand Joel’s connection between a DSL and arrays.
June 11th, 2008 at 10:16 am
Hello,
I was slightly annoyed about the way you criticised MySQL: why use FUD when there are real criticisms?
1) a RDBMS (relational database management system) has the following features: ACID transactions, handling of larger-than-main-memory-datasets, a query optimiser, schema management, concurrency support
2) mysql is often criticsed for not supporting atomicity, which I understand is nowadays possible with a very slow backend
3) mysql is often criticised for its lack of standard SQL-92 language features and an effective query optimiser
4) mysql is often criticised for lack of scaling (which I would claim is part of concurrency support, where the Isolation property is only concurrency control)
5) you claim that there are hidden licensing costs associated with mysql; with mysql being GPL licensed, you should probably retract your statement; if you are after making your own product by building something incorporating mysql, then clearly you should be compensated for the value that you’ve added, but not for something that’s otherwise available — which is why you have to give money to the mysql company if you want to earn money by building something on top.
PS: I understood your statement on threads & processes to be “we have processes, threads have no added utility over them”; I disagree, because process context switches are expensive and thread context switches are much cheaper, thus giving you a structuring device. SMP is also becoming more important with multicores, where threads are much cheaper than MPI.
best regards,
Oliver Seidel
June 11th, 2008 at 2:37 pm
Please don’t try to talk about Visual FoxPro.
(Now you can go ahead and put me in the box you keep under the desk with everyone else who defends VFP.
It’s just that everything you said about VFP was wrong. So please don’t try.)
June 18th, 2008 at 8:41 am
I believe the word you’re looking for to describe the Ruby community is either “partisan”. Maybe even “chauvanistic”, but I think that word more describes the fringes of the pro-*nix Slashdot community.
http://en.wikipedia.org/wiki/Chauvanistic
June 19th, 2008 at 4:58 am
About passwords you Joel were asking: I use only Firefox internal password manager. Mostly I do remember most important passwords; for others (portals, blogs) I just use one simple pass ;)
Anyway: I use Google Browser Sync for keeping bookmarks on different OSs and computers. It also HAS ability to keep all the passwords, but I don’t like passwords being outside of my PC..
See you. T.
June 20th, 2008 at 3:03 pm
Joel touched on Lisp/DSLs but I thought I’d a few links and thoughts.
In terms of a book to read about about Embedded Domain Specific Languages, there is Paul Graham’s On Lisp (full book available as a free PDF download):
http://www.paulgraham.com/onlisp.html
Functional Programming languages are often touted as a way to allow you to create embedded domain specific languages as libraries, without forfeiting the full power of the host language (e.g. Lisp, Haskell):
http://www.haskell.org/haskellwiki/Research_papers/Domain_specific_languages
An example is the library Parsec, for creating parsers (sort of like YACC or bison), fully and naturally embedded in Haskell. A huge advantage of using a general purpose programming language as the host for a DSL is that multiple DSLs can be combined within the same code. So for example you can write a parser as a first class citizen in that language, and then use the embedded document pretty printing language (which is actually just another library) to print out what you parsed in.
Hope that helps.
July 17th, 2008 at 1:30 pm
Hey-ho, someone at work mentioned this super duper podcast and thought I should jump on it.
Criticism:
I think almost all of the podcasts that I have listened to can be distilled to like half the time. You guys should raise the quality of this stuff. Almost borders on gossip for nerds rather than any insights, thoughts on new APIs, etc. Also, atwood seems to be very deferential to Spolsky. Cmon atwood grow a backbone ! And stop repeating everything spolsky says in a different form !
“But its free !!”, doesnt work with linux, doesnt work here either :/