Skip to content

Instantly share code, notes, and snippets.

View jvwong's full-sized avatar
💭
Generally confused.

Jeffrey jvwong

💭
Generally confused.
View GitHub Profile
certbot certonly --webroot --webroot-path=<webroot path> --cert-name <certname> -d <domain>
@jvwong
jvwong / crossref_query.sh
Last active May 23, 2023 18:27
Crossref: Query
QUERY="Inositol pyrophosphate dynamics reveals control of the yeast PHO starvation program through 1,5-IP8 and the SPX domain of Pho81"
curl --get --data-urlencode "query.bibliographic=${QUERY}" "https://api.crossref.org/works/?filter=type:journal-article,type:posted-content&rows=1" | jq '. | { title: .message.items[0].title[0], abstract: .message.items[0].abstract, doi: .message.items[0].DOI, publisher: .message.items[0].publisher }'