Skip to content

Instantly share code, notes, and snippets.

View fathonyfath's full-sized avatar
💻
Now you can also bring your work status here

Fathony Teguh Irawan fathonyfath

💻
Now you can also bring your work status here
  • Nowhere
View GitHub Profile
@mranney
mranney / emoji_sad.txt
Created January 30, 2012 23:05
Why we can't process Emoji anymore
From: Chris DeSalvo <chris.desalvo@voxer.com>
Subject: Why we can't process Emoji anymore
Date: Thu, 12 Jan 2012 18:49:20 -0800
Message-Id: <AE459007-DF2E-4E41-B7A4-FA5C2A83025F@voxer.com>
--Apple-Mail=_6DEAA046-886A-4A03-8508-6FD077D18F8B
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain;
charset=utf-8
@erikghonyan
erikghonyan / build.gradle.kts
Last active June 6, 2023 19:07
Installs and Runs the Android app from Gradle
androidComponents {
val adbPath = sdkComponents.adb.get().asFile.absolutePath
onVariants { variant ->
val capitalizedVariantName = variant.name.replaceFirstChar(Char::titlecase)
val applicationId = variant.applicationId.get()
tasks.register("run${capitalizedVariantName}") {
group = "run"
description = "Installs and Launches the $capitalizedVariantName build"