These are all sites that have directly stolen the design from kiskolabs.com (including CSS, markup, pictures, text, and Google Analytics JS).
This file contains hidden or 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
module ApplicationHelper | |
# Facebook Like button | |
def like_button_tag(url) | |
content_tag :iframe, nil, { :'data-url' => "http://www.facebook.com/plugins/like.php?href=#{URI::escape(url)}&layout=standard&show_faces=false&width=400&action=like&colorscheme=light&height=35", | |
:scrolling => "no", | |
:frameborder => "0", | |
:style => "border:none; overflow:hidden; width:400px; height:35px;", | |
:allowTransparency => "true" } | |
end |
This file contains hidden or 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
~/Programming/fooproject[master]% gem install faraday | |
Successfully installed fakutori-san-0.1.0 | |
1 gem installed |
This file contains hidden or 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
~/Programming/foobar[master]% gem install faraday -V | |
GET http://rubygems.org/latest_specs.4.8.gz | |
302 Found | |
GET http://production.s3.rubygems.org/latest_specs.4.8.gz | |
304 Not Modified | |
Installing gem fakutori-san-0.1.0 | |
/Users/matt/.rvm/gems/ruby-1.9.2-p0/gems/fakutori-san-0.1.0/.gitignore | |
/Users/matt/.rvm/gems/ruby-1.9.2-p0/gems/fakutori-san-0.1.0/.kick | |
/Users/matt/.rvm/gems/ruby-1.9.2-p0/gems/fakutori-san-0.1.0/MIT-LICENSE | |
/Users/matt/.rvm/gems/ruby-1.9.2-p0/gems/fakutori-san-0.1.0/README.rdoc |
This file contains hidden or 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
[ | |
{ | |
"url": "http://en.oreilly.com/rails2010/public/schedule/detail/15528", | |
"error": "undefined method `text' for nil:NilClass", | |
"rating": 0, | |
"votes": 0 | |
}, | |
{ | |
"url": "http://en.oreilly.com/rails2010/public/schedule/detail/15342", | |
"error": "undefined method `text' for nil:NilClass", |
This file contains hidden or 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
# This works: | |
respond_with :admin, @patent | |
# This DOES NOT work: | |
respond_with [:admin, @patent] |
This file contains hidden or 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
puts "test!" |
This file contains hidden or 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
https://h10078.www1.hp.com/cda/hpms/display/main/hpms_content.jsp?zn=bto&cp=1-11-127-24^1131_4000_100__&jumpid=go/qualitycenter |
This file contains hidden or 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
irb_context.echo = false | |
# More config options: | |
# http://tagaholic.me/2009/05/29/exploring-how-to-configure-irb.html |
This file contains hidden or 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
link_to("Destroy", "http://www.example.com", :method => :delete, :confirm => "Are you sure?") |