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
<% form_tag book_path(book), :method => :delete do %> | |
<%= content_tag :button, 'Delete', :type => 'submit' %> | |
<% 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
makeSearchCommand({ | |
name: "Flickr-CC", | |
url: "http://www.flickr.com/search/?q={QUERY}&w=all&l=cc&ss=0&ct=0", | |
icon: "http://www.flickr.com/favicon.ico", | |
description: "Searches <a href=\"http://www.flickr.com\">Flickr</a> for Creative Commons-licensed pictures matching your words.", | |
preview : function(previewBlock, inputObject){ | |
var inputText = inputObject.text; | |
if(inputText.length < 1) { | |
previewBlock.innerHTML = "Searches for photos on Flickr."; |
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
# module: audit | |
class Audit < Thor | |
desc "all", "Run all audit tasks" | |
def all | |
%w(architecture database stats tests coverage flog roodi filesize).each do |task| | |
log "\n*** reviewing #{task}", true | |
log `thor audit:#{task}`, true | |
end | |
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
set :application, "forever_home" | |
set :repository, "[email protected]:railsrumble/leaf-on-the-wind.git" | |
# If you aren't deploying to /u/apps/#{application} on the target | |
# servers (which is the default), you can specify the actual location | |
# via the :deploy_to variable: | |
set :deploy_to, "/var/www/#{application}" | |
# If you aren't using Subversion to manage your source code, specify | |
# your SCM below: |
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
code: | |
$('a').click(function() { | |
$.ajax({dataType: 'script', type: 'get', url: 'bucket/new'}); | |
return false; | |
}); | |
results from IE7 | |
Processing ApplicationController#index (for 192.168.0.199 at 2009-01-07 08:06:54) [POST] | |
Parameters: {"_"=>"1231333515818"} | |
ActionController::MethodNotAllowed (Only get requests are allowed.): |
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
- (void)viewDidLoad { | |
self.list = [self.data JSONValue]; | |
[self.images removeAllObjects]; | |
self.images = [NSMutableDictionary dictionaryWithCapacity:[self.list count]]; | |
for (id rawItem in self.list) { | |
NSDictionary *item = (NSDictionary *)rawItem; | |
@try { | |
[self.images setObject:[UIImage imageWithData: [NSData dataWithContentsOfURL: [NSURL URLWithString: [item objectForKey:@"image_url"]]]] forKey:[item objectForKey:@"image_url"]]; |
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
RailsConf BoF: Teaching Rails | |
The Rails community has a plethora of experienced, talented developers, who have contributed a great deal of advanced work to the ecosystem. As a group, however, we've lacked a consistent and welcoming approach for newcomers, be they programming newbies or people experienced in another technology. | |
In this BoF, we'll get together and think about ways to improve that — we'd love to hear insights from educators using Rails in the classroom, authors, bloggers, forum and mailing list contributors, and anyone else interested in making the learning process easier and friendlier. |
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 SimpleRackApp | |
def call(env) | |
[ | |
status, # 200 | |
headers, # {"Content-Type" => "text/html"} | |
body # ["<html>...</html>"] | |
] | |
end | |
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
module Rack | |
class Embiggener | |
def initialize(app) | |
@app = app | |
end | |
def call(env) | |
status, headers, body = @app.call(env) | |
headers.delete('Content-Length') | |
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
REQUESTING PAGE: POST /brands/1/offers with {"offer"=>{"media_attachments"=>[#<ActionController::TestUploadedFile:0x4676174 @content_type="image/jpeg", @original_filename="small-logo.jpg", @tempfile=#<File:/var/folders/KL/KL6JYYFfHeOrITh0QBYlH++++TI/-Tmp-/small-logo.jpg20090711-13717-37nq6a-0>>, "", ""]}} and HTTP headers {"HTTP_REFERER"=>"/brands/1/offers/new"} | |
Processing OffersController#create (for 127.0.0.1 at 2009-07-11 13:25:57) [POST] | |
Parameters: {"offer"=>{"media_attachments"=>"#<ActionController::TestUploadedFile:0x4676174>"}} |
OlderNewer