Skip to content

Instantly share code, notes, and snippets.

View davenotik's full-sized avatar

David Notik davenotik

View GitHub Profile
anonymous
anonymous / main.dart
Created October 20, 2015 18:51
Grouped items
// This algorithm works so that the items in the beginning of the list
// have an older date than the items at the end of the list.
// I.e., the items in the list are ordered the same way as they would
// be visually shown on the UI (older items at the top, recent at the bottom).
main() => new Page();
class Item {
String user;
String message;
@staltz
staltz / introrx.md
Last active July 26, 2024 04:24
The introduction to Reactive Programming you've been missing
<!doctype html>
<!-- http://taylor.fausak.me/2015/01/27/ios-8-web-apps/ -->
<html>
<head>
<title>iOS 8 web app</title>
<!-- CONFIGURATION -->