Skip to content

Instantly share code, notes, and snippets.

View superlinkx's full-sized avatar

Alyx Holms superlinkx

View GitHub Profile

Keybase proof

I hereby claim:

  • I am superlinkx on github.
  • I am superlinkx (https://keybase.io/superlinkx) on keybase.
  • I have a public key ASA5Us74YMnytsCaEGAq-LDfVYoOin-B8-7tG_1js-zWGgo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am superlinkx on github.
  • I am superlinkx (https://keybase.io/superlinkx) on keybase.
  • I have a public key whose fingerprint is 0490 8279 C2AC F6B3 47C8 054E BD17 69F0 260A FF08

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am superlinkx on github.
  • I am superlinkx (https://keybase.io/superlinkx) on keybase.
  • I have a public key whose fingerprint is 3CD7 85F8 55C7 5B7F 614C A861 CB9C 328C DBA2 567F

To claim this, I am signing this object:

@superlinkx
superlinkx / wow.js
Last active August 29, 2015 13:57 — forked from anonymous/wow.js
/*
* Add a shuffle function to Array object prototype
* Usage :
* var tmpArray = ["a", "b", "c", "d", "e"];
* tmpArray.shuffle();
*/
Array.prototype.shuffle = function (){
var i = this.length, j, temp;
if ( i == 0 ) return;
while ( --i ) {
@superlinkx
superlinkx / console-jquery.html
Last active June 14, 2022 16:31
Simple debugging console for JavaScript that you can embed in your debugging html. Use html.log(<message>) in your javascript to output to this console. The style can be modified easily to your liking.
<!DOCTYPE html>
<html>
<head>
<style>
#console {
width: 800px;
height: 400px;
background: #575757;
color: white;
margin: 30px auto;