Skip to content
tezvyn:

Search

Find a bite, explore a topic or look for a role.

Results for React

Bites 747

Android's Activity Lifecycle: A Screen's Journey
Android & Kotlin2 min read

Android's Activity Lifecycle: A Screen's Journey

Think of an Activity's lifecycle as a stage play's script. Methods like onCreate() and onPause() are cues for your app screen to set up, appear, or hide. This manages state during interruptions like phone calls.

Android & Kotlin1 min read

Android Studio: The Official Workshop for Android Apps

Think of Android Studio as the all-in-one workshop for building Android apps. It bundles a code editor, build system, and emulators to write, test, and package software for any Android device. The footgun is underestimating its resource needs.

SharedFlow: A Hot Flow for Broadcasting Events
Android & Kotlin2 min read

SharedFlow: A Hot Flow for Broadcasting Events

A SharedFlow is a hot stream that broadcasts values to all subscribers, like a live TV channel. It's ideal for one-to-many events, like UI updates or notifications. The main footgun: it never completes, so collect will suspend forever.

Period-over-Period Analysis: Measuring Change Over Time
Analytics & Metrics2 min read

Period-over-Period Analysis: Measuring Change Over Time

Period-over-Period analysis answers 'Are we getting better?' by comparing metrics from consecutive time blocks, like this month's sales vs. last month's. The footgun is ignoring seasonality, which can create false signals of growth or decline.

Analytics & Metrics2 min read

Marketing Mix Modeling (MMM): Isolating Marketing's Impact on Sales

Marketing Mix Modeling (MMM) statistically links aggregate marketing efforts to sales outcomes over time. It's used to determine the ROI of past campaigns, like a TV ad blitz. The main footgun: the model is only as good as the historical data you feed it.

Exponential Smoothing: Weighting Recent Data More Heavily
Analytics & Metrics2 min read

Exponential Smoothing: Weighting Recent Data More Heavily

Exponential smoothing creates forecasts from a weighted average of past data, where weights decay exponentially for older points. It's used for quick, reliable predictions like inventory demand. The footgun: simple versions ignore trends and seasonality.

Analytics & Metrics2 min read

Event Data Pipelining: From Raw Events to Analytics

Treat data not as static tables but as a continuous stream of events. Event data pipelining builds the infrastructure to capture, process, and deliver this real-time flow for analytics or AI applications.