NOTE I now use the conventions detailed in the SUIT framework
Used to provide structural templates.
Pattern
t-template-name
NOTE I now use the conventions detailed in the SUIT framework
Used to provide structural templates.
Pattern
t-template-name
/* The API controller | |
Exports 3 methods: | |
* post - Creates a new thread | |
* list - Returns a list of threads | |
* show - Displays a thread and its posts | |
*/ | |
var Thread = require('../models/thread.js'); | |
var Post = require('../models/post.js'); |
(function addXhrProgressEvent($) { | |
var originalXhr = $.ajaxSettings.xhr; | |
$.ajaxSetup({ | |
progress: function() { console.log("standard progress callback"); }, | |
xhr: function() { | |
var req = originalXhr(), that = this; | |
if (req) { | |
if (typeof req.addEventListener == "function") { | |
req.addEventListener("progress", function(evt) { | |
that.progress(evt); |
#!/usr/bin/env perl | |
use Mojolicious::Lite; | |
use Try::Tiny; | |
plugin 'disqus', { 'api_secret' => 'getyourownsecretplease', pass_api_errors => 1 }; | |
# This, of course, is total and utter overkill for something like this, | |
# but I figured if I'm going to write demonstration code, might as well | |
# go the whole hog. | |
plugin 'mongodb', { 'database' => 'disqusbridge' }; |
#!/bin/sh | |
# | |
# a simple way to parse shell script arguments | |
# | |
# please edit and use to your hearts content | |
# | |
ENVIRONMENT="dev" |
" Git rebase helper for: | |
" git rebase --interactive | |
" | |
" L - view commit log | |
" p - pick | |
" e - edit | |
" s - squash | |
" r - reword | |
" D - delete | |
" |