Skip to content

Instantly share code, notes, and snippets.

View dettmering's full-sized avatar

Till Dettmering dettmering

View GitHub Profile
@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) . ")";}
- bundle exec jekyll build 2>&1 | tee output.log
- grep -i "error" output.log > /dev/null ; test $? -ne 0 # fail if there is an error in output.log
@dettmering
dettmering / Dockerfile
Created December 11, 2016 11:14
GSI GD Dockerfile
FROM ubuntu:16.04
MAINTAINER tilldettmering@gmail.com
RUN apt-get update &&\
apt-get install --no-install-recommends -y \
ksh \
xvfb \
wget &&\
apt-get clean -y && rm -rf /var/lib/apt/lists/*
@dettmering
dettmering / colorpalette.R
Created October 1, 2013 13:55
R: Cool heatmap color palette
library(RColorBrewer)
brewer.pal(30, "RdYlBu")
@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 / 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: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: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 / 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}