Skip to content

Instantly share code, notes, and snippets.

let
a = {
b = 10;
};
inherit (a) b;
c = 3;
in b
@yorickvP
yorickvP / gist:2793942
Created May 26, 2012 13:24 — forked from netdesign/gist:2793843
Autocomplete
<form onsubmit="myAuth.login(), false">
<input type="text" name="name" id="auth_name" autocomplete="on">
<input type="password" name="password" id="auth_passwd" autocomplete="off">
<input type="submit" value="Log In">
</form>