Change my email address back to drexel (Verizon blocks incoming port 25).
authorW. Trevor King <wking@drexel.edu>
Tue, 7 Feb 2012 14:47:37 +0000 (09:47 -0500)
committerW. Trevor King <wking@drexel.edu>
Tue, 7 Feb 2012 14:47:37 +0000 (09:47 -0500)
37 files changed:
local.css
posts/ASCII_hist/ascii_hist.py
posts/Alarm/alarm.sh
posts/Atomgen/atomgen.py
posts/Gentoo_Prefix_overlay/layman.xml
posts/Gentoo_overlay/layman.xml
posts/Git/git-publish.py
posts/Git/git-unmerged-branches.sh
posts/GnuPG_maintenance.mdwn
posts/Gramps_and_calendar/CalendarDates.patch
posts/I27-synthesis/mRNAcode.py
posts/Kerberos/kinit-mpd.sh
posts/Monkeysphere/unhash-known-hosts.sh
posts/Open_source_force_spectroscopy/0001-Added-math.h-include-to-fs_align_histogram2d.h.patch
posts/Open_source_force_spectroscopy/0002-changed-abs-double-to-fabs-double-in-fs_fit_spectr.patch
posts/Open_source_force_spectroscopy/0003-Updated-wxWindows-code-to-compile-on-wx-2.8.patch
posts/Open_source_force_spectroscopy/0004-Added-wxglade-entry-to-Makefile-for-regenerating-aut.patch
posts/PDF_bookmarks_with_Ghostscript/pdf-merge.py
posts/SSH/crack_known_hosts.py
posts/SSH/unique_known_hosts.py
posts/abcplay/abcplay.py
posts/bat/bat.sh
posts/cache-file/cache-file.sh
posts/clickloc/scale_click.py
posts/entrez/entrez.py
posts/find_duplicates/find_duplicates.py
posts/gallery/gallery.py
posts/get_css/get_css.py
posts/gpg-agent/pinentry.py
posts/mailcap/mailcap-test.py
posts/migrate_nanoblogger_to_ikiwiki/ikiwiki-nanoblogger-import.py
posts/mkogg/mkogg.py
posts/name-by-date/name-by-date.sh
posts/passwd-gen/passwd-gen.sh
posts/rel-vcs/chrome/content/contents.rdf
posts/slow_bend/slow_bend.py
posts/ticker/ticker.py

