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:
| # -*- 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 |
| // 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() { |
| /*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!"); |
| 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 |
| 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; | |
| } |