Skip to content

Instantly share code, notes, and snippets.

View gouravkhunger's full-sized avatar
🎯
Focusing

Gourav Khunger gouravkhunger

🎯
Focusing
View GitHub Profile
@gouravkhunger
gouravkhunger / build.gradle.kts
Created July 9, 2024 05:25
Rename output APKs for split ABIs (Kotlin DSL)
// ...
android {
// ...
applicationVariants.configureEach {
val archMap = mapOf(
"x86" to "i686",
"x86_64" to "x86_64",
"armeabi-v7a" to "arm",
@gouravkhunger
gouravkhunger / sexyPyramid.c
Last active November 3, 2023 22:18
"Any fool can write code that a computer can understand. Good programmers write code that humans can understand." (fool) ? maybe : maybeNot
/*
This program prints a sexy pyramid with the following pattern sequence:
input: 15
output:
1
232
34543
4567654
567898765