Skip to content

Instantly share code, notes, and snippets.

@mamoo
mamoo / openapi_specification_fka_swagger_specification_tutorial.md OpenAPI Specification (fka Swagger Specification) tutorial files from [API Handyman blog](http://apihandyman.io)
@mamoo
mamoo / gist:3604223
Created September 2, 2012 20:22 — forked from abuisman/gist:2863979
Some example of Backbone and AMD for SO question
// file: models/Task.js
define([], function(){
var Task = Backbone.Model.extend({
//do stuff
});
return Task;
});