Tagged Questions
The tag itself says it all. Questions under this tag are supposed to be amusing and enjoyable.
286
votes
34answers
69k views
Simple proof that GUID is not unique
I'd like to prove that a GUID is not unique in a simple test program.
I expected the following code to run for hours, but it's not working. How can I make it work?
BigInteger begin = new ...
173
votes
112answers
40k views
What was the strangest coding standard rule that you were forced to follow? [closed]
When I asked this question I got almost always a definite yes you should have coding standards.
What was the strangest coding standard rule that you were ever forced to follow?
And by strangest I ...
160
votes
131answers
22k views
Stack overflow code golf [closed]
To commemorate the public launch of Stack Overflow, what's the shortest code to cause a stack overflow? Any language welcome.
ETA: Just to be clear on this question, seeing as I'm an occasional ...
122
votes
20answers
3k views
Help building a website using punched cards?
My punched card looks like this:
* * * * *
* * * *
* * *
* * * *
* * * * *
* * * *
My website ...
105
votes
42answers
9k views
What is the most ridiculous pessimization you've seen? [closed]
We all know that premature optimization is the root of all evil because it leads to unreadable/unmaintainable code. Even worse is pessimization, when someone implements an "optimization" because they ...
95
votes
17answers
12k views
Where can you find fun/educational programming challenges? [closed]
I've searched around for different challenge sites, and most of them seem to be geared towards difficulty in problem solving logically, rather than trying to use your language of choice to do ...
88
votes
69answers
8k views
What is your best pseudo-code phrase? [closed]
Do you have any clever pseudo-code phrases? Maybe a common phrase that has analogous pseudo-code? What's your best one?
For example, one I've seen, from bash.org:
A programmer started to cuss
...
81
votes
14answers
4k views
Code Golf: Playing Tetris [closed]
The basics:
Consider the following tetrominoes and empty playing field:
0123456789
I O Z T L S J [ ]
...
80
votes
62answers
3k views
What code should I put on our softball Jerseys? [closed]
I work at a small company full of software Nerds. Our wives have decided to put a Co-Ed softball team together called "The Nerds", rightfully so. One of the wives happens to be a Graphical Designer, ...
80
votes
34answers
5k views
Favorite online lectures and presentations
What are your favorite online lectures, presentations and talks?
A few rules:
Must be programming or software related.
try to keep this non-academic. There are many online academic lectures, but ...
61
votes
78answers
7k views
What is the most useful script you've written for everyday life? [closed]
Just wondering what little scripts/programs people here have written that helps one with his or her everyday life (aka not work related).
Anything goes, groundbreaking or not. For me right now, it's ...
61
votes
63answers
7k views
What is the funniest bug you've ever experienced? [closed]
I remember testing a geographical data normalizer written in Java that had concurrency problems. So, when you tried to normalize a city (say "Rome") and another guy did that too (say "New york"), you ...
57
votes
40answers
4k views
What is the best or most interesting use of Extension Methods you've seen? [closed]
I'm starting to really love extension methods... I was wondering if anyone her has stumbled upon one that really blew their mind, or just found clever.
An example I wrote today:
Edited due to other ...
54
votes
132answers
8k views
Funny or weird error messages from a development environment/application [closed]
What is the funniest or weirdest error message you've got from a development environment/application?
For example:
Catastrophic failure
'null' is null or not an object
50
votes
18answers
49k views
How to come up with a fun project name? [closed]
I was thinking, that all of my projects have boring names. For example, if making a math library, I'd call it math. Sometimes, I would add a prefix with my initials, so it'd become pmmath or ...
49
votes
29answers
4k views
Code golf: Digital clock
Possible Duplicate:
Code Golf: Seven Segments
The task: Write the smallest possible program (least number of characters) that takes input in the hh:mm format and outputs this as a digital ...
48
votes
16answers
3k views
Code Golf: Connecting the dots
You may remember these drawings from when you were a child, but now it's time to let the computer draw them (in full ascii splendour). Have fun!
Description:
The input are multiple lines (terminated ...
47
votes
49answers
10k views
What is the best commit message you have ever encountered? [closed]
Following this topic, what is the best (as in witty and/or funny) commit message you have ever encountered?
For example, here's the message for a commit I made a few minutes ago:
This change ...
46
votes
23answers
3k views
Code Golf: Triforce
This is inspired by/taken from this thread: http://www.allegro.cc/forums/thread/603383
The Problem
Assume the user gives you a numeric input ranging from 1 to 7. Input should be taken from the ...
44
votes
3answers
3k views
How does today's (Jules Verne) Google's Doodle work?
I am sure many of you have already checked on today's (2011-02-08) Google's doodle (link to article on CNN if doodle changes). It was awesome and I tried figuring out about its implementation in ...
40
votes
21answers
6k views
What language has the longest “Hello world” program?
In most scripting languages, a "Hello world!" application is very short:
print "Hello world"
In C++, it is a little more complicated, requiring at least 46 non-whitespace characters:
#include ...
39
votes
22answers
3k views
Amazing programming achievements [closed]
I recently found this article about how some guy managed to write a super mario game in just 14k of javascript code. Ok, it's not a full game, it's not even a full level, but still - 14k of ...
38
votes
15answers
2k views
Code golf: the Mandelbrot set
Usual rules for the code golf. Here is an implementation in python as an example
from PIL import Image
im = Image.new("RGB", (300,300))
for i in xrange(300):
print "i = ",i
for j in ...
38
votes
18answers
7k views
The Skyline Problem
I just came across this little problem on UVA's Online Judge and thought, that it may be a good candidate for a little code-golf.
The problem:
You are to design a program to assist an architect in ...
38
votes
16answers
2k views
What's the funniest user request you've ever had? [closed]
Users sometimes come up with the most amusing, weird and wonderful requirements for programmers to design and implement.
Today I read a memo from my boss that we need the "ability to import any excel ...
38
votes
26answers
2k views
Weird constants [closed]
I've seen these in real code:
#define SCREEN_DIMENSIONS 2
#define THREE_THOUSAND_FIVE_HUNDRED_TWENTY_TWO 3522
What is the weirdest constant you've ever seen?
P.S. And of course my favorite in ...
37
votes
10answers
5k views
Regular expression joke explanation
I love regex. I’ve used them with grep, Perl, Java, C, and a variety of others. I have Jeffery Friedl’s awesome book on them, and I studied their theory in college.
But for years I have been ...
36
votes
55answers
6k views
Worst technobabble you've ever heard [closed]
Following the Egregious pop culture perversion of programming, what is the most outlandishly insane technobabble you have ever heard, either in fiction or real life?
Extra points to those ...
34
votes
27answers
3k views
How would you explain your job to a 5-year old? [closed]
Sometimes it's difficult to define programming to people. Especially too old or too young people can not understand what I do to earn money. They think that I repair computers, or they want to think ...
32
votes
58answers
4k views
What is the single software company that you most want to work for? Why? [closed]
What is the single software company that you most want to work for? Why?
32
votes
33answers
3k views
What is your best list of 'must have' development tools?
I recently burned up my development laptop (it literally emitted smoke from the vents). After pulling the hd I was unable to get it to spin with a USB device attached to a home tower. Since I was on a ...
30
votes
15answers
895 views
Which is more important - a very interesting project or a very good team? [closed]
I've been a lead developer of a very successful and promising project for several years now. The team I've been working with is just great. Now the top management wants to move the project to another ...
30
votes
51answers
2k views
What is the first thing you do when you install Visual Studio?
What is the first thing you do when you install Visual Studio? I am talking about anything customization-wise (so we don't get answers based on 'I create a new project').
Do you have a favorite font? ...
29
votes
25answers
1k views
Why do 'the others' think you can fix their computer? [closed]
Whenever I'm explaining what I do for a living (software developer, for example on a party and they had to ask), people tend to make a strange neuro-link:
He does something with computers I do not ...
28
votes
11answers
3k views
Make an application that displays text at random that conforms to the specified regex
OK, so in the spirit of Code-Golf, I'm trying out something new here: Code-Bowling.
In golf, you try to get the lowest score (smallest application, most elegant, etc). In Bowling, you try to get the ...
27
votes
12answers
4k views
Check if a number is divisible by 3
Not sure if it's a duplicate. But I need to find whether a number is divisible by 3 without using %, / or *. The hint given was to use atoi() function. Any idea how to do it?
27
votes
42answers
3k views
What soft skills make a great programmer? [closed]
I want to know what people think are the most important soft skills (e.g patience, tenacity, competitiveness) for programmers.
I’m not really interested in communication skills, but more the skills ...
26
votes
3answers
955 views
Are there any “short tricks” in JavaScript 1.8 that I can use to reduce my golf score? [closed]
I have recently picked up golfing as a pastime. I've been trying to golf with JavaScript, and the amount of time I have spent with JavaScript 1.8 is about zero.
Are there any nifty shortcuts I might ...
26
votes
7answers
2k views
EProgrammerNotFound exception in Delphi?
In Delphi 2009, SysUtils.pas contains this in line 425:
EProgrammerNotFound = class(Exception);
Is this simply an easter egg or something serious?
When should this exception be raised?
Does it ...
26
votes
49answers
8k views
Fun programming languages [closed]
What are some fun programming languages to learn and work with? I'm asking this for absolutely no practical purpose other than just to learn something new. So, what are some fun languages?
I ...
25
votes
16answers
2k views
Code Golf: 1x1 black pixel
Recently, I used my favorite image editor to make a 1x1 black pixel (which can come in handy when you want to draw solid boxes in HTML cheaply). Even though I made it a monochrome PNG, it came out to ...
25
votes
22answers
2k views
How would you make this switch statement as fast as possible?
2009-12-04 UPDATE: For profiling results on a number of the suggestions posted here, see below!
The Question
Consider the following very harmless, very straightforward method, which uses a switch ...
25
votes
18answers
1k views
Do you ever try to explain how fun programming is? [closed]
As you all know, there is nothing more fun than writing software. I guess we all remember occasions where we had to force ourselves to get up from behind our monitor to get something to eat or to go ...
25
votes
46answers
6k views
Code Golf: Print the entire “12 Days of Christmas” song in the fewest lines of code
Print all 12 verses of the popular holiday song.
By 12 verses I mean the repetition of each line as is sung in the song, ie
Verse One:
On the first day of Christmas my true love gave to me
a ...
25
votes
12answers
6k views
What is the most brilliant regex you've ever used? [closed]
I'm constantly amazed by the power of the regex. What I'm looking for here is:
Regexs that are more cleverly badass than ridiculously badass
Regex replacements are acceptable as well if you've had ...
24
votes
7answers
2k views
Algorithm challenge: Generate color scheme from an image
Background
So, I'm working on a fresh iteration of a web app. And, we've found that our users are obsessed with being lazy. Really lazy. In fact, the more work we do for them, the more they love ...
22
votes
5answers
1k views
How to find a checksum of the same checksum? (job-interview question)
Devise a simple algorithm which creates a file which contains nothing but its own checksum.
Let's say it is CRC-32, so this file must be 4 bytes long.
22
votes
14answers
2k views
How do I code and compile an Amiga application? [closed]
I would like to program an application for the Amiga, just for fun!
Please could someone post a step by step howto based on the following?
Exactly what programming tools I should use, are there any ...
22
votes
30answers
3k views
What is your best/funniest/annoying performance tuning experience? [closed]
Often we find changing a few lines of code makes n-fold performance increases in applications.
One such experience for me was fixing an issue in the configuration library. The library was based on ...
21
votes
9answers
1k views
Code Golf: Phone Number to Words
Guidelines for code-golf on SO
We've all seen phone numbers that are put into words: 1-800-BUY-MORE, etc.
What is the shortest amount of code you can write that will produce all the possible ...