Latest Posts (20 found)
Rik Huijzer Yesterday

Is Jonathan Shelley A False Teacher?

Thanks to the following interaction, it seems to me Jonathan Shelly is a false teacher ![bannedpastor.jpg](/files/d46b244676374587) For example, _1 Timothy 3_, "This is a true saying, if a man desire the office of a bishop, he desireth a good work. A bishop then must be blameless, the husband of one wife, vigilant, sober, of good behaviour, given to hospitality, apt to teach; Not given to wine, no striker, not greedy of filthy lucre; but patient, not a brawler, not covetous;" Even if I was wrong on my "false teacher" claim, calling another pastor "lame" seems not to be an example of "good b...

0 views
Rik Huijzer 2 days ago

Trump and Ivanka

Trump and Ivanka through the years ![trump-ivanka/white-dress.jpg](/files/c61731c028823bcd) ![trump-ivanka/gettyimages-74713659.webp](/files/43b87b67b4f0e010) ![trump-ivanka/yellow-dress.jpg](/files/390097223887ec59) ![trump-ivanka/awkward-hand.jpg](/files/0c5f6fdd6a10be76) ![trump-ivanka/weird-breast-hold.jpg](/files/c49f1886d4bc0a64) ![trump-ivanka/ivanka-trump-eric-donald-440nw-9912536a.jpg](/files/c3c46b04f956094f) ![trump-ivanka/vf_ivanka_trump_6234.webp](/files/1acd15c895c20d38) ![trump-ivanka/gettyimag...

0 views
Rik Huijzer 2 days ago

The Jewish Messiah

Some interesting links by creekbendz on Reddit. In 2022, various prominent rabbis explained that "the Messiah is just about to reveal himself", according to _israel today_. According to _Israel News_, it would have taken Trump "a miracle to win" in 2016. Next, "King David also had to overcome great opposition in order to establish his kingship,” Rabbi Berger told Breaking Israel News. “Trump connected to that. This cycle was completed when the president recognized Jerusalem as the true capital of the Jewish People, just as King David did." In Gematria (Hebrew numerology), _Donald Trump_...

0 views
Rik Huijzer 1 weeks ago

COVID vs Oil Crisis

COVID declared a pandemic on 11/3 (11*3=33) 2020. On 11/3 2026, the IEA wrote _"The IEA Secretariat will provide further details of how this collective action will be implemented in due course. It will also continue to closely monitor global oil and gas markets and to provide recommendations to Member governments, as needed."_

0 views
Rik Huijzer 2 weeks ago

Biblical Earth

This is an image by ChatGPT showing roughly how the Bible describes the earth: ![biblical-earth.png](/files/435339c4aa439f2a) Unfortunately, it's not showing the four corners. This image is based on, Isaiah 40:22 “It is he that sitteth upon the circle of the earth, and the inhabitants thereof are as grasshoppers…” Job 26:10 “He hath compassed the waters with bounds, until the day and night come to an end.” Job 26:7 “He stretcheth out the north over the empty place, and hangeth the earth upon nothing.” Proverbs 8:27 “When he prepared the heavens, I was there: when he set a...

0 views
Rik Huijzer 3 weeks ago

Placeholder

This is a placeholder post that will be filled later

0 views
Rik Huijzer 1 months ago

Granting Explicit ACL Access to a File on Linux

Say there is a file, `openui/open-webui/webui.db`, and you want to have write access to it without using `sudo`. The most reliable way is to not use various `chown` and `chmod` commands, but instead use `setfacl`, which is available on Debian via `apt install acl`. To first check the permissions, run `namei`, ```text $ namei -mo openui/open-webui/webui.db f: openui/open-webui/webui.db drwxrwxr-x rik rik openui drwxrwxr-x 777 rik open-webui webui.db - Permission denied ``` It looks like permissions to enter the `openui/open-webui` dir are missing. This can be fixed by...

0 views
Rik Huijzer 1 months ago

Ani Ma'amin

I came across a video of a Purim celebration in Tel Aviv on Mar 14 2025. The party looks like any generic non-religious party you would expect. To my surprise, however, the crowd was singing something _messiach_ (messiah) around 0:32. After a bit of searching, it turns out the crowd is most likely singing the _Ani Ma'amin_ (1915) song by Simeon Singer. The lyrics that the crowd sing between 0:37 and 0:49 are _Ani ma'amin \ b'e munah sh'leimah \ b'viat ha mashiach, \ Ani ma'amin. \ mashiach, mashiach, mashiach_ where the first three lines mean: _I believe with perfect faith in the coming...

0 views
Rik Huijzer 1 months ago

More Accurate Speech Recognition with whisper.cpp

I have been using OpenAI's whisper for a while to convert audio files to text. For example, to generate subtitles for a file, I used ```bash whisper "$INPUT_FILE" -f srt --model turbo --language en ``` Especially on long files, this would sometimes over time change it's behavior leading to either extremely long or extremely short sentences (run away). Also, `whisper` took a long time to run. Luckily, there is whisper-cpp. On my system with an M2 Pro chip, this can now run speech recognition on a 40 minute audio file in a few minutes instead of half an hour. Also, thanks to a tip from whisp...

0 views
Rik Huijzer 1 months ago

How To Run Services on a Linux Server

I have been running services myself for a few years on Linux servers. It took a while to figure out what works best. Here's what I've learned. First of all, all maintenance is done on headless servers via SSH. Learning this might seem daunting for some at first, but it is truly unbeatable in terms of productivity and speed. To easily log in via SSH, add the SSH keys to the server and then add the server to your `~/.ssh/config`. For example, ``` Host arnold Hostname 123.456.789.012 User rik IdentityFile ~/.ssh/arnold ``` Now you can log in via `ssh arnold` instead of having to ma...

0 views
Rik Huijzer 1 months ago

Setup a Syncthing service on Debian

Install via the APT instructions. Next (source): ``` useradd -u 1010 -c "Syncthing Service" -d /var/syncthing -s /usr/sbin/nologin syncthing mkdir /var/syncthing chown -R syncthing:syncthing /var/syncthing chmod 700 /var/syncthing systemctl enable [email protected] systemctl start [email protected] systemctl status [email protected] ``` Then you should be able to connect to the web GUI at `localhost:8385`. To allow this user to read files outside it's own directories, use ``` getfacl /some/other/dir ``` from `acl` (`apt-get install acl`) to view the permission...

0 views
Rik Huijzer 1 months ago

Raspberry Pi as Forgejo Runner

In my instructions on how to setup [Forgejo with a runner](/posts/55), I used a Hetzner server for the runner. This costs roughly 5 euros per month, so 60 euro annually. A full Hetzner server might be a bit overkill for a simple runner. Especially if you are just running Shell scripts or static site generation. The Hetzner server supports things like high bandwidth, low latency, unique IPv4 address, high uptime guarantees. Most of these are not necessary for your own runner. Therefore, in many cases it's probably a good idea to run the Runner on your own hardware. What I have tested and work...

0 views
Rik Huijzer 1 months ago

Adam Fannin on Voting

“There is more power in praying than there is in voting.” Source: “Put not your trust in princes, nor in the son of man, in whom there is no help.” (Psalm 146:3)

0 views
Rik Huijzer 1 months ago

Running `deezer/spleeter`

Here are up-to-date installation instructions for running Deezer's Spleeter on `Ubuntu 24.04`. Minimum requirements are around 16 GB of RAM. (During the processing, it uses around 11 GB at the peak.) I ran this on a temporary Hetzner server because my Apple Silicon system, after lots of fiddling with version, ran into AVX issues. Install Conda. ``` conda create -n spleeter_env python=3.8 -y ``` ``` conda activate spleeter_env ``` ``` conda install -c conda-forge ffmpeg libsndfile numpy=1.19 -y ``` ``` pip install spleeter ``` ``` spleeter separate -o audio_output input.mp3 ``` If your a...

0 views
Rik Huijzer 2 months ago

Jesse Strang in 2019

At a shooting on a high school in Tumbler Ridge, Canada, 10 people were shot, as reported at 03:30 in Dutch national media. There are two suspect names going around, however. For example, on Feb 11, 2026, 7:25 PM IST the _Hindustan Times_ reported the name Jesse Strang. A few hours later, however, the name was suddenly reported as Jesse Van Rootselaar without mention of the previous name. For Jesse Strang, there is the following YouTube video posted on the 18th of March 2019. Screensh...

0 views
Rik Huijzer 2 months ago

Picture of Epstein Eating Cake

A picture of Jeffrey Epstein eating a cake with what seems to be the Talmud visible behind him. Seems to have been released a few weeks ago. Source. ![Epstein eating cake with Talmud behind him](/files/3e1189458d2a9f51)

0 views
Rik Huijzer 2 months ago

Castopod configuration

I just setup a castopod instance to self-host some audio files, and so far it seems to work. To get it to work, I used tweaked the default configuration a bit as follows. On a server, make a new folder called `castopod` and added a new `docker-compose.yml` file: ```yml services: castopod: image: 'castopod/castopod:1.14.0' container_name: 'castopod' volumes: - './media:/var/www/castopod/public/media' environment: MYSQL_DATABASE: 'castopod' MYSQL_USER: 'castopod' CP_BASEURL: 'https:// ' CP_ANALYTICS_SALT: ' ' CP_REDIS_HOST...

0 views
Rik Huijzer 2 months ago

Peter Ruckman on Professors

After having been in academia for many years and having obtained a PhD, I agree with Dr. Peter Ruckman's opinion (starting 9:52): > [...] > Always correct the Greek with English. > Oh how they hate that. Oh my God how they hate that. > Every professor in America just "Oh oh... Ah! Heresy!" > You say, "Why?" > They want you to come to them, can't you figure that mess out? > > **Now listen, never let scholarship intimidate you no matter how stupid you are.** > If the scholarship says one thing and you read in your Bible that it doesn't say that, don't let them intimidate you. > Say, "Well, I do...

0 views
Rik Huijzer 2 months ago

The 95 Theses of the Reformationsfest (1917)

This is an English translation of the 95 Leitsätze zum Reformationsfest 1917. These theses were meant to bring the church up-to-date to the new ideas of national socialism. Like all man-made doctrines, it is probably best ignored, but it may be useful for research purposes. The translation below is created by feeding the images to Google Gemini. This means the translation is probably far from perfect, but it should still be sufficient to get a rough idea of the main messages of the text. The 95 theses are as follows: ## I 1. The necessity to make clear to the German people what Christiani...

0 views