Skip to content

Instantly share code, notes, and snippets.

View vgaidarji's full-sized avatar
🚀
:shipit:

Veaceslav Gaidarji vgaidarji

🚀
:shipit:
View GitHub Profile
@jamesmontemagno
jamesmontemagno / bump_manifest.sh
Last active January 22, 2016 19:18
This is a script to bump your version number for android projects on Bitrise or just in shell commands
Find the latest here actually: https://github.com/jamesmontemagno/steps-set-android-manifest-versions
@angrycoffeemonster
angrycoffeemonster / Sublime Text 3 Build 3103 License Key - CRACK
Created April 18, 2016 02:13
Sublime Text 3 Build 3103 License Key - CRACK
I use the first
—– BEGIN LICENSE —–
Michael Barnes
Single User License
EA7E-821385
8A353C41 872A0D5C DF9B2950 AFF6F667
C458EA6D 8EA3C286 98D1D650 131A97AB
AA919AEC EF20E143 B361B1E7 4C8B7F04
@vgaidarji
vgaidarji / show-git-remote-ages.sh
Created May 19, 2017 09:01
Script which lists remote branches by age and includes some related information to identify last author and any branch names.
#!/bin/sh
exec git branch -r | cut -d' ' -f3 | xargs git show --pretty='%Cgreen%ai %Creset%h %an %d' -s | sed '/^$/d' | sort | uniq
@WarrenFaith
WarrenFaith / build.gradle
Last active March 11, 2019 11:33
Basic script setup to add tasks like "testDebugUnitTestCoverage" (when you have no flavors defined) or "testFlavorNameDebugUnitTestCoverage" (replace FlavorName with your flavor name). Limitation: Does not work with flavor dimensions!
// in your root gradle file:
buildscript {
repositories {
jcenter()
google()
mavenCentral()
}
dependencies {
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.6.1"
}