I love xkcd.
Using Stack Overflow
Joel Spolsky and Jeff Atwood are starting a new website called Stack Overflow, it’s going to be a free programming Q&A website.
I’m a fan of both of those guys (I even have an autographed copy of Joel’s book!), so I signed up to be a beta user to see how it develops. I was trying to come up with a good way to give Stack Overflow a test drive, and I think I’ve hit on something: use it to build a web 2.0-ish site. I’ve been wanting to build a site for myself for at least the last year – I can picture it in my head (and on paper), what it should do and what the user interaction should look like, but I haven’t spent any time actually figuring out how to build the darn thing.
You see, I’m comfortable in C/C++/Perl/Python/x86 assembly (really), but I’ve never done any database or web-y development. Enter Stack Overflow – hopefully it will be a good place to learn about web programming.
I’ll update this blog with my progress once Stack Overflow goes live, wish me luck.
And Jeff: Give me a call when you decide to learn C, I taught it at Purdue for a few years back in grad school and really enjoyed teaching it – maybe you could trade me some .NET lessons for some C lessons. You check my post on pointers to get started. 🙂
The Death Of the Desktop
And no, this “death of the desktop” post is not about how mobile devices or the browser is taking over the world – it’s about taking a step back and rethinking how we actually use computers (desktop, mobile or otherwise), and then trying to take a more usable step forward.
Thanks to Chris Jones for writing about a very interesting talk by Aza Raskin:
Video: Away with Applications: The Death of the Desktop
You should check out Chris’s summary, and the video as well.
This is one of the few videos I’m glad I watched instead of just ripped to mp3 and listened to – a lot of visual stuff, well worth the time.
Data is more agile than code
Peter Norvig talks about the need for a startup company to go fast – and also in the right direction – at his Startup School 2008 talk.
“Sure you gotta go fast, but if you’re not getting feedback to figure out if you’re going in the right direction it doesn’t matter how fast you go.” (2:47 in the video.)
That advice can apply to both technology and the business sides of a company, but here Norvig focuses on the feedback necessary to make sure the technology you’re developing succeeds.
He suggests you can get this vital feedback by:
“Acquiring lots of data [and] running machine learning over it… The key here is that no matter how agile you are as coders, and I understand that you’re all great, data is going to be more agile than code. Because you’ve got to right the code yourself, but the data you can leverage… there’s an immense multiplying factor that way.”
I guess this Lisp/AI guru from Google knows a thing or two about using lots of data, eh?
He goes on to describe how Google has used machine learning over large data sets for their image search, text segmentation and Google Sets. It’s a great talk, I highly recommend it.
I like the idea of letting the data and algorithms do as much of the heavy lifting as possible – the knowledge I want to share with my users may already be in the data, I’ve just got to dig it out!
Knuth hates XP
In this recent interview, Donald Knuth says:
“Still, I hate to duck your questions even though I also hate to offend other people’s sensibilities—given that software methodology has always been akin to religion. With the caveat that there’s no reason anybody should care about the opinions of a computer scientist/mathematician like me regarding software development, let me just say that almost everything I’ve ever heard associated with the term “extreme programming” sounds like exactly the wrong way to go…with one exception. The exception is the idea of working in teams and reading each other’s code. That idea is crucial, and it might even mask out all the terrible aspects of extreme programming that alarm me.
I also must confess to a strong bias against the fashion for reusable code. To me, “re-editable code” is much, much better than an untouchable black box or toolkit. I could go on and on about this. If you’re totally convinced that reusable code is wonderful, I probably won’t be able to sway you anyway, but you’ll never convince me that reusable code isn’t mostly a menace.”
There are only a few people who can get away with saying that and actually have people listen to them – and Knuth is definitely one of them. I would love to hear him expand on the “terrible aspects of extreme programming.” If he had an email address I would ask him about it, but unfortunately he doesn’t.
Professional branding.
The Association for Computing Machinery (“ACM”) says this about themselves:
“ACM delivers resources that advance computing as a science and a profession. ACM provides the computing field’s premier Digital Library and serves its members and the computing profession with leading-edge publications, conferences, and career resources.”
If you check out their latest membership offer for students you’ll see that they offer a “FREE ACM Flip-Top Calculator (while supplies last)!”
Seriously? Did that actually sound like a good idea to anyone at the ACM? Is a lame calculator one of the leading-edge career resources they offer? Does that do anything but hurt ACM’s brand?
I had some other smart-alecky things to add here, but I think I’ll leave it at that.
Why bother with RSS?
(cut-n-pasted from my reply to a “Business of Software” forum question)
I resisted using an RSS reader for quite a while, mainly because it was “the new hotness” that I didn’t see any use for.
What made me start using it?
I read a fair number of websites, and I like to know when something new shows up. So I used to check each website every day and scan it for new content. Slashdot. Anything new? Yup, read a couple. Joel on Software. Anything new? No. Paul Graham’s rants. Anything new? No. Steve Yegge. Anything new? Yes, read it. You get the point.
The “load page – see if anything new” loop was getting tedious, especially since frequently there was nothing new to read, so loading the page was a waste of time.
Enter RSS. I chose NewsGator Online, subscribed to the websites/blogs I like, and *bam* – all the new content comes right to me, only one website (NewsGator) to load, no wasted time.
Well, unless you count the time I spend reading stuff on the web as wasted time, which might be accurate.
Funky Watches
Watches designed for hard core geeks:
Note to Dell: You are forcing me to waste your money.
I have a Dell LCD monitor, still under warranty. It has stuck pixels. A lot of them. I would like to get a replacement monitor.
I would like to get the replacement taken care of with the minimum hassle for either of us. A simple email with my customer #, perhaps. Or maybe a web form with the order #.
Should be easy, I figure. I figured wrong.
Dell’s website has email and online chat customer support, but they require a Service Tag Number. Standalone monitors (not purchased with a Dell system) do not have Service Tag Numbers. The “Where is my Service Tag Number?” link on Dell’s website doesn’t mention that standalone purchase LCDs don’t have the Service Tag Number. I had to search for it myself. So I was forced to call their 800 for support.
Dell: you forced me to waste your money.
I spent 43 minutes with Dell’s phone support people getting the replacement monitor arranged. That’s 43 minutes of Dell’s money. Probably not much if it’s just me, but I imagine I’m not the only customer with this kind of issue – especially since this is my 2nd Dell LCD return for stuck pixels. On the positive side their rep’s were pleasant.
Can someone from Dell please allow me to use a customer number or order number instead of the Service Tag Number to contact your support people? It’s cheaper for Dell – and faster for both of us. Win-win!
I won’t even charge for my idea.
Understanding C pointers: Part 1
As I said in “Understanding C pointers: Part 0,” I’m going to try to explain how C pointers work.
Let’s start with the basics. Here’s some simple C code:
int x = 23; int y = x;
You can think of each variable as a box which holds the value of that variable. So in this example we have 2 boxes, named “x” and “y”. After these two statements execute the “x” box contains 23, and the “y” box also contains 23. The picture looks like this:
Pretty straightforward stuff. If we add this code:
x = 17;
the pictures changes to look like this:
Nothing too fancy there.
Next example: let’s add a pointer into the mix.
int x = 23; int y = x; int * p = & x;
If the * or & in the above code scare you, please take a deep breath and relax. We’ll get through this, I promise. 🙂
“x” is a variable of type integer. So is “y”. The “int *” before p means that p is a variable of type “pointer to integer” otherwise known as an “integer pointer.” Nothing magical there. The “&” before “x” can be read as the “address of x,” or “the box named x.” Which means the pointer “p” points to the box named “x”.
As in the previous examples we have a box named “x” and another box named “y”. This example adds a pointer to an integer called “p”. You can think of this pointer as simply another box, named “p”. The value in the “p” box is a pointer to another box. For the boxes “x” and “y” we can say things like “x holds the number 23,” but for the box “p” we say “p holds a pointer to the box named “x””.
A picture is worth at least a few words:
Watch what happens when we add this next line to the example:
*p = 17;
The * before the “p” tells us we’re changing the value of what “p” points to. We are not changing the value of “p” itself. The number 17 gets put wherever the value of the “p” box point to – which is the “x” box in this case. After this code runs our picture looks like this:
Notice that “p” has not changed. “p” still points to box “x”. Only the value in the box that “p” was pointing to changed.
Let’s add a couple more lines to that example:
p = & y; *p = 42;
The first line changes the value in the box “p” to be a pointer to the box “y”. The 2nd line changes the value in the box that “p” points to be 42. The result looks like this:
Drawing these pictures may seem unnecessary, but I guarantee that drawing them will help you understand your code. Even if you understand pointers completely, when faced with a pointer-laden interview question it’s a good idea to draw your data structures and pointers. This way the interviewer can see how you’re thinking about the question, which is frequently more useful than simply getting the “right” answer.
Okay, that’s the basics. See – pointers aren’t that bad.
And it turns out that the way a computer actually implements variables/pointers is a lot like our simple “boxes” model. Tune in next time for more about that.