Skip to content

Instantly share code, notes, and snippets.

View bmnick's full-sized avatar

Ben Nicholas bmnick

View GitHub Profile
@bmnick
bmnick / RITBuildingNames.txt
Created September 4, 2011 20:52
RIT Building Numbers to abbreviations
EAS 001 George Eastman Hall
RIA 002 Frank Ritter Arena
CLK 003 George H. Clark Gymnasium
SAU 004 Student Alumni Union
WAL 005 Wallace Library
LBR 006 Liberal Arts Hall
UNI/VIG 007A University Gallery/Vignelli Center for Design Studies
GAN 007B Frank E. Gannett Hall
GOS 008 Thomas Gosnell Hall
GLE 009 James E. Gleason Hall
@novemberborn
novemberborn / Activate Terminal.scpt
Created June 26, 2011 18:00
Focus the terminal window open in the current space, or open a new one.
tell application "Terminal"
activate
set hasWindow to false
try
repeat with theWindow in windows
if (frontmost of theWindow) then
set hasWindow to true
end if
end repeat
end try