vote up 41 vote down star
35

We need a full-screen app that just counts down to the starting time of DevDays to put up on the huge screen at the beginning of the room.

You know, "DEVDAYS BEGINS IN 7:32" etc. counting down, or "DEVDAYS RESUMES..." to show during breaks.

This is helpful for making sure people are in their chairs in time to start.

I thought this would be an awesome opportunity for the community to showcase their programming talents and graphics talents. Go crazy with 3D, graphics, flying shark-jumping Joel, etc.

Rules:

  • Must run on typical Windows or Mac laptops.
  • App must take a command line argument with a time in 24-hour format and the string to display. For example:

    c:> myapp.exe 0900 "DevDays begins in %s"

    would count down to 9 am. The %s in the second argument should be replaced with the time remaining in whatever time format matches your design.

  • When the countdown is complete, fade smoothly to black. No silly fireworks; we're starting the conference.

  • We'll show different countdown apps in different cities and call out the programmer of each one; if you're planning to attend, when you post your submission, let me know what city you're going to.

  • You must submit full source code and compiled code. However, you will retain ownership of everything you submit in case you do some cool graphical screensaver type thing that you want to sell or whatever. We just want a license to use it once.

UPDATE: A zip file with high-res StackOverflow logos is here

flag
62  
flag as belongs on rent-a-coder? ;-) – Leon Bambrick Sep 5 at 5:21
3  
It's too bad this is the only question tagged give-me-the-codez but on SO there is stackoverflow.com/questions/tagged/… – dlamblin Sep 5 at 5:29
13  
I would be willing to donate 500 rep (on meta) to the first guy who does this with LOGO turtle graphics and this program actually gets used at one devdays venue. – balpha Sep 5 at 9:24
6  
Shouldn't it be "send me the codez plz"? – Michael Stum Sep 5 at 11:54
3  
A copy of a high-res version of the logo would be really useful. – DrJokepu Sep 5 at 19:28
4  
don't you people know that joel won't accept a counter unless it's written in c? – Darren Kopp Sep 8 at 16:18
Side question: any chance that DevDays might make it over to other, smaller European countries as well? :) – Vilx- Sep 8 at 18:18
Edited to add a link to a file with hi-res logos – Joel Spolsky Sep 9 at 0:45
Is it okay to use the .NET Framework? – Slapout Sep 9 at 2:27
It only works on Windows, I didn't write it, but I use it a lot - ZoomIt - technet.microsoft.com/en-us/sysinternals/… - has a very useful break timer a lot like the one you describe. – Ross Morrissey Sep 9 at 4:18
Does a web based application meet the requirements? Can GET parameters for a web page be deemed equivalent to command line parameters? Does "run on typical Windows or Mac laptops" mean compiled versions for both OSs are needed? or is this about hardware and a windows client app would be acceptable? – Matt Lacey Sep 9 at 8:32
1  
NO. We can't guarantee internet access at the podium. It must be a self-contained windows or mac app. – Joel Spolsky Sep 9 at 15:02
I'll stop trying to embed a twitterfall type element then. :( – Matt Lacey Sep 9 at 16:00
.NET apps are fine. – Joel Spolsky Sep 10 at 1:40
2  
Any deadlines for submissions? I'll be attending the London meeting, if that matters. Just had an epiphany about this : ) – Zárate Sep 12 at 5:11
show 4 more comments

19 Answers

vote up 16 vote down check

My attempt:

http://www.samonsoftware.com/?p=84

It is a desktop application that goes into fullscreen mode and presents a series of images.

There is a short video demonstration on that page.

A windows installer and source code zip are available, although I cannot provide source for the commercial components I have used.

If anyone has any problems running it please let me know via comments on my blog post. alt text

