- Run: "sudo npm install -g cordova"
- Run: "sudo npm install -g ionic"
- Run: "brew install android-sdk"
- Run: “android” then install the following packages
- Tools: Andoird SDK Tools, Android SDK Platform-tools, Android SDK Build-tools
- Android 4.4.2 (API 19)
- Extras: Android Support Library
This file contains 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
TTTTBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBTTTT | |
TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT | |
RRRRRRRRRRRTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT | |
RWWWWRWWWWRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR | |
RWWRRRWWRRRWWWWRWWWWRWWWWWWRWWRWRRRRWWRWWWWR | |
RWWWWRWWWWRWWRWRWWRWRRWWRWRRWWWWRRRRWWRWWRWR | |
RRRRWRRRRWRWWRRRWWRWRRWWRWRRWWRWRWWRWWRWWRWR | |
RWWWWRWWWWRWWWWRWWWWRRWWRWRRWWRWRWWRWWRWWWWR | |
RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR | |
TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT |
This file contains 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
git filter-branch -commit-filter 'if [ "$GIT_AUTHOR_EMAIL" = "[email protected]" ]; then export GIT_AUTHOR_NAME="Scott Humphries"; export [email protected]; export GIT_COMMITTER_NAME="Scott Humphries"; export [email protected]; fi; git commit-tree "$@"' |
This file contains 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
/** | |
* React Static Boilerplate | |
* https://github.com/koistya/react-static-boilerplate | |
* | |
* Copyright © 2015-2016 Konstantin Tarkus (@koistya) | |
* | |
* This source code is licensed under the MIT license found in the | |
* LICENSE.txt file in the root directory of this source tree. | |
*/ |
This file contains 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
import React from 'react' | |
import ReactDOM from 'react-dom' | |
ReactDOM.render( | |
<h1>Hello World</h1>, | |
document.getElementById('root') | |
) |
This Gist was automatically created by Carbide, a free online programming environment.
This file contains 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
[...new FormData(document.querySelector('form'))].reduce((o, [name, value]) => ({ ...o, [name]: value }), {}) |
This file contains 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
const clone = thing => Array.isArray(thing) ? [...thing] : Object(thing) === thing ? {...thing} : thing |
This file contains 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
[...document.querySelectorAll('tr')].slice(1).map(row=>([...document.querySelectorAll('th')].map(el=>el.textContent).reduce((obj,head,i)=>({...obj,[head]:row.querySelectorAll('td')[i].textContent}),{}))) |