gitflow | git |
---|---|
git flow init |
git init |
git commit --allow-empty -m "Initial commit" |
|
git checkout -b develop master |
This file contains 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
xcnm,,,vv fjflkasjdf;lasj op''njA X (}Nc afv .lvco /b[piçkfkfk | |
This file contains 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
#include "keymap_common.h" | |
/* An Atreus right-handed layout designed mostly to reduce wrist and pinky RSI | |
* by helping you to stay closer to home-row. | |
* | |
* This is achieved mostly by relying significantly on dual-role keys, but only | |
* on the less used or non-alphanumeric ones to avoid conflicts or activating | |
* incorrect key-codes when speed typing. The SHIFT dual-role keys are probably | |
* the most problematic ones (i.e., typing "za" might end up sending "A") but, | |
* again, "Z" isn't really a commonly used letter in English and in worst case |
This file contains 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
# for more info: https://gist.github.com/1120938 |
This file contains 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
#!/usr/bin/env ruby | |
# This script will parse all @gifs tweets searching for gifs urls and | |
# download them. | |
# Initial disclaimer! | |
# This mess is gonna get raw, like sushi. So haters to the left. | |
# Usage: | |
# $ git clone https://gist.github.com/4465778.git gifs |
This file contains 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
require 'socket' | |
require 'tork/config' | |
require 'set' | |
failed_test_files = Set.new | |
socket = TCPSocket::new("localhost", 5000) | |
Config.test_event_hooks.push lambda {|message| | |
event, test_file, line_numbers, log_file = message |
This file contains 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
jp@d: M|114m|master ttycoke RUBYOPT=-d tork | |
Exception `LoadError' at /home/jpablobr/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems.rb:1243 - cannot load such file -- rubygems/defaults/operating_system | |
Exception `LoadError' at /home/jpablobr/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems.rb:1252 - cannot load such file -- rubygems/defaults/ruby | |
/home/jpablobr/.rvm/gems/ruby-1.9.3-p0/gems/tork-17.0.1/bin/tork:59: warning: assigned but unused variable - worker_number | |
Exception `NoMethodError' at /home/jpablobr/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:1473 - undefined method `to_ary' for #<Gem::Specification name=json version=1.6.4> | |
Exception `NoMethodError' at /home/jpablobr/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/site_ruby/1.9.1/rubygems/specification.rb:1473 - undefined method `to_ary' for #<Gem::Specification name=json version=1.6.5> | |
Using Ext extension for JSON. | |
tork: Absorbing test execution overhead... | |
Exception `LoadError' at /home/jpablobr/.rvm/rub |
This file contains 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
#!/bin/sh | |
curl -sL -w "%{http_code}\\n" "http://website.com" -o /dev/null |
This file contains 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
E, [2012-01-03T20:08:09.057063 #25088] ERROR -- : file not found -- in reply to #<Rumai::IXP::Twalk:0x8d24314 @fields=[#<Rumai::IXP::Struct::Field:0x853d1dc @name=:tag, @format=2, @countee=nil, @counter=nil>, #<Rumai::IXP::Struct::Field:0x8693194 @name=:fid, @format=4, @countee=nil, @counter=nil>, #<Rumai::IXP::Struct::Field:0x8692cd0 @name=:newfid, @format=4, @countee=nil, @counter=nil>, #<Rumai::IXP::Struct::Field:0x869280c @name=:nwname, @format=2, @countee=#<Rumai::IXP::Struct::ClassField:0x8692348 @name=:wname, @format=String, @countee=nil, @counter=#<Rumai::IXP::Struct::Field:0x869280c ...>>, @counter=nil>, #<Rumai::IXP::Struct::ClassField:0x8692348 @name=:wname, @format=String, @countee=nil, @counter=#<Rumai::IXP::Struct::Field:0x869280c @name=:nwname, @format=2, @countee=#<Rumai::IXP::Struct::ClassField:0x8692348 ...>, @counter=nil>>], @values={:fid=>0, :newfid=>5, :wname=>["lbar", "1"], :tag=>5}> (Rumai::IXP::Error) | |
/home/jpablobr/.rvm/gems/ruby-1.9.3-p0/gems/rumai-4.1.3/lib/rumai/ixp/transport.rb:15 |
This file contains 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
class Person | |
def initialize(name, age) | |
@name = name | |
@age = age | |
end | |
def set_name(new_name) | |
@name = new_name | |
end |
NewerOlder