link|flag
1  
wow! everybody should check out that demo for the hilarious images. I'm going to accept this one temporarily just to pull it to the top so people check it out – Joel Spolsky Sep 10 at 22:18
4  
@Joel: What do you mean with "temporarily"? I'm pretty sure that can not be undone je je je : ) blog.stackoverflow.com/2009/01/… – Oscar Reyes Sep 10 at 23:34
36  
oops. i forgot that the bounty meant it's not undoable. JEFF!!!!!!!!!!!!!!!!!!!!! – Joel Spolsky Sep 11 at 0:18
I don't know I think if you accept an answer that's pretty much it :) – samhowley Sep 11 at 1:31
3  
wow. bounty fail. but i like the app! – Maxim Z. Sep 12 at 18:36
1  
I don't think Daniel is gonna be too happy. – gnostradamus Sep 13 at 17:43
1  
I think everyone is kidding around, in the end the one with the most votes will get the reward I'm sure. – samhowley Sep 13 at 22:29
Wonderful app. It'd be great if it "showed" the time with the : formatting added (ie, if you call it like: socountdown 1310 "whatever %s seconds" Then the display would be Whatever <#> seconds (13:10 hrs) As it is now, it's not clear whether the "hrs" part is the remaining time, or the time to start. Or, even better, let the caller specify the format of the full sentence socountdown 1310 "whatever %s seconds (time: %HH:%MM)" That'd make if even more useful for us non-english speaking people :P – JJarava Sep 21 at 11:06
vote up 62 vote down

Demo (Runs in browser):

Code that makes it conform to Joel's spec (a batch file):

start "" "http://sonic.net/~danlec/count/count_demo.cgi?http://stackoverflow.com/users#"%1" "%2


Alternately, if you want to run it manually, go to a stackoverflow users page (on any of the sites), and in the address bar put

javascript:document.location="#0058 Dev Days starts in...";
$.getScript("http://sonic.net/~danlec/count/count.js");

Where the 0058 Dev Days starts portion is the part that is supposed to be a command line parameter.

Notes

  • Don't run this script logged in as you!
    It shouldn't do anything bad, but for security's sake, you really shouldn't let an arbitrary script have access to your account.
  • Only supports times less that 99 minutes, so you'll probably have to edit the timeout.
  • I've only tested this in Chrome (!) Apparently it also works in newer versions of FireFox. (If it magically works in your browser too, thank jQuery)
  • It's a rush job, for demo only, so the code isn't beautiful and the error checking is non-existent
  • It uses jQuery! (which I'm still learning)
  • Probably looks best when run in full screen ( F11 )
  • Hopefully I'll see some of you at DevDays in San Francisco

    Demo

link|flag
Works also in Firefox (3.5) – Peter Smit Sep 5 at 8:13
FF 3.0, too. Looks cool! – balpha Sep 5 at 9:19
3  
Not Safari 4 on the Mac, though. But cool idea all the same! – robsoft Sep 5 at 11:46
1  
@robsoft Me too, you would think it would work in all WebKit browsers. – Isaac Waller Sep 5 at 22:12
Works in Safari 4, Mac OS X 10.5 for me. – gs Sep 8 at 16:25
Couldn't get it to work on Safari 4 or Chrome on Snow Leopard... Weird! – Rich Bradshaw Sep 8 at 16:39
Works great in IE8. – Massimo Sep 8 at 17:41
Me like zis! It looks cool. – Maxim Z. Sep 8 at 22:41
8  
I'm not able to get it working... – Jonathan Sampson Sep 9 at 2:12
4  
Ok, this is quite nice! One little bug though: if you happen to enter a time that's already in the past, the script then calculates a negative "time to start", and blows up on line 165 after failing to find a mapping for the "-" character (your example, specifying 58 minutes past midnight, was probably a bad choice if you wished to avoid this... 2358 would have been better). Might want to put in some simple validation for the parameter (if i'm passing 0058 at 2 minutes 'till midnight, i would expect it to assume i mean 0058 tomorrow rather than the one just shy of a day ago...) – Shog9 Sep 9 at 3:27
Chrome 3 ... nice work! – Scott Sep 9 at 4:36
vote up 53 vote down

Source, Windows .EXE and screenshot:

http://github.com/jedediah/devdays

(I'm not allowed to post an image or have more than one link, so you'll have to go there yourself)

This is 100% authentic 80x25 text mode so make sure your laptop and projector can do that. Usage matches your spec, except it doesn't fade out.

This was surprisingly difficult, especially for a Linux guy.

link|flag
Awesome. Looks great. – Jonathan Sampson Sep 11 at 13:28
This is my fav. – Brian Liang Sep 14 at 5:20
You could get a partial fade by switching off the FOREGROUND_INTENSITY flag. – Adam Rosenfield Sep 15 at 3:11
some projectors cannot do textmode - it might have been good to have a fake emulated textmode (say use directDraw or something?) – Chii Sep 22 at 12:51
I could probably make that happen if it turns out necessary but I would need some advance notice. Testing is a good idea here. – jedediah Sep 24 at 22:00
vote up 29 vote down

A little late but...

Shows the progression of time in both digital and analog - the stack grows over time. When no time is left, the stack grows beyond the screen.

I was planning on entering a Twitter feed onto this so that people could spam the wait screen. :-) If there is interest, I can add it.

