2026
Migrating From Bearblog to Properdocs¶
2026-07-11 17:00:00

Photo by Hans-Jurgen Mager on Unsplash
Some time ago I decided to migrate my blog off of Bearblog mainly because I had to pay a subscription fee for attaching my own domain, which I did not like very much. Don't get me wrong, Bearblog provides a great service, but I thought "it is the time" this weekend. In this post I explain how properdocs can help you with that to host your personal blog on top of github pages.
Introduction to Project Panama (Part I): Loading a Native Library¶

Project Panama is Java's modern alternative for calling native code or “Foreign Functions” implemented in other languages such as C or C++. While previously we had Java Native Interface (JNI) for achieving the same goal by writing glue code (C files translating types between Java and C) to connect the dots between the JVM and shared so or dll libraries, now Project Panama helps us by achieving that all in Java :)