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
ivan@tremuloides:08:38 PM:search> git push | |
updating 'refs/heads/master' | |
from 3c273440101f86414c8d55298afb5ae74fd012e1 | |
to 4789259153a48bb7d1c2205c15513be70465a257 | |
Also local refs/remotes/origin/master | |
Generating pack... | |
Done counting 40 objects. | |
Result has 24 objects. | |
Deltifying 24 objects... | |
100% (24/24) done |
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
before(:each) do | |
@message = stub("Message") | |
assigns[:message] = @message | |
end |
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
[color] | |
diff = auto | |
status = auto | |
branch = auto | |
[user] | |
name = Ivan Storck | |
email = [email protected] | |
[alias] | |
st = status | |
ci = commit -v |
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
ivan@tremuloides:09:31 PM:~> /usr/local/bin/macirb --simple-prompt | |
>> framework 'Cocoa' | |
RuntimeError: framework at path `Cocoa' cannot be loaded: Error Domain=NSCocoaErrorDomain Code=4 UserInfo=0x8005e3960 "The bundle “Cocoa” could not be loaded because its executable could not be located." | |
from (irb):1:in `framework' | |
from (irb):1 | |
from /usr/local/bin/macirb:12:in `<main>' | |
>> |
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 | |
# Ivan Storck | |
# 2010-01-01 (ish) | |
# creates a cPanel and URL request string safe password, copies it to the mac clipboard, and echoes it to STDOUT | |
class MacClipboard | |
class << self | |
def read | |
IO.popen('pbpaste') {|clipboard| clipboard.read} | |
end |
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
Processing PagesController#home (for 127.0.0.1 at 2009-08-31 16:45:24) [GET] | |
Parameters: {"action"=>"home", "controller"=>"pages"} | |
Page Load (0.3ms) SELECT * FROM `pages` LIMIT 1 | |
Page Columns (1.8ms) SHOW FIELDS FROM `pages` | |
Rendering template within layouts/application | |
Rendering pages/home | |
Rendered layouts/_menu (1.4ms) | |
Rendered shared/_default_sidebar (1.5ms) | |
Rendered layouts/_sidebar (8.0ms) | |
Rendered layouts/_footer (3.7ms) |
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
(16:27:20) llimeht: ivanoats: you have a very strange mixture of lenny, old-lenny and squeeze there. There are a *lot* of packages that require updating just to get you up to date with lenny, but then you have a few random (also out of date!) squeeze packages too | |
(16:27:40) jan247 [n=jan247@unaffiliated/jan247] entered the room. | |
(16:27:57) ivanoats: weird.. thanks for the analysis, maybe i will check with the sd card manufacturer | |
(16:28:01) valdyn: azm: tried "apt-cache search netware" ? | |
(16:28:06) ivanoats: er packager | |
(16:28:15) jkdsoft left the room (quit: "."). | |
(16:28:24) valdyn: ivanoats: your vendor giving you that sdcard should be shot | |
debxo:/# dpkg -l libc6 ; aptitude search '~o' | |
Desired=Unknown/Install/Remove/Purge/Hold |
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
ivan@tremuloides:05:25 PM:www2> git pull | |
You asked me to pull without telling me which branch you | |
want to merge with, and 'branch.master.merge' in | |
your configuration file does not tell me either. Please | |
specify which branch you want to merge on the command line and | |
try again (e.g. 'git pull <repository> <refspec>'). | |
See git-pull(1) for details. | |
If you often merge with the same branch, you may want to | |
configure the following variables in your configuration |
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 ClientList < ActiveRecord::Base | |
belongs_to :organization | |
has_many :clients, :dependent => :destroy | |
validates_presence_of :organization, :name | |
end | |
Scenario: Show a client list | |
Given I am logged in as a user | |
And the following organizations: | |
|name |depth|toparea_id| |
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
curl --head http://devstore.ecolisticcleaning.com | |
HTTP/1.1 200 OK | |
Date: Fri, 03 Sep 2010 16:20:18 GMT | |
Content-Length: 1832 | |
Vary: Accept-Encoding,User-Agent | |
Connection: close | |
Content-Type: httpd/unix-directory | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
OlderNewer