Example screenshot

Download Here (Full Source)

link|flag
Associate your accounts in your user profile! – John Smithers Sep 12 at 18:23
Thanks for the suggestion, but my accounts are associated. It must be a rep thing. I can't post images nor links! Please see praeclarum.org/ddtimer/dd5.png praeclarum.org/ddtimer/dd8.png – Frank Krueger Sep 12 at 18:36
1  
If you don't get a rep boost of 100 rep after associating your profiles, email the team. – John Smithers Sep 12 at 18:45
1  
Wow - coolest yet! – Isaac Waller Sep 13 at 3:53
1  
This is rly cool! – Maxim Z. Sep 13 at 22:21
2  
I love the idea of a twitter feed incorporated into the display. – Joel Spolsky Sep 15 at 2:24
vote up 23 vote down

UPDATED! - AGAIN!

Here's my entry:

My Entry

Version 3: Source - Compiled binaries - Installer

Update: Yes it deliberately looks like the website. The aim was to maintain continuity and brand identity.

What the above image doesn't show is that the black and white city images scroll in the background and the sponsor images slowly fade in and out - showing one at a time. Also when it starts the different screen elements slide and/or fade into position. Then, when the timer runs out they slide back out as the screen fades to black.

Update: The tweets displayed at the side of the screen slide down as new ones are retrieved from the server. The intention is to imitate the way that speakers are listed on the website. Tweets are searched for based on a term specified in the config file. The default term is '#DevDays'.

Video of animation (original version - without tweets) at: http://www.youtube.com/watch?v=mWrCRRrGCHk

  • It's written in WPF and requires .NET 3.5 SP1
  • It looks best at a resolution of 1280x1024 but will work at higher res. Not all will be visible at a lower res.
  • It runs fine on a dodgy old laptop running XP and also on a slightly newer laptop running Win7.
  • It takes 2 command line parameters e.g. 'DevDaysCountDown.exe 09:00 "DevDays returns %s"' (the '%s' must be included and it's that which is replaced by the 'in X ...'). If either is missing or invalid it defaults to 5 minutes in the future and the message 'DevDays resumes %s'
  • Update: have added greater tolerance for parsing of command line parameters
  • Update: if there is a problem parsing command line parameters, details are displayed at the very top left of the screen when it is first displayed
  • It fades to black when timer reaches zero
  • Exes and source linked above and on my blog.
  • Yes all the images were originally ripped off from the website, but have been tinkered with slightly. - If this has upset someones copyright I'm very sorry.
  • I'm going to be at the London event - should people find this popular. ;)
  • Update: If connection to the internet is not available, or there are no new tweets to display, various programming related quotes are displayed instead. Including some from Joel & Jeff.
  • Update: Twitter integration is done with TweetSharp. Which I've found to be excellent, BTW.

Version 3.0 changes:

  • Optimized for screen resolution of 1024x768
  • Fixed issue with calculating displayed tweet display height
  • Removed hardcoding of sponsor images - they're now loaded from a 'Sponsors' folder on startup. This is to enable easily adding new ones.
  • Removed hardcoding of tweets displayed when nothing new tweeted or no internet connection available. - These are now loaded from an XML file. This allows customisation of the displayed messages.
  • Defaulted start time to countdown to 9am if started before then. If started after then the timer defaults to 5 minutes. (This only applies if no cmdline parameters passed.)
  • Fixed the order that tweets are loaded so oldest are shown first.
  • Fixed positioning of twitter profile images.
  • Also a few other minor fixes.

This countdown has been selected for the Boston DevDays (and possibly all)

link|flag
4  
I really like this one, because it uses graphics from the conference. I also really, really like the twitterfall idea... I think it would be way neat to have people tweeting things that show up there. I recently learned that we are supposed to have internet access at the podium but it may be spotty (the typical 900 people all on one WiFi router you get at conferences) – Joel Spolsky Sep 15 at 3:13
In that case - I'll put it in. – Matt Lacey Sep 15 at 7:52
I like this one, too! – Peter Stegnar Sep 15 at 18:47
Very slick, I like it. – Wayne Koorts Sep 16 at 8:06
Bug report for you. It seems to say that DevDays begins in 4 minutes no matter what time I put in. – Joel Spolsky Sep 19 at 4:22
It defaults to 5 minutes (4 by the time it is displayed - as it rounds down on minutes) if there are any command line issues. Just tested the installer version on my work machine and the following at the command line worked: >DevDaysCountDown.exe 14:00 "resuming %s" - Be sure to include the colon between hours and minutes - Be sure to include the %s in the quote enclosed second parameter I'll add some kind of notification on command line parsing issues - I originally took this out after testing. Will try and post the twitterfall version tonight - I've been ill the last few days. – Matt Lacey Sep 22 at 12:47
1  
Nice app! You might be interested to know that your countdown is being used at the Boston DevDays! People seem to be getting a big kick out of the twitter integration :-) – Kyle Cronin Oct 7 at 17:05
@Kyle thanks for the photo. Yes, Joel had told me he was going to use it (and possibly some others too). – Matt Lacey Oct 8 at 13:46
For those who have attended DevDays and saw Joel's FogBUGZ/Kiln demo may be (vaguely) inerested to know that this app was really developed with the help of FogBUGZ and the source is in a mercurial repository. But that wasn't why it was chosen. ;) – Matt Lacey Oct 29 at 20:34
vote up 13 vote down

