This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file specifies files that are *not* uploaded to Google Cloud Platform | |
# using gcloud. It follows the same syntax as .gitignore, with the addition of | |
# "#!include" directives (which insert the entries of the given .gitignore-style | |
# file at that point). | |
# | |
# For more information, run: | |
# $ gcloud topic gcloudignore | |
# | |
.gcloudignore | |
# If you would like to upload your .git directory, .gitignore file or files |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
print(sys.argv) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
┌───────────────────┬────────────────────┬──────────────────────────────────────┬──────────┬─────────────┬──────────────────────┬─────────────────────────────────────────────┐ | |
│ MODEL_ID │ MAKE │ MODEL_NAME │ FORM │ RESOLUTION │ OS_VERSION_IDS │ TAGS │ | |
├───────────────────┼────────────────────┼──────────────────────────────────────┼──────────┼─────────────┼──────────────────────┼─────────────────────────────────────────────┤ | |
│ 602SO │ Sony │ Sony XZs │ PHYSICAL │ 1920 x 1080 │ 26 │ │ | |
│ 801SO │ Sony │ Sony XZ3 801SO │ PHYSICAL │ 2880 x 1440 │ 28 │ │ | |
│ A0001 │ OnePlus │ OnePlus One │ PHYSICAL │ 1920 x 1080 │ 22 │ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/gradle/android-studio-paths.sh b/gradle/android-studio-paths.sh | |
new file mode 100644 | |
index 0000000..ae3d1e0 | |
--- /dev/null | |
+++ b/gradle/android-studio-paths.sh | |
@@ -0,0 +1,51 @@ | |
+# | |
+# In order to avoid "Daemon could not be reused" when using command line and Android Studio, | |
+# this is forcing the JAVA_HOME by looking at common places for Android Studio installations. | |
+# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install sdkman | |
curl -s https://get.sdkman.io | bash # 2s | |
source "$HOME/.sdkman/bin/sdkman-init.sh" | |
# Install kotlin and kscript | |
sdk install kotlin # 10s ... | |
sdk install kscript # 6s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>detekt report</title> | |
<style> | |
h2 { | |
background-color: #666666; | |
padding: 0.2em; | |
color: #ffffff; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
import os | |
import socket | |
import struct | |
import sys | |
import traceback | |
# see com.intellij.idea.SocketLock for the server side of this interface |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
🍏 ➜ git push mirror studio-master-dev | |
Alias tip: gp mirror studio-master-dev | |
Enumerating objects: 407011, done. | |
Counting objects: 100% (391280/391280), done. | |
Delta compression using up to 8 threads | |
Compressing objects: 100% (79384/79384), done. | |
Writing objects: 100% (389441/389441), 1.10 GiB | 3.51 MiB/s, done. | |
Total 389441 (delta 205818), reused 376062 (delta 195538) | |
remote: Resolving deltas: 100% (205818/205818), completed with 881 local objects. | |
remote: Checking connectivity: 389441, done. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.android.build.gradle | |
import com.android.build.gradle.api.ApplicationVariant | |
import com.android.build.gradle.api.BaseVariant | |
import com.android.build.gradle.api.BaseVariantOutput | |
import com.android.build.gradle.internal.ExtraModelInfo | |
import com.android.build.gradle.internal.dependency.SourceSetManager | |
import com.android.build.gradle.internal.dsl.BuildType | |
import com.android.build.gradle.internal.dsl.ProductFlavor | |
import com.android.build.gradle.internal.dsl.SigningConfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
# | |
# kscript on demand (inspired by gradlew). | |
# | |
# Convenient way to run Kotlin scripts (.kts) without having to install kscript | |
# relying on https://github.com/holgerbrandl/homebrew-tap/blob/master/kscript.rb logic. | |
# | |
# Requirements: curl and kscript requirements (KOTLIN_HOME or kotlin in path) | |
# |