Archive for May, 2008
The Portuguese public broadcast service, RTP (the Portuguese BBC) has podcasts for some of its radio shows.
Thanks, kudos/props/wtv for the people (person?) responsible for this. I hope more of Antena’s 2 (music) shows get added soon.
Sadly, it seems that, at least at the moment, it’s only low quality samples (for SOMDESCAPE which is the only [...]
This is probably the last version of my ubuntu web server VM that will use Ubuntu 7.10.
UbuntuWebServer
Direct Download Link
REVISION LOG:
1.4 - added phppgadmin and some php stuff
1.3 - added FTP Server
1.2 - added JDK+Tomcat5.5 and PostegreSQL
1.1 - added OpenSSL and demo apache configuration (commented)
1.0 - initial release
friendsnippets.com is for code what del.icio.us is for bookmarks. Just found it and fell in love with it.
link to my account.
My “Computer Networks” (Redes de Computadores) assignment is writing an HTTP server that implements GET and conditional (if-modified-since) GET with persistent connections.
Here’s the code - Obviously, no guarantees.
This one instead reads the values from a CSV file containing experimental data.
Link to my previous implementation of Simspson’s rule.
import csv
class simpsonCsv:
def __init__(self, filename):
reader = csv.reader(open(filename, "rb"))
xlist = []
ylist = []
for row in reader:
try:
x = float(row[0])
y = float(row[1])
except TypeError:
continue
except ValueError:
continue
xlist.append(float(x))
ylist.append(float(y))
self.len [...]