index af50de4d695eeb3234a44beadd54cbf00324c31c..77a51404fe8ad317a9e88a79019d0479aa111900 100644 (file)
--- a/local.css
+++ b/local.css
@@ -1,5 +1,5 @@
 /* Derived from Embedded Moose by Josh Triplett <josh@freedesktop.org>
- * Edited by W. Trevor King <wking@tremily.us> to support:
+ * Edited by W. Trevor King <wking@drexel.edu> to support:
  *   - Sidebars
  *   - <code>
  *   - streamlined layout (fewer borders, etc.)
index 185e8477cd4d34bb599ba334bda57d89e42e37ed..57ffaa0847bb85f6e197f4e4bd955a31c3636e57 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 #
-# Copyright (C) 2010, William Trevor King <wking@tremily.us>
+# Copyright (C) 2010, William Trevor King <wking@drexel.edu>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
index 9308fa396b06ab0a0bf6cc9b0812a481956ecdf2..4a28008eaf067e5d42cb8bbe097eb4d41068990f 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# Copyright (C) 2008-2010, William Trevor King <wking@tremily.us>
+# Copyright (C) 2008-2010, William Trevor King <wking@drexel.edu>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
index c26b0e60235b72d1735793e9f8edb6d9e471fc2c..d237c30db9a0b1f2ebf1a3f1c14e0a96e73e78c6 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 #
-# Copyright (C) 2009-2010, William Trevor King <wking@tremily.us>
+# Copyright (C) 2009-2010, William Trevor King <wking@drexel.edu>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -115,7 +115,7 @@ class NewFeedCommand (Command):
     >>> c = NewFeedCommand()
     >>> feed = c.run(['--title', 'Physics 201', '--author', 'W. Trevor King',
     ...     '--author-uri', 'http://www.physics.drexel.edu/~wking/',
-    ...     '--author-email', 'wking@tremily.us',
+    ...     '--author-email', 'wking@drexel.edu',
     ...     'http://www.physics.drexel.edu/~wking/phys201'])
     >>> print etree.tostring(feed, pretty_print=True, xml_declaration=True,
     ...     encoding='UTF-8')  # doctest: +ELLIPSIS, +REPORT_UDIFF
@@ -125,7 +125,7 @@ class NewFeedCommand (Command):
       <title>Physics 201</title>
       <author>
         <name>W. Trevor King</name>
-        <email>wking@tremily.us</email>
+        <email>wking@drexel.edu</email>
         <uri>http://www.physics.drexel.edu/~wking/</uri>
       </author>
       <generator version="0.2">atomgen [based on lxml]</generator>
@@ -203,7 +203,7 @@ class AddEntryCommand (Command):
     >>> c = NewFeedCommand()
     >>> feed = c.run(['--title', 'Physics 201', '--author', 'W. Trevor King',
     ...     '--author-uri', 'http://www.physics.drexel.edu/~wking/',
-    ...     '--author-email', 'wking@tremily.us',
+    ...     '--author-email', 'wking@drexel.edu',
     ...     'http://www.physics.drexel.edu/~wking/phys201'])
     >>> fd,path = mkstemp(suffix='.atom', prefix='atomgen-')
     >>> close(fd)
@@ -226,7 +226,7 @@ class AddEntryCommand (Command):
       <title>Physics 201</title>
       <author>
         <name>W. Trevor King</name>
-        <email>wking@tremily.us</email>
+        <email>wking@drexel.edu</email>
         <uri>http://www.physics.drexel.edu/~wking/</uri>
       </author>
       <generator version="0.2">atomgen [based on lxml]</generator>
index a38ebf5fc03a67781ec0cb2e0751d97e27625316..87c7e6ecf078e406610117f29d2a13f295695de8 100644 (file)
@@ -8,7 +8,7 @@
       http://blog.tremily.us/posts/Gentoo_Prefix_overlay/
     </homepage>
     <owner>
-      <email>wking@tremily.us</email>
+      <email>wking@drexel.edu</email>
     </owner>
     <source type="git">
       git://tremily.us/wtk-prefix-overlay.git
index c26ad934c9a31f9019a2c41a9f9c4e431632513f..f3d858d2633e53331ad19545fffb09815e835950 100644 (file)
@@ -8,7 +8,7 @@
       http://blog.tremily.us/posts/Gentoo_overlay/
     </homepage>
     <owner>
-      <email>wking@tremily.us</email>
+      <email>wking@drexel.edu</email>
     </owner>
     <source type="git">
       git://tremily.us/wtk-overlay.git
index cd5111626a95971c5c0141b76d6a105945119bed..278c8f6aa8dcc86a3d5e780cbaf1af02470b1f38 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 #
-# Copyright (C) 2010-2011 W. Trevor King <wking@tremily.us>
+# Copyright (C) 2010-2011 W. Trevor King <wking@drexel.edu>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as
index 0b30871e788674629e84ce4d7db46ac9b91503c5..2584615d1fd5d176b963379cfb7bbf5de9bfe9a2 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/bash
 #
-# Copyright (C) 2011, William Trevor King <wking@tremily.us>
+# Copyright (C) 2011, William Trevor King <wking@drexel.edu>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
index b2c8d3217fed39cc6e11aefad2b1068f7d9ff7b1..b18290e8b7d85537a914db7f758157b81a295cc7 100644 (file)
@@ -8,7 +8,7 @@ to minimize the amount of data exposed by cracking the old key.
     sub  2048g/42407C74  created: 2008-08-09  expired: 2009-08-09  usage: E   
     sub  2048g/4DA3FC0B  created: 2009-07-26  expired: 2010-08-08  usage: E   
     sub  1024D/EB357E60  created: 2009-07-26  expired: 2010-08-08  usage: S   
-    [ultimate] (1). William Trevor King <wking@tremily.us>
+    [ultimate] (1). William Trevor King <wking@drexel.edu>
     [ultimate] (2)  William Trevor King <tvrkng@gmail.com>
 
 The usage characters are:
@@ -47,7 +47,7 @@ Use `key` to select subkeys by index (marked with a `*`):
     sub  1024D/EB357E60  created: 2009-07-26  expired: 2010-08-08  usage: S   
     sub  2048g/3FB721E8  created: 2011-05-25  expires: 2012-05-24  usage: E   
     sub  2048R/9CADC4D9  created: 2011-05-25  expires: 2012-05-24  usage: S   
-    [ultimate] (1). William Trevor King <wking@tremily.us>
+    [ultimate] (1). William Trevor King <wking@drexel.edu>
     [ultimate] (2)  William Trevor King <tvrkng@gmail.com>
 
 If you get confused, there's also a `help` command.
index f5d622668d01a0f85ca63dc8f5ee1e448924ed5f..66d3536b9343e36439ec822311b0549c16a3525b 100644 (file)
@@ -7,7 +7,7 @@
 -# Copyright (C) 2009           Rob G. Healey <robhealey1@gmail.com>
 +# Copyright (C) 2009       Rob G. Healey <robhealey1@gmail.com>
  # Copyright (C) 2010       Jakim Friant
-+# Copyright (C) 2011       W. Trevor King <wking@tremily.us>
++# Copyright (C) 2011       W. Trevor King <wking@drexel.edu>
  #
  # This program is free software; you can redistribute it and/or modify
  # it under the terms of the GNU General Public License as published by
index 68657dbb2f3a0f225899ac51be5898a489022ea7..c3fd51b332d8194a454b049a0c797689c5591cfa 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 #
-# Copyright (C) 2011 W. Trevor King <wking@tremily.us>
+# Copyright (C) 2011 W. Trevor King <wking@drexel.edu>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as
index 8ac2c5eb6cb4b7fac07f042d6f89fcaa341b6c26..1acd2d088858081123d156476cbc630de2494e14 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/bash
 #
-# Copyright (C) 2011 W. Trevor King <wking@tremily.us>
+# Copyright (C) 2011 W. Trevor King <wking@drexel.edu>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as
index 17e80a2fe76dc209ac6424e2e57c2d18bae6698c..b4654a6477dc7ccd19555aafd2883df3cd079f38 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/bash
 #
-# Copyright (C) 2011 W. Trevor King <wking@tremily.us>
+# Copyright (C) 2011 W. Trevor King <wking@drexel.edu>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as
index 94619db17c8144dbc6336e840009d277fd3f6d0f..eeccd49578429c10343bf090f64bed06c4860b12 100644 (file)
@@ -1,5 +1,5 @@
 From 67bdccaf0d328eae57142235dd66b1bdf2a1be66 Mon Sep 17 00:00:00 2001
-From: W. Trevor King <wking@tremily.us>
+From: W. Trevor King <wking@drexel.edu>
 Date: Tue, 21 Oct 2008 09:36:29 -0400
 Subject: [PATCH] Added math.h include to fs_align_histogram2d.h.
 
index 170d8285de05193c6443d23802279e47d04c476a..75275ed3c0634fb4afce5b65f06ba03c1dffa4d0 100644 (file)
@@ -1,5 +1,5 @@
 From 81f8a53d2c0ec948f9396fc58be0328b502392c4 Mon Sep 17 00:00:00 2001
-From: W. Trevor King <wking@tremily.us>
+From: W. Trevor King <wking@drexel.edu>
 Date: Tue, 21 Oct 2008 10:28:29 -0400
 Subject: [PATCH] changed abs(double) to fabs(double) in fs_fit_spectrum.cpp
 
index ceab52909016d99eb3316504d475a4e6712461ee..0d5c7a78cbd405ba3036112e807a72fcf436cef4 100644 (file)
@@ -1,5 +1,5 @@
 From 9c4d46b8007f85fa4d7c6c285c1c64a766d4001e Mon Sep 17 00:00:00 2001
-From: W. Trevor King <wking@tremily.us>
+From: W. Trevor King <wking@drexel.edu>
 Date: Tue, 21 Oct 2008 19:53:51 -0400
 Subject: [PATCH] Updated wxWindows code to compile on wx-2.8.
 
index bf447c0f3d2e8a4d9eee0ab601acf7b0bbe6cdfc..0b1bfadb826bdbae5535c588917386d73b13dd5a 100644 (file)
@@ -1,5 +1,5 @@
 From 6375e1f233b9366ca0ba40fac785764df0a6edb2 Mon Sep 17 00:00:00 2001
-From: W. Trevor King <wking@tremily.us>
+From: W. Trevor King <wking@drexel.edu>
 Date: Tue, 21 Oct 2008 19:57:03 -0400
 Subject: [PATCH] Added wxglade entry to Makefile for regenerating automatic code.
 
index b43ea2a12fc011187eec846d96024b752c6bc8ac..5586e021db0ec638d5f8a8a6d160ea7c415435fa 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 #
-# Copyright (C) 2011 W. Trevor King <wking@tremily.us>
+# Copyright (C) 2011 W. Trevor King <wking@drexel.edu>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as
index a18c8b865fa533eb25169aaf3aeb43e5af98c89b..ca129d4c4052383a2252db2b583c4e94d38f6d4a 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 #
-# Copyright (C) 2011 W. Trevor King <wking@tremily.us>
+# Copyright (C) 2011 W. Trevor King <wking@drexel.edu>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as
index 8930e714a2684a71c8f0b3c43ed77741a1337db9..54a43a0288fc50aa53f2ee204191aa9f7403f6a8 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 #
-# Copyright (C) 2011 W. Trevor King <wking@tremily.us>
+# Copyright (C) 2011 W. Trevor King <wking@drexel.edu>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as
index 77fb3a23deb9c4af814970362c87e7b41f606736..e6ad0c09c86521e7c772a25bd12bdff63443b690 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 # 
-# Copyright (C) 2009-2010 W. Trevor King <wking@tremily.us>
+# Copyright (C) 2009-2010 W. Trevor King <wking@drexel.edu>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as
index 61f1ee9c0e24a6f5680636e18e7a2b8f5af47d01..a66901d34ad463e8c4ed56e7a7429b8a986cef5b 100755 (executable)
@@ -2,7 +2,7 @@
 #
 # Print battery status/percentage
 #
-# Copyright (C) 2010 W. Trevor King <wking@tremily.us>
+# Copyright (C) 2010 W. Trevor King <wking@drexel.edu>
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
index 8775753691dbb256cc0937cc44950230cad912b2..0f3f31023a7902eb1241cf33dfff23d374eb40a3 100755 (executable)
@@ -2,7 +2,7 @@
 #
 # Something along the lines of qiv's .qiv-save and .qiv-trash for pqiv.
 #
-# Copyright (C) 2010 W. Trevor King <wking@tremily.us>
+# Copyright (C) 2010 W. Trevor King <wking@drexel.edu>
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
index bc0074dc6ecd2f3aa759db2600914754dd730284..cfb12c90c0be615f1d35589828104f0f95078a5f 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 #
-# Copyright (C) 2010-2012 W. Trevor King <wking@tremily.us>
+# Copyright (C) 2010-2012 W. Trevor King <wking@drexel.edu>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as
index 27f3395eaf7dcdb1b502b0fdb38db27fd8f89b71..b02a32c2186c4ff34b289ab4d6f3457341f53eb3 100755 (executable)
@@ -90,7 +90,7 @@ EUTILS_CLIENT = _Client(EUTILS_WSDL_URL)
 
 # Entrez-requested tracking information
 TOOL = 'entrezpy'
-EMAIL = 'wking@tremily.us'
+EMAIL = 'wking@drexel.edu'
 
 # Logging
 LOG = _logging.getLogger(TOOL)
index 56b658b740ef226812331cc254980cbdca98f96a..5767780e02e44d2b6e20d0cdbd654372f9807933 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 #
-# Copyright (C) 2011 W. Trevor King <wking@tremily.us>
+# Copyright (C) 2011 W. Trevor King <wking@drexel.edu>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as
index 1f87f2c24b29930770866479b3fee4fc7d87b243..0db8ffa89339b72eb6e80a314ed19d4673be3813 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/python
 #
-# Copyright (C) 2010 W. Trevor King <wking@tremily.us>
+# Copyright (C) 2010 W. Trevor King <wking@drexel.edu>
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
index 4a9ec410d6a71c79fe99ceb06651885d330242e4..8194dcb754cc49466582e89afa285f58fa3e5576 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 # 
-# Copyright (C) 2011 W. Trevor King <wking@tremily.us>
+# Copyright (C) 2011 W. Trevor King <wking@drexel.edu>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as
index 683ab9b8a30d1aebdf8d29c4a1e777985f3dc5e5..99e1bc3b8808f1565f9fb2a24b766bdf0d7e86ab 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 #
-# Copyright (C) 2011 W. Trevor King <wking@tremily.us>
+# Copyright (C) 2011 W. Trevor King <wking@drexel.edu>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as
index 432c800e71a4cd416a0e927d071b86cdcbd33d7a..8990b7c3c9cd974012d3441b9a429efedd0f638c 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 #
-# Copyright (C) 2011 W. Trevor King <wking@tremily.us>
+# Copyright (C) 2011 W. Trevor King <wking@drexel.edu>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as
index 90da4f720a49a049778304faeb12f3ba54d32db9..88eaf9746605f7e6150a1d17638c35b170de9a53 100644 (file)
@@ -6,7 +6,7 @@
 
     Copyright:
     Copyright (C) 2007  Chris Lamb <lamby@debian.org>
-    Copyright (C) 2010  W. Trevor King <wking@tremily.us>
+    Copyright (C) 2010  W. Trevor King <wking@drexel.edu>
 
     This program is free software: you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
index 6c9649f5c0e4201e8958faa42e3dd4f811d91150..7690de619d77f616f8ea1683f062b07fff31a846 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/env python
 #
-# Copyright (C) 2009-2011 W. Trevor King <wking@tremily.us>
+# Copyright (C) 2009-2011 W. Trevor King <wking@drexel.edu>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as
index 305cd2be6c3a05447e1adf757200a667d665e0df..57feb2efa57086b805b75d58027abbeefd5a786b 100755 (executable)
@@ -2,7 +2,7 @@
 #
 # Rename JPEGs to reflect the creation date stored in their metadata.
 #
-# Copyright (C) 2010-2011 W. Trevor King <wking@tremily.us>
+# Copyright (C) 2010-2011 W. Trevor King <wking@drexel.edu>
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
index 1cd7c049d2aeada13d93430873ac58162caa3f70..cfccc6fa8e33210c6e718cf335a92877309153aa 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/bash
 #
-# Copyright (C) 2008-2011, William Trevor King <wking@tremily.us>
+# Copyright (C) 2008-2011, William Trevor King <wking@drexel.edu>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
index b4baf91efa0584eca932fc9fad715720540a6698..952fd3c59038c5fe6ad232231d0fe62fce0e9e1f 100644 (file)
@@ -18,7 +18,7 @@
   <RDF:Description RDF:about="urn:mozilla:package:rel-vcs"\r
                   chrome:displayName="rel-vcs 1.0"\r
                   chrome:author="W. Trevor King"\r
-                  chrome:authorURL="mailto:wking@tremily.us"\r
+                  chrome:authorURL="mailto:wking@drexel.edu"\r
                   chrome:name="rel-vcs"\r
                   chrome:extension="true"\r
                   chrome:description="Displays an icon to indicate presence of rel-vcs data in the web page.">\r
index f99a40e9f4cde93619529e0582724896694c6cb1..05924f215972152dcd9ae373bbbf062a9552aa4a 100755 (executable)
@@ -1,6 +1,6 @@
 #!/usr/bin/python
 #
-# Copyright (C) 2008-2011 W. Trevor King <wking@tremily.us>
+# Copyright (C) 2008-2011 W. Trevor King <wking@drexel.edu>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as
index 10e22fbdcccafda4cc817c6d4ed40f50b02d4c83..f96aadda7e2da677405af88ee6428ef823f527bb 100755 (executable)
@@ -1,5 +1,5 @@
 #!/usr/bin/env python
-# Copyright (C) 2010  W. Trevor King <wking@tremily.us>
+# Copyright (C) 2010  W. Trevor King <wking@drexel.edu>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by