I hereby claim:
- I am pmuens on github.
- I am pmuens (https://keybase.io/pmuens) on keybase.
- I have a public key whose fingerprint is 538E BBE7 4CBE CCFF 3378 9E66 A7D4 646F 897D B725
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
set -Eeuo pipefail | |
trap cleanup SIGINT SIGTERM ERR EXIT | |
script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P) | |
usage() { | |
cat <<EOF | |
Usage: $(basename "${BASH_SOURCE[0]}") [-h] [-v] [-f] -p param_value arg1 [arg2...] |
import DB from './DB' | |
describe('DB', () => { | |
let db: DB | |
const data = { name: 'Tom Cook', type: ['person', 'CEO'] } | |
beforeEach(() => { | |
db = new DB() | |
db.addNode('1', { name: 'Apple Computer Company', type: ['company', 'start-up'], founded: 'April 1, 1976' }) |
% | |
% Code written while following https://www.overleaf.com/learn/latex/Learn_LaTeX_in_30_minutes | |
% | |
\documentclass[12pt, letterpaper]{article} | |
\title{My first LaTex document} | |
\author{Philipp Muens\thanks{Funded by X.}} | |
\date{\today} | |
\usepackage{amsmath} | |
\usepackage{graphicx} | |
\graphicspath{{images/}} |