Skip to content

Instantly share code, notes, and snippets.

@paniq
paniq / texel64.txt
Last active March 25, 2016 09:31
TEXEL64 Specs
TEXEL64 - a 3D fantasy console to help with prototyping, testing, figuring out typical
usage patterns for effective CPU/GPU use in a small, restricted setting; Inspired by PICO-8
CPU Memory
==========
System ROM (256K? 1M? 4M?!)
System RAM (same size + extra?)
Program RAM (size unknown, VM runtime)
@aksakalli
aksakalli / SimpleHTTPServer.cs
Last active June 7, 2024 08:38
SimpleHTTPServer in C#
// MIT License - Copyright (c) 2016 Can Güney Aksakalli
// https://aksakalli.github.io/2014/02/24/simple-http-server-with-csparp.html
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Sockets;
using System.Net;
using System.IO;