I See Dead Code

… as sounding brass, or a tinkling cymbal.

I See Dead Code header image 4

Entries Tagged as 'python'

Stockholm.py: The Source Files

May 28th, 2007 · No Comments

Having completed the sample solutions for the final exam, the course is now officially complete and the sources for all slides, exercise sheets and example programs as well as sample solutions for all exercises can be downloaded. I plan to give another course like that in the future, but in the meantime somebody else might [...]

[Read more →]

Tags: lang:en · programming · python

WP-Syntax Test

May 5th, 2007 · 4 Comments

Well, this post is only here to be a public test of WP-Syntax, a syntax coloring plugin for WordPress.

1
2
3
4
5
6
7
8
9
10
from itertools import islice
 
def fib():
x, y = 1, 1
while True:
yield x
x, y = [...]

[Read more →]

Tags: lang:en · programming · python