Skip to content

Instantly share code, notes, and snippets.

View yannickwurm's full-sized avatar
😜

Yannick Wurm yannickwurm

😜
View GitHub Profile
@stephenturner
stephenturner / txt
Last active November 25, 2017 15:43
Uses the http://textbelt.com/ API to send a text message.
#!/bin/bash
# Uses the http://textbelt.com/ API to send a text message.
# The PHONE environment variable must be set, e.g., in your .bashrc., e.g.
# export PHONE=1234567890
# Usage: txt "<a text message to send>"
# Example 1
# When long_running_command is done successfully, this command
@sscarduzio
sscarduzio / relog.sh
Created August 24, 2014 21:20
BtWiFi_with_FON automatic login written as a bash script. I have this running every 10 minutes on my raspberry pi
#!/bin/bash
# CONF
DBG=true
RELOG_UNAME=your@email.com
RELOG_PASSW=xxxxxxxxxxxxxxx
# END CONF
@lindenb
lindenb / Makefile
Created August 30, 2012 13:43
NGS crash course
#http://samtools.sourceforge.net/mpileup.shtml
SAMDIR=/usr/local/package/samtools-0.1.18
SAMTOOLS=$(SAMDIR)/samtools
BCFTOOLS=$(SAMDIR)/bcftools/bcftools
BWA=/usr/local/package/bwa-0.6.1/bwa
REF=chr22.fa
.INTERMEDIATE : align.sam random_1.sai random_2.sai align.bam variations.bcf
@zhengjia
zhengjia / capybara cheat sheet
Created June 7, 2010 01:35
capybara cheat sheet
=Navigating=
visit('/projects')
visit(post_comments_path(post))
=Clicking links and buttons=
click_link('id-of-link')
click_link('Link Text')
click_button('Save')
click('Link Text') # Click either a link or a button
click('Button Value')