Skip to content

Instantly share code, notes, and snippets.

View tomalex0's full-sized avatar

Thomas Alexander tomalex0

  • Universal Music Group
  • Los Angeles, California
View GitHub Profile
@tomalex0
tomalex0 / default
Created November 16, 2015 08:59 — forked from miguelmota/default
Nginx + Node.js server configuration. Blog post: http://www.miguelmota.com/blog/nodejs-and-ngnix-on-ubuntu/
# 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;
@tomalex0
tomalex0 / dustcompile
Created October 26, 2015 20:32
Compile dust file in nodejs
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 {
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))
;
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 {
<!DOCTYPE html>
<html>
<head>
<title>Box Shadow</title>
<style>
.box {
height: 150px;
width: 300px;
margin: 20px;
.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);
@tomalex0
tomalex0 / widget
Last active August 29, 2015 13:57
Barebone script to start a javascript widget
(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() {
// CSS3 PROPERTIES
// --------------------------------------------------
// Border Radius
.border-radius(@radius) {
-webkit-border-radius: @radius;
-moz-border-radius: @radius;
border-radius: @radius;
}
@tomalex0
tomalex0 / Local JSON POST call via Node server
Last active December 21, 2015 23:59
Basic Node server setup config which allows to make Ajax POST call to local json files.
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){
/**
* @author Jacky Nguyen
* @class Ux.event.recognizer.MouseWheelDrag
*
* Ext.Loader.setPath('Ux', '/path/to/your/app/ux');
*
* Ext.application({
* // ...
* eventPublishers: {
* touchGesture: {