Skip to content

Instantly share code, notes, and snippets.

View larsgw's full-sized avatar

Lars Willighagen larsgw

View GitHub Profile
@larsgw
larsgw / main.txt
Created May 27, 2017 15:39
cURL https doi.org -> http data crossref.org
$ curl -vILH 'Accept: application/vnd.citationstyles.csl+json' https://doi.org/10.1126/science.169.3946.635
* Hostname was NOT found in DNS cache
* Trying 63.123.152.248...
* Connected to doi.org (63.123.152.248) port 443 (#0)
* successfully set certificate verify locations:
* CAfile: none
CApath: /etc/ssl/certs
* SSLv3, TLS handshake, Client hello (1):
* SSLv3, TLS handshake, Server hello (2):
* SSLv3, TLS handshake, CERT (11):
@larsgw
larsgw / app.js
Last active January 15, 2017 13:23
Frame function and dependency functions to move a CSS "car"
function deg(a){return a*(180/Math.PI);}
function rad(a){return a*(Math.PI/180);}
function sin(a){return Math.sin(rad(a))}
function cos(a){return Math.cos(rad(a))}
function tan(a){return Math.tan(rad(a))}
function asin(a){return deg(Math.asin(a))}
function acos(a){return deg(Math.acos(a))}
function atan(a){return deg(Math.atan(a))}
var mov = { w:0,a:0,s:0,d:0,i:0,k:0,t:0,f:0,g:0,h:0 },
@larsgw
larsgw / citation-js_csl_to_bib.js
Created October 30, 2016 14:22
Demo of CSL -> BibTeX
var Cite = require('citation-js')
var csl = [
{
id: "Q23571040",
type: "article-journal",
title: "Correlation of the Base Strengths of Amines 1",
DOI: "10.1021/ja01577a030",
author: [
{
@larsgw
larsgw / citation-js_output_test.bib
Created October 30, 2016 13:56
When opening this BibTeX file generated by Citation.js, Mendeley doesn't pick up the year.
@article{Birol2013Assembling,
author={Inanc Birol and Anthony Raymond and Shaun D Jackman and Stephen Pleasance and Robin Coope and Greg A Taylor and Macaire Man Saint Yuen and Christopher I Keeling and Dana Brand and Benjamin P Vandervalk and Heather Kirk and Pawan Pandoh and Richard A Moore and Yongjun Zhao and Andrew J Mungall and Barry Jaquish and Alvin Yanchuk and Carol Ritland and Brian Boyle and Jean Bousquet and Kermit Ritland and John Mackay and Jörg Bohlmann and Steven J M Jones},
doi={10.1093/bioinformatics/btt178},
journal={Bioinformatics},
issue=12,
pages={1492--7},
title={{Assembling the 20 Gb white spruce (Picea glauca) genome from whole-genome shotgun sequencing data}},
volume=29,
year=2013,
}