Skip to content

Instantly share code, notes, and snippets.

View mm-rtin's full-sized avatar

Michael Martin mm-rtin

View GitHub Profile
@mm-rtin
mm-rtin / managers.py
Created June 24, 2014 17:41
Model Manager Boilerplate
from django.db.models.query import QuerySet
from django.db import models
# WatchMixin
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
class WatchMixin(object):
pass
@mm-rtin
mm-rtin / list_directive.js
Last active August 29, 2015 14:02
Boilerplate List Directive
var App = angular.module('localmotors');
/**~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Content List Directive -
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
App.directive('contentList', function($rootScope, $timeout, Utilities, Content) {
'use strict';
var ITEMS_PER_PAGE = 20;
[
{ "keys": ["f12"], "command": "htmlprettify"},
{ "keys": ["f1"], "command": "fold" },
{ "keys": ["f2"], "command": "unfold" },
{ "keys": ["ctrl+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": "@"} },
{ "keys": ["ctrl+space"], "command": "auto_complete" },
{ "keys": ["ctrl+space"], "command": "replace_completion_with_auto_complete", "context":
[
{ "key": "last_command", "operator": "equal", "operand": "insert_best_completion" },
{
"folders":
[
{
"file_exclude_patterns":
[
"*.scssc"
],
"folder_exclude_patterns":
[
@mm-rtin
mm-rtin / Find console.info RegEx
Created March 11, 2012 19:43
Find console.info(...)
.*console.info\(.*\);