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> | |
<head> | |
<meta charset="utf-8"> | |
<style> | |
[placeholder] { position: relative; } | |
/* not functional - attr(...) is not part of the shadow-dom parent element :-/; | |
[placeholder]::-webkit-input-placeholder::before { position: absolute; display: block; content: attr(placeholder); bottom: -1.5em; left: 0; color: #000; } | |
*/ | |
/* but this is functional - in webkit Browsers */ |
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
SELECT | |
NULL, # \N | |
false, # 0 | |
true, # 1 | |
0 = false, # 1 | |
1 = true, # 1 | |
2 = true, # 0 | |
true - false = 0, # 0 | |
true + false = 1, # 1 | |
true = null, # \N |
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><head><meta charset="utf-8"><!-- | |
Ok, let me be honest here… | |
DISCLAIMER: | |
I drew inspiration and a little CSS from the now defunct | |
http://whatthekeycode.com/ | |
Still, it's different in a lot of ways. |
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
# For these... | |
HOST="1.2.3.4/24" | |
NET="1.2.3.0/24" | |
GATEWAY_IP="1.2.3.1" | |
# Set a static IP | |
ip addr add $HOST dev eth0 | |
ip route add $NET via $GATEWAY_IP | |
ip link set eth0 up |
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 escapeHTML = (function() { | |
var regexp = /[<>&'"\/]/g | |
, replacements = | |
{ '&': '&' | |
, '<': '<' | |
, '>': '>' | |
, '/': '/' | |
, '"': '"' | |
, "'": ''' | |
} |
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 spliceRevertable() { | |
var self = this | |
, revertArray = [arguments[0], arguments.length - 2] | |
, result = revertArray.splice.apply(this, arguments) | |
, revertArguments = revertArray.concat(revertArray.slice.call(arguments, 2)) | |
result.revert = funtion() { | |
return revertArguments.splice.apply(self, revertArguments) | |
} | |
return result | |
} |
NewerOlder