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
$('#element').fadeOut(500, function() { | |
$('#element').load('php_script.php', {}, function() { | |
$('#element').fadeIn(); | |
}); | |
}); |
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
// Fix the top of the element for IE6 | |
function fixTop(){ | |
element.style.top = document.documentElement.scrollTop + 'px'; | |
} | |
// Call the fixTop function when the window is scrolled | |
if ($.browser.msie) { | |
$(window).scroll(function () { | |
fixTop(); | |
}); |
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
(function ($) { | |
$.fn.editable = function () { | |
var settings = { | |
// global setting values go here | |
} | |
return this.each(function () { | |
var $this = $(this); // Cache a jQuery version of this | |
var tag = $this.get(0).tagName; |
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
$ ./script/spec spec | |
/Users/harvinius/Sites/checkpoint_server/spec/spec_helper.rb:12: undefined method `use_transactional_fixtures=' for #<Spec::Runner::Configuration:0x236598c> (NoMethodError) | |
from /Users/harvinius/Sites/checkpoint_server/vendor/gems/rspec-1.3.0/lib/spec/runner.rb:41:in `configure' | |
from /Users/harvinius/Sites/checkpoint_server/spec/spec_helper.rb:8 | |
from /Users/harvinius/Sites/checkpoint_server/spec/controllers/participations_controller_spec.rb:1:in `require' | |
from /Users/harvinius/Sites/checkpoint_server/spec/controllers/participations_controller_spec.rb:1 | |
from /Users/harvinius/Sites/checkpoint_server/vendor/gems/rspec-1.3.0/lib/spec/runner/example_group_runner.rb:15:in `load' | |
from /Users/harvinius/Sites/checkpoint_server/vendor/gems/rspec-1.3.0/lib/spec/runner/example_group_runner.rb:15:in `load_files' | |
from /Users/harvinius/Sites/checkpoint_server/vendor/gems/rspec-1.3.0/lib/spec/runner/example_group_runner.rb:14:in `each' | |
from /Users/harvinius/Sites/checkpoint_server/vendor/gems/rsp |
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
run "rm public/index.html" | |
generate(:rspec) | |
generate(:cucumber) | |
plugin 'resource_controller', :git => 'git://github.com/jamesgolick/resource_controller.git' | |
plugin 'flash-message-conductor', :git => 'git://github.com/planetargon/flash-message-conductor.git' | |
gem "formtastic" | |
gem "pickle" | |
gem "machinist" |
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
begin | |
Mailer.deliver_mailout(:mailing_id => mailing.id) unless mailing.sent_at | |
mailing.sent! | |
rescue Net::SMTPFatalError => e | |
mailing.report_failure(e) | |
mailing.destroy | |
rescue Net::SMTPSyntaxError => e | |
mailing.report_failure(e) | |
mailing.subscriber.destroy | |
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
And my order total should be $69 | |
expected: 69.0, | |
got: 69.0 (using ==) | |
Diff: (Spec::Expectations::ExpectationNotMetError) | |
./features/step_definitions/cart_steps.rb:181:in `/^my order total should be \$(\d+)$/' | |
features/calendar_discounts.feature:15:in `And my order total should be $69' |
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
var fs = require('fs'); | |
fs.readFile('./readme.txt', function (err, data) { | |
if (err) throw err; | |
console.log(data); | |
}); |
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
if [[ -n "$rvm_environments_path" && -s "$rvm_environments_path/ruby-1.8.7-p302@bugmasher" ]] ; then | |
. "$rvm_environments_path/ruby-1.8.7-p302@bugmasher" | |
else | |
rvm --create use "ruby-1.8.7-p302@bugmasher" | |
fi |
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
var fs = require('fs'); | |
fs.readFile('./readme.txt', function (err, data) { | |
if (err) throw err; | |
console.log(data); | |
}); |
OlderNewer