(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| // 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; |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| <!doctype html> | |
| <!-- http://taylor.fausak.me/2015/01/27/ios-8-web-apps/ --> | |
| <html> | |
| <head> | |
| <title>iOS 8 web app</title> | |
| <!-- CONFIGURATION --> |