Chrome
Spotify
Homebrew
Git (brew install git)
Iterm 2
Chrome
Spotify
Homebrew
Git (brew install git)
Iterm 2
| # DOCKER-VERSION 0.7.2 | |
| FROM 172.16.42.43:5000/base-nave | |
| MAINTAINER Adam Duncan <adam.jd@gmail.com> | |
| # Install ZeroMQ | |
| RUN wget http://download.zeromq.org/zeromq-3.2.3.tar.gz && tar zxvf zeromq-3.2.3.tar.gz && cd zeromq-3.2.3 && ./configure && make && make install && ldconfig | |
| # Install supervisor | |
| RUN apt-get -y install supervisor |
| { "asi": true | |
| , "boss": true | |
| , "browser": true | |
| , "camelcase": true | |
| , "curly": false | |
| , "devel": false | |
| , "devel": true | |
| , "eqeqeq": true | |
| , "eqnull": true | |
| , "es5": false |
| { "excludeFiles": | |
| [ "node_modules/**" | |
| , "coverage" | |
| ] | |
| , "requireLineFeedAtFileEnd": true | |
| , "disallowMultipleLineBreaks": true | |
| , "requireMultipleVarDecl": true | |
| , "disallowEmptyBlocks": true | |
| , "disallowSpaceAfterObjectKeys": true | |
| , "disallowCommaBeforeLineBreak": true |
| { "scripts": | |
| { "prepare": "nave use 4.3.1 npm install" | |
| }, | |
| "dependencies": | |
| { "multi-glob": "1.0.1" | |
| } | |
| } |
| DB: | |
| Honour: | |
| { id: '' | |
| , tournamentId: '' | |
| , slug: 'runner-up || winner || mvp' | |
| , priority: '' | |
| } |
| const Primus = require('primus') | |
| const Socket = Primus.createSocket({ parser: 'binary' }) | |
| const client = new Socket('http://localhost:3030', { transport: { headers: { 'admin': 'true' } } }) | |
| client.on('open', () => { | |
| console.log('opened!') | |
| client.on('data', data => { | |
| console.log(data) | |
| }) | |
| client.write('Hello') |
| openssl genrsa -out saml.pem 1024 | |
| openssl req -new -key saml.pem -out saml.csr | |
| openssl x509 -req -in saml.csr -signkey saml.pem -out saml.crt |