36c3 – Watchlist

Hier meine Watchlist zum 36c3

BahnMining – Pünktlichkeit ist eine Zier

What’s left for private messaging?

Inside the Fake Like Factories

Let’s play Infokrieg

SIM card technology from A-Z

Server Infrastructure for Global Rebellion

Open Source is Insufficient to Solve Trust Problems in Hardware

Geheimdienstliche Massenüberwachung vs. Menschenrechte

“Hacker hin oder her”: Die elektronische Patientenakte kommt!

Warum die Card10 kein Medizinprodukt ist

Die Affäre Hannibal

Aus dem Schimpfwörterbuch der neuen Rechten

Ubuntu Touch & Co – GNU/Linux in der Hosentasche

15 Jahre deutsche Telematikinfrastruktur (TI)

Email authentication for penetration testers

Verbrannte Wörter – Sprache des Nationalsozialismus

Code for Germany. Gute Taten mit offenen Daten

A Hacker’s Guide to Healthcare: How to Improve Lives with Data

https://stats.stackexchange.com/questions/132777/what-does-auc-stand-for-and-what-is-it

Public Money? Public Code! A campaign framework to promote software freedom

JPackage – Launch Java Apps without JVM

The jpackage tool of Java 14 can be used to create platform specific packages of java apps.  The app does not require a JVM to run.

Example

/opt/jdk-14/bin/jpackage --name etctoy --input target --main-jar etctoy.jar

The call is made from within a maven project. etctoy.jar is a fat-jar (size 6.6M) but the call should also work for regular jars with further dependencies in the target directory (see –input parameter).

The result is a debian package that installs the app under /opt/etctoy

sudo dpkg -i etctoy_1.0-1_amd64.deb

The installation uses 140M of disk space.

To make the tool available via command line on should link the binary into /usr/bin

sudo ln -s /opt/etctoy/bin/etctoy /usr/bin