Skip to content
cnoelker edited this page Dec 5, 2018 · 36 revisions

Welcome to my learning steps!

A place to post links to examples of and disussions about web and app.

Entries from 2018

Build systems

Found on this reddit thread on bazel

CMS Links

On CSS

Links on Dart and code

Flutter & Web - Unite your code and your teams (DartConf 2018)

Five API Usability Lessons from Flutter (DartConf 2018) For a good UX using an API you have 3 ingredients: the api, the tooling and the documentation

  • Reduce context switching: provide information inside the IDE (source code with examples)
  • Speak your user language: use names that have meaning: ListView instead of Block
  • Help build mental model: for example visualize the conceptual model (Animation-Api illustrated with recorder-buttons and a graph)
  • Enable programming by example
  • Promote recognition rather than recall: Colors c = Colors.green[400] requires recall, using Colors c = Colors.green.shade400 is easier to recognize and enables autocomplete, an IDE can augment this with a preview of the color.

Nomnom-App: Let's live code in Flutter (DartConf 2018)

Entries from 2012

Links

Misc links to read

WebGL / 3d demo

HTML Notes

Accessibility

  1. button: just use button because tabindex, disabled, focus, synthetic click (space, enter), inert polyfill