PhantomTypist and I decided we'd give it a shot. We had the idea of a binary clock that would display images of the various StackOverflow team members.

Screencap One

As the clock ticks, the stackoverflow logo adds items to the stack, the stackoverflow heads move around the binary clock, and the sponsor logo in the top right changes occasionally.

When the timer reaches zero, we display "Six to Eight Weeks" and fade out.

Screencap Two

To give the program a try, grab one of the following:

To run a demo, just run the .exe and it'll fill in some default parameters. To give it a custom time and message, run from commandline like Joel said above:

DevDaysClock 0900 "DevDays Starts In %s"

Anxiously awaiting your feedback! :-D See you all at DevDays in Boston!

-- PhantomTypist and Pandincus

link|flag
If you want to exit the application prematurely, hit the escape key or Alt+F4. – PhantomTypist Sep 13 at 3:59
vote up 13 vote down

I hope I'm not too late. My program does some crazy things with StackOverflow logo.

alt screenshot

Sources and program are here.

Use F11 or Esc to toggle FullScreen.

Regretably, I can't make it to any DevDays event this year. Hopefully at least my program gets to participate.

EDIT: Version update: now abusing even more logos.

link|flag
1  
This is awesome! I think every time the stack overflows, you should hear "C-C-C-COMBO BREAKER!" (youtube.com/watch?v=XERZywq9o_g) (j/k) – Pandincus Sep 14 at 12:02
1  
This is great. Brilliant use of the logos. – Z with a Z Sep 15 at 4:19
You should have the SF logo come back at you with this in mind: meta.stackoverflow.com/questions/16684/… – random Sep 24 at 12:28
vote up 8 vote down

My entry: [Source] [Mac OS X binaries] [Linux x86-64 binaries]

Screenshot:

screenshot

It's cross-platform to anything that supports SDL; right now, though, I've only built executables so far for Mac OS X and Linux. I have also built Windows binaries with Cygwin, but I can't distribute them since my license is not compatible with Cygwin's (GPL). The Windows build also doesn't seem to work on my computer -- all I get is a black window -- but I can't get any SDL samples to work, so it may just be my computer.

Any feedback is appreciated. In particular, I'd like to hear if anyone gets this working on Windows.

You may have to fudge with the Makefile directories to get it to build (assuming you have libSDL, libSDL_ttf, and libpng installed).

Usage: ./socountdown [options] TIME DISPLAY-STRING

Displays the text DISPLAY-STRING until the specified time TIME is reached.
TIME must be a 4-digit 24-hour time (e.g. 1500 for 3:00pm).  If
DISPLAY-STRING contains the string %s, it is replaced by a timer
that counts down the time remaining until TIME.

Options:
  -h, --help            Display this information
  -w, --windowed        Run in windowed mode (default fullscreen)
  -s, --size=SIZE       Use SIZE for window size (e.g. 640x480)
  -f, --font=FONT       Use FONT for text font (TTF filename)
  -z, --font-size=SIZE  Use font size of SIZE

See you all in Boston!

link|flag
vote up 6 vote down

Try out my mini-webapp called Alarmd.

