Because I love Weloveiconfonts.com by @TimPietrusky
Connecting to server animation using css3 animation keyframes
A Pen by Lennart Hase on CodePen.
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> | |
<meta charset=utf-8 /> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
</body> | |
</html> |
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>What The Key Code?</title> | |
<meta name="description" content="JavaScript keyCode finder" /> | |
<meta name="keywords" content="JavaScript,keyCode,key,code" /> | |
<style type="text/css"> | |
body { | |
font-weight: 100; |
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 crypto = require('crypto') | |
, fs = require('fs'); | |
var algos = [ 'md4', 'md5', 'sha1', 'sha224', 'sha256' ]; | |
var vectors = {}; | |
algos.forEach(function(algo) { | |
vectors[algo] = { | |
'Test123': { | |
'hex': crypto.createHmac(algo, 'boo').update('Test123').digest('hex'), |
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
using System; | |
using System.Runtime.InteropServices; | |
namespace NativeExec | |
{ | |
class Program | |
{ | |
delegate byte InterlockedCompareExchange128(IntPtr dest, long exchangeHigh, long exchangeLow, IntPtr comparand); | |
static unsafe void Main(string[] args) |