________ ________ ________ ___ ___ ________ ________ ________ ___ ___ _______
|\ __ \|\ ____\|\ ____\|\ \|\ \ |\ ____\|\ __ \|\ ____\|\ \|\ \|\ ___ \
\ \ \|\ \ \ \___|\ \ \___|\ \ \ \ \ \ \ \___|\ \ \|\ \ \ \___|\ \ \\\ \ \ __/|
\ \ __ \ \_____ \ \ \ \ \ \ \ \ \ \ \ \ \ __ \ \ \ \ \ __ \ \ \_|/__
\ \ \ \ \|____|\ \ \ \____\ \ \ \ \ \ \ \____\ \ \ \ \ \ \____\ \ \ \ \ \ \_|\ \
\ \__\ \__\____\_\ \ \_______\ \__\ \__\ \ \_______\ \__\ \__\ \_______\ \__\ \__\ \_______\
\|__|\|__|\_________\|_______|\|__|\|__| \|_______|\|__|\|__|\|_______|\|__|\|__|\|_______|
\|_________|
Note 2 Self:
What is a BBS?
my def. BBS (Bulletin Board System): A Computer Network that exists before ARPANET became the modern internet. BBS's are collections of early modems and phones, computers and their enthusiasts.
Textfiles Count: 6528
|
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 | ||
|
Survival Files Survival: Intense, Conspiratorial, and Sometimes... True |
Viruses Documentation & Info on Computer Viruses |
#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)))