It can hook into a Google Calendar and countdown to each individual calendar item. Here's a demo:

  1. Click the options button in the bottom right.
  2. Choose "Google Calendar" from the Alarm Types.
  3. I set up a demo calendar for this example, add "ikk9hq6svvkdviimd74nhvks88@group.calendar.google.com" as your Google Calendar ID.
  4. Click the "Clock Format" accordion tab.
  5. Check the "Count Down" checkbox.
  6. Click the "Save Options" button.

Try out the "Readable" clock format too, it's a bit more human friendly. It will say things like "4 days", "4 hours", or "15 minutes", etc. All settings are saved locally into a Cookie, in case you have to refresh the page.

Also note the project is available as open source on Google Code.

I welcome any feedback or suggestions.

Zach

link|flag
Okay, that's pretty cool. Cool enough that I'm going to bookmark it. – Mark Sep 9 at 6:36
1  
Amazing. Perhaps you should just remove the description here at meta. When I fist read it I went like: "mmmhh I don't want to do all that ..." I gave it a try and is rather easy to use. Here's an screenshot: img30.imageshack.us/img30/9757/… – Oscar Reyes Sep 11 at 0:56
vote up 6 vote down

Here is my late addition: DevDaysGLTimer

Executable (Windows)

Source Code

screen shot 1

screen shot 2

When I saw the announcement for this I got an idea to incorporate the StackOverflow logo with some animation. So, I dusted off some old OpenGL code and went to work. Here is the result.

Everything is fully 3D and the view can be rotated and translated as desired. You can view the timer in either a perspective or orthographic view. When you quit, the view is saved (to orientation.ini) and will be loaded next time.

Every color in the timer is configurable, including background and fade colors, and the message font is also modifiable (see config.ini).

The control keys while running are:

   i = toggle info
   w = toggle wireframe mode 
   g = toggle grid
   m = toggle mouse control (left: rotate, middle: translate, right: zoom)
   r = toggle rotate display (auto rotate)
   p = toggle perspective/orthographic view 
   c = center display 
   + = add one minute   
   - = subtract one minute 
 ESC = quit

Update: Made a very small edit to the list iteration to properly erase elements from the list after they are popped from the stack.

link|flag
vote up 5 vote down

Version in glorious Tcl/Tk 8.5.

Update: check fixed executable.

Supports:

  • Fullscreen and windowed modes.
  • Selectable:
    • font
    • background/foreground colors
  • Windows, FreeBSD and Linux (untested), MacOS (untested).
  • Running an external app after the end of the countdown.
  • Fading to any background color, not only black.
  • Any date in the future.

Windows: so-countdown.exe (file is relatively big (~ 1.4 MB), because it is a Tcl Starpack and contains full embedded Tcl/Tk interpreter).

Source code: so-countdown-0.2.tar.gz.

alt text

% ./so-countdown.tcl 
so-countdown [options] deadline message

deadline    A string of "YYYYMMDD,HHMM" or "HHMM" or "SS".
message     Your message, like "DevDays begins in %s", where %s will
            be replaced with the remaining time.

Options:
 -font value          another font <Times>
 -b                   use bold font
 -bg value            background color <black>
 -fg value            foreground color <white>
 -fs                  fullscreen mode
 -o value             offset (in pixels) from the sides <10>
 -v                   print debug messages
 -ad value            message to print after a deadline instead of fading <>
 -e value             command to execute after a deadline <>
 -quit value          seconds to wait before exit after a deadline <0>
 -help                Print this message
 -?                   Print this message

For example:

  • To change colors and font:

    > ./so-countdown.exe -fg yellow -bg #0000ff -font Verdana 10 "Left: %s"

  • 2010 New Year in fullscreen mode:

    > ./so-countdown.exe -- -fs 20100101,0000 "The New Year: %s"

  • Play some music after a deadline:

    % ./so-countdown.tcl -- -e 'mplayer /opt/samba/tmp/audio/2.wav' 10 "Remaining %s ..."

  • Quit program in 15 seconds after a deadline:

    % ./so-countdown.tcl -quit 15 10 "Left: %s"

Keybindings:

Esc, q, <Ctrl-C> -- exit application. f -- toggle fullscreen mode.

link|flag
The freewrapped executable does not run for me. It can't find the cmdline package. /tmp/so-countdown/{pkgIndex.tcl,cmdline.tcl} do not appear to be present in the wrapped application. I did run the unwrapped version and like it a lot. – erichui Sep 10 at 4:15
vote up 4 vote down

