- Download this application skeleton.
- Convert the app to use AJAX.
- Add any files you changed to your gist and submit your code.
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
#fast 50000 | |
puts Benchmark.measure { PinterestPinByUserI.find("I have fifty thousand records").categories.map{|x| x} } | |
#slow 50000 | |
puts Benchmark.measure { PinterestPinByUserH.where(user_pinterest_identifier: "there are 50000 of me").map{|x| x} } | |
#fast 50 records | |
puts Benchmark.measure { PinterestPinByUserI.find("I have fifty records").categories.map{|x| x} } | |
#slow 50 records | |
puts Benchmark.measure { PinterestPinByUserH.where(user_pinterest_identifier: "there are 50 of me").map{|x| x} } |
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
def update | |
attributes = params[:client].slice(:username, :email, :password, :pinning_enabled, :engagement_enabled, :total_pins_per_day, :percent_selfie_pins) | |
attributes[:ip_address] = request.remote_addr | |
attributes[:user_agent] = request.user_agent | |
attributes.delete("password") if attributes[:password].blank? | |
@client.changing_credentials = true | |
if @client.require_background_task_for_update? attributes |
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
<div | |
class="really_simple_share_prepend_above robots-nocontent snap_nopreview">If you like this please share it with your friends!</div><div | |
style="min-height:33px;" class="really_simple_share really_simple_share_button robots-nocontent snap_nopreview"><div | |
class="really_simple_share_specificfeeds_follow" style="width:110px;"><a | |
href="http://www.specificfeeds.com/follow" target="_blank"><img | |
src="http://kidsfunreviewed.com/wp-content/plugins/really-simple-facebook-twitter-share-buttons/images/specificfeeds_follow.png" alt="Email, RSS" title="Email, RSS" /> Follow</a></div><div | |
class="really_simple_share_facebook_like" style="width:100px;"><iframe | |
src="//www.facebook.com/plugins/like.php?href=http%3A%2F%2Fkidsfunreviewed.com%2Fback-school-kids-bento-lunchbox-ideas%2F&layout=button_count&width=100&height=27&locale=en_US" | |
scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:100px; height:27px;" allowTransparency="true"></iframe></div><div | |
class="really_simple_share_google1" s |
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
require 'nokogiri' | |
file = open('http://www.workingmomsagainstguilt.com/2014/05/confidence-picking-dessert-picking-job/') | |
body = file.read | |
doc = Nokogiri::HTML(body) | |
doc.css('div.entry-content').inner_text |
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
<div class="easyrecipe"> | |
<div class="ERSName"> | |
Strawberry Lemon Delight | |
</div> | |
<div class="ERSClear"> | |
| |
</div> | |
<div class="ERSTopRight"> |
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
#to | |
def normalized_content_from_content | |
if client | |
options = { | |
blacklisted_elements: client.article_blacklisted_elements, | |
whitelisted_tags: client.article_whitelisted_tags, | |
} | |
ContentNormalization.new(content, options).normalized_content | |
else |
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
dict = ["a", | |
"abdominal","a", "ace", "acre", "arc", "are", "area", "c", "car", "care", "ceca", "e", "ear", "era", "err", "r", "race", "racer", "rare", "re", "rear", "rec" | |
] | |
def jumble(source,dict) | |
matches = [] # => O(1) | |
source_hash = source.chars.inject(Hash.new(0)) { |h,v| h[v] += 1; h } | |
dict.each do |w| |
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
dict = ["a", | |
"abdominal","a", "ace", "acre", "arc", "are", "area", "c", "car", "care", "ceca", "e", "ear", "era", "err", "r", "race", "racer", "rare", "re", "rear", "rec" | |
] | |
def jumble(source,dict) # =>O(2n^2d + 2nd + n + nlogn + 1) => O(n^2d) | |
matches = [] # => O(1) | |
source_array = source.split("") | |
dict.each do |w| # => O(2n^2 + n + n) * O(d) => O(2n^2d + 2nd) | |
w_hash = {} |
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 Board = function( selector ) { | |
// Your board related code goes here | |
// Use $elem to access the DOM element for this board | |
var $elem = $( selector ); | |
$elem.droppable({ | |
drop: function(event, the_new_item){ | |
$(this).append(the_new_item.draggable.clone()) | |
$(the_new_item).remove(); |
NewerOlder