Record a video of your app
Developer options -> Check show touches
adb shell screenrecord /sdcard/video.mp4
adb pull /sdcard/video.mp4| # Path to your oh-my-zsh installation. | |
| export ZSH=/Users/andrey/.oh-my-zsh | |
| # Set name of the theme to load. | |
| # Look in ~/.oh-my-zsh/themes/ | |
| # Optionally, if you set this to "random", it'll load a random theme each | |
| # time that oh-my-zsh is loaded. | |
| ZSH_THEME=pygmalion | |
| # Use sublimetext for editing config files |
| /* | |
| * Author: Felipe Herranz ([email protected]) | |
| * Contributors:Francesco Verheye ([email protected]) | |
| * Israel Dominguez ([email protected]) | |
| */ | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import java.util.concurrent.atomic.AtomicBoolean; | |
| import android.os.Handler; |
| /* | |
| * TypefaceTextView.java | |
| * Simple | |
| * | |
| * Copyright 2012 Simple Finance Corporation (https://www.simple.com) | |
| * | |
| * Licensed under the Apache License, Version 2.0 (the "License"); | |
| * you may not use this file except in compliance with the License. | |
| * You may obtain a copy of the License at | |
| * |
| export PATH="/Applications/sdk/platform-tools":$PATH | |
| export ANDROID_HOME=/Applications/sdk | |
| export PATH=$PATH:$ANDROID_HOME/tools | |
| export M2_HOME="/Applications/apache-maven-3.2.1/" | |
| export PATH=${PATH}:${M2_HOME}/bin | |
| export PATH=/usr/local/Cellar/subversion/1.8.8/bin/:$PATH | |
| export PATH="/Applications/gradle-2.0/bin/":$PATH | |
| export PATH=/usr/local/Cellar/nano/:$PATH | |
| export PATH=/usr/local/Cellar/vim/:$PATH |
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management |
| # install Homebrew if you don't already have it: http://mxcl.github.io/homebrew/ | |
| # install nano from homebrew | |
| brew install nano | |
| # update your nanorc file with the contents of the nanorc file below | |
| nano ~/.nanorc | |
| # re-open your terminal and you'll have syntax highlighting |