Archive for July, 2008
Easy Background Tasks in ASP.NET
As I work on the badge implementation for Stack Overflow, I needed a way to call the code that detects and awards the badges out of band. Traditionally this is done by something like cron or scheduled tasks. I’d rather have the code stay inside our current codebase, though.
I asked on Twitter and got some good responses, everything from “write a service” to “use threads”. I also got a link to Simulate a Windows Service using ASP.NET to run scheduled jobs. Now this is interesting — it’s just simple enough to work:
- At startup, add an item to the
HttpRuntime.Cachewith a fixed expiration. - When cache item expires, do your work, such as
WebRequestor what have you. - Re-add the item to the cache with a fixed expiration.
The code is quite simple, really:
private static CacheItemRemovedCallback OnCacheRemove = null;
protected void Application_Start(object sender, EventArgs e)
{
AddTask("DoStuff", 60);
}
private void AddTask(string name, int seconds)
{
OnCacheRemove = new CacheItemRemovedCallback(CacheItemRemoved);
HttpRuntime.Cache.Insert(name, seconds, null,
DateTime.Now.AddSeconds(seconds), Cache.NoSlidingExpiration,
CacheItemPriority.NotRemovable, OnCacheRemove);
}
public void CacheItemRemoved(string k, object v, CacheItemRemovedReason r)
{
// do stuff here if it matches our taskname, like WebRequest
// re-add our task so it recurs
AddTask(k, Convert.ToInt32(v));
}
Works well in my testing; badges are awarded every 60 seconds like clockwork for all users.
Podcast #14
This is the fourteenth episode of the StackOverflow podcast, wherein Joel and Jeff discuss the following:
- This week’s Rock Band downloadable content is epic — the best of the Who. Pointless podcast trivia: the Who song Baba O’Reily is a concatenation of two influences, one philosophical, the other musical: Meher Baba and Terry Riley. “They’re all wasted!“
- On Joel’s post Don’t Hide or Disable Menu Items. Joel considers this post an experiment in minimalism, to see if it is possible to write an extremely short piece that still works. I viewed it as a mistake; surely there’s something between three tiny paragraphs and 5,000 words.
- There should be a common UI metaphor for things that are disabled that provides a standard bit of interface to indicate why something is disabled. The specific situation that Joel ran into that motivated his post on this was the fact that the accelerated playback mode of Windows Media Player was disabled for Joel.
- I believe that comments are an important avenue for clarification and course correction in blogs, which is why they are so essential. Is a blog without comments even a blog at all? It is what provides the conversational tone that makes them work.
- Joel feels conversational nature is “leading to the demise of blogs”. People are relying on the conversation to complete the idea, rather than writing and researching the topic and presenting it as a coherent whole. It’s more like hanging out with your friends and saying the first thing that pops into your head. Joel draws comparisons to the eternal September.
- So much of programming is not easily measurable or quantifiable; it is explained by anecdote. I believe it is the reader’s job to read critically and question viewpoints — and demand some form of supporting data, beyond just one example or a few anecdotes. Don’t let the most persuasive argument win; let the best data win.
- Joel brings up a great point — you should avoid weasel words in your writing! Or at least know when you’re using them. And try to stop.
- On making decisions based on data: I believe you should automatically measure the number of queries and the time they take in your software. Based on that data, decide how much to normalize your database.
- Joel says the older he gets, the less he knows — citing a few of his earlier posts. He plans to switch to story driven writing, free of agenda or morals. Let the reader interpret whatever message he or she wants into it.
- Perhaps the ideal workspace is re-configurable by the group that works in it — Microsoft’s new research building might be an example of this, or the the Patterns & Practices agile workspace.
- A discussion on the perils of object relational mapping — it’s not called the Vietnam of Computer Science for nothing. We use LINQ to SQL on Stack Overflow and I have been quite happy with LINQ to SQL because it is 1) flexible 2) very lightweight and 3) built into the language as a fundamental construct, not bolted on in bunch of code generation or classes.
- Thanks again to everyone contributing wiki transcriptions!
We also answered the following listener questions:
- Paul D. Waite: “As a web developer going from JavaScript and Python to Objective-C, where should I start learning C?”
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.
Stack Overflow Badge Feedback
Are you familiar with the “stinking badges” quote? It’s from the 1948 movie The Treasure of the Sierra Madre. Here’s the actual clip from the movie:
As I mentioned in Podcast #13 (and probably earlier), Stack Overflow will feature a system of badges. Hopefully the non-stinking type. These badges are based on my admiration — and addiction to — the Xbox 360 Achievements system. Stack Overflow badges fall into three broad categories:
- Bronze badges. Bronze badges are awarded for basic use of the Stack Overflow site; they encourage people to use all the typical, routine functions of the site: posting questions, answering questions, voting up or down, tagging posts, editing, filling out your user profile, and so forth. Bronze badges are relatively easy to get and provide immediate positive feedback to new users.
- Silver badges. Silver badges are for experienced users who regularly use the Stack Overflow site. They encourage continued participation and returning to the site by awarding longer term goals. Silver badges are uncommon, but definitely attainable if you’re interested enough.
- Gold badges. Gold badges are for the hardcore and the completionists. They reward the most difficult feats; you’ll have to not only participate but be skilled and knowledable about topics to earn these. Gold badges are something of an accomplishment.
Bear in mind that badges are (almost) never awarded arbitrarily by people; they are always earned by achieving a measurable numeric goal queried out of the site database. They are based on data! You don’t have to worry about currying a moderator or another user’s favors to earn badges; just use the site like you normally would, and the site itself will bestow these badges upon you. That said, badges are supposed to be fun, too!
Here’s our current alpha list of badges:

