Skip to content

Instantly share code, notes, and snippets.

View davethesoftwaredev's full-sized avatar

DaveTheSoftwareDev davethesoftwaredev

View GitHub Profile
@davethesoftwaredev
davethesoftwaredev / CARS
Created September 18, 2014 15:03
Wrote this little program when I was 12, some 18 years ago.
DECLARE SUB INTRO ()
DECLARE SUB STARTGAME ()
DECLARE SUB TITLE ()
TX = 10
TY = 80
YX = 130
HX = 60
YY = 130
HY = 130
TX2 = 180
@davethesoftwaredev
davethesoftwaredev / gist:5545679
Last active December 17, 2015 03:48
A simple chat server written in node.js. Implements usernames, some commands. Port 9001.
// Simple Node.Js chat server
// My first attempt at a node application. Supports usernames, and a few text-based commands.
// Dave The Software Dev - davethesoftwaredev@gmail.com
// Hope this helps you
var net = require('net');
var connection = function(id, connection, server) {
this.id = id;
this.conn = connection;
@davethesoftwaredev
davethesoftwaredev / TypeScript.plist
Created November 11, 2012 23:25
TypeScript plist for textwrangler
<?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