This file contains 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
# The upstream module is the link between Node.js and Nginx. | |
# Upstream is used for proxying requests to other servers. | |
# All requests for / get distributed between any of the servers listed. | |
upstream helloworld { | |
# Set up multiple Node.js webservers for load balancing. | |
# max_fails refers to number of failed attempts | |
# before server is considered inactive. | |
# weight priorities traffic to server. Ex. weight=2 will recieve | |
# twice as much traffic as server with weight=1 | |
server <your server ip>:3000 max_fails=0 fail_timeout=10s weight=1; |
This file contains 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 dust = require('dustjs-linkedin'); | |
var fs = require('fs'); | |
fs.readFile('file.dust', function (err, file) { | |
var tmpl = dust.compile(file.toString(), "hello"); | |
dust.loadSource(tmpl); | |
dust.render("hello", { version: dust.version }, function(err, out) { | |
if(err) { | |
console.error(err); | |
} else { |
This file contains 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
CREATE TABLE user | |
(`id` int, `name` varchar(55), `email` varchar(55)) | |
; | |
CREATE TABLE friends | |
(`id` int,`user_id` int, `name` varchar(55), `email` varchar(55)) | |
; | |
This file contains 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 WebSocketServer = require('ws').Server; | |
var wss = new WebSocketServer({port: 8080}); | |
var jwt = require('jsonwebtoken'); | |
/** | |
The way I like to work with 'ws' is to convert everything to an event if possible. | |
**/ | |
function toEvent (message) { | |
try { |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Box Shadow</title> | |
<style> | |
.box { | |
height: 150px; | |
width: 300px; | |
margin: 20px; |
This file contains 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
.top-box { | |
box-shadow: inset 0 7px 9px -7px rgba(0,0,0,0.4); | |
} | |
.left-box { | |
box-shadow: inset 7px 0 9px -7px rgba(0,0,0,0.4); | |
} | |
.right-box { | |
box-shadow: inset -7px 0 9px -7px rgba(0,0,0,0.4); |
This file contains 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
(function(name, definition, context) { | |
if (typeof module != 'undefined' && module.exports) { | |
module.exports = definition(); | |
} else if (typeof context['define'] == 'function' && context['define']['amd']) { | |
define(definition); | |
} else { | |
context[name] = definition(); | |
} | |
})('myWidget', function() { |
This file contains 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
// CSS3 PROPERTIES | |
// -------------------------------------------------- | |
// Border Radius | |
.border-radius(@radius) { | |
-webkit-border-radius: @radius; | |
-moz-border-radius: @radius; | |
border-radius: @radius; | |
} |
This file contains 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 express = require('express'); | |
var app = express(); | |
var path = require('path'); | |
var fs = require('fs'); | |
app.use(express.compress()); | |
app.use(express.static(__dirname)); | |
function readJsonFileSync(filepath, encoding){ |
This file contains 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
/** | |
* @author Jacky Nguyen | |
* @class Ux.event.recognizer.MouseWheelDrag | |
* | |
* Ext.Loader.setPath('Ux', '/path/to/your/app/ux'); | |
* | |
* Ext.application({ | |
* // ... | |
* eventPublishers: { | |
* touchGesture: { |