Skip to content

Instantly share code, notes, and snippets.

View atk's full-sized avatar
💻
implementing RFC 1925 #1

Alex Lohr atk

💻
implementing RFC 1925 #1
  • GoTo Group Inc.
  • Karlsruhe, Germany
View GitHub Profile
@atk
atk / LICENSE.txt
Created June 19, 2011 16:34 — forked from 140bytes/LICENSE.txt
polyfill an ES5-compatibile Array.prototype.lastIndexOf where needed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 Alex Kloss <alexthkloss@web.de>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
@atk
atk / LICENSE.txt
Created June 19, 2011 15:45 — forked from 140bytes/LICENSE.txt
polyfill an ES5-compatible Array.prototype.indexOf
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 Alex Kloss <alexthkloss@web.de>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
@atk
atk / LICENSE.txt
Last active August 29, 2015 14:24 — forked from 140bytes/LICENSE.txt
Check if node is child of a selection of nodes
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 Alex Lohr (formerly Kloss) alexthkloss@web.de
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
@atk
atk / LICENSE.txt
Last active August 29, 2015 14:22 — forked from 140bytes/LICENSE.txt
FlexWrap Support Detection
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2015 Alex Lohr (formerly Kloss) alexthkloss@web.de
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
@atk
atk / LICENSE.txt
Last active August 29, 2015 14:21 — forked from 140bytes/LICENSE.txt
Number is Palindrome
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2015 Alex Lohr (formerly Kloss) <alexthkloss@web.de>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
@atk
atk / lua2acei18n
Created November 14, 2014 07:13
Small snippet to create ACE i18n from WoW lua files in Chrome developer tools
// view raw lua file, open developer tools, select pre and run in console:
x={}; $0.innerHTML.replace(/L\["(.*?)"\]/g, function(c){ x[c] = true; }); L = []; for (var c in x) { L.push( c + ' = true') }; $0.innerHTML = L.join('\n');