DATE | OPPONENT | TIME | TV | Radio |
---|---|---|---|---|
2/22 | Northeastern | 1:05pm | FOX/NESN | |
2/23 | Yankees | 1:05pm | NESN+ | WEEI 93.7 |
2/24 | Twins | 1:05pm | NESN | WEEI 850 |
2/25 | @Pirates | 1:05pm | WEEI 850 | |
2/26 | @Blue Jays | 1:07pm | WEEI 850 | |
2/27 | @Rays (SS) | 1:05pm | WEEI 850? | |
2/27 | Orioles (SS) | 1:05pm | WEEI 850? | |
2/28 | Natinals | 1:05pm | FOX/NESN | WEEI 850 |
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
bigpapi:[~/aatemp/rastermaster-20.0.0-20190507.145636-42/lib/CMAP-1.5]$ head * | grep "Copyright " | more | |
head: Error reading META-INF | |
%%Copyright: Copyright 1990-1998 Adobe Systems Incorporated. | |
%%Copyright: Copyright 1990-1998 Adobe Systems Incorporated. | |
%%Copyright: Copyright 1990-2000 Adobe Systems Incorporated. | |
%%Copyright: Copyright 1990-1998 Adobe Systems Incorporated. | |
%%Copyright: Copyright 1990-1998 Adobe Systems Incorporated. | |
%%Copyright: Copyright 1990-1998 Adobe Systems Incorporated. | |
%%Copyright: Copyright 1990-1998 Adobe Systems Incorporated. | |
%%Copyright: Copyright 1990-1997 Adobe Systems Incorporated. |
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
" .vimrc | |
" Originally Jon Parise ([email protected]) | |
" Modified by Sean Graham ([email protected]) | |
" set encoding=utf-8 | |
if file_readable(expand("~/.vimrc_local")) | |
source ~/.vimrc_local | |
endif |
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
{ | |
"BTTWidgetName" : "iTunes Track, Cover, Play, Pause", | |
"BTTTriggerType" : 639, | |
"BTTTriggerTypeDescription" : "Apple Script Widget", | |
"BTTTriggerClass" : "BTTTriggerTypeTouchBar", | |
"BTTPredefinedActionType" : 248, | |
"BTTPredefinedActionName" : "Trigger Named Trigger (Configured in Other Tab)", | |
"BTTNamedTriggerToTrigger" : "Play\/Pause iTunes", | |
"BTTScriptType" : "AppleScript", | |
"BTTEnabled2" : 1, |
DATE | OPPONENT | TIME | TV | Radio |
---|---|---|---|---|
2/22 | Northeastern | 1:05PM | FOX/NESN | |
2/22 | Boston College | 1:05PM | FOX/NESN | |
2/23 | Minnesota | 1:05PM | 850AM | |
2/24 | Tampa Bay | 1:05PM | NESN/MLBN | 850AM |
2/25 | Baltimore | 1:05PM | NESN | 93.7FM |
2/26 | @Pittsburgh | 1:05PM | 850AM | |
2/27 | St. Louis | 1:05PM | 850AM | |
2/27 | @Minnesota | 6:05PM | NESNPLUS | AWAY |
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
unbind C-b | |
set -g prefix C-a | |
bind -r a send-prefix | |
bind C-a last-window | |
if-shell 'test "$(uname -s)" = Darwin' 'set-option -g default-command "exec reattach-to-user-namespace -l bash"' | |
# Set reload key to r | |
bind r source-file ~/.tmux.conf \; display-message "~/.tmux.conf reloaded" |
2017 Red Sox Spring Training Broadcast Schedule
DATE | OPPONENT | TIME | TV | Radio |
---|---|---|---|---|
2/23 | Northeastern | 1:05PM | ||
2/24 | Mets | 1:05PM | WEEI 850AM | |
2/25 | Minnesota | 1:05PM | NESN/MLBN | WEEI 850AM |
2/26 | @Tampa Bay | 1:05PM | NESN | WEEI 850AM |
2/27 | St. Louis | 1:05PM | WEEI 850AM | |
2/28 | Yankees | 1:05PM | WEEI 850AM |
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
#!/usr/bin/env python3 | |
import sys | |
import os | |
import subprocess | |
from datetime import date | |
import random | |
import string | |
import pathlib |
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
function run(argv) { | |
var app = Application.currentApplication() | |
app.includeStandardAdditions = true | |
var Finder = Application('Finder') | |
var selection = Finder.selection() | |
if(selection.length === 1) { | |
var url = selection[0].url() | |
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
function run(input, parameters) { | |
var app = Application.currentApplication() | |
app.includeStandardAdditions = true; | |
for(var x = 0; x < input.length; x += 1) { | |
var filePath = input[x].toString() | |
if(filePath.length > 0) { | |
var escaped = escape(filePath); |