My submission: http://chuchuva.com/software/countdown/

screenshot

Update: Version 1.2 fixes flickering.

link|flag
4  
Two feedbacks: (1) make it prettier! Needs pizazz! (2) Learn about double buffering. This app flashes like crazy. – Joel Spolsky Sep 9 at 2:15
12  
Needs pizazz? You have seen FogBugz right Joel? :-P – GollyJer Sep 9 at 2:34
vote up 4 vote down

Here's my entry using the "simplest thing that could possible work" approach ( read, the code is a mess )

Click to see the video

Technical details:

  • Displays entries from the SO-Blog so attendees cat get nostalgic while they wait for the event to start.
  • It is self containing
  • The countdown is just that no fireworks.

Needs:

  • Add fade to black at the end
  • Smooth transition in the pages.
  • A serious code cleanup before it can be delivered

StackOverflow question used.

link|flag
vote up 3 vote down

I have created my version of the Stack Overflow DevDay Countdown app. I have used WPF and .NET 3.5. The speciality of this solution is custom Stack Overflow digits. :)

I have yet to implement a fade-out feature.

demo screenshot

Short manual:

  • You can find exe in "PeterStegnarDevDaysCountdown\WPF_StackoverflowCountDown\bin\Debug"
  • Start the app with the following parameters, for example:

    0900 "DevDays begins in %s"

  • Just hit Esc key to exit.

Source code and binaries.

More on StegLog: Countdown app for DevDays

I will attend an Amsterdam SO DevDays.

link|flag
Seem to be conflicting with your edits. – random Sep 13 at 11:29
Yeah, but now is OK. :) – Peter Stegnar Sep 13 at 11:36
vote up 3 vote down

Here's my own attempt (I didn't see this until a few days ago):

Countdown.jar

It's very plain. (I would say 'elegant'.) I've not tested it anywhere but on my own MacBook. The source is included in the archive. This is also my first brush with Java's GUI toolkits.

link|flag
I have compiled it and try it on XP. I upload the video here: vimeo.com/6635175 I hope you don't mind. If you do, let me know so I can delete it. – Oscar Reyes Sep 18 at 1:47
vote up 0 vote down

Instead of reinventing the wheel, you could use this downloadable JavaScript application: http://aslakhellesoy.com/planning%5Fpoker%5Ftimer/

link|flag
1  
Reinventing the wheel is SO's business model! – John Smithers Sep 10 at 17:24
4  
that color scheme is a crime against eyeballs – Jeff Atwood Sep 11 at 2:10
Jeff, your are not in the position to complain about color schemes! You know glasshouses and stones... – John Smithers Sep 11 at 6:51
vote up 0 vote down

I've probably missed the deadline, but this took a bit of research and, having a couple of small kids and a job, I don't have much spare time to do this kind of thing. Download my entry from here. It's a 16bit DOS COM file. I've tested it with the WinXP command prompt, I won't make any assurances about other OSes/DOS emulators. To start the program:

count hh:mm message

where hh:mm is the 24 hour time format and message consists of alpha numeric text with %s where the time to go is.

For those of us old enough to remember, it should bring on a bit of nostalgia.

Skizz

EDIT: Use this assembler to build the application. Command line is:-

a86 count.asm data.asm

EDIT2: Yeah, it really needs the voice too.

link|flag
An example: count 09:00 Dev days begin in %s – Skizz Oct 3 at 23:06
I can't get it to work with DosBox 0.73 on Mac OS X v10.4.11, it just throws me back to the C:\> prompt no matter what arguments I give it. – Adam Rosenfield Oct 4 at 6:45
You need an emulator that handles VGA graphics at the hardware port level. I don't think DosBox does that (but what do I know). There are no oddball DOS calls in there. – Skizz Oct 4 at 14:52
vote up -1 vote down

If you don't want to tie up a computer with this, it could be interesting to give the job to an iPod. An iPod app or plain old slideshow (no coding required) might be able to handle the job (though you'd have to generate the images...).

I don't have time to take this idea any farther so I'm just throwing it out there...

link|flag
vote up -3 vote down

Joel, what is the name of the font used in the stack overflow logo?

link|flag

Your Answer

Get an OpenID

Not the answer you're looking for? Browse other questions tagged or ask your own question.