Skip to content

Instantly share code, notes, and snippets.

@nicolassmith
nicolassmith / index.php
Last active January 6, 2017 21:30
ligo caltech journal club script
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd" />
<html>
<head>
<title>LIGO CIT Journal Club</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" />
</head>
<body>
<h1><a href="https://wiki-40m.ligo.caltech.edu/Journal_Club">LIGO CIT Journal Club</a></h1>
<h2>Upcoming presenters:</h2>
an app which takes latex expression as input, then can numerically evaluate, including units and constants.
called plug and chug?
@nicolassmith
nicolassmith / gist:2052384
Created March 16, 2012 20:18
DCC Bibtex Bookmarklet source.
(function(){
var basicdiv = document.getElementById('BasicDocInfo');
var dccnum = basicdiv.childNodes[1].childNodes[2].childNodes[0].innerHTML.split('-')[1];
var numauthors = document.getElementById('Authors').childNodes[1].childNodes.length;
var authors = new Array();
for(var j=0;j<numauthors;j++){
authors[j] = document.getElementById('Authors').childNodes[1].childNodes[j].childNodes[0].innerHTML;
};
var title = document.getElementById('DocTitle').childNodes[1].innerHTML;
var dateels = basicdiv.childNodes[1].childNodes[17].innerHTML.split('%20');