Skip to content

Instantly share code, notes, and snippets.

View sdwfrost's full-sized avatar

Simon Frost sdwfrost

View GitHub Profile
@sdwfrost
sdwfrost / kitp.ipynb
Created February 19, 2016 20:11
Julia overview for KITP
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sdwfrost
sdwfrost / README.md
Created May 31, 2016 10:35 — forked from thequux/README.md
Multirust-compatible racer wrapper

This wrapper automatically sets the RUST_SRC_DIRECTORY environment variable for whatever rust compiler is currently active, automatically creating a new checkout whenever necessary. This should be compatible with all of the multirust-alike tools, but it has only been tested with rustup.rs

Installation

Simply place this somewhere on your path before the main racer binary and set the execute bit.

Uninstallation

@sdwfrost
sdwfrost / sir-jl-benchmark.ipynb
Last active July 28, 2016 12:06
Benchmarks for SIR model in Julia
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sdwfrost
sdwfrost / sir-r-benchmark.ipynb
Last active July 28, 2016 12:29
Benchmarks for SIR model in R/Rcpp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sdwfrost
sdwfrost / mktest.Rmd
Created August 18, 2016 15:16
MKn model in diversitree with deSolve and custom initial conditions
---
title: "mkn test"
author: "Simon D.W. Frost"
date: "18 August 2016"
output: html_document
---
```{r}
library(ape)
library(diversitree)
@sdwfrost
sdwfrost / forms.html
Created September 20, 2016 05:18 — forked from gnunicorn/forms.html
Jinja2 WTForms macros for twitter bootstrap
{%- macro form_field_label(field) -%}
<label for="{{ field.id }}">{{ field.label.text }}
{%- if field.flags.required -%}
<abbr title="Diese Feld muss angegeben werden">*</abbr>
{%- endif %}</label>
{% endmacro %}
{%- macro form_field_description(field) -%}
{% if field.description %}
<span class="descr">{{ field.description }}</span>
@sdwfrost
sdwfrost / SRR765688.fasta
Last active October 23, 2016 06:33
Test files for vdjtools/ChangeO
>SRR765688.30659 HQP9GKT01B1E02 length=380|SEQORIENT=F,RC,F|MID=MID54|CPRIMER=IgG-PCR|VPRIMER=LR3|DUPCOUNT=3
NNNNNNNNNNNNNNNNNNNNACGAAGCCTGGGGCCTCAGTGAAGATTTCCTGCAAGGCTT
CTGGATACATTTTCACTAAATATTCAATGAGTTGGGTGCGACAGGCCCCTGGACAAGGGC
TTGAGTGGATGGGATACATCAACACCATCACTGGTAACCCAACTTACGCCCAGGCCTTCA
CAGGACGGTTTGTCTTTTCCTTGGACACCTCTATCAGCACGGCATATCTGCAGATCAGCA
GCCTAAAGACTGACGACACTGGCATGTATTATTGTTCGACCCTCCAACCGCGTATTGCAG
CACCTGAATTCTGGGGCCAGGGAGCCCTGGTCGCCGTCTCCTCGGCCTCCAC
>SRR765688.38189 HQP9GKT01B1F8D length=357|SEQORIENT=F,F,F|MID=MID53|CPRIMER=IgG-PCR|VPRIMER=LR1|DUPCOUNT=2
NNNNNNNNNNNNNNNNNNNCTGTGACATCTCCGGGGAGAGTATCTCTAACACCAATGTTG
GCTGGACCTGGATCAGGCAGTCCCCATCGAGAGGTCTTGAGTGGCTGGGAAGGACATTCT
@sdwfrost
sdwfrost / pi_qemu.sh
Created November 24, 2016 12:34 — forked from JasonGhent/pi_qemu.sh
OSX raspberry pi emulation via QEMU. v2 attempt @ https://gist.github.com/JasonGhent/922f38f57c8cb77b10f3
# pulled from http://xecdesign.com/qemu-emulating-raspberry-pi-the-easy-way/
# expanded via http://superuser.com/questions/690060/how-to-enable-network-with-a-raspberry-pi-emulated-on-qemu
# tested with 2015-02-16-raspbian-wheezy.zip on OSX Mavericks
# OSX terminal
brew install qemu
# kernel-qemu is a linux kernel compiled with ARM1176 support.
# learn more here: http://xecdesign.com/compiling-a-kernel/
curl -OL http://xecdesign.com/downloads/linux-qemu/kernel-qemu
curl -o raspbian_latest.zip -L http://downloads.raspberrypi.org/raspbian_latest
@sdwfrost
sdwfrost / mingw-w64-3.10-osx10.9.sh
Created November 26, 2016 13:49 — forked from Drakulix/mingw-w64-3.10-osx10.9.sh
Script to install a Mingw-w64 Cross-Compiler Suite on Mac OS X 10.9
#!/bin/sh
# dependencies
echo "Installing dependencies via Homebrew (http://brew.sh)"
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
brew update
brew install gcc48