Skip to content

Instantly share code, notes, and snippets.

View mcourteaux's full-sized avatar

Martijn Courteaux mcourteaux

View GitHub Profile
@balkian
balkian / example.tex
Created May 4, 2017 07:36
Rotated headers in latex tables
\usepackage{adjustbox}
\usepackage{array}
\newcolumntype{R}[2]{%
>{\adjustbox{angle=#1,lap=\width-(#2)}\bgroup}%
l%
<{\egroup}%
}
\newcommand*\rot{\multicolumn{1}{R{45}{1em}}}% no optional argument here, please!
@jussi-kalliokoski
jussi-kalliokoski / Makefile
Created March 30, 2012 19:55
sudo make me a sandwich
NOOP := rm -f
me:
@$(NOOP)
a:
@$(NOOP)
sandwich:
@if [ `whoami` = "root" ]; then echo "one sandwich coming right up!"; else echo "hah, make me!"; fi