Install compiler dependencies
brew install automake autoconf libtool libxml2 pkg-config
brew link libxml2
Build libspatialite
| ## JavaScript | |
| 1. Write a mul function which will produce the following outputs when invoked: | |
| ``` | |
| console.log(mul(2)(3)(4)); // output : 24 console.log(mul(4)(3)(4)); // output : 48 | |
| ``` | |
| 2. Can you name two programming paradigms important to for JavaScript app developers? | |
| 3. What is the difference between classical inheritance and prototypal inheritance? |
| var amqp = require('amqp'); | |
| var connection = amqp.createConnection({ | |
| host: '192.168.64.10', | |
| port: 5672 | |
| }); | |
| // Wait for connection to become established. | |
| connection.on('ready', function () { | |
| console.log('ready'); |
| // ==UserScript== | |
| // @name Waffle.io Helper | |
| // @namespace http://github.com/duncanfinney | |
| // @version 0.1 | |
| // @description Adds column filtering and conditional styling capabilities to waffle | |
| // @author duncanfinney | |
| // @match https://waffle.io/leveleleven/field-guide | |
| // @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/lodash.js/3.3.1/lodash.min.js | |
| // @grant MIT |
| var Reflux = require('reflux'); | |
| var React = require('react'); | |
| var Actions = require('stats-actions'); | |
| var API = require('kazu'); | |
| var StatsActions = Reflux.createActions({ | |
| getStats1: { }, | |
| getStats1Completed: {}, | |
| getStats1Failed: {}, | |
| // ==UserScript== | |
| // @name Github no whitespace | |
| // @version 0.1 | |
| // @description Redirects commit and pull requests to the no whitespace diff | |
| // @author You | |
| // @match *github.com/*/commit/* | |
| // @match *github.com/*/pull/* | |
| // @grant none | |
| // ==/UserScript== |