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 str = '[]{}:,"\''; | |
for (var i = 0; i < str.length; i++) { | |
console.log(str[i], str.charCodeAt(i)); | |
} | |
/* | |
[ 91 | |
] 93 | |
{ 123 |
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
// WIP | |
var urlrx = /%&=a-zA-Z:\/0-9\._-]*/g; |
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
// Change references to "blahCode" on lines 10 and 19 | |
// to reflect the name of your module, as you want it to | |
// appear in the global scope of your enviornment | |
(function (root, factory) { | |
'use strict'; | |
if (typeof define === 'function' && define.amd) { | |
// AMD. Register as an anonymous module. | |
define([], function () { | |
return (root.blahCode = factory()); |
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
import socket | |
import sys | |
# Create a TCP/IP socket | |
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) | |
port = sys.argv[1] | |
# Bind the socket to the port | |
server_address = ('localhost', int(port)) |
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
#!/bin/sh | |
# Just copy and paste the lines below (all at once, it won't work line by line!) | |
# MAKE SURE YOU ARE HAPPY WITH WHAT IT DOES FIRST! THERE IS NO WARRANTY! | |
function abort { | |
echo "$1" | |
exit 1 | |
} | |
set -e |
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 path = require('path'); | |
exports.assignRootPath = function(req, res, next) { | |
var locals = res.locals; | |
var rootPath = ""; | |
req.path.split(path.sep).forEach(function(item){ | |
if(item) { | |
rootPath += "../"; |
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>YOUR TITLE</title> | |
</head> | |
<body> | |
<script> | |
var canvas = document.createElement("canvas"); | |
canvas.width = window.innerWidth; | |
canvas.height= window.innerHeight; |
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
/** | |
* Check a path string for a specific file type | |
* @param {String} path | |
* @param {String} extension | |
* @returns {Boolean} | |
**/ | |
function isFileType(path, extension){ | |
console.log("checking %s %s", path, extension); | |
return new RegExp("\."+extension+"$", 'i').test(path); | |
} |
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 gulp = require('gulp'); | |
var minifyCSS = require('gulp-minify-css'); | |
var concat = require('gulp-concat'); | |
var browserSync = require('browser-sync').create(); | |
var paths = { | |
css: ['./css/*.css'], | |
scripts: ['./js/*.js'], | |
html: ['./*.html'] | |
}; |