from this
import Head from '~components/Commons/Head';
require('~images/test.jpg')
to this
from this
import Head from '~components/Commons/Head';
require('~images/test.jpg')
to this
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
Here is a high level overview for what you need to do to get most of an Android environment setup and maintained.
Prerequisites (for Homebrew at a minimum, lots of other tools need these too):
xcode-select --install will prompt up a dialog)Install Homebrew:
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
| CREATE CONSTRAINT ON (n:Address) ASSERT n.node_id IS UNIQUE; | |
| CREATE CONSTRAINT ON (n:Officer) ASSERT n.node_id IS UNIQUE; | |
| CREATE CONSTRAINT ON (n:Entity) ASSERT n.node_id IS UNIQUE; | |
| CREATE CONSTRAINT ON (n:Intermediary) ASSERT n.node_id IS UNIQUE; | |
| USING PERIODIC COMMIT | |
| LOAD CSV WITH HEADERS FROM "file:///Addresses.csv" AS line | |
| CREATE (n:Address {node_id: line.node_id }) | |
| SET n += line; |
| # Set variables in .bashrc file | |
| # don't forget to change your path correctly! | |
| export GOPATH=$HOME/golang | |
| export GOROOT=/usr/local/opt/go/libexec | |
| export PATH=$PATH:$GOPATH/bin | |
| export PATH=$PATH:$GOROOT/bin |