Skip to content

Instantly share code, notes, and snippets.

View eowfenth's full-sized avatar
🏠
Working from home

Nícolas Deçordi eowfenth

🏠
Working from home
  • Nubank
  • Salvador, Bahia - Brazil
View GitHub Profile
@eowfenth
eowfenth / app.js
Created September 4, 2017 11:47 — forked from lucianomlima/app.js
React Native one file script start
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>
);
@eowfenth
eowfenth / snippets.cson
Created August 28, 2017 15:57 — forked from lucianomlima/snippets.cson
React Native Atom snippets
{
".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}"
@eowfenth
eowfenth / install_netcdf4.sh
Created March 15, 2017 11:19
Install netCDF4 in Ubuntu
#!/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
@eowfenth
eowfenth / install.sh
Created March 3, 2017 00:45 — forked from robertov8/install.sh
otclient - Compiling on Linux
#!/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