Skip to content

Instantly share code, notes, and snippets.

View aliumujib's full-sized avatar

Abdul-Mujeeb Aliu aliumujib

  • Nigeria, Lagos
View GitHub Profile
@emmaguy
emmaguy / AndroidManifest.xml
Created February 1, 2020 14:01
Click the 'Skip Intro' button on the Android notification from the Netflix app
<service
android:name=".NotificationService"
android:label="@string/notification_service_name"
android:permission="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE">
<intent-filter>
<action android:name="android.service.notification.NotificationListenerService" />
</intent-filter>
</service>
@nmwsharp
nmwsharp / printarr
Last active August 15, 2024 01:43
Pretty print tables summarizing properties of tensor arrays in numpy, pytorch, jax, etc. --- now on pip: `pip install arrgh`
Pretty print tables summarizing properties of tensor arrays in numpy, pytorch, jax, etc.
Now on pip! `pip install arrgh` https://github.com/nmwsharp/arrgh
@decodeandroid
decodeandroid / SlidingNumberPuzzle.kt
Last active November 6, 2024 20:55
Sliding Numbers Puzzle Game using Jetpack Compose & Canvas
import androidx.compose.foundation.Canvas
import androidx.compose.foundation.gestures.detectDragGestures
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.size
import androidx.compose.runtime.Composable
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.runtime.setValue