- sublime-text
- Eclipse Classic
- ADT + NDK + Android source code
- Keepass
- Filezilla
- Skype
This file contains hidden or 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
#Download all pictures from your facebook albums in subfolders | |
#uses https://github.com/pythonforfacebook/facebook-sdk | |
import facebook | |
import os | |
def download(url, folder): | |
"""Copy the contents of a file from a given URL | |
to a local file. | |
""" |
This file contains hidden or 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
# Customize BASH PS1 prompt to show current GIT repository and branch. | |
# by Mike Stewart - http://MediaDoneRight.com | |
# SETUP CONSTANTS | |
# Bunch-o-predefined colors. Makes reading code easier than escape sequences. | |
# I don't remember where I found this. o_O | |
# Reset | |
Color_Off="\[\033[0m\]" # Text Reset |
This file contains hidden or 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
#!/bin/bash | |
NDK_ROOT=$NDK_HOME | |
NDK_MAKE=$NDK_ROOT/prebuilt/windows-x86_64/bin/make.exe | |
$NDK_ROOT/prebuilt/windows-x86_64/bin/make.exe -f $NDK_ROOT/build/core/build-local.mk SHELL=cmd $@ |
This file contains hidden or 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
#!/bin/bash | |
# Reset | |
Color_Off="\[\033[0m\]" # Text Reset | |
# Regular Colors | |
Black="\[\033[0;30m\]" # Black | |
Red="\[\033[0;31m\]" # Red | |
Green="\[\033[0;32m\]" # Green |
This file contains hidden or 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
language: android | |
android: | |
components: | |
- platform-tools | |
- build-tools-23.0.1 | |
- android-23 | |
- extra-android-m2repository | |
script: | |
- ./gradlew build | |
before_install: |
This file contains hidden or 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
buildscript { | |
repositories { | |
jcenter() | |
} | |
dependencies { | |
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.1' | |
} | |
} | |
apply plugin: 'com.android.application' |
This file contains hidden or 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
buildscript { | |
repositories { | |
jcenter() | |
} | |
dependencies { | |
classpath 'com.dicedmelon.gradle:jacoco-android:0.1.1' | |
} | |
} | |
apply plugin: 'com.android.application' |
This file contains hidden or 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
apply plugin: 'java' |
This file contains hidden or 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
def contentSpec = copySpec { | |
//exclude 'nocopy.txt', 'nocopy_too.txt' | |
exclude {it.file.name.startsWith('nocopy')} | |
from 'src' | |
} | |
task copyImages (type: Copy) { | |
// Parameters can be imported from a variable | |
with contentSpec | |
into 'dest' |
OlderNewer