________  ________  ________  ___  ___          ________  ________  ________  ___  ___  _______
|\   __  \|\   ____\|\   ____\|\  \|\  \        |\   ____\|\   __  \|\   ____\|\  \|\  \|\  ___ \
\ \  \|\  \ \  \___|\ \  \___|\ \  \ \  \       \ \  \___|\ \  \|\  \ \  \___|\ \  \\\  \ \   __/|
 \ \   __  \ \_____  \ \  \    \ \  \ \  \       \ \  \    \ \   __  \ \  \    \ \   __  \ \  \_|/__
  \ \  \ \  \|____|\  \ \  \____\ \  \ \  \       \ \  \____\ \  \ \  \ \  \____\ \  \ \  \ \  \_|\ \
   \ \__\ \__\____\_\  \ \_______\ \__\ \__\       \ \_______\ \__\ \__\ \_______\ \__\ \__\ \_______\
    \|__|\|__|\_________\|_______|\|__|\|__|        \|_______|\|__|\|__|\|_______|\|__|\|__|\|_______|
             \|_________|

Intro


Concept

This Site Is For CODERZ!!

It's a weird mix of my personal coding notes, cheatsheets, discrete/compsci math pdfs, music, gifs, algorithm implementations, and a massive archive of BBS messages. So if you're a coder/programmer/whatever, and you have some suggestions on how to make this site better, please contact me down in the footer.

Goal in Making the Site:

The BBS Files


- Archived System -

BBSs were pre-internet platforms where people shared art, textfiles, and music over phone lines. It's amazing to think of sending (the data we now are used to now), over copper and aluminium lines that are so slow, it's speed is processed in BAUD not MB/sec! Some of these networks are still around if you know where to look, and thanks to archivists like Jason Scott of textfiles.com, I’m able to preserve many of these files here, as well.



What Was It Like?
Great Place to Start - Recounted Experiences
Adventure
Walkthroughs and Hints for Text Adventures
Apple II
Apple II Technical and Lore
Artwork
Various ASCII Artwork/Illustrations
BBS
Running and Using Bulletin Boards
Computers
Computers -- Knowledge from the Depths!
Food
Food and Eating
Fun
A Weird Grab Bag of Oddness
Groups
Textfile Writer Collectives
Ham Radio
Ham Radio Operation Information, sort of
Internet
You're Soaking In It.
Music
Information About Music ...Guitar Tabs
Science Files
Science!! -Let None Question It's Ways!
Programming
For The Neets and The Nerds
Science Files
Science!! --Let none question it's ways!
Survival Files
Survival: Intense, Conspiratorial, and Sometimes... True
Viruses
Documentation & Info on Computer Viruses

Gifs


Click the button to see a random gif

Python Scripts


Spam and eggs, anyone?
#Here's some code
# Creates a unique, 6 digit, alpha numeric code 
import random

rnd = random.randint(0, 25)
letterList = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', \
              'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']

print(letterList[rnd] + letterList[random.randint(0, 25)] + \
      letterList[random.randint(0, 25)] + '-' + str(random.randint(0, 999)))