Skip to content

Instantly share code, notes, and snippets.

View bb010g's full-sized avatar
💭
questionable ideas, made with 💛

bb010g bb010g

💭
questionable ideas, made with 💛
View GitHub Profile
@bb010g
bb010g / doc-networktables3.adoc
Created January 28, 2016 03:13
Network Tables Protocol Specification, Version 3.0

Network Tables Protocol Specification, Version 3.0

This document defines a network protocol for a key-value store that may be read from and written to by multiple remote clients. A central server, most often running on a FIRST FRC robot controller, is responsible for providing information consistency and for facilitating communication between clients.

STAGE SLOT: Battlefield
A: Battlefield (Brawl)
L: Battlefield (Melee)
Z: Battlefield (N64) (With platform, size, & blast zone normalization)
STAGE SLOT: Final Destination
A: Final Destination (Melee)
L: Final Destination (Brawl) (With ledge fixes and size & blast zone normalization)
Z: Final Destination (N64) (With size & blast zone normalization)
@bb010g
bb010g / new-stage-list.txt
Created December 21, 2015 03:00
PM CC New Stage List Draft
Brawl ID | Normal Stage | Alternate Stage | Secret Stage | Link 1 | Link 2
STGBATTLEFIELD | Battlefield | Battlefield (Melee) | Battlefield (64) | Battlefield (64) - http://forums.kc-mm.com/Gallery/BrawlView.php?Number=210220 |
STGCRAYON | Yoshi's Island (Brawl) | Yoshi's Island (Melee) | N/A | |
STGDOLPIC | Delfino's Secret | Delfino Plaza | N/A | |
STGDONKEY | Venus Lighthouse | Mercury Lighthouse | N/A | Venus Lightouse - http://forums.kc-mm.com/Gallery/B
io.popen: 'pwd' 2> /dev/null
Cloning into 'loverocks'...
os.execute: cd '/home/bb010g/src/loverocks' && test '-e' '/home/bb010g/.luarocks/lib/luarocks/rocks-5.3'
Results: 1
1 (number): 0
os.execute: cd '/home/bb010g/src/loverocks' && test '-d' '/home/bb010g/.luarocks/lib/luarocks/rocks-5.3'
Results: 1
@bb010g
bb010g / smashland.py
Created December 20, 2014 01:59
Super Smash Land FreePIE Config
def setKeyB(key, pred):
if pred:
keyboard.setKeyDown(key)
elif keyboard.getKeyDown(key):
keyboard.setKeyUp(key)
def tapKeyB(key, pred):
if pred:
keyboard.setKeyDown(key)
keyboard.setKeyUp(key)
@bb010g
bb010g / Package.hs
Last active August 29, 2015 14:04
Aura2 Package Test
{-# LANGUAGE RebindableSyntax, NoMonomorphismRestriction, ConstraintKinds #-}
{-# LANGUAGE NamedFieldPuns #-}
module Aura.Package
where
import YAPP
import Data.Rose --(Rose (rootLabel, getSubBush))
import qualified Data.Map.Lazy as M
@bb010g
bb010g / Rose.hs
Created August 4, 2014 00:54
Haskell Data.Rose
{-# LANGUAGE RebindableSyntax, NoMonomorphismRestriction, ConstraintKinds #-}
{-# LANGUAGE DeriveDataTypeable, StandaloneDeriving #-}
{-# LANGUAGE Safe #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE UndecidableInstances #-}
{-# LANGUAGE ViewPatterns #-}
{-# LANGUAGE ScopedTypeVariables #-}
-----------------------------------------------------------------------------
-- |