Skip to content

Instantly share code, notes, and snippets.

View alf's full-sized avatar

Alf Lervåg alf

  • Mindshift AS
  • Oslo, Norway
View GitHub Profile
@alf
alf / SketchSystems.spec
Created November 6, 2023 12:53
My Awesome Sketch
My Awesome Sketch
First State
some event -> Second State
Second State
@alf
alf / SketchSystems.spec
Created November 6, 2023 12:52
My Awesome Sketch
My Awesome Sketch
First State
some event -> Second State
Second State
@alf
alf / SketchSystems.spec
Last active November 6, 2023 12:52
My Awesome Sketch
My Awesome Sketch
First State
some event -> Second State
Second State
@alf
alf / keybase.md
Last active October 18, 2017 07:18
keybase.md

Keybase proof

I hereby claim:

  • I am alf on github.
  • I am alf (https://keybase.io/alf) on keybase.
  • I have a public key ASAI1h1csUNO9pdA8jKXRLnreztgg0YJRVGQrAtiM5d0tQo

To claim this, I am signing this object:

@alf
alf / skandiabanken-login.user.js
Created April 27, 2011 14:49
User script to fix enter key during login to Skandiabanken
// ==UserScript==
// @match https://secure.skandiabanken.no/SkbSecure/Authentication/Otp/Default.aspx
// @match https://secure.skandiabanken.no/SkbSecure/Authentication/Otp/SmsOtp.aspx
// ==/UserScript==
var submitOnEnter = function(inputId, linkId) {
var input = document.getElementById(inputId);
var link = document.getElementById(linkId);
if (!input || !link) return;