Install iTerm 2
Download, unzip and drag to your Applications directory.
https://www.iterm2.com/downloads.html
Download, unzip and drag to your Applications directory.
https://www.iterm2.com/downloads.html
| import React, { Component } from 'react' | |
| import { Router, Route, Link, IndexRoute, hashHistory, browserHistory, DefaultRoute, IndexLink } from 'react-router' | |
| class App extends Component { | |
| render () { | |
| return ( | |
| <Router history={hashHistory}> | |
| <Route path='/' component={Container}> | |
| <IndexRoute component={Home} /> | |
| <Route path='/address' component={Address}> |
| function boyer_moore_horspool(haystack, needle) { | |
| var badMatchTable = {}; | |
| var maxOffset = haystack.length - needle.length; | |
| var offset = 0; | |
| var last = needle.length - 1; | |
| var scan; | |
| // Generate the bad match table, which is the location of offsets | |
| // to jump forward when a comparison fails | |
| Array.prototype.forEach.call(needle, function (char, i) { |
| // USAGE ------ | |
| // ============ | |
| var shell = require('./shellHelper'); | |
| // execute a single shell command | |
| shell.exec('npm test --coverage', function(err){ | |
| console.log('executed test'); | |
| }}); |
| <!DOCTYPE html> | |
| <html ng-app > | |
| <head lang="en"> | |
| <meta charset="utf-8"> | |
| <title>ngLoading demo</title> | |
| <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular.min.js"></script> | |
| <link rel="stylesheet" href="style.css"> | |
| <script src="ngLoading.js"></script> | |
| </head> |
| [ | |
| { | |
| "code": "AAA", | |
| "lat": "-17.3595", | |
| "lon": "-145.494", | |
| "name": "Anaa Airport", | |
| "city": "Anaa", | |
| "state": "Tuamotu-Gambier", | |
| "country": "French Polynesia", |
---------- Forwarded message ----------
From: Mark S. Miller <[email protected]>
Date: Tue, Nov 16, 2010 at 3:44 PM
Subject: "Future of Javascript" doc from our internal "JavaScript Summit"
last week
To: [email protected]
| /* http://meyerweb.com/eric/tools/css/reset/ | |
| v2.0 | 20110126 | |
| License: none (public domain) */ | |
| html, body, div, span, applet, object, iframe, | |
| h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
| a, abbr, acronym, address, big, cite, code, | |
| del, dfn, em, img, ins, kbd, q, s, samp, | |
| small, strike, strong, sub, sup, tt, var, | |
| b, u, i, center, |