#HTML Select
JQuery mobile http://jquerymobile.com/
Sencha touch http://www.sencha.com/products/touch/
BootStrap http://twitter.github.com/bootstrap/
Sleek, intuitive, and powerful front-end framework for faster and easier web development.
#HTML Select
JQuery mobile http://jquerymobile.com/
Sencha touch http://www.sencha.com/products/touch/
BootStrap http://twitter.github.com/bootstrap/
Sleek, intuitive, and powerful front-end framework for faster and easier web development.
| # NeoSmart NeoGrub Bootloader Configuration File | |
| # | |
| # This is the NeoGrub menu.lst file, and should be located at x:\NST\menu.lst | |
| # (where x = your "system" partition i.e. the one containing all of the boot files) | |
| # Please see the EasyBCD Documentation for information on how to create/modify entries | |
| # http://neosmart.net/wiki/display/EBCD | |
| default 0 | |
| timeout 10 |
| # git | |
| alias gl='git pull' | |
| alias gp='git push' | |
| alias gd='git diff | mate' | |
| alias gdh='git diff HEAD | mate' | |
| alias gc='git commit -v' | |
| alias gca='git commit -v -a' | |
| alias gcap='git commit -v -a && git push' | |
| alias gb='git branch' | |
| alias gba='git branch -a' |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
(by @andrestaltz)
So you're curious in learning this new thing called (Functional) Reactive Programming (FRP).
Learning it is hard, even harder by the lack of good material. When I started, I tried looking for tutorials. I found only a handful of practical guides, but they just scratched the surface and never tackled the challenge of building the whole architecture around it. Library documentations often don't help when you're trying to understand some function. I mean, honestly, look at this:
Rx.Observable.prototype.flatMapLatest(selector, [thisArg])
Projects each element of an observable sequence into a new sequence of observable sequences by incorporating the element's index and then transforms an observable sequence of observable sequences into an observable sequence producing values only from the most recent observable sequence.