Looking to configure multiple SSH keys on the same computer? For instance to use a different SSH key for your public and enterprise Github contributions.
Recent Posts
Removing all trackers from my website
29 Jan 2023
These past years I’ve grown to be more privacy-aware. And while this post isn’t about how I’m increasing my personal privacy, I’d like to talk about how I’m increasing yours.
Android emulator access to local server
25 Jan 2023
How can you connect your app on an Android emulator to a development server running on the localhost of your computer?
Transfer many large files from Android
17 Dec 2022
Trying to get a large number of files from your Android phone, but Android File Transfer freezing up?
Verify Github profile link on Mastodon
26 Nov 2022
Looking to get a fancy verified checkmark on Mastodon for your Github account?
Test React app on mobile without Wi-Fi
19 Nov 2022
Traveling by train or plane and want to test your react app on your mobile phone? This quick post explains how to access your react development server from your phone without a Wi-Fi connection.
The curious case of crashing Workers
27 Apr 2022
WorkManager is great to schedule background work on Android. However, since scheduled work lives outside of the app lifecycle, you might run into unexpected crashes.
No, your pull request does not need a review
23 Feb 2022
In the past years, my thoughts on pull request reviews have evolved considerably. Given that creating and reviewing pull requests are a core part of our work, let’s talk about those.
With JCenter shutting down, many are migrating to Maven Central. And while there are many posts on how to publish new artifacts, also all existing artifacts should be migrated away from JCenter.
While Android supports most Java language features, it doesn’t support every API that Java provides. On the other hand, Kotlin multiplatform only allows sharing code across all targets (commonMain), not a subset of targets (commonJvm).