- formatting
- images
- links
- math
- code
- blockquotes
- external-services
•
•
•
•
•
•
-
Simple Remote Logger for Android
A guide to implementing a basic remote logger for Android applications, allowing logs to be sent from the device to a backend server for centralized monitoring.
-
Simplifying Android Context Access Globally
Learn how to store and access your Android application context globally using a static field in your custom Application class, reducing the need to pass it around.
-
Streamlining Google Analytics Integration in Android with Activity Lifecycle Callbacks
Learn how to integrate Google Analytics into your Android application more cleanly using ActivityLifecycleCallbacks instead of manual onStart and onStop calls in every Activity.
-
A Custom Blocking Queue Implementation in Java
Explore a custom implementation of a blocking queue in Java, complete with worker threads and the 'poison pill' termination technique. This article demonstrates fundamental concurrency concepts and serves as a learning exercise compared to using Java's built-in `BlockingQueue`.
-
Java - Passing Arrays and Collections as Method Arguments
A guide on how to pass array instances directly to methods in Java, and a technique using anonymous inner classes with instance initialization for collections.