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
(* | |
Set BibDesk URLs to shortDOI shortcuts | |
Kurt Raschke | |
[email protected] | |
Licensed under the BSD license | |
*) | |
on run | |
tell application "BibDesk" | |
tell document 1 |
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/sh | |
#set -x | |
# | |
################################################################### | |
# smb.sh Charles Gillanders [email protected] | |
# Modified by Kurt Raschke <[email protected]>: | |
# No longer requires a valid user/pass for each machine | |
# Minor bug-fixing; better handling of the "dialup" and "nonetpage" directives | |
# | |
# A Big Brother External Script |
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/local/bin/perl -T | |
#NRC ENR Atom feed generator | |
#Kurt Raschke | |
#[email protected] | |
#Resources: | |
#http://linuxgazette.net/108/oregan2.html | |
#http://linuxgazette.net/109/oregan.html | |
#http://ttul.org/repos/cpan/trunk/Kwiki-Atom/lib/Kwiki/Atom.pm |
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
import re | |
myfile = open('list', 'r') | |
callnos = myfile.readlines() | |
p = re.compile("""^(?P<aclass>[A-Z]{1,3}) | |
(?P<nclass>\\d{1,4})(\\ ?) | |
(\\.(?P<dclass>\\d{1,3}))? | |
(?P<date>\\ [A-Za-z0-9]{1,4}\\ )? |
NewerOlder