#Deploying a Meteor app to Digital Ocean
Facebook tutorials and resources:
- Introducing Relay and GraphQL, Data fetching for React applications @Facebook.
- GraphQL Introduction @Facebook
- Building the facebook news feed with relay
Why be interested:
This list is meant to be a both a quick guide and reference for further research into these topics. It's basically a summary of that comp sci course you never took or forgot about, so there's no way it can cover everything in depth. It also will be available as a gist on Github for everyone to edit and add to.
###Array ####Definition:
- Stores data elements based on an sequential, most commonly 0 based, index.
- Based on tuples from set theory.
# A little Meteor CheatSheet about Iron-Router. (updated on a weekly basis) | |
# Check our Studio: https://gentlenode.com/ | |
meteor add iron:router | |
meteor update iron:router | |
# Iron Router > Configuration |
Meteor.startup(function () { | |
Session.set('YTApiReady', false); | |
Session.set('channelRendered', false); | |
}); | |
onYouTubeIframeAPIReady = function() { | |
Session.set('YTApiReady', true); | |
}; | |
Template.channel.created = function () { |
(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.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
- http://mirnazim.org/writings/python-ecosystem-introduction/
- http://python.net/~goodger/projects/pycon/2007/idiomatic/handout.html
- http://effbot.org/zone/python-with-statement.htm
- http://www.python.org/dev/peps/
- http://www.mindviewinc.com/Books/Python3Patterns/Index.php
- http://stackoverflow.com/questions/986006/python-how-do-i-pass-a-variable-by-reference
- http://agiliq.com/blog/2012/06/understanding-args-and-kwargs/