Skip to content

Instantly share code, notes, and snippets.

/* If you use Chrome and gmail and wish your ALA Connect emails had a text-only option, this will get you pretty close.
1) Install the Stylus extension
2) Go to "write style for your URL" and copy-paste this file in (I would apply it to a URL like
https://mail.google.com/mail/u/0/#label/Board, assuming you're filtering your mail to a labeled place - if you use this
on the entirety of mail.google.com you may get undesired subject line behavior).
3) You may need to change the "margin: -160px;" line below, depending on your font and the name of your group. It's
intended to cut off the group name so you can see the actual message subject, but of course your group name may vary,
so change this number until you're happy with the way a subject looks.
*/
@sterkenburgsara-zz
sterkenburgsara-zz / curator-workshops.md
Last active August 29, 2015 14:07
Documentation for Exhibition Curator Workshops

Workshops for Exhibition Curators

  • November 11-13, 2014

The 2014-2015 exhibition season is upon us! As the selected curators for this season, you will be the stewards of your given topics: responsible for researching, selecting, describing, and designing your portion of the overall exhibition in the coming year. This three-day workshop series will aim to familiarize you with a few tools that will help us track and manage digital description. This will help to streamline our process and allow us to have a single, updated point of reference for all metadata edits and changes in the coming year.

These workshops will not presuppose any prior XML or markup knowledge.

#Schedule:

  • Schedule is subject to change
@CliffordAnderson
CliffordAnderson / ead.md
Last active August 29, 2015 14:03
Documentation for Introduction to EAD Workshop at Vanderbilt University

##Introduction to Encoded Archival Description

July 10 & 11, 2014

Vanderbilt University

Encoded Archival Description (EAD) is the recommended standard for creating digital editions of finding aids for Special Collections materials. The Vanderbilt University Library will hold two half-day training sessions in EAD from 9:00 a.m. to 12:00 p.m. on Thursday, July 10 and Friday, July 11 in Classroom 418A, Central Library. Please join us to learn the relevant archival standards, the basics of XML encoding, and the fundamentals of EAD. The workshop will not presuppose any prior knowledge of markup languages or archival practices.

###July 10

@Andrewpk
Andrewpk / OSX-junos_pulse_listenToMe.sh
Last active April 16, 2022 03:01
wtf juniper. Anyone else find it irritating that junos pulse services and pulse tray must always running in OS X regardless of whether or not you're currently connected? Yeah, me too. I added the following as aliases to my shell to fix this problem. Be sure to change your /Library/LaunchAgents/net.juniper.pulsetray.plist file to reflect the `Kee…
#################################################################################
# start and stop the vpn from the command line from now on with these two commands
# or rename the aliases as you see fit.
#################################################################################
alias startvpn="sudo launchctl load -w /Library/LaunchDaemons/net.juniper.AccessService.plist; open -a '/Applications/Junos Pulse.app/Contents/Plugins/JamUI/PulseTray.app/Contents/MacOS/PulseTray'"
alias quitvpn="osascript -e 'tell application \"PulseTray.app\" to quit';sudo launchctl unload -w /Library/LaunchDaemons/net.juniper.AccessService.plist"
anonymous
anonymous / Context.sublime.menu
Created January 5, 2013 13:32
Sublime Text menu file that adds a Syntax submenu to the editor window right-click context menu. Creates a submenu entry that lets you set the syntax to JavaScript. To install, save in /Sublime/Data/Packages/User/Context.sublime-menu.
[
{
"caption": "Syntax",
"children":
[
{
"caption": "JavaScript",
"command": "set_file_type",
"args": {"syntax": "Packages/JavaScript/JavaScript.tmLanguage"}
}