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
| require 'cgi' | |
| require 'json' | |
| require 'active_support' | |
| def verify_and_decrypt_session_cookie(cookie, secret_key_base) | |
| cookie = CGI::unescape(cookie) | |
| salt = 'encrypted cookie' | |
| signed_salt = 'signed encrypted cookie' | |
| key_generator = ActiveSupport::KeyGenerator.new(secret_key_base, iterations: 1000) | |
| secret = key_generator.generate_key(salt) |
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
| # Start the app with EXPLAIN_PARTIALS=true to show locations of view partials | |
| if Rails.env.development? and ENV['EXPLAIN_PARTIALS'] | |
| module ActionView | |
| class PartialRenderer | |
| def render_with_explanation(*args) | |
| rendered = render_without_explanation(*args).to_s | |
| # Note: We haven't figured out how to get a path when @template is nil. | |
| start_explanation = "\n<!-- START PARTIAL #{@template.inspect} -->\n" | |
| end_explanation = "\n<!-- END PARTIAL #{@template.inspect} -->\n" | |
| start_explanation.html_safe + rendered + end_explanation.html_safe |
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
| require 'nokogiri' | |
| require 'open-uri' | |
| # Get a Nokogiri::HTML:Document for the page we're interested in... | |
| doc = Nokogiri::HTML(open('http://www.google.com/search?q=tenderlove')) | |
| # Do funky things with it using Nokogiri::XML::Node methods... | |
| #### |