Skip to content

Instantly share code, notes, and snippets.

View klieret's full-sized avatar
💭
🦊

Kilian Lieret klieret

💭
🦊
View GitHub Profile
@klieret
klieret / unevaluated.wl
Last active September 19, 2021 23:11
Print Mathematica expressions without evaluating them & use that for a handy debug print statement to print internal variables together with their names.
debugPrint::usage="Arg 1 (bool): If False, do nothing. If True and Arg 2 is \
a string, then the string is simply printed. If True and Arg 2 is not a string, then \
first the unevaluated expression is printed, followed by the evaluated expression. \
Additionally given rules influence the styling of the output.
Arg 3 (bool): Strip suffixes like $1234 (signalling internal variables)";
unevaluatedExpression::usage="Print the argument without any kind of evaluation in \
the same way it is given here as an argument
Arg 2(bool): Strip suffixes like $1234 (signalling internal variables)";
@klieret
klieret / monsky.py
Created December 28, 2017 07:13
Monsky's theorem: Coloring the plane
#!/usr/bin/python3
""" Illustrates the coloring of the plane used for Monsky's theorem. """
from PIL import Image
import argparse
import os
import sys
@klieret
klieret / cachedCalc.wl
Last active May 17, 2021 21:36
Cache the result of Mathematica calculations and load it again later.
cachedCalc::usage="Cache the result of a calculation into a .mx file at \
<notebook directory>/<notebook name>/<variable name>.mx
Arg1: variable (variable as symbol or variable name as string)
Arg2: expression (how to calculate value of the variable)
Arg3: forceRecalculate (bool; default False; recalculate even if found in Cache).
Optional arguments:
quiet (bool: should debug messages be printed?)
maxAge (date difference object: if the cache is older than that age, a \

Use basf2 installation:

Set up basf2

cd /cvmfs/belle.cern.ch/ubuntu1604/
source tools/setup_belle2
cd releases/build-2017-10-16/
setuprel

Rerun those commands every time you start working agai!