ALL   CODE  >ART   LINKS MP3S  

xxxxx

21 OCT 2009
COMMENT

yyyyy

test

21 OCT 2009
COMMENT

this is a test

Oh deer, look who's Up

9 SEP 2009
COMMENT

Welcome friends and relatives, strangers and ex-lovers. Limping and broke, this is my new website. Made by hand with care and attention, patience please while first faltering steps are taken.

no-body_scan

all filler no killer?

5 SEP 2009
COMMENT

def nav(cat,admin): 
    str_list = []
    for thiscat in ("all","code","art","links","mp3s","info"):
        str_list.append("<a ") 
        if thiscat  cat:
            str_list.append('class="sec" ')
        str_list.append('href="/')
        if admin and thiscat != cat:
            str_list.append('admin/')
        if thiscat != "all":
            str_list.append(thiscat)
            if admin  False:
                str_list.append('/')
        str_list.append('">')
        str_list.append(thiscat.upper().ljust(5," ").replace(" "," "))
        if thiscat == cat:
            str_list.append(">")
        str_list.append("</a>")
    return ''.join(str_list)