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 / Detectdevice
Last active October 11, 2015 13:27
to identify if device is phone,tablet or desktop
var osEnvar= {
name : null,
names: {
ios: 'iOS',
android: 'Android',
webos: 'webOS',
blackberry: 'BlackBerry',
rimTablet: 'RIMTablet',
mac: 'MacOS',
win: 'Windows',
/* tooltip using css3 */
http://jsfiddle.net/error454/aaDY9/
http://jsfiddle.net/4Dpa3/
http://jsfiddle.net/tomalex0/8fd6N/1/
/*Pseudo Element z-index fix*/
http://jsfiddle.net/imakewebthings/CceAT/
@tomalex0
tomalex0 / NodeJs Web Server
Created April 5, 2013 14:16
NodeJs Web Server
var http = require('http');
var fs = require('fs');
var path = require('path');
http.createServer(function (request, response) {
console.log('request starting...');
var filePath = '.' + request.url;
@tomalex0
tomalex0 / Express Web Server
Created April 11, 2013 21:13
Webserver using Express with Node js
var express = require('express');
var app = express();
app.use(express.compress());
app.use(express.static(__dirname));
app.listen(process.env.PORT || 3000);
/**
* @author Jacky Nguyen
* @class Ux.event.recognizer.MouseWheelDrag
*
* Ext.Loader.setPath('Ux', '/path/to/your/app/ux');
*
* Ext.application({
* // ...
* eventPublishers: {
* touchGesture: {
@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){
// CSS3 PROPERTIES
// --------------------------------------------------
// Border Radius
.border-radius(@radius) {
-webkit-border-radius: @radius;
-moz-border-radius: @radius;
border-radius: @radius;
}
@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() {
.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);
<!DOCTYPE html>
<html>
<head>
<title>Box Shadow</title>
<style>
.box {
height: 150px;
width: 300px;
margin: 20px;