Tagged Questions

"A webcomic of romance, sarcasm, math, and language."

learn more… | top users | synonyms

131
votes
13answers
12k views

XKCD SQL injection - please explain

Just looking at: (Source: http://xkcd.com/327/) What does this SQL do: Robert'); DROP TABLE STUDENTS; -- I know both ' and -- are for comments, but doesn't the word DROP get commented as well ...
42
votes
15answers
39k views

Wolfram's Rule 34 in XKCD [closed]

The hover "joke" in #505 xkcd touts "I call rule 34 on Wolfram's Rule 34". I know what rule 34 is in Internet terms and I've googled up who Wolfram is but I'm having a hard time figuring out what ...
39
votes
16answers
5k views

Solving the NP-complete problem in XKCD

The problem/comic in question: http://xkcd.com/287/ I'm not sure this is the best way to do it, but here's what I've come up with so far. I'm using CFML, but it should be readable by anyone. ...
13
votes
4answers
2k views

How is xkcd doing xk3d?

I'm amazed by today's 3D webcomics found at xkcd. How would he have done that? Would it require manually redoing every single comic or is there some way to automate it? Edit The 3D comics are still ...
10
votes
5answers
754 views

Implementing a Hilbert map of the Internet

In the XKCD comic 195 a design for a map of the Internet address space is suggested using a Hilbert curve so that items from a similar IP adresses will be clustered together. Given an IP address, how ...
10
votes
1answer
1k views

What does this xkcd code do?

On the xkcd site today, the following appeared as a joke in a <script language="scheme"> tag so what does the following code do / represent? (define (eval exp env) (cond ((self-evaluating? ...
6
votes
2answers
964 views

Executes a function until it returns a nil, collecting its values into a list

I got this idea from XKCD's Hofstadter comic; what's the best way to create a conditional loop in (any) Lisp dialect that executes a function until it returns NIL at which time it collects the ...
6
votes
2answers
156 views

NP-complete problem in Prolog

I saw this ECLiPSe solution to the problem mentioned in this XKCD comic. I tried to convert this to pure Prolog. go:- Total = 1505, Prices = [215, 275, 335, 355, 420, 580], ...
0
votes
2answers
51 views

How to parse a random feed

Just wondering how can I parse a random feed from a RSS file, like XKCD Android App for example. For who don't know the app: You can check latest comic, or move backward/forward or hit random to get ...
0
votes
1answer
86 views

Need help specifying a ending while condition

I have written a Python script to download all of the xkcd comic images. The only problem is I can't tell it to stop when it gets to the last one... Here is what I have so far. import re, mechanize ...
0
votes
2answers
774 views

Why does php's file_get_contents incorrectly retrieve json files from xkcd?

In writing a PHP script to download xkcd comics, i incurred errors when trying to get specific comics (as opposed to the latest one). Specifically, pointing file_get_contents at the following url: ...
0
votes
1answer
260 views

How do I find everything between two characters after a word using grep, without outputting the entire line?

I am downlading the info.0.json file from xkcd and trying to parse just the alt text. I don't care if there are quotes around it or not. The problem it that the info.0.json file is all one line, and ...
0
votes
0answers
160 views

Creating a computer with pencil and paper [closed]

This concept has been brought to my attention before, but many people might know it from this popular comic here, where he uses stones instead of points on a paper. This concept is so abstract to me. ...
0
votes
3answers
477 views

XKCD - Labyrinth puzzle [closed]

There is a modified labyrinth puzzle on xkcd: http://xkcd.com/246/ After reading it we asked on an interview, "how many questions required to survive and solve this puzzle?" Our best solution ...