I hereby claim:
- I am enzinier on github.
- I am enzinier (https://keybase.io/enzinier) on keybase.
- I have a public key ASDuJUJmJ9UsgRyTRLqECORw2PxhI_RCZdLEeZ7CYDRFmAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| apt-get install python-software-properties | |
| add-apt-repository -y ppa:webupd8team/java | |
| apt-get update | |
| # Enable silent install | |
| echo debconf shared/accepted-oracle-license-v1-1 select true | sudo debconf-set-selections | |
| echo debconf shared/accepted-oracle-license-v1-1 seen true | sudo debconf-set-selections |
| #!/usr/bin/env bash | |
| sudo apt-get install -y python-software-properties debconf-utils | |
| sudo add-apt-repository -y ppa:webupd8team/java | |
| sudo apt-get update | |
| echo "oracle-java8-installer shared/accepted-oracle-license-v1-1 select true" | sudo debconf-set-selections | |
| sudo apt-get install -y oracle-java8-installer |
| #!/bin/sh | |
| # Userland mode (~$USER/), (~/). | |
| # ~/.fonts is now deprecated and that | |
| #FONT_HOME=~/.fonts | |
| # ~/.local/share/fonts should be used instead | |
| FONT_HOME=~/.local/share/fonts | |
| echo "installing fonts at $PWD to $FONT_HOME" | |
| mkdir -p "$FONT_HOME/adobe-fonts/source-code-pro" |
| [Desktop Entry] | |
| Version=2.3 | |
| Name=Android Studio | |
| Comment=Android Studio | |
| Exec=/home/jason/Applications/android-studio/bin/studio.sh | |
| Icon=/home/jason/Applications/android-studio/bin/studio.png | |
| Terminal=false | |
| Type=Application | |
| Categories=Utility;Application; |
| #!/bin/sh | |
| # Install Node 6.x (https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions) | |
| curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - | |
| sudo apt-get install -y nodejs | |
| node -v | |
| # Install yarn (https://yarnpkg.com/en/docs/install#linux-tab) | |
| curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - | |
| echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list |
| #! /bin/bash | |
| # (@) start-android | |
| # If the emulator command exists on this device, displays a list of emulators | |
| # and prompts the user to start one | |
| # ref. http://stackoverflow.com/questions/7837952/what-is-the-command-to-list-the-available-avdnames | |
| # Check if the emulator command exists first | |
| if ! type emulator > /dev/null; then | |
| echo "emulator command not found" | |
| exit 1 |
| #! /bin/bash | |
| # only run first android emulator/ | |
| # ref. http://stackoverflow.com/questions/7837952/what-is-the-command-to-list-the-available-avdnames | |
| # Check if the emulator command exists first | |
| if ! type emulator > /dev/null; then | |
| echo "emulator command not found" | |
| exit 1 | |
| fi |
| [Desktop Entry] | |
| Version=1.0 | |
| Name=AVD | |
| Comment=AVD | |
| Exec=bash -c "DEVICES=$(/home/jason/Android/Sdk/tools/emulator -list-avds 2>&1) && /home/jason/Android/Sdk/tools/emulator @${DEVICES[0]}" | |
| Icon=/home/jason/Android/Sdk/platforms/android-23/templates/ic_launcher_xhdpi.png | |
| Terminal=false | |
| Type=Application | |
| Categories=Utility;Application; |
| <plugin> | |
| <groupId>org.mybatis.generator</groupId> | |
| <artifactId>mybatis-generator-maven-plugin</artifactId> | |
| <version>${mybatis-generator.version}</version> | |
| <executions> | |
| <execution> | |
| <id>Generate MyBatis Artifacts</id> | |
| <goals> | |
| <goal>generate</goal> | |
| </goals> |