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
| cd /home/<user>/ | |
| sudo apt-get install unzip | |
| wget https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip | |
| unzip sdk-tools-linux-4333796.zip -d Android | |
| rm sdk-tools-linux-4333796.zip | |
| sudo apt-get install -y lib32z1 openjdk-8-jdk | |
| export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 | |
| export PATH=$PATH:$JAVA_HOME/bin | |
| printf "\n\nexport JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64\nexport PATH=\$PATH:\$JAVA_HOME/bin" >> ~/.bashrc | |
| cd Android/tools/bin |
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
| Ext.define("MyApp.ChartTitleMixin", { | |
| createTitleItem: function() { | |
| this.chartTitle = new Ext4.draw.Sprite({ | |
| type: "text", | |
| "text-anchor": "middle", | |
| fill: "black", | |
| "font-size": "12px", | |
| "font-weight": "bold", | |
| "font-family": "Arial", | |
| text: this.title |
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
| # VirtualBox home directory. | |
| "C:\Program Files\Oracle\VirtualBox\VBoxManage.exe" setproperty machinefolder "C:\VMs" | |
| # Vagrant home directory for downloadad boxes. | |
| REG ADD HKCU\Environment /v VAGRANT_HOME /t REG_SZ /d "C:\VMs\vagrant.d" |
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
| // #### it's compilable -prefix-free | |
| // © 2011 Artem Sapegin http://sapegin.ru | |
| // + 2011 Grawl http://grawl.ru | |
| // + radial-gradient and other rules with vendor prefixes added by Grawl. | |
| // add your fixes to My table of vendor prefixes there: http://goo.gl/3hPfR | |
| /* mask: | |
| parameter() | |
| -webkit-parameter arguments | |
| -moz-parameter arguments | |
| -ms-parameter arguments |
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
| // © 2011 Artem Sapegin http://sapegin.ru | |
| // Simple CSS3 properties with vendor prefixes | |
| box-sizing() | |
| -moz-box-sizing arguments | |
| box-sizing arguments | |
| box-shadow() | |
| -webkit-box-shadow arguments |