Tumblelog by Soup.io
Newer posts are loading.
You are at the newest post.
Click here to check if anything new just came in.

March 17 2010

4poc
03:44
Play fullscreen
Charlie Brooker's Screenwipe - Reality TV Editing

March 14 2010

4poc
02:46
no sir!
Reposted fromhothou hothou viafinkregh finkregh

March 12 2010

4poc
04:12
Play fullscreen
Die Passion Videospiel - Teil 1: Geschichte

March 06 2010

March 03 2010

4poc
18:57
Play fullscreen
OK Go - This Too Shall Pass - RGM version

March 02 2010

February 27 2010

February 26 2010

4poc
10:49
Play fullscreen
Everythings Amazing & Nobodys Happy
4poc
08:49
Play fullscreen
The Black Hole

February 25 2010

February 18 2010

February 17 2010

4poc
15:54
Play fullscreen
A Brief History of Pretty Much Everything

February 10 2010

4poc
15:37
JavaScript: onMouseMove Google Translation
Web

I’m currently updating the article, the code will change soon! I wanted to implement a JavaScript onMouseMove Event, that translates the word under the mouse pointer with the Google Translator. I want to share the following solution. I split this into the following two separate problems: First: Detect word for an onMouseMove Event The onMouseMove Event can listen on [...]

February 09 2010

February 08 2010

4poc
13:40

URL List Sort By Filename

This little script sorts a url list by the filename of an url.


#! /usr/bin/python
import sys
filename = sys.argv[1]

f=open(filename, 'r')
contents=f.read()
url_list = contents.split('\n')

def get_filename(file):
return file[file.rfind('/')+1:]

def filename_compare(x, y):
file_x = get_filename(x)
file_y = get_filename(y)
if file_x > file_y:
return 1
elif file_x == file_y:
return 0
else:
return -1

url_list.sort(filename_compare)

for url in url_list:
if url != '':
print url

February 07 2010

4poc
12:12
9921_7ca5_125
Bar Of Gold
After fighting the urge to turn and run, you enter and find yourself in the Bar of Gold, the most infamous opium den in London. The proprietor is a most unsavory character who gives you a sidelong glance as you enter and then ignores you.
> open etherium
You break open the ampoule. The etherium fumes mix with the heavy air of the opium den. No one seems to notice.

Classic Infocom interactive fiction adventure with the same unique atmosphere and many references to the original Arthur Conan Doyle stories.

Older posts are this way If this message doesn't go away, click anywhere on the page to continue loading posts.
Could not load more posts
Maybe Soup is currently being updated? I'll try again automatically in a few seconds...
Just a second, loading more posts...
You've reached the end.