/home/andy
I’m a student from Germany interested in different fields of mathematics and computer science. I expect to graduate from high school in the summer of 2023, after which I will pursue a degree in mathematics at the CAU in Kiel. In my free time I go bouldering, play electric guitar or develop software in C or Haskell.
This webpage is still in progress. But you can have a look at this post, which I’ve basically just created to test some features and tweak the theme according to my personal preferences. And here’s a function to look at.
/* check against previous primes */
bool is_prime(int n, int *primes)
{
/* only check up to sqrt(n) */
int max_test = (int)sqrt(n);
for (int i = 0; primes[i] <= max_test; ++i)
if (n % primes[i] == 0)
return false;
return true;
}
Send me some Monero
I don’t know why you would, but I would definitely not complain. Here is my Monero (XMR) address. It’s the best crypto currency in existence btw, so go ahead and use it, if you don’t already.
83tmLoa1NWZMK15MyFT5BgGNcQRCfSBqzQekHoLxnQVEUKxcHzN44YP3jdB5ommmBmHA2yJB9zzVxiTmt3BNHB5hGh6ntmh
My Linux Setup
A few years ago, I completely wiped Windows from my SSD, replacing it with Ubuntu. Over the years, I’ve distrohopped to Arch, Gentoo (took way to long to compile programs) and finally to Void Linux. I’ve used Gnome, KDE, qtile, i3 and now DWM.

- OS: Void Linux
- WM: DWM from suckless
- Terminal: ST
- Editor: NeoVim