Chirag Jain (twitter) (github) is the cofounder of Lrn, a React Native iOS app released to the app store on July 28th that jumped to the top of ProductHunt in the same day. It was also reported on by Creator,
/** | |
* Sample React Native App | |
* https://github.com/facebook/react-native | |
*/ | |
'use strict'; | |
var React = require('react-native'); | |
var { | |
AppRegistry, | |
StyleSheet, |
/** | |
* Copyright (c) 2015-present, Facebook, Inc. | |
* All rights reserved. | |
* | |
* This source code is licensed under the BSD-style license found in the | |
* LICENSE file in the root directory of this source tree. An additional grant | |
* of patent rights can be found in the PATENTS file in the same directory. | |
*/ | |
'use strict'; |
/* @flow */ | |
import React from 'react-native'; | |
import ReactInstanceMap from 'ReactInstanceMap'; | |
import { Animated, Component, ScrollView, PropTypes, TextInput, NativeModules, Dimensions, } from 'react-native'; | |
import KeyboardEvents from 'react-native-keyboardevents'; | |
var { UIManager, } = NativeModules; | |
var FOCUS_AUTO = 'auto'; |
Anand Sharma (twitter) (github), also known as aprilzero, is a designer, developer, traveler, runner and founder of Gyroscope. His post "I've been tracking everything about myself" exploded on HackerNews just over a year ago, followed by a pair of blog
Matt Mohebbi (twitter) (github) is the technical co-founder/CTO of Iodine alongside CEO Thomas Goetz (former executive editor of Wired Magazine & author of The Remedy and The Decision Tree). Before Iodine, Matt worked for nine years at Google on a variety of projects including Search, Flu Trends, Correlate, and Consumer Surveys. Now he wants to bring his experience with big data to health in a way that hasn't been done before. For the past couple of months they have been building an app in React Native - an app that may end up being an important piece of their business. I've had the great fortune to be able to work with their team recently, and it it has been a fantastic experience, so
{ | |
"NOVEMBER 3, 2015": [ | |
{"time": "8:00–9:00", "title":"DOORS OPEN & Registration"}, | |
{"time": "9:00–9:15", "title": "Conference opening"}, | |
{"time": "9:15–9:45", "title": "TBD", "speaker": "James Long", "company": "Mozilla"}, | |
{"time": "9:45–10:45", "title": "BIND TO THE CLOUD WITH FALCOR", "speaker": "Paul Taylor —Netflix"}, | |
{"time": "10:45–11:15", "title": "Coffee Break"}, | |
{"time": "11:15–11:45 ", "title": "FUNCTIONAL PROGRAMMING IN JAVASCRIPT. WHAT, WHY, AND HOW.", "speaker": "Daniel Steigerwald —VacuumLabs"}, | |
{"time": "11:45–12:30", "title": "DECONSTRUCTING REACT", "speaker": "Nikita Prokopov", "company": "Datascript"}, | |
{"time": "12:30–13:15", "title": "THE CASE FOR CSS MODULES", "speaker": "Mark Dalgleish", "company": "SEEK"}, |
/** | |
* Copyright 2004-present Facebook. All Rights Reserved. | |
* | |
* @providesModule RecyclingListView | |
* @flow | |
*/ | |
'use strict'; | |
var React = require('React'); | |
var ScrollView = require('ScrollView'); |
'use strict'; | |
var React = require('react-native'); | |
var _ = require('underscore'); | |
var { ActivityIndicatorIOS, Text, Navigator, TouchableHighlight, AppRegistry, ListView, View, StyleSheet } = React; | |
var StarWarsApp = React.createClass({ | |
render() { | |
return ( |
export default store => next => action => { | |
console.log('dispatching', action.type); | |
let before = new Date(); | |
let result = next(action); | |
let after = new Date(); | |
let total = after - before; | |
console.log(`completed ${action.type} in ${total}ms`); |