This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Beveled corners & negative border-radius with CSS gradients | |
*/ | |
div { | |
background: #c00; /* fallback */ | |
background: | |
linear-gradient(135deg, transparent 10px, #c00 0) top left, | |
linear-gradient(225deg, transparent 10px, #c00 0) top right, | |
linear-gradient(315deg, transparent 10px, #c00 0) bottom right, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var Util = require('util'); | |
var Https = require('https'); | |
var Tls = require('tls'); | |
/** | |
* HTTPS Agent for node.js HTTPS requests via a proxy. | |
* blog.vanamco.com/connecting-via-proxy-node-js/ | |
*/ | |
function HttpsProxyAgent(options) | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var EventEmitter = require('events').EventEmitter, | |
_ = require('lodash'); | |
/** | |
* Creates an action functor object | |
*/ | |
exports.createAction = function() { | |
var action = new EventEmitter(), | |
eventLabel = "action", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div><a href="http://jsforcats.com/">JS for cats</a></div> | |
<div><a href="https://github.com/maxogden/art-of-node#the-art-of-node">Art of Node</a></div> | |
<div><a href="http://github.com/substack/node-browserify"><img src="talk/browserify.png"></a></div> | |
<div>javascript should run everywhere</div> | |
<div><img src="talk/require.png"></div> | |
<div><img src="talk/venn.png"></div> | |
<div>browserify + npm = ♥</div> | |
<div>npm = client side + server side modules in one registry</div> | |
<div><a href="http://github.com/substack/browserify-handbook">browserify-handbook</a></div> | |
<div><a href="http://npmjs.org/browserify-adventure">browserify-adventure</a></div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[General] | |
loglevel = notify | |
skip-proxy = 127.0.0.1, 192.168.0.0/16, 10.0.0.0/8, 172.16.0.0/12, 100.64.0.0/10, localhost, *.local, ::ffff:0:0:0:0/1, ::ffff:128:0:0:0/1 | |
bypass-tun = 192.168.0.0/16, 10.0.0.0/8, 172.16.0.0/12 | |
# dns-server = 119.29.29.29,223.5.5.5,114.114.115.115 | |
# external-controller-access = [email protected]:6155 | |
# ipv6 = true | |
// REMEMBER TO CHANGE THE external-controller-access' PASSWORD |
OlderNewer