New BBS documentary: Back to the BBS part 1

There is a new documentary about BBSes posted to YouTube this week, ‘Back to the BBS’. Rather than focusing on the history of the BBS such as Jason Scott’s awesome ‘BBS The Documentary’, this one looks at using BBSes in the current time, and why there is an increasing interest in using BBSes today.

Part 1 is 43 minutes and walks through using telnet based BBSes today, and includes a number of interviews with people looking back at when BBSes were in their height of popularity, and also interviews a number of Sysops of current day active BBSes and their users.

VT132 Using the AT Modem over WiFi

The VT132 includes a telnet/WiFi modem that supports AT commands to ‘dial’ online sites, such as BBSes that are accessible using telnet.

To connect to the modem, use the Alt-F1 menu and enable the ‘Enable modem locally’ option:

Useful commands:

AT$ – lists commands and help:

AT+W? – displays current WiFi status

AT+W=ssid,password : connect to WiFi ssid with password

AT+W$ – shows IP address when connected to WiFi:

AT+W+ : reconnects to WiFi using params last used and stored

AT+W- : disconnects from WiFi

Testing dialing up Retro Battlestations BBS: ATDbbs.fozztexx.com

Since VT132 also supports ANSI escape sequences, dialing up Blackflag BBS has some awesome ANSI graphics: ATDblackflag.acid.org :

Using a VT132 for Packet Radio

I have an AEA PK-232 that I picked up a couple of years ago at my Amateur Radio club’s White Elephant sale for a few bucks. With the VT132 that I just recently built, it works as an excellent terminal client to the PK-232.

To connect, set baud rate in the VT132 to 1200 8N1. Connect with a null modem cable. Power on the PK-232 and you should see:

Press type a star (*) for auto-baud routine.

Press * and then you should see the AEA PK-232 startup copyright message.

To get a cmd: prompt to enter commands, press Ctrl-C.

I’ve attached my 2m radio with the audio in so far, and here’s a pic while decoding some APRS messages:

Next I need to make a custom cable to connect to my Icom’s data port, and then I should be all set to work some packet.

Creating a new AWS Lambda project with Serverless

Assuming the Serverless cli is already installed (here), init a new project with ‘serverless’ and answer the following questions:

% serverless       
 Serverless: No project detected. Do you want to create a new one? Yes
 Serverless: What do you want to make? AWS Node.js
 Serverless: What do you want to call this project? lambda-example
 Project successfully created in 'lambda-example' folder.

To deploy, run ‘serverless deploy’