git log origin/master..master --format="%h %s [%an]"
Essentially, this is a git log ..
git log --pretty=format:"%h %ad | %s%d [%an]" --graph --date=short
| ;(function($, undefined) { | |
| $.REPLACE_PLUGIN_NAME = function(element, options) { | |
| var defaults = {} | |
| var plugin = this; | |
| plugin.settings = {} | |
| var $element = $(element), element = element; | |
| plugin.init = function() { | |
| plugin.settings = $.extend({}, defaults, options); | |
| private_method() | |
| plugin.public_method() |
| TEMPLATES=$(cat templates.txt); | |
| SUB_TEMPLATES=$(cat sub-templates.txt); | |
| for SUB_TEMPLATE in $SUB_TEMPLATES; do | |
| for TEMPLATE in $TEMPLATES; do | |
| touch templates/$TEMPLATE.$SUB_TEMPLATES.txt | |
| done | |
| done | |
| /**********************************************/ | |
| /* | |
| /* IR_Black Skin by Ben Truyman - 2011 | |
| /* | |
| /* Based on Todd Werth's IR_Black: | |
| /* http://blog.toddwerth.com/entries/2 | |
| /* | |
| /* Inspired by Darcy Clarke's blog post: | |
| /* http://darcyclarke.me/design/skin-your-chrome-inspector/ | |
| /* |
| #!/usr/bin/env ruby | |
| # checkout the readme from the master branch | |
| `git checkout gh-pages; git checkout master README.md` | |
| path = `pwd`.gsub(/\n/, "") | |
| readme_path = File.join(path, "README.md") | |
| index_path = File.join(path, "index.md") | |
| # write the index readme file |
| #!/bin/bash | |
| # License: Public Domain. | |
| # Author: Joseph Wecker, 2012 | |
| # | |
| # Are you tired of trying to remember what .bashrc does vs .bash_profile vs .profile? | |
| # Are you tired of trying to remember how darwin/mac-osx treat them differently from linux? | |
| # Are you tired of not having your ~/.bash* stuff work the way you expect? | |
| # | |
| # Symlink all of the following to this file: | |
| # * ~/.bashrc |
| // Generates a URL-friendly "slug" from a provided string. | |
| // For example: "This Is Great!!!" transforms into "this-is-great" | |
| function generateSlug (value) { | |
| // 1) convert to lowercase | |
| // 2) remove dashes and pluses | |
| // 3) replace spaces with dashes | |
| // 4) remove everything but alphanumeric characters and dashes | |
| return value.toLowerCase().replace(/-+/g, '').replace(/\s+/g, '-').replace(/[^a-z0-9-]/g, ''); | |
| }; |
| /* | |
| * jQuery.ajaxQueue - A queue for ajax requests | |
| * | |
| * (c) 2011 Corey Frang | |
| * Dual licensed under the MIT and GPL licenses. | |
| * | |
| * Requires jQuery 1.5+ | |
| */ | |
| (function(a){var b=a({});a.ajaxQueue=function(c){function g(b){d=a.ajax(c).done(e.resolve).fail(e.reject).then(b,b)}var d,e=a.Deferred(),f=e.promise();b.queue(g),f.abort=function(h){if(d)return d.abort(h);var i=b.queue(),j=a.inArray(g,i);j>-1&&i.splice(j,1),e.rejectWith(c.context||c,[f,h,""]);return f};return f}})(jQuery) |
| cd PATH_TO_YOUR_DEVKIT_DIR | |
| ruby dk.rb init | |
| ruby dk.rb install |
| $.fn.childFader = function(options) { | |
| var settings, defaults; | |
| defaults = { | |
| opacity: .5, | |
| hoverOpacity: 1, | |
| child: 'img' | |
| }; | |
| settings = $.extend({}, defaults, options); | |
| return $(this).each(function(options) { | |
| var child = $(settings.child, this); |