Various commands
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
window.location.href.match(/^([^/]+):\/\/([^/:]+):?([1-9]*)\/([^?]*)\??(.*)$/) | |
Example output: | |
["http://127.0.0.1:1337/projects/sd?sdflkj&jh", "http", "127.0.0.1", "1337", "projects/sd", "sdflkj&jh"] | |
That is: full match, protocol, host, port, path (relative to root), query string | |
Todo: test for bugs. |
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 http = require('http'); | |
var fs = require('fs'); | |
var localIP = "127.0.0.1"; | |
var port = 8080; | |
var indexFile = './index.html'; | |
var process = function(req, res) { | |
fs.readFile(indexFile, function(err, data) { |
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
/** | |
* Parses a GET-style query string into a key/value object | |
* example: | |
* decodeQueryString("?sdf=ABC&xyz=jj%C3%BC"); | |
* Object {sdf: "ABC", xyz: "jjü"} | |
* | |
* @param {String} s The query string | |
*/ | |
function decodeQueryString(s) { |
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 http = require('http'); | |
var fs = require('fs'); | |
var originalsPath = 'pics/originals'; | |
var originalFiles = {}; | |
fs.readdir('pics/originals',function(err, files){ | |
originalFiles = files; | |
}) |
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
'use strict'; | |
/** | |
* {hello: 1, another: 2} => hello=1&another=2 | |
*/ | |
var encodeQueryString = function (obj) | |
{ | |
return (Object.keys(obj).reduce(function(acc, k, i){ | |
return acc + (i?'&':'') + encodeURI(k) + "=" + encodeURI(obj[k]); | |
}, '')); |
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
/** | |
* Minimal drag-move code. | |
* https://jsfiddle.net/rolfen/68bg5ggw/ | |
* | |
* @param ele {HTMLElement} the container element to drag | |
* @param triggers {Array} One or more "drag triggers", areas (inside ele) that will trigger the drag functionality when clicked on. | |
* @param onDragStart {function} Called when dragging starts (trigger is grabbed) | |
* @param onDragEnd {function} Called when dragging ends (trigger is released) | |
* | |
* Issues: |
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
/** | |
* Performant nodelist to array cast. Source: http://stackoverflow.com/a/15144269/370786 | |
* @param nl {NodeList} NodeList to convert. Might work with other data types (Array?) but that needs further testing. | |
*/ | |
function toArray(nl) | |
{ | |
var arr = []; | |
if(isNaN(nl.length)) { | |
throw "Cannot get length"; | |
} else { |
NewerOlder