Указываем свое имя и почту
git config --global user.name "Your Name Comes Here"
git config --global user.email [email protected]
Делаем алиасы на команды
module PB | |
module SocialNetwork | |
class Twitter | |
include PB::SocialNetwork::Base | |
def initialize(token) | |
@token = token | |
end | |
def update_profile(params = {}) |
# RSpec 2.0 syntax Cheet Sheet by http://ApproachE.com | |
# defining spec within a module will automatically pick Player::MovieList as a 'subject' (see below) | |
module Player | |
describe MovieList, "with optional description" do | |
it "is pending example, so that you can write ones quickly" | |
it "is already working example that we want to suspend from failing temporarily" do | |
pending("working on another feature that temporarily breaks this one") |
git log --graph --pretty=format:'%C(yellow)%h%Creset%C(blue)%d%Creset %C(white bold)%s%Creset %C(white dim)(by %an %ar)%Creset' --all |
Указываем свое имя и почту
git config --global user.name "Your Name Comes Here"
git config --global user.email [email protected]
Делаем алиасы на команды
// namespace - single global variable for all news JS | |
var news = news || {}; | |
// Example of a singleton as a revealing module | |
// When you only need one of something | |
news.preferences = (function (app, global) { | |
// Private variables | |
var persistent = true; |
// source: http://webreflection.blogspot.com/2011/11/few-javascript-patterns.html | |
// duck typing ( maybe all you need ) | |
var me = {name: "WebReflection"}; | |
// basic class | |
function Person() {} | |
Person.prototype.getName = function () { | |
return this.name; | |
}; |
/** | |
* @memberOf __module | |
* @type module | |
*/ | |
var module = (/** @constructor */ function() { | |
function privateMethod() { | |
... | |
} |
var inherit = (function () { | |
var F = function () {}; | |
return function (C, P) { | |
F.prototype = P.prototype; | |
C.prototype = new F(); | |
C.uber = P.prototype; | |
C.prototype.constructor = C; | |
}; | |
}()); |
// | |
// Backbone.Rails.js | |
// | |
// Makes Backbone.js play nicely with the default Rails setup, i.e., | |
// no need to set | |
// ActiveRecord::Base.include_root_in_json = false | |
// and build all of your models directly from `params` rather than | |
// `params[:model]`. | |
// | |
// Load this file after backbone.js and before your application JS. |