I hereby claim:
- I am brianhempel on github.
- I am brianhempel (https://keybase.io/brianhempel) on keybase.
- I have a public key whose fingerprint is 599A 31A4 A090 2699 AA81 9770 110B F56B 2900 4272
To claim this, I am signing this object:
| # Activate the gem you are reporting the issue against. | |
| gem 'activerecord', '4.1.1' | |
| require 'sqlite3' | |
| require 'active_record' | |
| require 'minitest/autorun' | |
| require 'logger' | |
| # Ensure backward compatibility with Minitest 4 | |
| Minitest::Test = MiniTest::Unit::TestCase unless defined?(Minitest::Test) |
| require "json" | |
| api_key = "your api key here" | |
| regexp = /Project X/ | |
| snitches = JSON.parse(`curl -u #{api_key}: https://api.deadmanssnitch.com/v1/snitches`) | |
| snitches.each do |snitch| | |
| if snitch["name"] =~ regexp | |
| puts "Deleting #{snitch["token"]} #{snitch["name"]}..." |
| 15621016 :@ident | |
| 6122824 :var_ref | |
| 5547844 :args_add_block | |
| 4507766 :@tstring_content | |
| 4490030 :"." | |
| 4125221 :string_content | |
| 4125221 :string_literal | |
| 3757094 :call | |
| 2890433 :method_add_arg | |
| 2696463 :arg_paren |
| benchmark/bm_app_pentomino.rb | |
| bootstraptest/runner.rb | |
| enc/make_encmake.rb | |
| enc/unicode/case-folding.rb | |
| ext/extmk.rb | |
| ext/socket/extconf.rb | |
| ext/tk/sample/tkbiff.rb | |
| lib/mkmf.rb | |
| lib/rdoc/constant.rb | |
| lib/rdoc/markup/pre_process.rb |
| # Probably want to spoof all your headers to be just like a normal web browser | |
| # so an attacker can't guess that you're trying to rat them out, but here's a | |
| # start. | |
| USER_AGENT="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.130 Safari/537.36" | |
| curl -A "$USER_AGENT" -sS https://sneakynote.com/send > send_live | |
| curl -A "$USER_AGENT" -sS https://sneakynote.com/get > get_live | |
| curl -A "$USER_AGENT" -sS https://raw.githubusercontent.com/brianhempel/sneakynote.com/master/public/send > send_github | |
| curl -A "$USER_AGENT" -sS https://raw.githubusercontent.com/brianhempel/sneakynote.com/master/public/get > get_github |
I hereby claim:
To claim this, I am signing this object:
| criteria.merge!( :_keywords => { :$in => words } ) | |
| search_result = collection.map_reduce(search_map(words), search_reduce, {:query => criteria, :finalize => search_finalize}) | |
| def search_reduce | |
| "function( key , values ){return { model: values[0]};}" | |
| end | |
| def search_finalize | |
| "function( key , values ){return values.model;}" |
| criteria.merge!( :_keywords => { :$in => words } ) | |
| search_result = collection.map_reduce(search_map(words), search_reduce, :query => criteria) | |
| def search_reduce | |
| "function( key , values ){return values[0];}" | |
| end | |
| def search_map(words) | |
| #convert words into Regex OR |
| class Person | |
| include MongoMapper::Document | |
| end | |
| class Registree < Person | |
| key :in_wels, Boolean | |
| key :in_vienna, Boolean | |
| end | |
| class Visitor |
| # single collection inheritance | |
| # all will be stored in the Person collection in the db | |
| class Person | |
| include MongoMapper::Document | |
| end | |
| class Registree < Person | |
| key :visitor, Boolean | |
| scope :vistors, :visitor => true |