Install, build and debug a react native app in WSL2 (Windows Subsystem for Linux) and Ubuntu.
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
| at+ipr=115200 | |
| at&w | |
| /etc/ppp/peers/huawei | |
| /dev/ttyAMA0 | |
| 115200 | |
| nodetach | |
| connect '/usr/sbin/chat -v -f /etc/ppp/peers/huawei-on' |
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
| curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - | |
| sudo apt-get install -y nodejs | |
| #!/bin/bash | |
| export DISPLAY=:0.0 | |
| /home/pinzon-pantalla1/actual-screen-linux-x64/./actual-screen | |
| #!/bin/bash | |
| sudo reboot |
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
| https://www.smashingmagazine.com/2016/11/how-to-build-a-spritekit-game-in-swift-3-part-1/ | |
| http://catlikecoding.com/unity/tutorials/constructing-a-fractal/ | |
| https://github.com/hakimel/Radar/blob/master/js/radar.js | |
| https://hackernoon.com/deep-learning-cheat-sheet-25421411e460#.olswmlroz | |
| http://www.potiondesign.com/project/forest-friends/ | |
| https://github.com/gregkepler/The-Nature-of-Code-Examples/blob/cinder/Cinder/chp1_vectors/NOC_1_1_bouncingball_novectors/src/NOC_1_1_bouncingball_novectorsApp.cpp | |
| https://forum.libcinder.org/topic/node-based-ui | |
| http://marcinignac.com/blog/pragmatic-pbr-hdr/ | |
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
| http://www.slideshare.net/formalist/urban-algorithms?ref=http%3A%2F%2Fwww.slideshare.net%2Fformalist | |
| http://www.metropolismag.com/July-August-2016/Tangled-Up-in-Design/ | |
| http://joshbeam.com/articles/getting_started_with_glsl/ |
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
| // Includes functions for exporting active sheet or all sheets as JSON object (also Python object syntax compatible). | |
| // Tweak the makePrettyJSON_ function to customize what kind of JSON to export. | |
| var FORMAT_ONELINE = 'One-line'; | |
| var FORMAT_MULTILINE = 'Multi-line'; | |
| var FORMAT_PRETTY = 'Pretty'; | |
| var LANGUAGE_JS = 'JavaScript'; | |
| var LANGUAGE_PYTHON = 'Python'; |