Skip to content

Instantly share code, notes, and snippets.

View prestonparris's full-sized avatar

Preston Parris prestonparris

View GitHub Profile
@prestonparris
prestonparris / reactjs-conf-2015-notes.md
Last active April 6, 2017 21:32
Notes from the 2015 React.js Conference

Reactjs conf 2015 Notes

  • react native announced

    • Allows you to use react style javascript to target native ios and android, native views, live reloading
    • intro pt1
    • intro pt2
    • facebook groups app uses react native with graphql and relay
  • realtime page tweaking

    • rethink best practices and workflows
  • inmutability is a good idea

@prestonparris
prestonparris / gist:2142792
Created March 21, 2012 00:04
json scrape
request = require 'request'
mongoose = require 'mongoose'
ItemModel = mongoose.model 'ItemModel', new mongoose.Schema {
title: String
description: String
latitude: Number
longitude: Number
}