Skip to content

Instantly share code, notes, and snippets.

@Battleroid
Battleroid / tmux.conf
Created August 18, 2017 02:39 — forked from spicycode/tmux.conf
The best and greatest tmux.conf ever
# 0 is too far from ` ;)
set -g base-index 1
# Automatically set window title
set-window-option -g automatic-rename on
set-option -g set-titles on
#set -g default-terminal screen-256color
set -g status-keys vi
set -g history-limit 10000
@Battleroid
Battleroid / tic-tac-toe.lisp
Created February 9, 2016 08:47 — forked from trhura/tic-tac-toe.lisp
tic-tac-toe AI using two-ply minmax in racket (scheme)
#lang scheme/gui
(define new-game #t)
(define game-finished #f)
(define user-move #\X)
(define computer-move #\O)
(define move-count 0)
(define start-move user-move)