Descriptions follow:
| Gold | Founder | Founding member of stackoverflow.com |
| Gold | Hacker | Thanks for contributing to stackoverflow.com in an unconventional way |
| Gold | Beta | Beta tested stackoverflow.com |
| Bronze | Teacher | Answered first question |
| Bronze | Student | Asked first question |
| Bronze | Editor | First edit |
| Bronze | Enforcer | First rollback |
| Bronze | Organizer | First retag |
| Bronze | Supporter | First up vote |
| Bronze | Critic | First down vote |
| Bronze | Citizen Patrol | First flagged post |
| Silver | Librarian | Retagged 100 questions |
| Silver | Strunk & White | Edited 100 entries |
| Silver | Yearling | Active member for a year |
| Bronze | Speedy | Answered a question within 2 minutes of posting |
| Silver | Generalist | Active in many different tags |
| Silver | Specialist | Highly active within in a specific tag |
| Bronze | Necromancer | Answered a question more than a year later |
| Silver | Guru | Judged best answer by the asker |
| Silver | Enlightened | First answer was also judged best answer by the asker |
| Bronze | Nice Question | Question voted up more than 10 times |
| Silver | Good Question | Question voted up more than 25 times |
| Gold | Great Question | Question voted up more than 100 times |
| Bronze | Nice Answer | Answer voted up more than 10 times |
| Silver | Good Answer | Answer voted up more than 25 times |
| Gold | Great Answer | Answer voted up more than 100 times |
| Bronze | Interesting Question | Asked a question with 1,000 views |
| Silver | Fascinating Question | Asked a question with 2,500 views |
| Gold | FAQ Worthy Question | Asked a question with 10,000 views |
Most, but not all, badges can be awarded multiple times.
This list is not by any means final. Our goal with the badges is to encourage people to a) have fun and b) use the Stack Overflow website in ways that make sense. So I want to avoid badges that encourage “gaming the system” behavior in favor of badges that encourage people to “do the right thing”.
What are your thoughts on the current, tentative list of badges? Keeping in mind the goals I’ve outlined, what badges would you like to see us implement — and please, try to stick to badges based on metrics we can actually query back out of our database. :)
Podcast #13
This is the thirteenth episode of the StackOverflow podcast, wherein Joel and Jeff discuss the following:
- Joel Spolsky still claims he is a New Zealander — or at least his father was — though I refuse to believe anything that is not in Joel’s Wikipedia entry can possibly be true. More evidence: FogBugz uses the Kiwi as its logo.
- I completely stole Yuval Tobias’ audio recording question about Spartan Programming and posted it on my blog. My apologies, but it’s a great topic, and I couldn’t resist. You may also appreciate Steve Yegge’s post Portrait of a Noob, as it covers similar ground.
- Marco Arment was kind enough, in My Lyrics Are Bottomless, to expand on his earlier criticism. Marco, I can’t bring myself to disagree with a fellow fan of the best two-man novelty band on the planet. I’d love to involve you in the private beta so we can benefit from your advice once you’ve experienced the code in action.
- Joel says that ASP.NET is like driving a Lexus, and PHP is like riding a bicycle. Note: please direct all subsequent hate mails to Mr. Joel Spolsky, c/o Fog Creek Software, NY, NY.
- The original schedule for Stack Overflow had us going to the private beta this month (July). Based on the current progress, I believe we need 2 extra weeks to implement editing, and that’s an essential part of the system. The key pieces need to be in place to get meaningful feedback in beta, so even if it slips a bit into August, the beta will be more useful.
- Stack Overflow will implement an Xbox 360 like Achievement system tied to your account. Our “Badges” system fulfills three roles: bronze badges encourage people to try all the different functions in the system, silver badges encourages continued participation, while completionists and hardcore users can strive to get the gold badges. All of this is completely optional, of course, but it is permanently visible on your Stack Overflow profile.
- We will also have a reputation system, which is a simple numeric score attached to your profile. It’s based on the number of upmods your questions and answers get. It bothers us that on many voting based sites, a downmod completely cancels out an upmod. On Stack Overflow, an upmod will be worth twice as much as a downmod.
- We hooked up CruiseControl.NET on our project, so every checkin results in a build, unit testing, and deployment to the server. We also get email notifications of what changed and whether the build broke or not.
- Joel’s classic 2000 article The Joel Test. How does your team fare on these 12 points? If you’re interviewing for a job, does that company pass The Joel Test? We also consider why unit tests aren’t included in Joel’s list, and whether they should be added.
- What version number is your website? Should websites have a version number? Our website version number will be synchronized with the Subversion revision number, so we can be sure what version we’re running.
- A discussion of Charles Petzold’s fantastic new book, The Annotated Turing. I cannot recommend this book highly enough; Petzold really makes the history and context of Turing and his seminal paper come alive. There’s also a Broadway play Breaking The Code based on Turing’s life.
- Joel has a new book, More Joel on Software. Joel shares his thoughts on the merits and pitfalls of turning your blog into a book.
- Joel decries the groupthink of Silicon Valley, and the flight from startup to startup. Joel thinks you can have a successful, original startup anywhere on the globe. You may want to maintain a US office, however.
- The principle of progressive enhancement is why AJAX is more web friendly, whereas the “rounded rectangle in a browser” model of Silverlight and Flash isn’t. Embrace and extend! There are a number of fairly mature JavaScript API libraries out there now, like jQuery, Dojo, and scriptaculous.
- Yahoo has some outstanding resources for web developers — make sure you check out the Yahoo Developer Network.
- If you live in the New York City area, Fog Creek Software is having an open house July 17th at 5 PM. It is open to all — please attend if you are in the area!
We also answered the following listener questions:
- Isaac Moses: “How will you get people who know stuff to keep coming back to your site and answer questions?”
- Nicholas Kavadias: “Do you have advice for anyone who wants to get involved in a tech startup that’s not in Silicon Valley?”
- Stephen Bohlen: “Don’t AJAX approaches have a lot of the same problems as Flash and Silverlight?”
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.
Podcast #12
This is the twelfth episode of the Stack Overflow podcast, wherein Joel and Jeff discuss the following:
- The difficulty of working on an airplane, even with an ultraportable laptop. I use the Dell XPS M1330, which I love, but it’s still marginal on an airplane.
- It’s not quite version control, but why doesn’t our IDE automatically create lightweight versions every time we save?
- Joel discovers the wide world of undervolting, which can dramatically reduce the power usage (and thus heat generation) of the Intel CPU inside the Macbook Air — which is notorious for overheating. The program is coolbook; look into it if you have a Macbook Air.
- Marco Arment provides this sage bit of advice: Don’t let Jeff Atwood lead your web project. Too late! I try to avoid becoming the web equivalent of Usenet’s James Parry (kibo), the original egosurfer, by responding to every single post that includes my name. But it does give me an opportunity to reply via the podcast using an audio clip from my very favorite two man novelty band, Flight of the Conchords.
- Stack Overflow is meant to replace some books, but by no means all of them. We love books! We spend the rest of the episode discussing Joel’s Fog Creek Software Management Training Program reading list. It is a fantastic list, filled with excellent reads that will broaden and inspire you as a software developer — or software entrepreneur.
- I would be remiss if I didn’t mention my favorite technical book title of all time: The Difference Between God and Larry Ellison: God Doesn’t Think He’s Larry Ellison.
- It’s not a book, exactly, but I highly recommend the 2001 documentary Startup.com which provides a sometimes disturbing look into the hysteria at the height of the original dot-com era.
- If you only read one book from this list, make it Peopleware: Productive Projects and Teams. And if you like that, walk the list of Demarco and Lister books and read a few more!
- I have read Robert X. Cringely for years. I love his older book Accidental Empires and the related three part video, Triumph of the Nerds. I was disturbed to find out from Joel that there is more than one Robert X. Cringely these days.
- You own a copy of How to Win Friends & Influence People — right? If not, why not? This is not a sleazy, ugly book like The Game. It’s a timeless classic, as relevant today as it was over fifty years ago when it was originally written.
- Don’t have time to listen to all that jibba-jabba? Here is Joel’s short list:
- Peopleware: Productive Projects and Teams
- Don’t Make Me Think: A Common Sense Approach to Web Usability
- The Non-Designer’s Design Book
- Facts and Fallacies of Software Engineering
- Secrets of Consulting: A Guide to Giving and Getting Advice Successfully
- Influence: The Psychology of Persuasion
- Getting to Yes: Negotiating Agreement Without Giving In
- How to Win Friends & Influence People
- Remember, most programmers don’t read books — but you should!
There were no listener questions this week. Please send in your questions — the more controversial, the better!
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.





Subscribe via RSS


