This file contains hidden or 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
{ | |
"alliances": { | |
"blue": [ | |
{ | |
"team_key": "frc2481", | |
"xs": [ | |
null, | |
null, | |
null, | |
null, |
This file contains hidden or 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
set nocompatible | |
filetype indent on | |
inoremap jj <Esc> | |
set tabstop=4 | |
colorscheme evening |
This file contains hidden or 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
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; | |
} |
This file contains hidden or 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
; 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))) |
This file contains hidden or 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
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\IBM\TPHOTKEY\8001] | |
"File"="C:\\Windows\\System32\\cmd.exe" | |