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

Introduction


Concept & build

Made with Vim, SQLite, PHP, and Bash in a Debian Linode, AsciiCache is an experimental fusion of:

BBSs were pre-internet platforms where people shared art, textfiles, and music over phone lines. While I missed their heyday (1985-95), it's amazing to think that some of these 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.

The BBS Files


Archived -- from the days of yore

100
No time to browse? Read Jason's favorite 100
Computers
Computerz -- Knowledge from the Depths!
Artwork
Various ASCII Artwork/Illustrations
BBS
Running and Using Bulletin Boards
Music
Information about music ...including guitar tabs
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)))