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
Airplane | |
Bank | |
Beach | |
Broadway Theater | |
Casino | |
Cathedral | |
Circus Tent | |
Corporate Party | |
Crusader Army |
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
mefi.2007:13:01 <@Alterscape> dmd, I owe you a beer or two. | |
mefi.2007:13:56 <@esch> I owe you a beer. | |
mefi.2007:12:06 <@esch> [31d1]: I owe you a beer btw | |
mefi.2009:14:13 <@esch> dmd: I owe you a beer | |
mefi.2010:23:58 <@esch> ok necKro I owe you a beer | |
mefi.2012:14:33 <@lysol> ah shit mach5 I owe you a beer | |
mefi.2016:15:08 <@tmkf> Juffo-Wup: ty i owe you a beer or something sometime | |
mefi.2017:19:44 <@esch> thank you. I owe you a beer. | |
mefi.2017:00:42 <@esch> I owe you a beer really | |
mefi.2017:10:24 <@bp> godbert thank you i owe you a beer |
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
Copyright 1993 Clarinet Communications | |
Copyright 1992 by Connie Willis. All rights reserved. For the personal use of buyers of the ESF Anthology only. | |
Std20Menus() | |
Std20Buttons() | |
RegisterRoutine("mvbmp2", "CopyBmp", "v=USS") | |
RegisterRoutine("mvmci2", "MCICommand", "USSS") | |
RegisterRoutine("mvftsui2", "SearchDialog", "USU") | |
destroyButton("btn_previous") | |
destroyButton("btn_next") | |
ChangeButtonBinding("btn_contents", "JumpId(`../../../93anth.mvb',`main_toc')") |
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
# Logfile created on 2020-11-06 09:01:37 -0500 by logger.rb/66358 | |
D, [2020-11-06T09:01:37.410943 #14408] DEBUG -- : User asserted this is a MAC_BACKUP | |
D, [2020-11-06T09:01:37.432893 #14408] DEBUG -- : Guessed Notes Version: 13 | |
D, [2020-11-06T09:01:37.433966 #14408] DEBUG -- : Backup is valid, ripping notes | |
D, [2020-11-06T09:01:37.434016 #14408] DEBUG -- : Apple Backup: Ripping notes from Note Store version 13 | |
D, [2020-11-06T09:01:37.435697 #14408] DEBUG -- : Rip Account: Calling rip_account on Account ID 1 | |
D, [2020-11-06T09:01:37.435773 #14408] DEBUG -- : Rip Account: Using server_record_column of ZSERVERRECORDDATA | |
D, [2020-11-06T09:01:37.435809 #14408] DEBUG -- : Rip Account: Query is SELECT ZICCLOUDSYNCINGOBJECT.ZNAME, ZICCLOUDSYNCINGOBJECT.Z_PK, ZICCLOUDSYNCINGOBJECT.ZSERVERRECORDDATA, ZICCLOUDSYNCINGOBJECT.ZCRYPTOITERATIONCOUNT, ZICCLOUDSYNCINGOBJECT.ZCRYPTOVERIFIER, ZICCLOUDSYNCINGOBJECT.ZCRYPTOSALT, ZICCLOUDSYNCINGOBJECT.ZIDENTIFIER, ZICCLOUDSYNCINGOBJECT.ZSERVERSHAREDATA FROM ZICCLOUDSYNCINGOBJECT WHER |
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
# *** PROMPT FORMATTING *** | |
# Echoes a username/host string when connected over SSH (empty otherwise) | |
ssh_info() { | |
[[ "$SSH_CONNECTION" != '' ]] && echo "%(!.%{$fg[red]%}.%{$fg[yellow]%})%n%{$reset_color%}@%{$fg[green]%}%m%{$reset_color%}:" || echo "" | |
} | |
# Echoes information about Git repository status when inside a Git repository | |
git_info() { |
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
#!/bin/bash | |
. ~/venvs/general-python/bin/activate | |
FILE=$1 | |
if [[ $(basename $0) == "skc" ]]; then | |
DEST='[email protected]' | |
fi | |
if [[ $(basename $0) == "ck" ]]; then | |
ebook-convert "${FILE}" "${FILE}.mobi" | |
elif [[ ${FILE: -5} == ".mobi" ]]; then |
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 requests | |
import codecs | |
import csv | |
r = requests.get('https://raw.githubusercontent.com/nytimes/covid-19-data/master/us-counties.csv') | |
data = list(csv.reader(codecs.iterdecode(r.iter_lines(), 'utf-8'))) | |
m = [d for d in data if d[1:3] == ["Middlesex", "Massachusetts"]] | |
s = [d for d in data if d[1:3] == ["Suffolk", "Massachusetts"]] | |
n = [d for d in data if d[1:3] == ["Norfolk", "Massachusetts"]] |
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 requests | |
import codecs | |
import csv | |
r = requests.get('https://raw.githubusercontent.com/nytimes/covid-19-data/master/us-counties.csv') | |
data = list(csv.reader(codecs.iterdecode(r.iter_lines(), 'utf-8'))) | |
m = [d for d in data if d[1:3] == ["Middlesex", "Massachusetts"]] | |
s = [d for d in data if d[1:3] == ["Suffolk", "Massachusetts"]] | |
n = [d for d in data if d[1:3] == ["Norfolk", "Massachusetts"]] |
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 | |
# this is a utility for Daniel to make it easier | |
# to move tapes into the mailslot for sending to Iron Mountain | |
from sh import mtx, bconsole, echo | |
import sys | |
import re | |
tape_device = "/dev/tape/by-serial/bs_sch-STK_SL150_464970G+1304SY0600-sch" |
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
# Logfile created on 2020-07-20 12:43:36 -0400 by logger.rb/66358 | |
D, [2020-07-20T12:43:36.782798 #53424] DEBUG -- : User asserted this is a SINGLE_FILE_BACKUP | |
D, [2020-07-20T12:43:36.806225 #53424] DEBUG -- : Guessed Notes Version: 13 | |
D, [2020-07-20T12:43:36.806329 #53424] DEBUG -- : Backup is valid, ripping notes | |
D, [2020-07-20T12:43:36.806356 #53424] DEBUG -- : Apple Backup: Ripping notes from Note Store version 13 | |
D, [2020-07-20T12:43:36.807489 #53424] DEBUG -- : Rip Account: Calling rip_account on Account ID 1 | |
D, [2020-07-20T12:43:36.807536 #53424] DEBUG -- : Rip Account: Using server_record_column of ZSERVERRECORDDATA | |
D, [2020-07-20T12:43:36.807554 #53424] DEBUG -- : Rip Account: Query is SELECT ZICCLOUDSYNCINGOBJECT.ZNAME, ZICCLOUDSYNCINGOBJECT.Z_PK, ZICCLOUDSYNCINGOBJECT.ZSERVERRECORDDATA, ZICCLOUDSYNCINGOBJECT.ZCRYPTOITERATIONCOUNT, ZICCLOUDSYNCINGOBJECT.ZCRYPTOVERIFIER, ZICCLOUDSYNCINGOBJECT.ZCRYPTOSALT, ZICCLOUDSYNCINGOBJECT.ZIDENTIFIER FROM ZICCLOUDSYNCINGOBJECT WHERE ZICCLOUDSYNCINGOBJECT.Z_PK=? | |
D |