(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.
| require('font-awesome/css/font-awesome.css'); | |
| document.body.innerHTML = '<i class="fa fa-fw fa-question"></i>'; |
(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.
| # Methods for cycling through the models in a Backbone Collection | |
| # Usage: | |
| # | |
| # c = new MyCollection([...]) | |
| # nextModel = c.modelAfter(myModel) | |
| # myModel == c.modelBefore(nextModel) | |
| # # true | |
| # | |
| class MyCollection extends Backbone.Collection |
| alfred://customsearch/Mozilla%20Developer%20Network%20Search/mdn/utf8/plus/https://developer.mozilla.org/en-US/search?q={query} |
| import re # Regular Expressions | |
| import collections # Data Types | |
| import sys # File operations | |
| import codecs # UniCode support | |
| import os | |
| import operator | |
| import string | |
| def load_freq(freq_f): |
| db.collection.aggregate([ | |
| { $group: { | |
| _id: { firstField: "$firstField", secondField: "$secondField" }, | |
| uniqueIds: { $addToSet: "$_id" }, | |
| count: { $sum: 1 } | |
| }}, | |
| { $match: { | |
| count: { $gt: 1 } | |
| }}, | |
| { $group: { |