#!/usr/bin/env python # coding=utf-8 import cgitb cgitb.enable() import sys sys.path.append('odds/ads') sys.path.append('odds/cgib') try: import cgi_buffer except ImportError: error = str(sys.path) else: error = '...' # http://sbp.myopenid.com/xrds # http://open.login.yahooapis.com/openid20/www.flickr.com/xrds print """\ Content-Type: text/html; charset=utf-8 X-XRDS-Location: http://sbp.myopenid.com/xrds Website of Sean B. Palmer
inamidst.com

Welcome to inamidst.com, a site for Sean B. Palmer and friends to publish articles and software.

Literature

Technology and Software

Miscellanea

Natural World

Selected Essays


""" # import ads # print ads.get() # import brokerage # brokerage.main() print '' % error print '
' # EOF