From 72e2f075684605da00ea4f42548119eb58029cba Mon Sep 17 00:00:00 2001 From: bryan newbold Date: Thu, 27 Mar 2008 19:49:40 -0400 Subject: added ipython and xinitrc --- .fluxbox/keys | 2 +- .ipython/ipythonrc-scipy-bnewbold | 47 +++++++++++++++++++++++++++++++++++++++ .xinitrc | 3 +++ 3 files changed, 51 insertions(+), 1 deletion(-) create mode 100644 .ipython/ipythonrc-scipy-bnewbold create mode 100644 .xinitrc diff --git a/.fluxbox/keys b/.fluxbox/keys index 62fea96..7400414 100644 --- a/.fluxbox/keys +++ b/.fluxbox/keys @@ -41,7 +41,7 @@ Mod4 t :ExecCommand xterm -rv +sb -ls Mod4 f :ExecCommand firefox Mod4 m :Minimize Mod4 F12 :ExecCommand xmms -m -Mod4 p :ExecCommand xterm -rv +sb -e alpine +Mod4 p :ExecCommand xterm -rv +sb -e pine Mod4 Prior :ExecCommand xmms -f Mod4 Next :ExecCommand xmms -f Mod4 Home :ExecCommand xmms -t diff --git a/.ipython/ipythonrc-scipy-bnewbold b/.ipython/ipythonrc-scipy-bnewbold new file mode 100644 index 0000000..cff8f4a --- /dev/null +++ b/.ipython/ipythonrc-scipy-bnewbold @@ -0,0 +1,47 @@ +# -*- Mode: Shell-Script -*- Not really, but shows comments correctly +#*************************************************************************** +# +# Configuration file for ipython -- ipythonrc format +# +# The format of this file is one of 'key value' lines. +# Lines containing only whitespace at the beginning and then a # are ignored +# as comments. But comments can NOT be put on lines with data. +#*************************************************************************** + +# This is an example of a 'profile' file which includes a base file and adds +# some customizaton for a particular purpose. + +# If this file is found in the user's ~/.ipython directory as ipythonrc-scipy, +# it can be loaded by calling passing the '-profile scipy' (or '-p scipy') +# option to IPython. + +# This example is meant to load several modules to turn ipython into a very +# capable environment for high-end numerical work, similar to IDL or MatLab +# but with the beauty of the Python language. + +# load our basic configuration with generic options +include ipythonrc + +# import ... +# Load SciPy by itself so that 'help scipy' works +import_mod scipy pylab + +# from ... import ... +import_some + +# Now we load all of SciPy +# from ... import * +import_all scipy IPython.numutils pylab + +# code +# execute print 'Welcome to the SciPy Scientific Computing Environment.' + +######## CHANGED -bnewbold +#execute scipy.alter_numeric() + + + +# File with alternate printer system for Numeric Arrays. +# Files in the 'Extensions' directory will be found by IPython automatically +# (otherwise give the explicit path): +execfile Extensions/numeric_formats.py jlab/stats.py jlab/importdata.py jlab/plotting.py diff --git a/.xinitrc b/.xinitrc new file mode 100644 index 0000000..5891dea --- /dev/null +++ b/.xinitrc @@ -0,0 +1,3 @@ +xterm -rv +sb -ls & +wmbattery -f /dev/apm & +ssh-agent fluxbox -verbose -- cgit v1.2.3 From c28c2a5cd8e2199ccfcff53111f07c8169536b9e Mon Sep 17 00:00:00 2001 From: bryan newbold Date: Thu, 19 Jun 2008 00:52:18 -0400 Subject: added hosts --- .ssh/config | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.ssh/config b/.ssh/config index 3a3278c..722ef6d 100644 --- a/.ssh/config +++ b/.ssh/config @@ -1,6 +1,12 @@ Host sicm HostName planet024.ai.mit.edu User bnewbold +Host animus + HostName animus.robocracy.org + User bnewbold +Host linux + HostName linux.mit.edu + User bnewbold Host ligo HostName aneirin.mit.edu User controls -- cgit v1.2.3 From 45ac6595c89f141cd968f87d8f6742ed64a4325f Mon Sep 17 00:00:00 2001 From: bryan newbold Date: Wed, 1 Oct 2008 00:55:24 -0400 Subject: disabled bell, upgrade to alpine --- .fluxbox/keys | 2 +- .pinerc | 18 ++++++++++++++++-- .xinitrc | 1 + 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/.fluxbox/keys b/.fluxbox/keys index 7400414..62fea96 100644 --- a/.fluxbox/keys +++ b/.fluxbox/keys @@ -41,7 +41,7 @@ Mod4 t :ExecCommand xterm -rv +sb -ls Mod4 f :ExecCommand firefox Mod4 m :Minimize Mod4 F12 :ExecCommand xmms -m -Mod4 p :ExecCommand xterm -rv +sb -e pine +Mod4 p :ExecCommand xterm -rv +sb -e alpine Mod4 Prior :ExecCommand xmms -f Mod4 Next :ExecCommand xmms -f Mod4 Home :ExecCommand xmms -t diff --git a/.pinerc b/.pinerc index e69c09a..29d1230 100644 --- a/.pinerc +++ b/.pinerc @@ -318,10 +318,10 @@ address-book= global-address-book= # Set by Pine; controls beginning-of-month sent-mail pruning. -last-time-prune-questioned=108.3 +last-time-prune-questioned=119.10 # Set by Pine; controls display of "new version" message. -last-version-used=5.00 +last-version-used=5.10 # This names the path to an alternative program, and any necessary arguments, # to be used in posting mail messages. Example: @@ -584,3 +584,17 @@ wp-state= # WebAlpine preferred width for message display in characters wp-columns= + +# If set, specifies where trash is moved to in Web Alpine. +trash-folder= + +# Defaults to nothing, which is equivalent to US-ASCII. This is used for +# unlabeled incoming messages. It is ok to leave this unset but if you receive +# unlabeled mail that is usually in some known character set, set that here. +unknown-character-set= + +# Location relative to your HOME directory of the directory where your INBOX +# for the maildir format is located. Default value is "Maildir". If your +# inbox is located at "~/Maildir" you do not need to change this value. +# A common value is also ".maildir" +maildir-location= diff --git a/.xinitrc b/.xinitrc index 5891dea..dff9579 100644 --- a/.xinitrc +++ b/.xinitrc @@ -1,3 +1,4 @@ xterm -rv +sb -ls & +xset b off wmbattery -f /dev/apm & ssh-agent fluxbox -verbose -- cgit v1.2.3 From 7a73f2a7c706a1383ad0778671d1dbbe9c636f3a Mon Sep 17 00:00:00 2001 From: root Date: Sun, 5 Oct 2008 20:57:02 -0400 Subject: updated todo, from new laptop --- todo | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/todo b/todo index b14b7b6..b53dad7 100644 --- a/todo +++ b/todo @@ -1,19 +1,7 @@ -17mat2008 ---------- -bosley -shoes -essay -jlab - -| tuesday: ---------------- check on CMU transfer credit status -check on jlab dvd - - - +freebsd docs to read: http://www.freebsd.org/doc/en/articles/linux-comparison/ http://www.freebsd.org/doc/en/articles/vinum/ http://www.freebsd.org/doc/en/articles/version-guide/ -- cgit v1.2.3