Skip to content

Instantly share code, notes, and snippets.

View AquaMorph's full-sized avatar

Christian Colglazier AquaMorph

View GitHub Profile
{
"alliances": {
"blue": [
{
"team_key": "frc2481",
"xs": [
null,
null,
null,
null,
set nocompatible
filetype indent on
inoremap jj <Esc>
set tabstop=4
colorscheme evening
@AquaMorph
AquaMorph / DiskParam.java
Last active October 6, 2016 02:01
Assignment 2 Test Case
public class DiskParam
{
public static final int NUM_SECTORS = 50;
public static final int NUM_FILES = 30;
public static final int MAX_SIZE = 100;
public static final int SECTOR_SIZE = 10;
}
; Name: Christian Colglazier
; Date: 9-28-16
(define (eval-expr E env)
(cond
; If E is a number than it stays a number
((number? E) E)
; Handles varibales
((symbol? E) (if (pair? (cadr (assoc E env)))
@AquaMorph
AquaMorph / SimpleTap Rebind.reg
Created January 25, 2015 19:15
This is a registry edit to rebind the SimpleTap or ThinkVantage button on a Lenovo ThinkPad to open Command Prompt. This can be modified to open other programs by changing the file directory.
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\IBM\TPHOTKEY\8001]
"File"="C:\\Windows\\System32\\cmd.exe"