Notes on The Pragmatic Programmer
Free SEO tutorial :: free search engine optimization tutorials :: Learn SEO
Mon 18 Feb 2008 at 12:27 PM
Mon 18 Feb 2008 at 12:27 PM
Seems like a decent, no-BS tutorial.
Interesting case study of optimizing a text file parsing program for performance.
Goldblog - Python - 15 Line HTTP Server - Web Interface For Your Tools - Corey Goldberg
Thu 14 Feb 2008 at 11:31 AM
Thu 14 Feb 2008 at 11:31 AM
import BaseHTTPServer class WebRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler): def do_GET(self): if self.path == '/foo': self.send_response(200) self.do_something() else: self.send_error(404) def do_something(self): print 'hello world' server = Bas



