This file contains 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
DECLARE SUB INTRO () | |
DECLARE SUB STARTGAME () | |
DECLARE SUB TITLE () | |
TX = 10 | |
TY = 80 | |
YX = 130 | |
HX = 60 | |
YY = 130 | |
HY = 130 | |
TX2 = 180 |
This file contains 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
// Simple Node.Js chat server | |
// My first attempt at a node application. Supports usernames, and a few text-based commands. | |
// Dave The Software Dev - [email protected] | |
// Hope this helps you | |
var net = require('net'); | |
var connection = function(id, connection, server) { | |
this.id = id; | |
this.conn = connection; |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<!-- | |
BBEdit Language Module for TypeScript | |
Put this file in | |
~/Library/Application Support/BBEdit/Language Modules | |
or equivalent. | |
Based off the language file for CoffeeScript found at |