Skip to content

Instantly share code, notes, and snippets.

@RonnyO
RonnyO / 0_reuse_code.js
Created March 28, 2017 20:46
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE>
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
@RonnyO
RonnyO / word-frequency-counter.js
Created June 27, 2012 13:51 — forked from ernestom/word-frequency-counter.js
Bookmarklet to count word frequency
(function () {
var settings = {
listLength: 30,
ignore: ['if', 'as', 'is', 'the', 'any', 'and', 'to', 'or', 'a', 'of']
},
w, s;
function getBodyText() {
var doc = document,
body = doc.body,
selection, range, bodyText;
/*
---
source: http://gist.github.com/133677
provides: document.write
description: MooTools based document.write replacement
requires: MooTools
author: Thomas Aylott -- SubtleGradient.com
thanks: Daniel Steigerwald -- daniel.steigerwald.cz
/**
* Classify.js
* A simple implementation of a Class native in Javascript with support for private and public methods and properties.
* Inspired by MooTools Class.js and by the Module Javascript design pattern (for private and public methods and properties)
*
* Zohar Arad. February 2011
*
* Usage:
*
* var MyClass = new Class({