Ruby 1.9.3-p0 requires a minor patch to make ruby-debug19 work. If you have
ruby-build and rbenv installed, these scripts will install ruby-1.9.3-p0.
curl https://raw.github.com/gist/1270704/install-ruby-1.9.3-p0.sh | sh| function bluetooth(power) | |
| print("Setting bluetooth to " .. power) | |
| result = hs.execute("blueutil --power " .. power) | |
| if result.rc ~= 0 then | |
| print("Unexpected result executing `blueutil`: rc=" .. result.rc .. " type=" .. result.type .. " output=" .. result.output) | |
| end | |
| end | |
| function f(event) |
| package main | |
| import ( | |
| "bufio" | |
| "net" | |
| ) | |
| type Client struct { | |
| incoming chan string | |
| outgoing chan string |
| diff --git a/src/nsterm.m b/src/nsterm.m | |
| --- a/src/nsterm.m | |
| +++ b/src/nsterm.m | |
| @@ -1401,7 +1401,7 @@ ns_get_color (const char *name, NSColor | |
| if (r >= 0.0) | |
| { | |
| - *col = [NSColor colorWithCalibratedRed: r green: g blue: b alpha: 1.0]; | |
| + *col = [NSColor colorWithSRGBRed: r green: g blue: b alpha: 1.0]; | |
| UNBLOCK_INPUT; |
| # >> First workflow | |
| git svn clone <svn_repo> | |
| git checkout -b featureZ | |
| # hack hack hack | |
| git commit -a | |
| git svn rebase | |
| git svn dcommit # you can add -e to enter new |