May 2008
5 posts
Antena 1 2 3 Podcasts
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 show, among those available, that...
UbuntuWebServer Virtual Appliance V1.4
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
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.
reihttpd - a basic web server in C
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.
MNUM - SimpsonCsv
This one instead reads the values from a CSV file containing experimental data.
Link to my previous implementation of Simspson’s rule.
[sourcecode language=’python’]
import csv
class simpsonCsv:
def __init__(self, filename):
reader = csv.reader(open(filename, “rb”))
xlist = []
ylist = []
for row in reader:...