Mou, the missing Markdown editor for web developers.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| if(typeof APP == "undefined"){ | |
| var APP = { | |
| Models: {}, | |
| Collections: {}, | |
| Views: {} | |
| }; | |
| } | |
| APP.Models.Twitter = {}; | |
| APP.Models.Twitter.Tweet = Backbone.Model.extend({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Cookbook Name:: mongodb | |
| # Recipe:: default | |
| case node['platform'] | |
| when "ubuntu" | |
| execute "apt-get update" do | |
| action :nothing | |
| end | |
| execute "add gpg key" do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Example of .jrubyrc | |
| # Set compilation mode. JIT = at runtime; FORCE = before execution. (JIT, FORCE, OFF, OFFIR) | |
| # compile.mode = FORCE | |
| # Dump to console all bytecode generated at runtime. | |
| # compile.dump = true | |
| # Enable verbose JIT logging (reports failed compilation) | |
| # jit.logging.verbose = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Sample grunt-jekyll grunt.js file | |
| // https://github.com/dannygarcia/grunt-jekyll | |
| /*global module:false*/ | |
| module.exports = function(grunt) { | |
| // Project configuration. | |
| grunt.initConfig({ | |
| jekyll: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Inside grunt.js file (don't forget to add "growl" as a project dependency) */ | |
| grunt.utils.hooker.hook(grunt.fail, "warn", function(opt) { | |
| require('growl')(opt.name, { | |
| title: opt.message, | |
| image: 'Console' | |
| }); | |
| }); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var gulp = require('gulp'); | |
| var zip = require('gulp-zip'); | |
| var rename = require("gulp-rename"); | |
| var shell = require('gulp-shell') | |
| gulp.task('nodewk', function() { | |
| gulp.src('app/**') | |
| .pipe(zip('app.zip')) | |
| .pipe(rename("app.wk")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <time datetime="{{ post.date | %Y-%m-%d %H:%M+01:00 }}"> | |
| {{ post.date | date: "%d. %B %Y" | replace:"January","Januar" | replace:"Februar","February" | replace:"March","März" | replace:"May","Mai" | replace:"June","Juni" | replace:"July","Juli" | replace:"December","Dezember" }} | |
| </time> |
OlderNewer
