Skip to content

Instantly share code, notes, and snippets.

View FredrikWendt's full-sized avatar

Fredrik Wendt FredrikWendt

View GitHub Profile
@FredrikWendt
FredrikWendt / keybase.md
Created April 15, 2015 05:04
Keybase account verification

Keybase proof

I hereby claim:

  • I am FredrikWendt on github.
  • I am wendt (https://keybase.io/wendt) on keybase.
  • I have a public key whose fingerprint is 8B75 ED00 EC85 5DE4 0C6E 86EB 8215 6248 9B1E 4234

To claim this, I am signing this object:

@FredrikWendt
FredrikWendt / test.js
Created November 11, 2014 23:58
ScrumGuides Greasemonkey script
// ==UserScript==
// @name Adapt ScrumGuides
// @namespace se.wendt.scrumguides
// @include http://scrumguides.org/*
// @version 1
// @grant none
// ==/UserScript==
var a = function () {
var getURLParam = function(name) {
var search = window.location.search;
@FredrikWendt
FredrikWendt / lifo_example.js
Created October 16, 2014 09:43
Lisa Bart and Millhouse, not members of Disney
var Child = function(name) {
this.nextChild = null;
this.name = name;
}
var DisneyClub = function() {
this.toppen = null;
this.shift = function(newTop) {
newTop.nextChild = this.toppen;