Skip to content

Instantly share code, notes, and snippets.

View jasononeil's full-sized avatar

Jason O'Neil jasononeil

View GitHub Profile
@vegasje
vegasje / usability.md
Last active March 9, 2020 19:30
PLEASE DO NOT USE THIS. See http://userium.com/ instead.

PLEASE DO NOT USE THIS. See http://userium.com/ instead.

Usability Checklist

User Experience

  • Personalized features. Currency, language, country specific deals, taxes, or delivery options are changed based on user's location.
  • Registering provides value to users. For example a "Free Trial" button communicates a clear benefit, but a "Register" button doesn't. Unnecessary registration is avoided.
@Simn
Simn / Builder.hx
Last active December 11, 2015 07:09
Build + reification example
import haxe.macro.Context;
import haxe.macro.Expr;
class Builder {
macro static function build():Array<Field> {
var funcExpr = macro function():String {
return "test";
}
var ctorExpr = macro function(foo) {
trace("I was created with " +foo);