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
| import React, { Component } from 'react'; | |
| import { Text, View } from 'react-native'; | |
| export default class App extends Component { | |
| render() { | |
| return ( | |
| <View> | |
| <Text>Hello World!</Text> | |
| </View> | |
| ); |
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
| { | |
| ".source.js": | |
| "React: componentDidMount() { ... }": | |
| prefix: "cdm" | |
| body: "componentDidMount() {\n\t${1}\n}" | |
| "React: componentDidUpdate(pp, ps) { ... }": | |
| prefix: "cdup" | |
| body: "componentDidUpdate(prevProps, prevState) {\n\t${1}\n}" |
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
| #!/bin/bash | |
| # Script to install hdf5 and netCDF4 libraries on a Linux Ubuntu system | |
| # After: https://code.google.com/p/netcdf4-python/wiki/UbuntuInstall | |
| # And http://unidata.github.io/netcdf4-python/ | |
| # You can check for newer version of the programs on | |
| # ftp://ftp.unidata.ucar.edu/pub/netcdf/netcdf-4/ | |
| # and other sources |
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
| #!/bin/bash | |
| # Install required development packages | |
| sudo apt-get install build-essential | |
| sudo apt-get install cmake | |
| sudo apt-get install git-core | |
| sudo apt-get install libboost1.58-all-dev | |
| sudo apt-get install liblua5.1-0-dev | |
| sudo apt-get install libglew1.13 | |
| sudo apt-get install libvorbis-dev |