Flashing the firmware of the Mysterium DIY keyboard

October 21, 2024 - Reading time: 2 minutes

42Keebs provides firmware images for their DIY keyboard kits on their website.

The firmware of the Mysterium firmware can be flashed using avrdude:

  1. Install avrdude:
    sudo apt install avrdude
  2. Download hex file to install from https://42keebs.eu/firmware/
  3. Connect the keyboard to the computer, hold boot button and press reset to enter boot mode.
  4. Flash firmware with:
    sudo avrdude -p atmega32a -c usbasp -U flash:w:/path/to/42keebs_mysterium_v15d_vial.hex:i


Flashing the firmware of the Pocket Science Lab v6 board with mcbootflash

October 9, 2024 - Reading time: ~1 minute

Updating the firmware of the PSLab v6 the way it is decribed on https://github.com/fossasia/pslab-firmware did not work for me. I used mcbootflash instead, which is installed as a dependency of the pslab Python library:

./mcbootflash --port /dev/serial/by-id/usb-Silicon_Labs_CP2102N_USB_to_UART_Bridge_Controller_5ecc207eeba8eb11828e98374232452f-if00-port0 -b 460800 ~/Downloads/pslab-firmware_v6.hex 

The ID is individual for each board.


Fix missing dependency for TuxGuitar under Debain

October 25, 2023 - Reading time: ~1 minute

If TuxGuitar refuses to load GuitarPro files (.gp) with the error message "org/apache/commons/compress/archivers/zip/ZipArchiveInputStream", a dependency is is missing.

An error window with a "do not enter" traffic sign and the message "org/apache/commons/compress/archivers/zip/ZipArchiveInputStream"

To install the missing dependency, execute the following command:

sudo apt install libcommons-compress-java

A bug report has been submitted already: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1043253


Bludit posting to Mastodon

March 30, 2023 - Reading time: 26 minutes

My blog can posts new content to my Mastodon account using the Bludit Mastodon Plugin now.


Running "Giana Sisters Twisted Dreams" on a Windows 10 System with Integrated Graphics

January 24, 2023 - Reading time: 2 minutes

Several years ago I bought "Giana Sisters Twisted Dreams". It ran fine on Windows 8.1, but it crashed after I upgraded to Windows 10. I contacted the support of Black Forest Games. The person answering my email told me that the game does not run very well with the integrated graphics of my system (Intel 4600). He advised me to try some different graphics settings which fixed the issue. I basically switched from DX10 to DX9 and turned down the graphics quality.

Read more


Restarting I2C when touchpad is not working

January 11, 2022 - Reading time: ~1 minute

After I replaced the Clickpad of my Lenovo L440 with a touchpad (see https://mastodon.xyz/@nause_marc/107111989617471186) the Touchpad would not work occasionally under Debian when returning from suspend. I created a small script called restarti2c.sh with the following content:

sudo /sbin/rmmod i2c_i801 && sudo /sbin/modprobe i2c_i801

This restarts the I2C bus kernel module, which makes the touchpad work again. I run it whenever necessary.