Skip to content

Instantly share code, notes, and snippets.

View transientlunatic's full-sized avatar

Daniel Williams transientlunatic

View GitHub Profile

Keybase proof

I hereby claim:

  • I am transientlunatic on github.
  • I am lpmn (https://keybase.io/lpmn) on keybase.
  • I have a public key ASCSLnwk5X0yaDIA0bqBF_Gv-fIHfoBIRVHs_Tx-Mj71nAo

To claim this, I am signing this object:

@transientlunatic
transientlunatic / burst.mplstyle
Last active April 19, 2016 09:54
A Matplotlib style for the Burst Companion Paper
patch.linewidth: 0.5
patch.facecolor: 348ABD # blue
patch.edgecolor: EEEEEE
patch.antialiased: True
font.size: 8
text.usetex: True,
font.family: 'New Century Schoolbook',
text.color : black,
@transientlunatic
transientlunatic / burstsim_install.sh
Last active October 20, 2015 09:32
BurstSim Installation
#! /bin/bash
# This is a bash script to install the BurstSims environment as
# described at https://wiki.ligo.org/Bursts/BurstSimsEnvironment
NAME=burstsim
SOURCE_DIR=${HOME}/repositories
# Install PIP in the home directory
VERSION=`python -c 'import sys; print "%d.%d" % (sys.version_info[0], sys.version_info[1])'`
mkdir -p ${HOME}/local/pip-7.1.0/lib/python${VERSION}/site-packages
@transientlunatic
transientlunatic / lal_install.sh
Last active January 25, 2018 11:50
LAL Install script
#! /bin/bash
LIBFRAME_VER=v8r26
# CHECK IF WE'RE INSTALLING INTO A VIRTUALENV
if [ -n "$VIRTUAL_ENV" ]; then
echo "This installation appears to be within a virtual environment."
echo "LALSuite will be installed to $VIRTUAL_ENV."