- Helvetica neue
- Proxima nova
- Lato
- Open sans
- Source Sans Pro
- museo-sans
- raleway
- http://parse.com
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
INSERT INTO `users` (`id`, `first_name`, `last_name`, `password`, `phone_number`) VALUES | |
(NULL, 'Justin','Brown','OVab1ohthaech','+18284001200'), | |
(NULL, 'Emma','Abbey','Chae8loo4','+13605684665'), | |
(NULL, 'Connie','Hatten','rah1ou2Qu','+14144591956'), | |
(NULL, 'Jesus','Goodwin','Laiph6oo','+18188644418'), | |
(NULL, 'Ernest','Ruffin','ahY0ijei3h','+19172338187'), | |
(NULL, 'Laurel','Owen','Oom8yohje','+16155206920'), | |
(NULL, 'Carol','Stormer','choh2ahF','+13126607383'), | |
(NULL, 'Annette','Paul','Ieke5yai','+12482553404'), | |
(NULL, 'Ronda','Stanley','suiD5id7Toh','+15622754365'), |
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
Get coordinates: | |
http://jsfiddle.net/granttimmerman/MqEQ3/6/embedded/result/ | |
Paste them here: | |
http://www.darrinward.com/lat-long/ | |
Original data from: | |
https://developer.leapmotion.com/forums/forums/events-meetups/topics/where-are-you-from |
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
app.get(/^([^.]+)$/, function (req, res) { res.redirect(req.routes.path + '.html');}); |
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
/node_modules | |
/package.json | |
/src | |
/node_modules | |
/client -> ../client | |
/server -> ../server | |
/shared -> ../shared | |
/client | |
/apps | |
/main |
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
function test() { | |
//code | |
codeThatListensToEvent(function() { | |
// finish the code | |
}); | |
} | |
function codeThatListensToEvent(cb) { | |
socket.doStuff(); |
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
setInterval(function () { | |
var color = 'rgb('+Math.floor(Math.random()*255)+','+Math.floor(Math.random()*255)+','+Math.floor(Math.random()*255)+')'; | |
console.log(color); | |
document.getElementsByTagName('header')[0].style['background-color'] = color; | |
}, 10); |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
<style> | |
div { | |
width: 40px; | |
height: 10px; | |
display: inline-block; |
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
.lang-swift { | |
color: #528186; | |
} | |
.lang-swift .symbol { | |
color: #000; | |
} | |
.lang-swift .keyword { | |
color: #b6399f; |
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 numNodes = 20; | |
var roundNum = 100; | |
var a = []; | |
for (var i = 0; i < numNodes; ++i) { | |
var connections = []; | |
var sum = 0; | |
for (var j = 0; j < numNodes; ++j) { | |
var randNum = Math.random() / numNodes; | |
// round the num | |
randNum = Math.round(randNum * roundNum) / roundNum; |
OlderNewer