Fundamentals of Core Android Components
Exploring Activity Management and Data Transfer
Activities serve as the primary entry point for user interaction. Moving between activities often requires passing data using the Intent system.
Basic Activity Navigation
The following example demonstrates how to capture user input and pass it to a secondary activity using Intent.putExtra().
publi ...
Posted on Mon, 03 Aug 2026 16:05:37 +0000 by wipe
Redirecting Kubernetes Service Endpoints to an External Application
When an application (Application A) in Kubernetes relies on a Service name to connect to another application (Application B), and the pods backing that Service become unavailable without a quick recovery, connectivity fails. To restore service without altering Application A's connection method, you can redirect traffic to an external applicatio ...
Posted on Thu, 30 Jul 2026 16:18:55 +0000 by ignite
Deploying HTTP Services on Kubernetes
This guide walks through deploying a containerized HTTP service on a Kubernetes cluster, covering container images, deployments, services, and ingres configuration.
Building and Pushing the Container Image
First, build the container image for your HTTP server and push it to a container registry. In this example, the image chengfengsunce/httpser ...
Posted on Mon, 20 Jul 2026 17:09:35 +0000 by billman
Android Service Lifecycle and Animation Mechanisms
Service Lifecycle Management
When a Service is started via startService(), the system automatically invokes onCreate() followed by onStartCommand(). If the same Service is started multiple times using startService(), onCreate() is called only once.
To stop a Service initiated with startService(), call stopService(), which triggers onDestroy(). ...
Posted on Mon, 01 Jun 2026 18:08:20 +0000 by evildobbi
From Docker Compose to Kubernetes with Kompose
Kompose is a CLI utility that translates docker-compose.yml files into native Kubernetes objects such as Deployments, Services, and PVCs. It eliminates the manual work of rewriitng Compose declarations into YAML manifests.
Installation
# Linux
curl -L https://github.com/kubernetes/kompose/releases/latest/download/kompose-linux-amd64 -o kompose
...
Posted on Tue, 19 May 2026 13:42:49 +0000 by clarket