- telnet://htc.zapto.org
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
ANSI Art to UTF-8 Translation | |
(c) Michael Griffin <[email protected]> 2014-02-05 | |
telnet://htc.zapto.org | |
Based loosely on CP437.py by Wijnand Modderman-Lenstra. | |
To Compile GNU GCC | |
use: g++ -o u8 u8.cpp -std=c++0x |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Michael Griffin <[email protected]> | |
Free for use and modification | |
A Dirty (incomplete) Rewrite of ddtelnetd for windows to test forking and piping stdio | |
Works by connecting then forking to CMD.exe, will also work with any | |
generic console application | |
Originally complied in DEVC++ for Windows, should work with gcc/mingw32 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Message area for x/84. | |
This script provides an interface to check for new | |
messages, subscribe to and browse tags and networks, | |
find all, or unread messages, or all messages since | |
last login. | |
It determines a set of message-ids that are then | |
forwarded to the message browser interface. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" Weather forecast script for x/84. """ | |
from xml.etree import cElementTree as ET | |
import itertools | |
import textwrap | |
import requests | |
import warnings | |
import logging | |
import time | |
import os |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2.7 | |
""" | |
PyPacketMail for x/84, http://github.com/jquast/x84 | |
(c) 2015 Michael Griffin <mrmisticismo@hotmail.com> | |
http://github.com/m-griffin/PyMailPacket | |
This is a FidoNet Echomail Scanner / Tosser for x84 bbs. | |
This will mimic the basic functionality of Crashmail for | |
Reading and Writing mail packets. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Terminal Control Sequence Parser | |
* (c) Michael Griffin <[email protected]> | |
* 12/27/2014 | |
* Runs through passed string data to parse text and control sequences | |
* Handle the most basic terminal and a majority of Xterm Control Sequences. | |
* Window Text and String sequences are not handeled. | |
* | |
* The job of this class is to seperate text and control sequences, | |
* When control sequences are present they are parameterized into a vector | |
* with the sequence terminator as the first parameter and following |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Pipe Code to ANSI Color Parser | |
// Michael Griffin (c) 2011 | |
// Donated to DayDream BBS in C, Rework of Enthral BBS from C++ | |
// Compile using gcc in in linux. | |
// Free to use and modify | |
#include <stdio.h> | |
#include <stdlib.h> |