Skip to content

Instantly share code, notes, and snippets.

View 423u5's full-sized avatar
😂
Psycho

Gopal Chaudhary 423u5

😂
Psycho
  • Bhavanpura, Mathura
View GitHub Profile
@423u5
423u5 / FPSMonitor.java
Last active August 2, 2025 10:04
Simple Android FPS monitor utility using Choreographer to track the frame rate and dropped frames in real time. Monitors FPS and dropped frames over a configurable interval (default: 500 ms). Supports multiple listeners with weak references to avoid memory leaks. Can adapt to the device’s actual refresh rate automatically.
import android.content.Context;
import android.os.Handler;
import android.os.Looper;
import android.view.Choreographer;
import android.view.Display;
import android.view.WindowManager;
import java.lang.ref.WeakReference;
import java.util.HashSet;
import java.util.Set;
@423u5
423u5 / CacheMediaSource.java
Last active March 11, 2025 12:25
Exo Player Cache | Progressive Loading | Cache Media Source
import android.content.Context;
import androidx.annotation.NonNull;
import com.google.android.exoplayer2.MediaItem;
import com.google.android.exoplayer2.source.MediaSource;
import com.google.android.exoplayer2.source.ProgressiveMediaSource;
import com.google.android.exoplayer2.upstream.DataSource;
import com.google.android.exoplayer2.upstream.DefaultDataSource;
import com.google.android.exoplayer2.upstream.DefaultHttpDataSource;
@423u5
423u5 / english_words.txt
Created December 21, 2023 10:05
English words
AARDVARK, AARDWOLF, AARON, ABACK, ABACUS, ABAFT, ABALONE, ABANDON, ABANDONS, ABASE, ABASED, ABASH, ABASHED, ABATE, ABATED, ABATES, ABATTOIR, ABBE, ABBESS, ABBEY, ABBEYS, ABBOT, ABBOTS, ABDICATE, ABDOMEN, ABDOMENS, ABDUCT, ABDUCTED, ABDUCTOR, ABDUCTS, ABE, ABEAM, ABEL, ABELE, ABERDEEN, ABERRANT, ABET, ABETS, ABETTED, ABETTING, ABEYANCE, ABHOR, ABHORRED, ABHORS, ABIDE, ABIDED, ABIDES, ABIDING, ABIDJAN, ABIES, ABILITY, ABJECT, ABJECTLY, ABJURE, ABJURED, ABLATE, ABLATES, ABLATING, ABLATION, ABLATIVE, ABLAZE, ABLE, ABLER, ABLEST, ABLOOM, ABLUTION, ABLY, ABNORMAL, ABOARD, ABODE, ABODES, ABOLISH, ABOMB, ABORT, ABORTED, ABORTING, ABORTION, ABORTIVE, ABORTS, ABOUND, ABOUNDED, ABOUNDS, ABOUT, ABOVE, ABRADED, ABRAHAM, ABRASION, ABRASIVE, ABREAST, ABRIDGE, ABRIDGED, ABROAD, ABROGATE, ABRUPT, ABRUPTLY, ABSCESS, ABSCISSA, ABSCOND, ABSCONDS, ABSEIL, ABSEILED, ABSEILER, ABSEILS, ABSENCE, ABSENCES, ABSENT, ABSENTED, ABSENTEE, ABSENTLY, ABSOLUTE, ABSOLVE, ABSOLVED, ABSOLVES, ABSORB, ABSORBED, ABSORBER, ABSORBS, ABSTAIN, ABSTAI
@423u5
423u5 / OrientationHandler.java
Last active March 9, 2022 09:28
Orientation track by sensor android
import static android.content.res.Configuration.ORIENTATION_LANDSCAPE;
import static android.content.res.Configuration.ORIENTATION_PORTRAIT;
import android.content.Context;
import android.hardware.Sensor;
import android.hardware.SensorEvent;
import android.hardware.SensorEventListener;
import android.hardware.SensorManager;
/**