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
alias ls='ls -a -G' | |
alias ll='ls -l' | |
# adb commands targeted at specific devices without having to remember the device string | |
alias adbm='adb -s TA989069LK' | |
alias adbn='adb -s HT4CTJT01433' | |
alias adbs='adb -s 1a138b5e' | |
# copy prefs from an xml file to the device, save some of the settings setup work | |
function cpPrefs { |
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
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end | |
import com.davidstemmer.screenplay.scene.Scene; | |
import com.davidstemmer.screenplay.scene.StandardScene; | |
import com.davidstemmer.screenplay.scene.rigger.PageRigger; | |
import com.dramafever.shudder.transformer.NoAnimationTransformer; | |
import javax.inject.Inject; | |
#parse("File Header.java") | |
public class ${NAME} extends StandardScene { |
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
#if (${PACKAGE_NAME} && ${PACKAGE_NAME} != "")package ${PACKAGE_NAME};#end | |
import com.davidstemmer.screenplay.scene.Scene; | |
import com.davidstemmer.screenplay.scene.StandardScene; | |
import com.davidstemmer.screenplay.scene.rigger.PageRigger; | |
import com.dramafever.shudder.transformer.NoAnimationTransformer; | |
import javax.inject.Inject; | |
#parse("File Header.java") | |
public class ${NAME} extends StandardScene { |