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:
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 |
/*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!"); |
// 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 |
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:[email protected]:27017/myapp_meteor_com |
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. |
Sometimes it is useful to route traffic through a different machine for testing or development. At work, we have a VPN to a remote facility that we haven't bothered to fix for routing, so the only way to access a certain machine over that VPN is via an SSH tunnel to a machine that is reachable over the VPN. Other times, I have used this technique to test internet-facing requests against sites I am developing. It is pretty easy, and if you don't use firefox regularly, you can treat Firefox as your "Proxy" browser and other browsers can use a normal configuration (Although you can also configure an entire system to use the proxy, other articles exists that discuss this potential).
module.exports = { | |
env: { | |
es6: true, | |
node: true | |
}, | |
plugins: ["prettier"], | |
extends: ["plugin:prettier/recommended"], | |
parserOptions: { | |
sourceType: "module" | |
}, |