How to play The Curse of Monkey Island on Linux

As I was always a LucasArts fan in the 90ties, I wanted to use my “free time” (thanks to the Corona lockdown) for playing this old classics.

I bought Monkey Island 1 + 2 on Steam - with the Proton helper, it starts all easy, out of the box.

Monkey Island 3 and 4 I was buying at Gog (it was cheaper) - no help here to get it running for Linux. (it will still run from Steam out of the box, afaik)

How to mount an encrypted volume from a live ISO

If you destroyed somehow your Linux system, which has an encrypted volume, and you want to log into this, but booting is not working, boot from a live ISO, and type:

lsblk -f

you will see sda1 oder sdb1 as your encrypted system Alt text

this decrypt it and mount it (for example sda1)

sudo cryptsetup luksOpen /dev/sda1 crypted_sda1
Enter passphrase for /dev/sda1:

after entering the passphrase you can see that this is now decrypted Alt text

Getting a verified user on Github

When you create a new file directly on Github and push it to your branch, you will see in the commit, that this was done by an verified user. Alt text

If you push it from your command line, it normally looks like this:

Alt text

P.S. if you followed the tutorial, and something went wrong, it will look like this:
Alt text

But let’s start from the beginning!
First of all: Github gives you a great Readme for this, that’s why I link it here were needed.

Using MongoRepository with more than one sorting with Spring Boot

Sometimes you need a List of the Database to be sorted by more than one column.

If you connect to your database with the org.springframework.data.mongodb.repository.MongoRepository you can only give org.springframework.data.domain.Sort to a search method.

This is how the Repository class looks like:

@Repository
public interface TestRepository extends MongoRepository<Test, Long> {
  List<Score> findAllByTestName(String testName, Sort sort);
}

test has some column “abc” and some column “def” and some “ghi” …. so to add the order do in th calling class something like:

Deutsche Bahn,Docker and Wifi in an ICE and VPN problems

The Deutsche Bahn is providing free wifi for some years now. It works for most of the people pretty well, but if you are a developer you could have some issues. I was suffering a lot with this, this is why I’m posting it, to help some of you

As you can see, the WiFi is running on the IP 172.18.xxx Alt text

Using Docker as non-root

[UPDATE 2020-04-21] as mentioned in this post it’s not needed anymore:

Good news: the new docker (version 19.03 (currently experimental)) will be able to run rootless negating the problems that can occur using a root user. No more messing with elevated permissions, root and anything that might open up your machine when you did not want to.

Normally you need to run docker as root:

sudo docker run hello-world

If this is going on your nerves, you can add your normal user to the docker-usergroup.
But before you do this, read the warning in this post (where i also got the code from)

Berlin – where to go

Berlin has so many cool bars and restaurants to offer… I’m many times asked: what should we do? And no, I don’t want to write always the same stuff again, so I was thinking of making this list!

Vegan food First of all: www.berlin-vegan.de has nearly all vegan stuff covered.. Download the Android app or the iPhone app and you are fine.

My faves:

Bars:

Concerts:

  • Stressfaktor (they also list demonstrations)
  • Steelfeed - List of all concerts, mainly punk + metal, it’s also connected to the Fediverse
  • SO36 Oranienstr. 190, 10999 Berlin, Old traditional club with cool partys and concerts, directly in Kreuzberg 36
  • Wild at Heart, Wiener Straße 20, 10999 Berlin, Small famose club, with many great concerts.
  • Schokoladen, Ackerstrasse 169/170, 10115 Berlin, Small club, concerts are only between 8pm and 10pm
  • Clash, Gneisenaustraße 2A, 10961 Berlin, cool club, nice shows!
  • KÖPI, Köpenicker Str. 137, 10179 Berlin, Left squat in Berlin, shows start always really late! Beer is cheap!
  • Supamolly, Jessner Str. 41, 10247 Berlin, also a formerly squatted house, a nice bar and some cool concerts in the cellar!
  • Tommy Weissbecker Haus, Wilhelmstraße 9, 10969 Berlin, another (ex) squatted house… good shows, they start always really late

… list is not complete yet

mySQL workbench can't connect via ssh tunnel

If you can’t connect with your mysql-workbench to a database via ssh have a look at your logfile:

tail -f -n 100 ~/.mysql/workbench/log/wb.log

and you will see this error:

14:12:58 [ERR][sshtunnel.py:notify_exception_error:233]: Traceback (most recent call last):
File "/usr/share/mysql-workbench/sshtunnel.py", line 265, in _connect_ssh
look_for_keys=has_key, allow_agent=has_key)
File "/usr/lib/python2.7/dist-packages/paramiko/client.py", line 306, in connect
t.start_client()
File "/usr/lib/python2.7/dist-packages/paramiko/transport.py", line 465, in start_client
raise e
ValueError: CTR mode needs counter parameter, not IV

change your transport.py:

sudo nano /usr/lib/python2.7/dist-packages/paramiko/transport.py

press CTRL+W for searching for the term

Sync folders in Vagrant but exclude some folders from syncing

Maybe you know this:
you have a huge Java project, maybe the project itself is a sum of many (not even so small) Java projects.
For sharing the complete setting with other developers you normally use a Vagrant box to make it easy.
At work we needed 2 big projects in one Vagrant box, which included over 10 small maven projects.
Normally I would share it like this:

config.vm.synced_folder "my-project1", "/home/vagrant/my-project1"
config.vm.synced_folder "my-project2", "/home/vagrant/my-project2"

You can imagine, the normal start-time of our server with permanently syncing all folders, including all the target folders took much too long.
On a local machine, without a Vagrant box, it normally needs around 2 minutes to start
But with syncing all target folders, it needs between 7-10 minutes to start the server