webcomic

Decrypting the YSOD, techniques to the mayhem.

How many can relate do this? hehe On a more serious note, what are the first things you look for when you see the yellow screen of death? Half the time the debug trace isn't actually telling you what the problem is (understandable I guess). What techniques do you use to debug the problem? I must admit, I still use response.write mo...

Image compression for webcomics

As probably many people around here I read a few webcomics. Drowtales is my favorite, but that's besides the point. For a long time a thought has been nagging me at the back of my head: webcomics are drawn pictures. They are not photographs. There should be a lot of redundancy (less colors, more flat colored areas, etc.) and thus they s...

python script for downloading all Ctrl+Alt+Del webcomics?

Does anyone have one? Ive tried Comicdownloader but that only lets me download the newest comic and I dont understand Python well enough to figure out how to change it to download all the comics edit: Solved by anderstornvig thanks man ...

Downloading all ctrl alt del webcomics using terminal.

I've tried using the following commands to download the ctrl alt del comics. $ for filename in $(seq 20021023 20100503); do wget http://www.ctrlaltdel-online.com/comics/"$filename".jpg; done I get the following error code, "bash: syntax error near unexpected token 'do'" I've also tried using cURL, using this command, curl http://ctr...

Looking for web comic: number of words made up in protocols

There is this xkcd comic: I recently saw a version with "probability protocol is good" and a quote from the HTTP RFC (I believe). But I can't seem to find it anymore. Can someone help? (I need this to convince some of my co-workers that they're doing the design for a network protocol we're building wrong, so this question is programm...

Is there a way to show two images simultaneously with a Javascript image gallery?

I'm trying to create a comic book reader using javascript where the content of the gallery is dynamically generated from the images in a given directory (directory is chosen with a bit of php). I want to display two pages(images) at a time so the comic is read like it would be in a book format. Users are then able to navigate two pages a...