TechCrunch 50: RackUp and Udorse
Two more presentations from TechCrunch worth mentioning. The first, a interesting gift-card auction site that aims to expand retailers market…
Achieving Developer Excellence with Automated Testing
Two more presentations from TechCrunch worth mentioning. The first, a interesting gift-card auction site that aims to expand retailers market…
TechCrunch50, the industry’s American Idol-like startup spring board, wasn’t immune this year to the usual roundup of mediocre start-up ideas.…
One wonders just how far outside the echo chamber that is Silicon Valley a conference full of fanciful startups will…
def hilite_search_criteria(pattern, search_criteria) return if pattern.nil? or search_criteria.nil? pattern.gsub!(/(]*>)|\n|\t/s) {” “} match_char = pattern =~ /#{search_criteria}/i matched_string = $~.to_s return…
In your views: controller.action_name controller.controller_name In the controller itself, you can just call controller_name action_name If you want the current…
Usually you can trust the .toggle function (or .slideToggle) to hide or show whatever you want it to. But occasionally…
I have defined a click function in the document ready $(“#submit_request_toggle”).click(function() { $(‘#submit_request’).slideToggle(500); }); Later, I do an ajax call…
Here’s a jQuery function to make your images slightly opaque (or “disabled” looking), then have them fade in when you…
The relative url root is the thing that is appended to the front of your path, but after the domain…
symbol what it does + concatenate “a” “b” => -1 >> “a” “a” => 0 >> “b” “a” => 1…