Skip to content

Instantly share code, notes, and snippets.

View dettmering's full-sized avatar

Till Dettmering dettmering

View GitHub Profile
@dettmering
dettmering / gist:3767366
Created September 22, 2012 18:43
Python: Read CSV file into array
def readcsv(filename):
ifile = open(filename, "rU")
reader = csv.reader(ifile, delimiter=";")
rownum = 0
a = []
for row in reader:
a.append (row)
rownum += 1
@dettmering
dettmering / gist:3767424
Created September 22, 2012 19:03
PHP: Convert UNIX time into relative timestamp
// converts UNIX seconds into relative format
function relativeDate($date) {
$secondsago = time() - $date;
if ($secondsago <= 59) {$timestamp = "less than a minute ago";}
else if ($secondsago <= 119) {$timestamp = floor(($secondsago / 60)) . " minute ago (" . strftime('%R', $date) . ")";}
else if ($secondsago <= 3599) {$timestamp = round(($secondsago / 60)) . " minutes ago (" . strftime('%R', $date) . ")";}
else if ($secondsago <= 7199) {$timestamp = round(($secondsago / 3600),1) . " hours ago (" . strftime('%a %R', $date) . ")";}
else if ($secondsago <= 86400) {$timestamp = round(($secondsago / 3600)) . " hours ago (" . strftime('%a %R', $date) . ")";}
else if ($secondsago <= 345600) {$timestamp = round(($secondsago / 86400)) . " days ago (" . strftime('%a %R', $date) . ")";}
@dettmering
dettmering / bbox.sh
Created November 9, 2012 12:07
Shell: Recalculate bounding box of EPS files
#!/bin/bash
# This script recalculates all bounding boxes of all eps files in the same folder
# requires epstool
for f in *.eps
do
g=$(echo $f | sed 's/\(.*\)\..*/\1/')
echo Processing $f ...
epstool --copy --bbox $g.eps $g-new.eps
done
@dettmering
dettmering / gist:4045392
Created November 9, 2012 12:08
Bash: Add all EPS files in the directory to a TeX file
#!/bin/bash
# Puts all eps files in folder in figure environment
rm figures.tex
echo "\documentclass[a4paper,10pt]{article}
\usepackage[utf8]{inputenc}
\usepackage{graphicx} % support the \includegraphics command and options
\usepackage{epstopdf}
@dettmering
dettmering / gist:4587442
Last active December 11, 2015 10:29
LaTeX: TikZ playground.
\documentclass{article}
\usepackage{tikz}
\usepackage{pgfplots}
\usepackage[scaled]{helvet}
\usepackage[T1]{fontenc}
\usepackage{verbatim}
\renewcommand*\familydefault{\sfdefault} %% Only if the base font of the document is to be sans serif
@dettmering
dettmering / gist:4943573
Last active December 13, 2015 16:49
LaTeX: Template for generating PDF with figures for paper submission
\documentclass{article}
\usepackage[scaled]{helvet}
\usepackage[T1]{fontenc}
\usepackage{verbatim}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage[nomarkers,nofiglist,figuresonly]{endfloat}
\pagenumbering{gobble} % removes page numbering
@dettmering
dettmering / gist:5070274
Last active December 14, 2015 10:10
Python: Generate heat map
def rgb(r,g,b): # Just returns r, g, b in this case. Can be used to reformat RGB values if necessary.
return r,g,b
def heat(min, max, val, type): # Takes min and max values and the value to be heatmapped. Type is the look up table, see below.
min = float(min)
max = float(max)
val = float(val)
val = (val - min) / (max - min) # normalize val to min and max
@dettmering
dettmering / gist:5075213
Last active December 14, 2015 10:49
Bash: Parse all GD files in folder
#!/bin/bash
# This script creates eps files from all .gd or .exec files in a directory.
if [ ! -d "img/" ];
then
mkdir img
fi
rm img/*-gd.eps
touch execfile # Create execfile
@dettmering
dettmering / colorpalette.R
Created October 1, 2013 13:55
R: Cool heatmap color palette
library(RColorBrewer)
brewer.pal(30, "RdYlBu")
@dettmering
dettmering / imgrename.sh
Created February 14, 2014 13:49
Bash: Renames groups of images (329L_**_000x.tif) with a combined md5 hash of the group (329L_**-bac8dacd79_000x.tif)
#!/bin/bash
# Rename image files with md5 hash
mkdir out
for f in *.tif
do
splt=(${f//_/ })
c=$(cat ${splt[0]}\_${splt[1]}\_* | md5) # 329L_23_*
o=${splt[0]}\_${splt[1]}\-${c:0:10}\_${splt[2]}