Keybase proof
I hereby claim:
- I am brentjanderson on github.
- I am bja (https://keybase.io/bja) on keybase.
- I have a public key whose fingerprint is D359 6E7E B5E2 E574 AD75 B1BF 17EB 15C0 C056 E7BF
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# How to upload local db to meteor: | |
# -h = host, -d = database name, -o = dump folder name | |
mongodump -h 127.0.0.1:3002 -d meteor -o meteor | |
# get meteor db url, username, and password | |
meteor mongo --url myapp.meteor.com | |
# Response will be something like this: | |
# mongodb://client:f8f6d5aa-1213-008f-31c8-e9e059515615@production-db-a3.meteor.io:27017/myapp_meteor_com |
public function processOutput($output) { | |
$output = parent::processOutput($output); | |
$output = str_replace('.css', '.css?' . Yii::app()->params['git-hash'], $output); | |
$output = str_replace('.js', '.js?' . Yii::app()->params['git-hash'], $output); | |
return $output; | |
} |
var express = require('express') | |
, http = require('http') | |
, hbs = require('hbs') | |
, assets = require('./assets'); | |
var app = express(); | |
app.configure(function(){ | |
app.set('port', process.env.PORT || 3000); | |
// Setup views using handlebars |
// Paste this into one of the *.js files in the NeuNode project | |
var net = require('net'); | |
var client = net.connect({port: 1337, host:'10.24.11.168'}, function() { //'connect' listener | |
console.log("Client connected"); | |
}); | |
client.on('data', function(data) { | |
console.log(data.toString()); | |
}); | |
client.on('end', function() { |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
config.vm.box = "precise32" | |
config.vm.box_url = "http://files.vagrantup.com/precise32.box" | |
config.vm.network :forwarded_port, host: 4000, guest: 4000 | |
end |
Copyright 2018 | |
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. | |
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
module.exports = { | |
env: { | |
es6: true, | |
node: true | |
}, | |
plugins: ["prettier"], | |
extends: ["plugin:prettier/recommended"], | |
parserOptions: { | |
sourceType: "module" | |
}, |
Note that these dockerfiles depend on:
docker run
Make modifications as needed to meet those requirements.
Note that multi-stage builds can be used to combine the prod
and test
files described below, I haven't updated the gist yet to reflect that option.
/*jshint browser:true */ | |
/*global DS:true, io:true, App:true */ | |
(function() { | |
'use strict'; | |
// Initializer for Models | |
window.Models = {}; | |
console.warn("Don't pollute the global namespace with Models!"); |