Skip to content

Instantly share code, notes, and snippets.

@f0rr0
f0rr0 / gist:7cb0b4b4b31ffd108e578ec1e423f267
Created December 27, 2016 06:42 — forked from marty-wang/gist:5a71e9d0a6a2c6d6263c
Compile and deploy React Native Android app of Release version to device.
Disclaimer: The instructions are the collective efforts from a few places online.
Nothing here is my original. But I want to put them together in one place to save people from spending the same time as I did.
First off, bundle.
==================
1. cd to the project directory
2. Start the react-native packager if not started
3. Download the bundle to the asset folder:
curl "http://localhost:8081/index.android.bundle?platform=android" -o "android/app/src/main/assets/index.android.bundle"
@f0rr0
f0rr0 / ex-navigation.md
Created November 18, 2016 18:43 — forked from knowbody/ex-navigation.md
My exponent's ex-navigation docs/thoughts

Exponent - ex-navigation

This is for now, for my personal use only, things might not be correctly explained here. For the official docs please check: https://github.com/exponentjs/ex-navigation/blob/master/README.md

Navigation bar configuration

On every screen you can use the built-in navigation bar, you can add a title, left button, right button or change navigation bar’s style. All you need to do is pass appropriate params to navigationBar in the route configuration:

import React, { Component } from 'react';
@f0rr0
f0rr0 / iterm.json
Created August 31, 2016 23:09
Sid's nice clean iterm profile
{
"Use Non-ASCII Font" : false,
"Tags" : [
],
"Ansi 12 Color" : {
"Red Component" : 0.2879474759101868,
"Color Space" : "Calibrated",
"Blue Component" : 0.9987730383872986,
"Alpha Component" : 1,
@f0rr0
f0rr0 / webpack.config.js
Last active September 3, 2016 07:03
HMR
const { resolve } = require('path');
const { dependencies } = require('./package.json');
const BabiliPlugin = require("babili-webpack-plugin");
const nodeModules = {};
Object
.keys(dependencies)
.forEach((mod) => {
nodeModules[mod] = `commonjs ${mod}`;
import get from './pokemondb';
import stats from './stats';
import Koa from 'koa';
import route from 'koa-route';
import logger from 'koa-logger';
const getPokemonFromAPI = async (ctx, name) => {
try {
const data = await get(name);
ctx.body = stats(data);
export default function stats (data) {
return (
`
NAME : ${data.name}
HEIGHT : ${data.height}
WEIGHT : ${data.weight}
BASE XP: ${data.base_experience}
`
);
}
import Pokedex from 'pokedex-promise-v2';
const P = new Pokedex();
export default function get (pokemon) {
return P.getPokemonByName(pokemon);
};
{
"plugins": ["transform-async-to-generator"]
}
const { resolve } = require('path');
const { dependencies } = require('./package.json');
const nodeModules = {};
Object
.keys(dependencies)
.forEach((mod) => {
nodeModules[mod] = `commonjs ${mod}`;
});
@f0rr0
f0rr0 / CSS3 Equalizer.markdown
Created March 16, 2016 15:44
CSS3 Equalizer