Skip to content

Instantly share code, notes, and snippets.

@tabouassaleh
tabouassaleh / and_or.py
Created August 22, 2012 16:05
Conditional Expression in Python
my_value = condition and true_value or false_value
@tabouassaleh
tabouassaleh / layout.onrender.js
Created July 29, 2012 07:02
Adding Filtering to Backbone.Marionette.CollectionView
onRender: function() {
var filter = this.options.filter || this.filter;
var view= new ListView({collection: TitanFile.channelList, filter: filter});
var contentPromise = this.content.show(view);
return contentPromise;
}