Skip to content

2026

Migrating From Bearblog to Properdocs

None

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.

Read more

Introduction to Project Panama (Part I): Loading a Native Library

efbffaf3-city-18478-160db8f19ec

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 :)

Read more