See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
| // ==UserScript== | |
| // @name Reposition Recently Uploaded Chip | |
| // @namespace http://tampermonkey.net/ | |
| // @version 1.0 | |
| // @description Repositions the "Recently Uploaded" chip to the front | |
| // @author RadicalDowntownUrbanite | |
| // @match https://www.youtube.com/* | |
| // @icon https://www.google.com/s2/favicons?domain=youtube.com | |
| // @grant none | |
| // ==/UserScript== |
| require 'asciidoctor/extensions' | |
| class AngularLocalizerTreeprocessor < Asciidoctor::Extensions::Treeprocessor | |
| def process document | |
| document.blocks? ? (localize_blocks document) : nil | |
| end | |
| def localize_blocks node | |
| node.find_by do |b| | |
| if b.content_model == :simple |
| Original | |
| #<Asciidoctor::ListItem@47313569818400 {list_context: :ulist, text: "<<worklist,Worklist>>", blocks: 0}> | |
| new_block | |
| #<Asciidoctor::ListItem@47313570547660 {list_context: :ulist, text: "{{<a href=\"#worklist\">Worklist</a> | localize}}", blocks: 0}> | |
| Desired | |
| #<Asciidoctor::ListItem@47313570547660 {list_context: :ulist, text: "{{<<worklist,Worklist>> | localize}}", blocks: 0}> |
| #!/bin/bash | |
| gnome-terminal -e "bash -c 'source ~/.bashrc;vim $1'" |
| <link rel="import" href="../core-scaffold/core-scaffold.html"> | |
| <link rel="import" href="../core-header-panel/core-header-panel.html"> | |
| <link rel="import" href="../core-menu/core-menu.html"> | |
| <link rel="import" href="../core-item/core-item.html"> | |
| <link rel="import" href="../core-icon-button/core-icon-button.html"> | |
| <link rel="import" href="../core-toolbar/core-toolbar.html"> | |
| <link rel="import" href="../core-field/core-field.html"> | |
| <link rel="import" href="../core-icon/core-icon.html"> | |
| <link rel="import" href="../core-input/core-input.html"> | |
| <link rel="import" href="../core-icons/core-icons.html"> |
| # First you need to change the root password so you can ssh in as root | |
| vagrant ssh | |
| sudo su | |
| passwd | |
| root | |
| root | |
| exit | |
| # On your host machine: |
| web: /usr/local/sbin/nginx -p `pwd`/tmp/nginx/ -c ../../nginx.conf | |
| fastcgi: /usr/local/sbin/php-fpm | |
| db: /usr/local/bin/mysqld |
| javascript:(function(){chat.update_roster=function(room_jid){if(room_jid&&room_jid!=app.current_jid){return;}var roster=(room_jid?app.room_rosters[room_jid].sort(function(a,b){if(a.name<b.name){return-1;}else if(a.name>b.name){return 1;}return 0;}):app.roster);if(!roster){return;}$('#roster div.member').remove();for(var i=0;i<roster.length;i++){var status_info=this.get_status_info(roster[i]);var member=roster[i];$('#roster div.list').append('<div class="'+roster[i].role+'"><div jid="'+roster[i].jid+'" class="member '+status_info.show+'">'+member.name+'<span class="idle">'+status_info.idle+'</span><span class="status">'+status_info.status+'</span></div></div>');}$('#roster div.member').dblclick($.proxy(this,'handle_roster_dblclick')).mouseover(function(event){$(this).css('background-color','#F0F0F0');}).mouseout(function(event){$(this).css('background-color','#FFFFFF');}).tooltip({bodyHandler:chat.generate_roster_tooltip});if(config.mobile){$('#roster div.member').click($.proxy(this,'handle_roster_dblclick')); |
| Uncaught TypeError: Object function (z,L){var C;z||(z={});if(C=this.defaults){if(d.isFunction(C))C=C.call(this);z=d.extend({},C,z)}this.attributes= | |
| {};this._escapedAttributes={};this.cid=d.uniqueId("c");this.set(z,{silent:true});this._changed=false;this._previousAttributes=d.clone(this.attributes);if(L&&L.collection)this.collection=L.collection;this.initialize(z,L)} has no method '_bindRoutes' |