snoopit 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.coveralls.yml +1 -0
- data/.gitignore +39 -0
- data/.idea/.name +1 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/dictionaries/rbirch.xml +9 -0
- data/.idea/encodings.xml +5 -0
- data/.idea/misc.xml +5 -0
- data/.idea/modules.xml +9 -0
- data/.idea/scopes/scope_settings.xml +5 -0
- data/.idea/snoopit.iml +233 -0
- data/.idea/vcs.xml +7 -0
- data/.rspec +2 -0
- data/.travis.yml +7 -0
- data/Gemfile +15 -0
- data/LICENSE.txt +22 -0
- data/README.md +411 -0
- data/Rakefile +1 -0
- data/bin/snoopit +173 -0
- data/lib/snoopit.rb +22 -0
- data/lib/snoopit/detected.rb +50 -0
- data/lib/snoopit/file_info.rb +104 -0
- data/lib/snoopit/file_tracker.rb +83 -0
- data/lib/snoopit/logger.rb +30 -0
- data/lib/snoopit/notification_manager.rb +123 -0
- data/lib/snoopit/notifier.rb +25 -0
- data/lib/snoopit/notifiers/email.rb +61 -0
- data/lib/snoopit/notifiers/http.rb +85 -0
- data/lib/snoopit/notifiers/https.rb +21 -0
- data/lib/snoopit/notifiers/stomp.rb +59 -0
- data/lib/snoopit/register.rb +69 -0
- data/lib/snoopit/sniffer.rb +51 -0
- data/lib/snoopit/snooper.rb +149 -0
- data/lib/snoopit/snoopy.rb +67 -0
- data/lib/snoopit/version.rb +3 -0
- data/snoopit.gemspec +27 -0
- data/spec/bin/snoopit_spec.rb +258 -0
- data/spec/file_info_spec.rb +131 -0
- data/spec/file_tracker_spec.rb +172 -0
- data/spec/notification_manager_spec.rb +103 -0
- data/spec/notifiers/email_spec.rb +36 -0
- data/spec/notifiers/http_spec.rb +37 -0
- data/spec/notifiers/https_spec.rb +38 -0
- data/spec/notifiers/stomp_spec.rb +34 -0
- data/spec/register_spec.rb +105 -0
- data/spec/snooper_spec.rb +538 -0
- data/spec/spec_helper.rb +24 -0
- data/spec/support/log/snoop_log.test +593 -0
- data/spec/support/log/snoop_log_2.test +593 -0
- data/spec/support/multiple_snoopies.json +82 -0
- data/spec/support/regexp_tester.rb +10 -0
- data/spec/support/snoopies.json +93 -0
- data/spec/support/snoopies_notifiers.json +66 -0
- data/spec/support/test_notifier.rb +18 -0
- data/spec/support/test_notifier_load.rb +18 -0
- data/support/snoopies.json +110 -0
- metadata +190 -0
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
require 'snoopit'
|
2
|
+
require 'support/test_notifier'
|
3
|
+
require 'awesome_print'
|
4
|
+
require 'coveralls'
|
5
|
+
include Snoopit
|
6
|
+
Coveralls.wear!
|
7
|
+
# This file was generated by the `rspec --init` command. Conventionally, all
|
8
|
+
# specs live under a `spec` directory, which RSpec adds to the `$LOAD_PATH`.
|
9
|
+
# Require this file using `require "spec_helper"` to ensure that it is only
|
10
|
+
# loaded once.
|
11
|
+
#
|
12
|
+
# See http://rubydoc.info/gems/rspec-core/RSpec/Core/Configuration
|
13
|
+
RSpec.configure do |config|
|
14
|
+
config.treat_symbols_as_metadata_keys_with_true_values = true
|
15
|
+
config.run_all_when_everything_filtered = true
|
16
|
+
config.filter_run :focus
|
17
|
+
|
18
|
+
# Run specs in random order to surface order dependencies. If you find an
|
19
|
+
# order dependency and want to debug it, you can fix the order by providing
|
20
|
+
# the seed, which is printed after each run.
|
21
|
+
# --seed 1234
|
22
|
+
config.order = 'random'
|
23
|
+
config.filter_run_excluding :skip => true
|
24
|
+
end
|
@@ -0,0 +1,593 @@
|
|
1
|
+
D, [2014-04-30T16:56:59.702449 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Manny Schewitz", body: "This is a VERY conservative part of Florida but wat...", url: "http://twitter.com/WATMAB/status/461609709418459136...", source: "Twitter", sentiment: #<BigDecimal:6bf6b88,'0.0',9(36)>, leadprob: #<BigDecimal:6bf6958,'0.8558092366 284294E0',18(45)>, notleadprob: #<BigDecimal:6bf6728,'0.7763582826 285129E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461609709418459136", ldate: "2014-04-30 20:55:05", loadstamp: "2014-04-30 20:56:59", user_id: 7, scout_id: 27>
|
2
|
+
I, [2014-04-30T16:56:59.718199 #32088] INFO -- : Total Number of records: 2
|
3
|
+
I, [2014-04-30T16:56:59.718244 #32088] INFO -- : Total Number of records Not Loaded: 0
|
4
|
+
I, [2014-04-30T16:56:59.718274 #32088] INFO -- : Prediction loader waiting for scores ...
|
5
|
+
D, [2014-04-30T16:56:59.718304 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
6
|
+
W, [2014-04-30T16:57:01.268559 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"don't text and drive @Real_Liam_Payne", "contentid"=>"461610123039760384"}, {"content"=>"In order to survive, don’t text and drive #TXTL8RIN", "contentid"=>"461610107713769472"}, {"content"=>"Text on your own time, not while you are driving #TXTL8RIN", "contentid"=>"461610074129956864"}, {"content"=>"Seems like people snapchat and drive more than text and drive", "contentid"=>"461610059509010432"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461610019499167746"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461609973370593282"}, {"content"=>"If you think that you can text and drive, you are wrong #TXTL8RIN", "contentid"=>"461609941459939328"}, {"content"=>"If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461609916642234368"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461609898535419905"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461609890218512384"}, {"content"=>"You aren't invincible, so don't text and drive #TXTL8RIN", "contentid"=>"461609862124691456"}, {"content"=>"RT @YOPeek_Shimmy: Too many people text &drive, no matter what the conditions are outside", "contentid"=>"461609846971068416"}, {"content"=>"RT @JamarrJacob: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappedarou…", "contentid"=>"461609770253041664"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461609758676357120"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461609621879140352"}, {"content"=>"@BeefPattyCheese oh yea. in MD we cant text & drive n to an officer it \"looks like ur on the phone\" so i use my cds", "contentid"=>"461609604531904512"}, {"content"=>"RT @JamarrJacob: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappedarou…", "contentid"=>"461609595434053632"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461609562437853184"}, {"content"=>"RT @mileysbae: I ain't ever text and drive cuz I know My mama gon be on TV reading my last outgoing text that says \"I can't wait to eat tha…", "contentid"=>"461609545744523265"}, {"content"=>"@Teenaemm I never text when driving, and only vine on straight roads when there is no one behind or infront #imsensible #okmaybenot ὤ8", "contentid"=>"461609529697116160"}, {"content"=>"RT @mileysbae: I ain't ever text and drive cuz I know My mama gon be on TV reading my last outgoing text that says \"I can't wait to eat tha…", "contentid"=>"461609502421565440"}, {"content"=>"RT @halestormm12: I can't stand when people text and drive. It makes me so nervous. Whatever is in your inbox can wait. If not, they can ca…", "contentid"=>"461609490824314881"}, {"content"=>"RT @USAA: It's the last day of #DistractedDriving Awareness Month – have you taken the pledge to never text and drive? http://t.co/quV3wceX…", "contentid"=>"461609404102475776"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461609395294449664"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461609383185883136"}, {"content"=>"In order to survive, don’t text and drive #TXTL8RIN", "contentid"=>"461609225664208896"}, {"content"=>"Text on your own time, not while you are driving #TXTL8RIN", "contentid"=>"461609198715813888"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461609161629786112"}, {"content"=>"RT @goddxss_: how are cops gonna say dont text and drive and they got a fucking computer in their dash?", "contentid"=>"461609153333444608"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461609146144395264"}, {"content"=>"RT @BAlturkmani: Texting while driving makes you send a text with the word “asses” instead of “glasses” to someone important.\n\n-.-", "contentid"=>"461609119406100480"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461609065265643522"}, {"content"=>"RT @JennaHarrison_: There's a special place in hell for people who text and drive.", "contentid"=>"461609032139419648"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461608962740068352"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461608936840232961"}, {"content"=>"Texting while driving makes you send a text with the word “asses” instead of “glasses” to someone important.\n\n-.-", "contentid"=>"461608893156962305"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461608838408716288"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461608816124391425"}, {"content"=>"RT @jessicajarrell: To the driver that almost hit me on the freeway...put your phone away!! That was so scary please do not text and drive", "contentid"=>"461608810613063680"}, {"content"=>"RT @YOPeek_Shimmy: Too many people text &drive, no matter what the conditions are outside", "contentid"=>"461608739959996417"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461608716564201474"}, {"content"=>"You aren't invincible, so don't text and drive #TXTL8RIN", "contentid"=>"461608645633916928"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461608561793978369"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461608466428096512"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461608448858148864"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461608404629196800"}, {"content"=>"If you think that you can text and drive, you are wrong #TXTL8RIN", "contentid"=>"461608394164408320"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461608384446218240"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461608381619240961"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461608369690652672"}, {"content"=>"If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461608367459282947"}, {"content"=>"If you think that you can text and drive, you could be dead wrong #TXTL8RIN", "contentid"=>"461608348354244608"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461608333812981760"}, {"content"=>"@edithbell you shouldnt text and drive", "contentid"=>"461608289059348481"}, {"content"=>"RT @prettykiah: Omg, Miyah wants me to text her nonstop while I'm driving...she has no concern for my life! ὢ9ὢ9ὢ9", "contentid"=>"461608269531062272"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461608265861042176"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461608234743123968"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461608211406004224"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461608206939078657"}, {"content"=>"RT @TRV_Insurance: Research by @VTTInews reveals drivers who text increase their crash risk 23 times. Learn more: http://t.co/c8USsBUSL1 #D…", "contentid"=>"461608181437702144"}, {"content"=>"Dad: that girls texting, its illegal to text and drive. That girls ugly, its illegal to drive ugly. \nLol okay dad #funny #illegal #assume", "contentid"=>"461608082897125376"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461608063300939776"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461607973756751873"}, {"content"=>"RT @IrvinePolice: Distracted driving kills-Don't pick up that text! “It’s Not Worth It\".Irvine PD thanks you for supporting Distracted Driv…", "contentid"=>"461607902457761792"}, {"content"=>"You aren't invincible, so don't text and drive #TXTL8RIN", "contentid"=>"461607848552562688"}, {"content"=>"RT @mileysbae: I ain't ever text and drive cuz I know My mama gon be on TV reading my last outgoing text that says \"I can't wait to eat tha…", "contentid"=>"461607846652968960"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. That shit's dangerous.", "contentid"=>"461607831016206336"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461607802298200065"}, {"content"=>"@Toppersweather just said if you know someone who is driving text them and tell them to get off the road #donttextanddrive @wusa9", "contentid"=>"461607735034134529"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461607729728352256"}, {"content"=>"RT @dinaflesch: April is Distracted Driving Awareness Month, please take the pledge not to text & drive. Watch this video http://t.co/LIIEj…", "contentid"=>"461607722379534336"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461607686925479936"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461607624841363456"}, {"content"=>"In order to survive, don’t text and drive #TXTL8RIN", "contentid"=>"461607590041239552"}, {"content"=>"Think you can outdo Werner Herzog? (Did you see his \"Don't Text and Drive\" PSA? Did you really?... http://t.co/s47PBNNSWY", "contentid"=>"461607584806346752"}, {"content"=>"Do you realize that your kids will emulate you? They learn faster than you realize. Don't Drink and Drive or Text while Driving!", "contentid"=>"461607583455784960"}, {"content"=>"RT @jas_nicoleee: I really hate when people text & drive while I'm in the car with them or at all.. ὡ1", "contentid"=>"461607526166171648"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461607504334442496"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461607502346338304"}, {"content"=>"I can't text and drive ontp with my mom she start drawling on me saying I'm a rookie lol", "contentid"=>"461607485481033728"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461607465285844992"}, {"content"=>"RT @YOPeek_Shimmy: Too many people text &drive, no matter what the conditions are outside", "contentid"=>"461607451176214528"}, {"content"=>"RT @jas_nicoleee: I really hate when people text & drive while I'm in the car with them or at all.. ὡ1", "contentid"=>"461607448852586496"}, {"content"=>"Hamilton High students pledge to not text and drive: X the TXT is a national campaign to create awareness and get... http://t.co/qYHBXQS92f", "contentid"=>"461607443932274688"}, {"content"=>"For all those assholes who text and drive. Don't. Thanks to the one who rear ended me and left.", "contentid"=>"461607395983384576"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461607382775525376"}, {"content"=>"If you think that you can text and drive, you are wrong #TXTL8RIN", "contentid"=>"461607381370404864"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461607377796857856"}, {"content"=>"If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461607357181853696"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461607314186043392"}, {"content"=>"RT @BostInnoCity: 26% of Massachusetts drivers text & drive at the same time. Get your head in the game, Bay State. http://t.co/QPBvHkIouo", "contentid"=>"461607237824565249"}, {"content"=>"RT @jas_nicoleee: I really hate when people text & drive while I'm in the car with them or at all.. ὡ1", "contentid"=>"461607233802240001"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461607213887279104"}, {"content"=>"RT @jas_nicoleee: I really hate when people text & drive while I'm in the car with them or at all.. ὡ1", "contentid"=>"461607213086568448"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461607191988805633"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461607176914472960"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461607161781825536"}, {"content"=>"“@SMYLESS: I cant even text n drive . Gotta hold the wheel w bof hands in this tornado” you sure it's not cus you can't multitask?", "contentid"=>"461607147386585088"}, {"content"=>"In order to survive, don’t text and drive #TXTL8RIN", "contentid"=>"461607145763389440"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461607142282125312"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461610123039760384", "ldate"=>"Wed Apr 30 20:56:44 +0000 2014", "author"=>"Ava Blais", "perferredUsername"=>"AvaBlais", "url"=>"http://twitter.com/AvaBlais/status/461610123039760384", "source"=>"Twitter"}, {"contentid"=>"461610107713769472", "ldate"=>"Wed Apr 30 20:56:40 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461610107713769472", "source"=>"Twitter"}, {"contentid"=>"461610074129956864", "ldate"=>"Wed Apr 30 20:56:32 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461610074129956864", "source"=>"Twitter"}, {"contentid"=>"461610059509010432", "ldate"=>"Wed Apr 30 20:56:29 +0000 2014", "author"=>"MàtT", "perferredUsername"=>"blackmagic4444", "url"=>"http://twitter.com/blackmagic4444/status/461610059509010432", "source"=>"Twitter"}, {"contentid"=>"461610019499167746", "ldate"=>"Wed Apr 30 20:56:19 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461610019499167746", "source"=>"Twitter"}, {"contentid"=>"461609973370593282", "ldate"=>"Wed Apr 30 20:56:08 +0000 2014", "author"=>"Jc2smooth", "perferredUsername"=>"allstar_jc8", "url"=>"http://twitter.com/allstar_jc8/status/461609973370593282", "source"=>"Twitter"}, {"contentid"=>"461609941459939328", "ldate"=>"Wed Apr 30 20:56:01 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461609941459939328", "source"=>"Twitter"}, {"contentid"=>"461609916642234368", "ldate"=>"Wed Apr 30 20:55:55 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461609916642234368", "source"=>"Twitter"}, {"contentid"=>"461609898535419905", "ldate"=>"Wed Apr 30 20:55:50 +0000 2014", "author"=>"Jennifer Arredondo", "perferredUsername"=>"JenniferArred15", "url"=>"http://twitter.com/JenniferArred15/status/461609898535419905", "source"=>"Twitter"}, {"contentid"=>"461609890218512384", "ldate"=>"Wed Apr 30 20:55:48 +0000 2014", "author"=>"Mari.✌️", "perferredUsername"=>"FlawlessFauck", "url"=>"http://twitter.com/FlawlessFauck/status/461609890218512384", "source"=>"Twitter"}, {"contentid"=>"461609862124691456", "ldate"=>"Wed Apr 30 20:55:42 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461609862124691456", "source"=>"Twitter"}, {"contentid"=>"461609846971068416", "ldate"=>"Wed Apr 30 20:55:38 +0000 2014", "author"=>"Chante' Howard ", "perferredUsername"=>"SoVintage", "url"=>"http://twitter.com/SoVintage/status/461609846971068416", "source"=>"Twitter"}, {"contentid"=>"461609770253041664", "ldate"=>"Wed Apr 30 20:55:20 +0000 2014", "author"=>"", "perferredUsername"=>"_iamMODEL", "url"=>"http://twitter.com/_iamMODEL/status/461609770253041664", "source"=>"Twitter"}, {"contentid"=>"461609758676357120", "ldate"=>"Wed Apr 30 20:55:17 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461609758676357120", "source"=>"Twitter"}, {"contentid"=>"461609621879140352", "ldate"=>"Wed Apr 30 20:54:44 +0000 2014", "author"=>"ALEJANDRA", "perferredUsername"=>"AleLicious_23", "url"=>"http://twitter.com/AleLicious_23/status/461609621879140352", "source"=>"Twitter"}, {"contentid"=>"461609604531904512", "ldate"=>"Wed Apr 30 20:54:40 +0000 2014", "author"=>"the 10th letter Ω", "perferredUsername"=>"SeXXXyInTheCity", "url"=>"http://twitter.com/SeXXXyInTheCity/status/461609604531904512", "source"=>"Twitter"}, {"contentid"=>"461609595434053632", "ldate"=>"Wed Apr 30 20:54:38 +0000 2014", "author"=>"♭Ի!ḙℓℓᾰ✨", "perferredUsername"=>"life_withKILLA", "url"=>"http://twitter.com/life_withKILLA/status/461609595434053632", "source"=>"Twitter"}, {"contentid"=>"461609562437853184", "ldate"=>"Wed Apr 30 20:54:30 +0000 2014", "author"=>"Akua o_O", "perferredUsername"=>"Akua_Sarp", "url"=>"http://twitter.com/Akua_Sarp/status/461609562437853184", "source"=>"Twitter"}, {"contentid"=>"461609545744523265", "ldate"=>"Wed Apr 30 20:54:26 +0000 2014", "author"=>"Wawa Sixteen", "perferredUsername"=>"awkward_ah", "url"=>"http://twitter.com/awkward_ah/status/461609545744523265", "source"=>"Twitter"}, {"contentid"=>"461609529697116160", "ldate"=>"Wed Apr 30 20:54:22 +0000 2014", "author"=>"A m y", "perferredUsername"=>"amoof", "url"=>"http://twitter.com/amoof/status/461609529697116160", "source"=>"Twitter"}, {"contentid"=>"461609502421565440", "ldate"=>"Wed Apr 30 20:54:16 +0000 2014", "author"=>"GirlyGlitterGlamxo", "perferredUsername"=>"12fsmith", "url"=>"http://twitter.com/12fsmith/status/461609502421565440", "source"=>"Twitter"}, {"contentid"=>"461609490824314881", "ldate"=>"Wed Apr 30 20:54:13 +0000 2014", "author"=>"Chante' Howard ", "perferredUsername"=>"SoVintage", "url"=>"http://twitter.com/SoVintage/status/461609490824314881", "source"=>"Twitter"}, {"contentid"=>"461609404102475776", "ldate"=>"Wed Apr 30 20:53:52 +0000 2014", "author"=>"Jan", "perferredUsername"=>"broncofanjan7", "url"=>"http://twitter.com/broncofanjan7/status/461609404102475776", "source"=>"Twitter"}, {"contentid"=>"461609395294449664", "ldate"=>"Wed Apr 30 20:53:50 +0000 2014", "author"=>"♔", "perferredUsername"=>"yours_sameerah", "url"=>"http://twitter.com/yours_sameerah/status/461609395294449664", "source"=>"Twitter"}, {"contentid"=>"461609383185883136", "ldate"=>"Wed Apr 30 20:53:47 +0000 2014", "author"=>"KD Jr.", "perferredUsername"=>"LastKingsCrown", "url"=>"http://twitter.com/LastKingsCrown/status/461609383185883136", "source"=>"Twitter"}, {"contentid"=>"461609225664208896", "ldate"=>"Wed Apr 30 20:53:10 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461609225664208896", "source"=>"Twitter"}, {"contentid"=>"461609198715813888", "ldate"=>"Wed Apr 30 20:53:03 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461609198715813888", "source"=>"Twitter"}, {"contentid"=>"461609161629786112", "ldate"=>"Wed Apr 30 20:52:55 +0000 2014", "author"=>"Oscar Carreon", "perferredUsername"=>"porazcarreon", "url"=>"http://twitter.com/porazcarreon/status/461609161629786112", "source"=>"Twitter"}, {"contentid"=>"461609153333444608", "ldate"=>"Wed Apr 30 20:52:53 +0000 2014", "author"=>"✨", "perferredUsername"=>"___Imaniii", "url"=>"http://twitter.com/___Imaniii/status/461609153333444608", "source"=>"Twitter"}, {"contentid"=>"461609146144395264", "ldate"=>"Wed Apr 30 20:52:51 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461609146144395264", "source"=>"Twitter"}, {"contentid"=>"461609119406100480", "ldate"=>"Wed Apr 30 20:52:45 +0000 2014", "author"=>"▼", "perferredUsername"=>"Ellowawi", "url"=>"http://twitter.com/Ellowawi/status/461609119406100480", "source"=>"Twitter"}, {"contentid"=>"461609065265643522", "ldate"=>"Wed Apr 30 20:52:32 +0000 2014", "author"=>"Taylor Keys", "perferredUsername"=>"KeysTaytay", "url"=>"http://twitter.com/KeysTaytay/status/461609065265643522", "source"=>"Twitter"}, {"contentid"=>"461609032139419648", "ldate"=>"Wed Apr 30 20:52:24 +0000 2014", "author"=>"Mrs. Prince ", "perferredUsername"=>"PuraVida_00", "url"=>"http://twitter.com/PuraVida_00/status/461609032139419648", "source"=>"Twitter"}, {"contentid"=>"461608962740068352", "ldate"=>"Wed Apr 30 20:52:07 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461608962740068352", "source"=>"Twitter"}, {"contentid"=>"461608936840232961", "ldate"=>"Wed Apr 30 20:52:01 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461608936840232961", "source"=>"Twitter"}, {"contentid"=>"461608893156962305", "ldate"=>"Wed Apr 30 20:51:51 +0000 2014", "author"=>"بلال", "perferredUsername"=>"BAlturkmani", "url"=>"http://twitter.com/BAlturkmani/status/461608893156962305", "source"=>"Twitter"}, {"contentid"=>"461608838408716288", "ldate"=>"Wed Apr 30 20:51:38 +0000 2014", "author"=>"Stephany", "perferredUsername"=>"StephS_x3", "url"=>"http://twitter.com/StephS_x3/status/461608838408716288", "source"=>"Twitter"}, {"contentid"=>"461608816124391425", "ldate"=>"Wed Apr 30 20:51:32 +0000 2014", "author"=>"Kgomotso Ntsiuoa", "perferredUsername"=>"KgomotsoNtsiuoa", "url"=>"http://twitter.com/KgomotsoNtsiuoa/status/461608816124391425", "source"=>"Twitter"}, {"contentid"=>"461608810613063680", "ldate"=>"Wed Apr 30 20:51:31 +0000 2014", "author"=>"+LA CHOTA DE JUSTIN+", "perferredUsername"=>"LACHOTAdJUSTIN", "url"=>"http://twitter.com/LACHOTAdJUSTIN/status/461608810613063680", "source"=>"Twitter"}, {"contentid"=>"461608739959996417", "ldate"=>"Wed Apr 30 20:51:14 +0000 2014", "author"=>"Nita", "perferredUsername"=>"CheetahBite_", "url"=>"http://twitter.com/CheetahBite_/status/461608739959996417", "source"=>"Twitter"}, {"contentid"=>"461608716564201474", "ldate"=>"Wed Apr 30 20:51:08 +0000 2014", "author"=>"Mapu_LaY", "perferredUsername"=>"IiAm_Mapz", "url"=>"http://twitter.com/IiAm_Mapz/status/461608716564201474", "source"=>"Twitter"}, {"contentid"=>"461608645633916928", "ldate"=>"Wed Apr 30 20:50:52 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461608645633916928", "source"=>"Twitter"}, {"contentid"=>"461608561793978369", "ldate"=>"Wed Apr 30 20:50:32 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461608561793978369", "source"=>"Twitter"}, {"contentid"=>"461608466428096512", "ldate"=>"Wed Apr 30 20:50:09 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461608466428096512", "source"=>"Twitter"}, {"contentid"=>"461608448858148864", "ldate"=>"Wed Apr 30 20:50:05 +0000 2014", "author"=>"dorian williams", "perferredUsername"=>"dorianw390", "url"=>"http://twitter.com/dorianw390/status/461608448858148864", "source"=>"Twitter"}, {"contentid"=>"461608404629196800", "ldate"=>"Wed Apr 30 20:49:54 +0000 2014", "author"=>"Morgan", "perferredUsername"=>"mojust74", "url"=>"http://twitter.com/mojust74/status/461608404629196800", "source"=>"Twitter"}, {"contentid"=>"461608394164408320", "ldate"=>"Wed Apr 30 20:49:52 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461608394164408320", "source"=>"Twitter"}, {"contentid"=>"461608384446218240", "ldate"=>"Wed Apr 30 20:49:49 +0000 2014", "author"=>"blanch.", "perferredUsername"=>"_blanch1", "url"=>"http://twitter.com/_blanch1/status/461608384446218240", "source"=>"Twitter"}, {"contentid"=>"461608381619240961", "ldate"=>"Wed Apr 30 20:49:49 +0000 2014", "author"=>"✨♡ Alexandrea ", "perferredUsername"=>"AndreaAc408", "url"=>"http://twitter.com/AndreaAc408/status/461608381619240961", "source"=>"Twitter"}, {"contentid"=>"461608369690652672", "ldate"=>"Wed Apr 30 20:49:46 +0000 2014", "author"=>"Annie Phalit", "perferredUsername"=>"dannngxannieee", "url"=>"http://twitter.com/dannngxannieee/status/461608369690652672", "source"=>"Twitter"}, {"contentid"=>"461608367459282947", "ldate"=>"Wed Apr 30 20:49:45 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461608367459282947", "source"=>"Twitter"}, {"contentid"=>"461608348354244608", "ldate"=>"Wed Apr 30 20:49:41 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461608348354244608", "source"=>"Twitter"}, {"contentid"=>"461608333812981760", "ldate"=>"Wed Apr 30 20:49:38 +0000 2014", "author"=>"Pizza boy™", "perferredUsername"=>"HarrisonSparkx", "url"=>"http://twitter.com/HarrisonSparkx/status/461608333812981760", "source"=>"Twitter"}, {"contentid"=>"461608289059348481", "ldate"=>"Wed Apr 30 20:49:27 +0000 2014", "author"=>"sb", "perferredUsername"=>"riverside1drive", "url"=>"http://twitter.com/riverside1drive/status/461608289059348481", "source"=>"Twitter"}, {"contentid"=>"461608269531062272", "ldate"=>"Wed Apr 30 20:49:22 +0000 2014", "author"=>"〽️♋️", "perferredUsername"=>"Miyyy___", "url"=>"http://twitter.com/Miyyy___/status/461608269531062272", "source"=>"Twitter"}, {"contentid"=>"461608265861042176", "ldate"=>"Wed Apr 30 20:49:21 +0000 2014", "author"=>"P O R S H✨", "perferredUsername"=>"SouthallPorshia", "url"=>"http://twitter.com/SouthallPorshia/status/461608265861042176", "source"=>"Twitter"}, {"contentid"=>"461608234743123968", "ldate"=>"Wed Apr 30 20:49:14 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461608234743123968", "source"=>"Twitter"}, {"contentid"=>"461608211406004224", "ldate"=>"Wed Apr 30 20:49:08 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461608211406004224", "source"=>"Twitter"}, {"contentid"=>"461608206939078657", "ldate"=>"Wed Apr 30 20:49:07 +0000 2014", "author"=>"tory marie", "perferredUsername"=>"torymarie6", "url"=>"http://twitter.com/torymarie6/status/461608206939078657", "source"=>"Twitter"}, {"contentid"=>"461608181437702144", "ldate"=>"Wed Apr 30 20:49:01 +0000 2014", "author"=>"Privus Mobile ®", "perferredUsername"=>"PrivusMobile", "url"=>"http://twitter.com/PrivusMobile/status/461608181437702144", "source"=>"Twitter"}, {"contentid"=>"461608082897125376", "ldate"=>"Wed Apr 30 20:48:37 +0000 2014", "author"=>"Emily Rocca", "perferredUsername"=>"emmy_rocca", "url"=>"http://twitter.com/emmy_rocca/status/461608082897125376", "source"=>"Twitter"}, {"contentid"=>"461608063300939776", "ldate"=>"Wed Apr 30 20:48:33 +0000 2014", "author"=>"Kishhaaa(:", "perferredUsername"=>"NC_Rosee", "url"=>"http://twitter.com/NC_Rosee/status/461608063300939776", "source"=>"Twitter"}, {"contentid"=>"461607973756751873", "ldate"=>"Wed Apr 30 20:48:11 +0000 2014", "author"=>"diana ✌", "perferredUsername"=>"diana_moreno98", "url"=>"http://twitter.com/diana_moreno98/status/461607973756751873", "source"=>"Twitter"}, {"contentid"=>"461607902457761792", "ldate"=>"Wed Apr 30 20:47:54 +0000 2014", "author"=>"Concordia University", "perferredUsername"=>"ConcordiaSafety", "url"=>"http://twitter.com/ConcordiaSafety/status/461607902457761792", "source"=>"Twitter"}, {"contentid"=>"461607848552562688", "ldate"=>"Wed Apr 30 20:47:42 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461607848552562688", "source"=>"Twitter"}, {"contentid"=>"461607846652968960", "ldate"=>"Wed Apr 30 20:47:41 +0000 2014", "author"=>"Harold ", "perferredUsername"=>"MileysNips", "url"=>"http://twitter.com/MileysNips/status/461607846652968960", "source"=>"Twitter"}, {"contentid"=>"461607831016206336", "ldate"=>"Wed Apr 30 20:47:37 +0000 2014", "author"=>"Bernadene Livezley", "perferredUsername"=>"BernadeneLivezl", "url"=>"http://twitter.com/BernadeneLivezl/status/461607831016206336", "source"=>"Twitter"}, {"contentid"=>"461607802298200065", "ldate"=>"Wed Apr 30 20:47:31 +0000 2014", "author"=>"UGK♌️", "perferredUsername"=>"This_TweetinSht", "url"=>"http://twitter.com/This_TweetinSht/status/461607802298200065", "source"=>"Twitter"}, {"contentid"=>"461607735034134529", "ldate"=>"Wed Apr 30 20:47:14 +0000 2014", "author"=>"Britney", "perferredUsername"=>"Britneylashay", "url"=>"http://twitter.com/Britneylashay/status/461607735034134529", "source"=>"Twitter"}, {"contentid"=>"461607729728352256", "ldate"=>"Wed Apr 30 20:47:13 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461607729728352256", "source"=>"Twitter"}, {"contentid"=>"461607722379534336", "ldate"=>"Wed Apr 30 20:47:11 +0000 2014", "author"=>"Mark Dansack", "perferredUsername"=>"Surfer620311", "url"=>"http://twitter.com/Surfer620311/status/461607722379534336", "source"=>"Twitter"}, {"contentid"=>"461607686925479936", "ldate"=>"Wed Apr 30 20:47:03 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461607686925479936", "source"=>"Twitter"}, {"contentid"=>"461607624841363456", "ldate"=>"Wed Apr 30 20:46:48 +0000 2014", "author"=>"Melissa", "perferredUsername"=>"MelissaaGarcia7", "url"=>"http://twitter.com/MelissaaGarcia7/status/461607624841363456", "source"=>"Twitter"}, {"contentid"=>"461607590041239552", "ldate"=>"Wed Apr 30 20:46:40 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461607590041239552", "source"=>"Twitter"}, {"contentid"=>"461607584806346752", "ldate"=>"Wed Apr 30 20:46:39 +0000 2014", "author"=>"Actuality Media", "perferredUsername"=>"Actuality_Media", "url"=>"http://twitter.com/Actuality_Media/status/461607584806346752", "source"=>"Twitter"}, {"contentid"=>"461607583455784960", "ldate"=>"Wed Apr 30 20:46:38 +0000 2014", "author"=>"Public Safety East", "perferredUsername"=>"PublicSafetyEst", "url"=>"http://twitter.com/PublicSafetyEst/status/461607583455784960", "source"=>"Twitter"}, {"contentid"=>"461607526166171648", "ldate"=>"Wed Apr 30 20:46:25 +0000 2014", "author"=>"Lashaaaaa:♥", "perferredUsername"=>"ItsmelashaE_", "url"=>"http://twitter.com/ItsmelashaE_/status/461607526166171648", "source"=>"Twitter"}, {"contentid"=>"461607504334442496", "ldate"=>"Wed Apr 30 20:46:19 +0000 2014", "author"=>"Jimiroqua Stanchin", "perferredUsername"=>"jimiroqua_akeim", "url"=>"http://twitter.com/jimiroqua_akeim/status/461607504334442496", "source"=>"Twitter"}, {"contentid"=>"461607502346338304", "ldate"=>"Wed Apr 30 20:46:19 +0000 2014", "author"=>"Mr.Adamant", "perferredUsername"=>"MrMoreDanUMayes", "url"=>"http://twitter.com/MrMoreDanUMayes/status/461607502346338304", "source"=>"Twitter"}, {"contentid"=>"461607485481033728", "ldate"=>"Wed Apr 30 20:46:15 +0000 2014", "author"=>"The Real Booda.", "perferredUsername"=>"Lilbooda62", "url"=>"http://twitter.com/Lilbooda62/status/461607485481033728", "source"=>"Twitter"}, {"contentid"=>"461607465285844992", "ldate"=>"Wed Apr 30 20:46:10 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461607465285844992", "source"=>"Twitter"}, {"contentid"=>"461607451176214528", "ldate"=>"Wed Apr 30 20:46:07 +0000 2014", "author"=>"Mike Curry", "perferredUsername"=>"Mc_suavee", "url"=>"http://twitter.com/Mc_suavee/status/461607451176214528", "source"=>"Twitter"}, {"contentid"=>"461607448852586496", "ldate"=>"Wed Apr 30 20:46:06 +0000 2014", "author"=>"", "perferredUsername"=>"Zoiaayy", "url"=>"http://twitter.com/Zoiaayy/status/461607448852586496", "source"=>"Twitter"}, {"contentid"=>"461607443932274688", "ldate"=>"Wed Apr 30 20:46:05 +0000 2014", "author"=>"Chandler Journal", "perferredUsername"=>"chandlerjournal", "url"=>"http://twitter.com/chandlerjournal/status/461607443932274688", "source"=>"Twitter"}, {"contentid"=>"461607395983384576", "ldate"=>"Wed Apr 30 20:45:54 +0000 2014", "author"=>"Abigail Ryan", "perferredUsername"=>"abalabigail", "url"=>"http://twitter.com/abalabigail/status/461607395983384576", "source"=>"Twitter"}, {"contentid"=>"461607382775525376", "ldate"=>"Wed Apr 30 20:45:51 +0000 2014", "author"=>"вaylee.", "perferredUsername"=>"BaiBaijohnson", "url"=>"http://twitter.com/BaiBaijohnson/status/461607382775525376", "source"=>"Twitter"}, {"contentid"=>"461607381370404864", "ldate"=>"Wed Apr 30 20:45:50 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461607381370404864", "source"=>"Twitter"}, {"contentid"=>"461607377796857856", "ldate"=>"Wed Apr 30 20:45:49 +0000 2014", "author"=>"Karli Archer", "perferredUsername"=>"karli_archer_", "url"=>"http://twitter.com/karli_archer_/status/461607377796857856", "source"=>"Twitter"}, {"contentid"=>"461607357181853696", "ldate"=>"Wed Apr 30 20:45:44 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461607357181853696", "source"=>"Twitter"}, {"contentid"=>"461607314186043392", "ldate"=>"Wed Apr 30 20:45:34 +0000 2014", "author"=>"Jah ⚖", "perferredUsername"=>"Sierra_Leone1", "url"=>"http://twitter.com/Sierra_Leone1/status/461607314186043392", "source"=>"Twitter"}, {"contentid"=>"461607237824565249", "ldate"=>"Wed Apr 30 20:45:16 +0000 2014", "author"=>"Laurie Garbarino", "perferredUsername"=>"Laurie_bot", "url"=>"http://twitter.com/Laurie_bot/status/461607237824565249", "source"=>"Twitter"}, {"contentid"=>"461607233802240001", "ldate"=>"Wed Apr 30 20:45:15 +0000 2014", "author"=>"e•ll•e", "perferredUsername"=>"_diam0ndlux", "url"=>"http://twitter.com/_diam0ndlux/status/461607233802240001", "source"=>"Twitter"}, {"contentid"=>"461607213887279104", "ldate"=>"Wed Apr 30 20:45:10 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461607213887279104", "source"=>"Twitter"}, {"contentid"=>"461607213086568448", "ldate"=>"Wed Apr 30 20:45:10 +0000 2014", "author"=>"", "perferredUsername"=>"basedsaffiyah", "url"=>"http://twitter.com/basedsaffiyah/status/461607213086568448", "source"=>"Twitter"}, {"contentid"=>"461607191988805633", "ldate"=>"Wed Apr 30 20:45:05 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461607191988805633", "source"=>"Twitter"}, {"contentid"=>"461607176914472960", "ldate"=>"Wed Apr 30 20:45:01 +0000 2014", "author"=>"❤*Brianna Grace*❤", "perferredUsername"=>"Brialicious21", "url"=>"http://twitter.com/Brialicious21/status/461607176914472960", "source"=>"Twitter"}, {"contentid"=>"461607161781825536", "ldate"=>"Wed Apr 30 20:44:58 +0000 2014", "author"=>"ÄšhłęÿTęįčh", "perferredUsername"=>"ashley_teich", "url"=>"http://twitter.com/ashley_teich/status/461607161781825536", "source"=>"Twitter"}, {"contentid"=>"461607147386585088", "ldate"=>"Wed Apr 30 20:44:54 +0000 2014", "author"=>"GUATEMELONS.", "perferredUsername"=>"itscathyyy", "url"=>"http://twitter.com/itscathyyy/status/461607147386585088", "source"=>"Twitter"}, {"contentid"=>"461607145763389440", "ldate"=>"Wed Apr 30 20:44:54 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461607145763389440", "source"=>"Twitter"}, {"contentid"=>"461607142282125312", "ldate"=>"Wed Apr 30 20:44:53 +0000 2014", "author"=>"Lexi ♥", "perferredUsername"=>"LexxSOblessed", "url"=>"http://twitter.com/LexxSOblessed/status/461607142282125312", "source"=>"Twitter"}]}, "requestid"=>"21b07268-b657-4906-9f60-d647e4d47c94"}
|
7
|
+
I, [2014-04-30T16:57:01.268693 #32088] INFO -- : Prediction loader waiting for scores ...
|
8
|
+
D, [2014-04-30T16:57:01.268731 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
9
|
+
W, [2014-04-30T16:57:01.522096 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"I really hate when people text & drive while I'm in the car with them or at all.. ὡ1", "contentid"=>"461607126713262080"}, {"content"=>"Text on your own time, not while you are driving #TXTL8RIN", "contentid"=>"461607122447245312"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461607121763971072"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461607097592201216"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461607074950950913"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461606970504392704"}, {"content"=>"A study shows that approximately 3/4 of young adults are very or somewhat confident they can text and drive and they are Wrong #TXTL8RIN", "contentid"=>"461606930511716352"}, {"content"=>"Choose to be alive and don't text and drive #TXTL8RIN", "contentid"=>"461606879630602240"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461606876841377792"}, {"content"=>"If you think that you can text and drive, you could be dead wrong #TXTL8RIN", "contentid"=>"461606851725897729"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461606806343540736"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461606761099583490"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461606746809958402"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461606744393646081"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461606727176040448"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461606684381954048"}, {"content"=>"DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappedaround a treeἳ2ὡE", "contentid"=>"461606665830141952"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461606665612046336"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461606656439115777"}, {"content"=>"A study shows that approximately 3/4 of young adults are very or somewhat confident they can text and drive and they are Wrong #TXTL8RIN", "contentid"=>"461606638193876992"}, {"content"=>"DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappedaround a treeἳ2ὡE", "contentid"=>"461606626395308032"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461606608888270848"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461606569411887104"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461606560280498176"}, {"content"=>"#IfYoureMyGirl You will have to text people back for me if I'm driving because I'm not putting our lives at risk texting and driving.", "contentid"=>"461606559647543296"}, {"content"=>"Text on your own time, not while you are driving #TXTL8RIN", "contentid"=>"461606556123922433"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461606549912567808"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461606546653589504"}, {"content"=>"RT @YOPeek_Shimmy: Too many people text &drive, no matter what the conditions are outside", "contentid"=>"461606391674052608"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461607126713262080", "ldate"=>"Wed Apr 30 20:44:49 +0000 2014", "author"=>"Jasmyhn", "perferredUsername"=>"jas_nicoleee", "url"=>"http://twitter.com/jas_nicoleee/status/461607126713262080", "source"=>"Twitter"}, {"contentid"=>"461607122447245312", "ldate"=>"Wed Apr 30 20:44:48 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461607122447245312", "source"=>"Twitter"}, {"contentid"=>"461607121763971072", "ldate"=>"Wed Apr 30 20:44:48 +0000 2014", "author"=>"MaMngadi Omuhle!", "perferredUsername"=>"NellyFMngadi", "url"=>"http://twitter.com/NellyFMngadi/status/461607121763971072", "source"=>"Twitter"}, {"contentid"=>"461607097592201216", "ldate"=>"Wed Apr 30 20:44:42 +0000 2014", "author"=>"Jeremy Morrow", "perferredUsername"=>"JeremyMorrow12", "url"=>"http://twitter.com/JeremyMorrow12/status/461607097592201216", "source"=>"Twitter"}, {"contentid"=>"461607074950950913", "ldate"=>"Wed Apr 30 20:44:37 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461607074950950913", "source"=>"Twitter"}, {"contentid"=>"461606970504392704", "ldate"=>"Wed Apr 30 20:44:12 +0000 2014", "author"=>"ktDodd ✨", "perferredUsername"=>"KatieDodd04", "url"=>"http://twitter.com/KatieDodd04/status/461606970504392704", "source"=>"Twitter"}, {"contentid"=>"461606930511716352", "ldate"=>"Wed Apr 30 20:44:03 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461606930511716352", "source"=>"Twitter"}, {"contentid"=>"461606879630602240", "ldate"=>"Wed Apr 30 20:43:51 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461606879630602240", "source"=>"Twitter"}, {"contentid"=>"461606876841377792", "ldate"=>"Wed Apr 30 20:43:50 +0000 2014", "author"=>"ashwin kunder", "perferredUsername"=>"krashwin", "url"=>"http://twitter.com/krashwin/status/461606876841377792", "source"=>"Twitter"}, {"contentid"=>"461606851725897729", "ldate"=>"Wed Apr 30 20:43:44 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461606851725897729", "source"=>"Twitter"}, {"contentid"=>"461606806343540736", "ldate"=>"Wed Apr 30 20:43:33 +0000 2014", "author"=>"BIG MIKE ", "perferredUsername"=>"WhiteDoggMike", "url"=>"http://twitter.com/WhiteDoggMike/status/461606806343540736", "source"=>"Twitter"}, {"contentid"=>"461606761099583490", "ldate"=>"Wed Apr 30 20:43:22 +0000 2014", "author"=>"Huey ", "perferredUsername"=>"najib1ali", "url"=>"http://twitter.com/najib1ali/status/461606761099583490", "source"=>"Twitter"}, {"contentid"=>"461606746809958402", "ldate"=>"Wed Apr 30 20:43:19 +0000 2014", "author"=>"K_nicole04", "perferredUsername"=>"kayrah_nicole95", "url"=>"http://twitter.com/kayrah_nicole95/status/461606746809958402", "source"=>"Twitter"}, {"contentid"=>"461606744393646081", "ldate"=>"Wed Apr 30 20:43:18 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461606744393646081", "source"=>"Twitter"}, {"contentid"=>"461606727176040448", "ldate"=>"Wed Apr 30 20:43:14 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461606727176040448", "source"=>"Twitter"}, {"contentid"=>"461606684381954048", "ldate"=>"Wed Apr 30 20:43:04 +0000 2014", "author"=>"Schoolboy J", "perferredUsername"=>"JJVW21", "url"=>"http://twitter.com/JJVW21/status/461606684381954048", "source"=>"Twitter"}, {"contentid"=>"461606665830141952", "ldate"=>"Wed Apr 30 20:43:00 +0000 2014", "author"=>"ïEatTheBöx™®", "perferredUsername"=>"KillDopeTweets2", "url"=>"http://twitter.com/KillDopeTweets2/status/461606665830141952", "source"=>"Twitter"}, {"contentid"=>"461606665612046336", "ldate"=>"Wed Apr 30 20:42:59 +0000 2014", "author"=>"MåtthęwJãÿ™", "perferredUsername"=>"MatthewJ_Swope", "url"=>"http://twitter.com/MatthewJ_Swope/status/461606665612046336", "source"=>"Twitter"}, {"contentid"=>"461606656439115777", "ldate"=>"Wed Apr 30 20:42:57 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461606656439115777", "source"=>"Twitter"}, {"contentid"=>"461606638193876992", "ldate"=>"Wed Apr 30 20:42:53 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461606638193876992", "source"=>"Twitter"}, {"contentid"=>"461606626395308032", "ldate"=>"Wed Apr 30 20:42:50 +0000 2014", "author"=>"M A R T Y ", "perferredUsername"=>"JamarrJacob", "url"=>"http://twitter.com/JamarrJacob/status/461606626395308032", "source"=>"Twitter"}, {"contentid"=>"461606608888270848", "ldate"=>"Wed Apr 30 20:42:46 +0000 2014", "author"=>"Gustavo ⚽️", "perferredUsername"=>"_7Goose", "url"=>"http://twitter.com/_7Goose/status/461606608888270848", "source"=>"Twitter"}, {"contentid"=>"461606569411887104", "ldate"=>"Wed Apr 30 20:42:37 +0000 2014", "author"=>"s.e.a.n", "perferredUsername"=>"seandontcare", "url"=>"http://twitter.com/seandontcare/status/461606569411887104", "source"=>"Twitter"}, {"contentid"=>"461606560280498176", "ldate"=>"Wed Apr 30 20:42:34 +0000 2014", "author"=>"️ ∞ кαιℓєу ∞", "perferredUsername"=>"gcf_kailey", "url"=>"http://twitter.com/gcf_kailey/status/461606560280498176", "source"=>"Twitter"}, {"contentid"=>"461606559647543296", "ldate"=>"Wed Apr 30 20:42:34 +0000 2014", "author"=>"Jay Fresco", "perferredUsername"=>"REAL_LILJ300", "url"=>"http://twitter.com/REAL_LILJ300/status/461606559647543296", "source"=>"Twitter"}, {"contentid"=>"461606556123922433", "ldate"=>"Wed Apr 30 20:42:33 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461606556123922433", "source"=>"Twitter"}, {"contentid"=>"461606549912567808", "ldate"=>"Wed Apr 30 20:42:32 +0000 2014", "author"=>"~J.K.K. C/O 2014~", "perferredUsername"=>"jkeen15", "url"=>"http://twitter.com/jkeen15/status/461606549912567808", "source"=>"Twitter"}, {"contentid"=>"461606546653589504", "ldate"=>"Wed Apr 30 20:42:31 +0000 2014", "author"=>"N A K E D Y A H N", "perferredUsername"=>"Yaaahn_", "url"=>"http://twitter.com/Yaaahn_/status/461606546653589504", "source"=>"Twitter"}, {"contentid"=>"461606391674052608", "ldate"=>"Wed Apr 30 20:41:54 +0000 2014", "author"=>"Courtn3y_1922", "perferredUsername"=>"Courtn3y_Marie", "url"=>"http://twitter.com/Courtn3y_Marie/status/461606391674052608", "source"=>"Twitter"}]}, "requestid"=>"06914551-4cf6-4661-aa34-827ead9a495c"}
|
10
|
+
I, [2014-04-30T16:57:01.522183 #32088] INFO -- : Prediction loader waiting for scores ...
|
11
|
+
D, [2014-04-30T16:57:01.522218 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
12
|
+
D, [2014-04-30T17:12:02.181290 #32088] DEBUG -- : Adding posts for scout_id: 27
|
13
|
+
D, [2014-04-30T17:12:02.181367 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
14
|
+
D, [2014-04-30T17:12:02.189372 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "News Addicted", body: "FL Governor Poll: Crist 48, Scott 38: A new poll sh...", url: "http://twitter.com/News_Addicted_/status/4616101905...", source: "Twitter", sentiment: #<BigDecimal:6d18e80,'0.0',9(36)>, leadprob: #<BigDecimal:6d18c50,'0.7191206623 061382E0',18(45)>, notleadprob: #<BigDecimal:6d18a20,'0.8815894788 048897E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461610190593609730", ldate: "2014-04-30 20:57:00", loadstamp: "2014-04-30 21:12:02", user_id: 7, scout_id: 27>
|
15
|
+
D, [2014-04-30T17:12:02.199859 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Sales Tax Datalink", body: "Amazon's online sales tax kicks in on Thursday for ...", url: "http://twitter.com/SalesTaxDLink/status/46161094622...", source: "Twitter", sentiment: #<BigDecimal:6d884d8,'0.0',9(36)>, leadprob: #<BigDecimal:6d882a8,'0.8270366433 25527E0',18(45)>, notleadprob: #<BigDecimal:6d88078,'0.7150549437 09307E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461610946226425856", ldate: "2014-04-30 21:00:00", loadstamp: "2014-04-30 21:12:02", user_id: 7, scout_id: 27>
|
16
|
+
D, [2014-04-30T17:12:02.216354 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Sheila Calderon", body: "RT @RepTedDeutch: Graphic: Here's what #1010Means f...", url: "http://twitter.com/SheilaCaldero16/status/461613198...", source: "Twitter", sentiment: #<BigDecimal:6dffa88,'0.0',9(36)>, leadprob: #<BigDecimal:6dff858,'0.8275129795 447093E0',18(45)>, notleadprob: #<BigDecimal:6dff628,'0.6267857952 108301E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461613198810959872", ldate: "2014-04-30 21:08:57", loadstamp: "2014-04-30 21:12:02", user_id: 7, scout_id: 27>
|
17
|
+
I, [2014-04-30T17:12:02.223812 #32088] INFO -- : Total Number of records: 3
|
18
|
+
I, [2014-04-30T17:12:02.223857 #32088] INFO -- : Total Number of records Not Loaded: 0
|
19
|
+
I, [2014-04-30T17:12:02.223888 #32088] INFO -- : Prediction loader waiting for scores ...
|
20
|
+
D, [2014-04-30T17:12:02.223919 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
21
|
+
W, [2014-04-30T17:12:03.935727 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"You wouldn't make tacos and drive, would you? So why text and drive? Drive now, text later. #TXTL8RIN", "contentid"=>"461613935582793728"}, {"content"=>"In order to survive, don’t text and drive #txtl8rin", "contentid"=>"461613882386026496"}, {"content"=>"Text on your own time, not while you are driving #txtl8rin", "contentid"=>"461613861893079040"}, {"content"=>"RT @incindyous: I don't let bae text and drive cus bae can't be bae if bae is dead. #MIND2014", "contentid"=>"461613823216984064"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461613810676027392"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461613769647341569"}, {"content"=>"They should be after the criminals doing bad thing n arresting bad guys n giving tickets who text n drive", "contentid"=>"461613760721862656"}, {"content"=>"Be smart and don't text while driving #TXTL8RIN", "contentid"=>"461613737477042177"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461613721669091328"}, {"content"=>"Choose not to text and drive #TXTL8RIN", "contentid"=>"461613716711038976"}, {"content"=>"Have you taken the pledge? No text is worth your life. Hear stories of survivors and pledge not to text and drive. http://t.co/KFPalK8zbX", "contentid"=>"461613711048724480"}, {"content"=>"I know you are dying to see that text, but don't text while driving #TXTL8RIN", "contentid"=>"461613675573309440"}, {"content"=>"RT @jas_nicoleee: I really hate when people text & drive while I'm in the car with them or at all.. ὡ1", "contentid"=>"461613664483934208"}, {"content"=>"“@incindyous: I don't let bae text and drive cus bae can't be bae if bae is dead. #MIND2014”", "contentid"=>"461613637308665856"}, {"content"=>"RT @JazzyxDuran: Don't text and drive people !!!!! Especially on a rainy day smh ὡ1ὡ1ὡ1ὡ1", "contentid"=>"461613506073489408"}, {"content"=>"@DaNeesha_Bracey i text and drive all the time when your in the car with me lol", "contentid"=>"461613437358211072"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461613327815569409"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461613326875635713"}, {"content"=>"RT @KaneSAO: This new \"Don't text and drive\" ad will leave you shaking. http://t.co/9mCqeOg4rX", "contentid"=>"461613293409271808"}, {"content"=>"RT @JazzyxDuran: Don't text and drive people !!!!! Especially on a rainy day smh ὡ1ὡ1ὡ1ὡ1", "contentid"=>"461613278683467778"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461613141047394304"}, {"content"=>"Don't text and drive people !!!!! Especially on a rainy day smh ὡ1ὡ1ὡ1ὡ1", "contentid"=>"461613068901154816"}, {"content"=>"Choose to be alive and don't text and drive #TXTL8RIN", "contentid"=>"461612961803808768"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461612945760616448"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461612914923696128"}, {"content"=>"A study shows that approximately 3/4 of young adults are very or somewhat confident they can text and drive and they are Wrong #TXTL8RIN", "contentid"=>"461612899497431042"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461612896410435584"}, {"content"=>"if u cant fuckin drive n text then dont fuckin drive n text! shit slowing up damn traffic", "contentid"=>"461612861584723968"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461612858963275776"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461612816706060290"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461612750553493504"}, {"content"=>"Don’t text and drive #txtl8rin", "contentid"=>"461612714759299072"}, {"content"=>"In order to survive, don’t text and drive #TXTL8RIN", "contentid"=>"461612646433714176"}, {"content"=>"Text on your own time, not while you are driving #TXTL8RIN", "contentid"=>"461612609691607041"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461612501415632896"}, {"content"=>"If you think that you can text and drive, you are wrong #TXTL8RIN", "contentid"=>"461612397547900928"}, {"content"=>"If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461612378929393664"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461612360436707328"}, {"content"=>"@WordsFoodArt and you can text & drive. Scary but to be respected!", "contentid"=>"461612347086606336"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461612343441362945"}, {"content"=>"Driving distracted creates a crash risk 23 times worse than driving not distracted. Arrive alive, don't text and drive! #DDAM #just drive", "contentid"=>"461612321098694656"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461612319647096832"}, {"content"=>"In order to survive, don’t text and drive #TXTL8RIN", "contentid"=>"461612280388403200"}, {"content"=>"Text on your own time, not while you are driving #TXTL8RIN", "contentid"=>"461612258494148608"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461612202135261184"}, {"content"=>"If you think that you can text and drive, you are wrong #TXTL8RIN", "contentid"=>"461612106719035392"}, {"content"=>"@HaydnOleson don't text and driveὤ5", "contentid"=>"461612091556651008"}, {"content"=>"If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461612085843988480"}, {"content"=>"You aren't invincible, so don't text and drive #TXTL8RIN", "contentid"=>"461612034480541696"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461612015858253824"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461611930604425216"}, {"content"=>"In order to survive, don’t text and drive #TXTL8RIN", "contentid"=>"461611857405435904"}, {"content"=>"Text on your own time, not while you are driving #TXTL8RIN", "contentid"=>"461611836740087808"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461611683878666240"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461611657307774976"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461611533663862784"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461611529994252288"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461611526097358848"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461611519310962688"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461611518249824256"}, {"content"=>"When a lead alert or text from a client comes through while you’re driving, remember this, \"It really can wait.\" http://t.co/vA7WTsVQpf", "contentid"=>"461611466240851969"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461611462834663424"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461611350608060416"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461611336133525504"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461611264905461761"}, {"content"=>"RT @Hannah__Kline: Drivers in their 20's make up 27% of fatal accidents caused by distracted driving. Drive now, text later. You're worth i…", "contentid"=>"461611264616046592"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461611246475694080"}, {"content"=>"You aren't invincible, so don't text and drive #TXTL8RIN", "contentid"=>"461611245829754880"}, {"content"=>"RT @Hannah__Kline: Don't be like Tom Haverford. Don't text and drive. #seriouslythough #TXTL8RIN http://t.co/5VZMScl6kT", "contentid"=>"461611226431107073"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461611163894030336"}, {"content"=>"RT @mileysbae: I ain't ever text and drive cuz I know My mama gon be on TV reading my last outgoing text that says \"I can't wait to eat tha…", "contentid"=>"461611154012639233"}, {"content"=>"In order to survive, don’t text and drive #TXTL8RIN", "contentid"=>"461611105488343040"}, {"content"=>"Text on your own time, not while you are driving #TXTL8RIN", "contentid"=>"461611083199811585"}, {"content"=>"RT @Hannah__Kline: Let's change that. Take the pledge not to text and drive @_ItCanWait #TXTL8RIN http://t.co/wYcH2T6Y9c", "contentid"=>"461611069350227968"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461611050538774528"}, {"content"=>"RT @Hannah__Kline: Don't text and drive!!!! \n\n#TXTL8RIN !!!!! http://t.co/d83s2c6pti", "contentid"=>"461611049351782401"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461611048185757696"}, {"content"=>"RT @NeilKettle88: Some bitter kopite bastards out there. they got beat, so what?!? Use are all still in work tomorrow & I can still drive t…", "contentid"=>"461611039143251968"}, {"content"=>"@GPClaireRP -text- yes boss *driving over*", "contentid"=>"461611026279301121"}, {"content"=>"If you think that you can text and drive, you are wrong #TXTL8RIN", "contentid"=>"461610961044918273"}, {"content"=>"If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461610936856363008"}, {"content"=>"If you think that you can text and drive, you could be dead wrong #TXTL8RIN", "contentid"=>"461610914534285312"}, {"content"=>"RT @JamarrJacob: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappedarou…", "contentid"=>"461610809286590464"}, {"content"=>"Some bitter kopite bastards out there. they got beat, so what?!? Use are all still in work tomorrow & I can still drive text & eat a pasty ὄA", "contentid"=>"461610759358005248"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461610723035336704"}, {"content"=>"RT @GoMotorcoach: Reason 326 to GoMotorcoach: You can TEXT while we drive! http://t.co/GZdD1k1ZfP", "contentid"=>"461610718786097152"}, {"content"=>"When I text and drive I be cool but when I'm in the car with somebody else and they text I be balled tf up in the seat ὠ2ὠ2", "contentid"=>"461610694350491649"}, {"content"=>"RT @OOchieBangBang_: I swear muscle memory has saved thousands of lives while I text & drive. Sometimes I look up and I'm like when tf did …", "contentid"=>"461610686255493120"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461610528062705664"}, {"content"=>"Also said \"hold on let me send a text\" while I was driving, I got a ear full of him after that", "contentid"=>"461610512737132544"}, {"content"=>"Don't text me saying drive safely, I can't drive safely if you know I'm a check my phone to see it while I'm drivingὡ1", "contentid"=>"461610504184930304"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461610404796305408"}, {"content"=>"If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461610387905863680"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461610366967902209"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461610346478714880"}, {"content"=>"RT @SPFSADD: This is the cutest way to say don't text and drive!\nRetweet for an another iPad entry! http://t.co/JlwdcSz1f4", "contentid"=>"461610206238375937"}, {"content"=>"RT @MarlaAMadison: \"Excellent characters drive this book,\" the first in the Ray Schiller crime series.\nDEAR CROSSING http://t.co/XcuTGkMrZd", "contentid"=>"461610150391189504"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461613935582793728", "ldate"=>"Wed Apr 30 21:11:53 +0000 2014", "author"=>"JBG", "perferredUsername"=>"JBGMedia", "url"=>"http://twitter.com/JBGMedia/status/461613935582793728", "source"=>"Twitter"}, {"contentid"=>"461613882386026496", "ldate"=>"Wed Apr 30 21:11:40 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461613882386026496", "source"=>"Twitter"}, {"contentid"=>"461613861893079040", "ldate"=>"Wed Apr 30 21:11:35 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461613861893079040", "source"=>"Twitter"}, {"contentid"=>"461613823216984064", "ldate"=>"Wed Apr 30 21:11:26 +0000 2014", "author"=>"Jessica Mai", "perferredUsername"=>"_jmnt", "url"=>"http://twitter.com/_jmnt/status/461613823216984064", "source"=>"Twitter"}, {"contentid"=>"461613810676027392", "ldate"=>"Wed Apr 30 21:11:23 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461613810676027392", "source"=>"Twitter"}, {"contentid"=>"461613769647341569", "ldate"=>"Wed Apr 30 21:11:13 +0000 2014", "author"=>"Rly Lilli", "perferredUsername"=>"lilli_lucero", "url"=>"http://twitter.com/lilli_lucero/status/461613769647341569", "source"=>"Twitter"}, {"contentid"=>"461613760721862656", "ldate"=>"Wed Apr 30 21:11:11 +0000 2014", "author"=>"leif quitlong", "perferredUsername"=>"LeifQuitlong", "url"=>"http://twitter.com/LeifQuitlong/status/461613760721862656", "source"=>"Twitter"}, {"contentid"=>"461613737477042177", "ldate"=>"Wed Apr 30 21:11:06 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461613737477042177", "source"=>"Twitter"}, {"contentid"=>"461613721669091328", "ldate"=>"Wed Apr 30 21:11:02 +0000 2014", "author"=>"Dorian✨", "perferredUsername"=>"D_MyKaylla", "url"=>"http://twitter.com/D_MyKaylla/status/461613721669091328", "source"=>"Twitter"}, {"contentid"=>"461613716711038976", "ldate"=>"Wed Apr 30 21:11:01 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461613716711038976", "source"=>"Twitter"}, {"contentid"=>"461613711048724480", "ldate"=>"Wed Apr 30 21:10:59 +0000 2014", "author"=>"Stephanie Cameron", "perferredUsername"=>"Ellamaebooks", "url"=>"http://twitter.com/Ellamaebooks/status/461613711048724480", "source"=>"Twitter"}, {"contentid"=>"461613675573309440", "ldate"=>"Wed Apr 30 21:10:51 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461613675573309440", "source"=>"Twitter"}, {"contentid"=>"461613664483934208", "ldate"=>"Wed Apr 30 21:10:48 +0000 2014", "author"=>"$", "perferredUsername"=>"_trillest0ne", "url"=>"http://twitter.com/_trillest0ne/status/461613664483934208", "source"=>"Twitter"}, {"contentid"=>"461613637308665856", "ldate"=>"Wed Apr 30 21:10:42 +0000 2014", "author"=>"L", "perferredUsername"=>"leenadelasoul", "url"=>"http://twitter.com/leenadelasoul/status/461613637308665856", "source"=>"Twitter"}, {"contentid"=>"461613506073489408", "ldate"=>"Wed Apr 30 21:10:10 +0000 2014", "author"=>"CLR .", "perferredUsername"=>"toxinromance", "url"=>"http://twitter.com/toxinromance/status/461613506073489408", "source"=>"Twitter"}, {"contentid"=>"461613437358211072", "ldate"=>"Wed Apr 30 21:09:54 +0000 2014", "author"=>"kwando bracey", "perferredUsername"=>"kwando_bracey", "url"=>"http://twitter.com/kwando_bracey/status/461613437358211072", "source"=>"Twitter"}, {"contentid"=>"461613327815569409", "ldate"=>"Wed Apr 30 21:09:28 +0000 2014", "author"=>"'Bex", "perferredUsername"=>"Bex_fernandez", "url"=>"http://twitter.com/Bex_fernandez/status/461613327815569409", "source"=>"Twitter"}, {"contentid"=>"461613326875635713", "ldate"=>"Wed Apr 30 21:09:28 +0000 2014", "author"=>"unknown ", "perferredUsername"=>"VictorFincher", "url"=>"http://twitter.com/VictorFincher/status/461613326875635713", "source"=>"Twitter"}, {"contentid"=>"461613293409271808", "ldate"=>"Wed Apr 30 21:09:20 +0000 2014", "author"=>"ggt", "perferredUsername"=>"geegeetee", "url"=>"http://twitter.com/geegeetee/status/461613293409271808", "source"=>"Twitter"}, {"contentid"=>"461613278683467778", "ldate"=>"Wed Apr 30 21:09:16 +0000 2014", "author"=>"Steffy", "perferredUsername"=>"svazquez_", "url"=>"http://twitter.com/svazquez_/status/461613278683467778", "source"=>"Twitter"}, {"contentid"=>"461613141047394304", "ldate"=>"Wed Apr 30 21:08:43 +0000 2014", "author"=>"Samantha⚓", "perferredUsername"=>"SamanthaSarahh", "url"=>"http://twitter.com/SamanthaSarahh/status/461613141047394304", "source"=>"Twitter"}, {"contentid"=>"461613068901154816", "ldate"=>"Wed Apr 30 21:08:26 +0000 2014", "author"=>"MingMing ", "perferredUsername"=>"JazzyxDuran", "url"=>"http://twitter.com/JazzyxDuran/status/461613068901154816", "source"=>"Twitter"}, {"contentid"=>"461612961803808768", "ldate"=>"Wed Apr 30 21:08:01 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461612961803808768", "source"=>"Twitter"}, {"contentid"=>"461612945760616448", "ldate"=>"Wed Apr 30 21:07:57 +0000 2014", "author"=>"California's Finest✨", "perferredUsername"=>"tiffanycharette", "url"=>"http://twitter.com/tiffanycharette/status/461612945760616448", "source"=>"Twitter"}, {"contentid"=>"461612914923696128", "ldate"=>"Wed Apr 30 21:07:49 +0000 2014", "author"=>"Eddy fernandes♛♛♛", "perferredUsername"=>"EddyFutsamba", "url"=>"http://twitter.com/EddyFutsamba/status/461612914923696128", "source"=>"Twitter"}, {"contentid"=>"461612899497431042", "ldate"=>"Wed Apr 30 21:07:46 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461612899497431042", "source"=>"Twitter"}, {"contentid"=>"461612896410435584", "ldate"=>"Wed Apr 30 21:07:45 +0000 2014", "author"=>"Marie McDermott", "perferredUsername"=>"DontknoCkMwa", "url"=>"http://twitter.com/DontknoCkMwa/status/461612896410435584", "source"=>"Twitter"}, {"contentid"=>"461612861584723968", "ldate"=>"Wed Apr 30 21:07:37 +0000 2014", "author"=>"LC Thatsit", "perferredUsername"=>"lcthatsit", "url"=>"http://twitter.com/lcthatsit/status/461612861584723968", "source"=>"Twitter"}, {"contentid"=>"461612858963275776", "ldate"=>"Wed Apr 30 21:07:36 +0000 2014", "author"=>"Gage Mcafee", "perferredUsername"=>"gage_mcafee33", "url"=>"http://twitter.com/gage_mcafee33/status/461612858963275776", "source"=>"Twitter"}, {"contentid"=>"461612816706060290", "ldate"=>"Wed Apr 30 21:07:26 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461612816706060290", "source"=>"Twitter"}, {"contentid"=>"461612750553493504", "ldate"=>"Wed Apr 30 21:07:10 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461612750553493504", "source"=>"Twitter"}, {"contentid"=>"461612714759299072", "ldate"=>"Wed Apr 30 21:07:02 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461612714759299072", "source"=>"Twitter"}, {"contentid"=>"461612646433714176", "ldate"=>"Wed Apr 30 21:06:45 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461612646433714176", "source"=>"Twitter"}, {"contentid"=>"461612609691607041", "ldate"=>"Wed Apr 30 21:06:37 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461612609691607041", "source"=>"Twitter"}, {"contentid"=>"461612501415632896", "ldate"=>"Wed Apr 30 21:06:11 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461612501415632896", "source"=>"Twitter"}, {"contentid"=>"461612397547900928", "ldate"=>"Wed Apr 30 21:05:46 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461612397547900928", "source"=>"Twitter"}, {"contentid"=>"461612378929393664", "ldate"=>"Wed Apr 30 21:05:42 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461612378929393664", "source"=>"Twitter"}, {"contentid"=>"461612360436707328", "ldate"=>"Wed Apr 30 21:05:37 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461612360436707328", "source"=>"Twitter"}, {"contentid"=>"461612347086606336", "ldate"=>"Wed Apr 30 21:05:34 +0000 2014", "author"=>"Jon Hochstat", "perferredUsername"=>"JHochstat", "url"=>"http://twitter.com/JHochstat/status/461612347086606336", "source"=>"Twitter"}, {"contentid"=>"461612343441362945", "ldate"=>"Wed Apr 30 21:05:33 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461612343441362945", "source"=>"Twitter"}, {"contentid"=>"461612321098694656", "ldate"=>"Wed Apr 30 21:05:28 +0000 2014", "author"=>"Solon Police", "perferredUsername"=>"SolonPolice", "url"=>"http://twitter.com/SolonPolice/status/461612321098694656", "source"=>"Twitter"}, {"contentid"=>"461612319647096832", "ldate"=>"Wed Apr 30 21:05:28 +0000 2014", "author"=>"Eth▲n", "perferredUsername"=>"Ethan_MM", "url"=>"http://twitter.com/Ethan_MM/status/461612319647096832", "source"=>"Twitter"}, {"contentid"=>"461612280388403200", "ldate"=>"Wed Apr 30 21:05:18 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461612280388403200", "source"=>"Twitter"}, {"contentid"=>"461612258494148608", "ldate"=>"Wed Apr 30 21:05:13 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461612258494148608", "source"=>"Twitter"}, {"contentid"=>"461612202135261184", "ldate"=>"Wed Apr 30 21:04:59 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461612202135261184", "source"=>"Twitter"}, {"contentid"=>"461612106719035392", "ldate"=>"Wed Apr 30 21:04:37 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461612106719035392", "source"=>"Twitter"}, {"contentid"=>"461612091556651008", "ldate"=>"Wed Apr 30 21:04:33 +0000 2014", "author"=>"Lauren Renick", "perferredUsername"=>"laurrenick", "url"=>"http://twitter.com/laurrenick/status/461612091556651008", "source"=>"Twitter"}, {"contentid"=>"461612085843988480", "ldate"=>"Wed Apr 30 21:04:32 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461612085843988480", "source"=>"Twitter"}, {"contentid"=>"461612034480541696", "ldate"=>"Wed Apr 30 21:04:20 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461612034480541696", "source"=>"Twitter"}, {"contentid"=>"461612015858253824", "ldate"=>"Wed Apr 30 21:04:15 +0000 2014", "author"=>"Big Beauty", "perferredUsername"=>"FF_Diva", "url"=>"http://twitter.com/FF_Diva/status/461612015858253824", "source"=>"Twitter"}, {"contentid"=>"461611930604425216", "ldate"=>"Wed Apr 30 21:03:55 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461611930604425216", "source"=>"Twitter"}, {"contentid"=>"461611857405435904", "ldate"=>"Wed Apr 30 21:03:37 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461611857405435904", "source"=>"Twitter"}, {"contentid"=>"461611836740087808", "ldate"=>"Wed Apr 30 21:03:32 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461611836740087808", "source"=>"Twitter"}, {"contentid"=>"461611683878666240", "ldate"=>"Wed Apr 30 21:02:56 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461611683878666240", "source"=>"Twitter"}, {"contentid"=>"461611657307774976", "ldate"=>"Wed Apr 30 21:02:50 +0000 2014", "author"=>"Morgan Kuehler", "perferredUsername"=>"Morgan_Kuehler", "url"=>"http://twitter.com/Morgan_Kuehler/status/461611657307774976", "source"=>"Twitter"}, {"contentid"=>"461611533663862784", "ldate"=>"Wed Apr 30 21:02:20 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461611533663862784", "source"=>"Twitter"}, {"contentid"=>"461611529994252288", "ldate"=>"Wed Apr 30 21:02:19 +0000 2014", "author"=>"Dwayne Bowers", "perferredUsername"=>"DwayniiBoo", "url"=>"http://twitter.com/DwayniiBoo/status/461611529994252288", "source"=>"Twitter"}, {"contentid"=>"461611526097358848", "ldate"=>"Wed Apr 30 21:02:18 +0000 2014", "author"=>"camron henley †", "perferredUsername"=>"_CamPaige_", "url"=>"http://twitter.com/_CamPaige_/status/461611526097358848", "source"=>"Twitter"}, {"contentid"=>"461611519310962688", "ldate"=>"Wed Apr 30 21:02:17 +0000 2014", "author"=>"CJ Johal", "perferredUsername"=>"cjsingh2013", "url"=>"http://twitter.com/cjsingh2013/status/461611519310962688", "source"=>"Twitter"}, {"contentid"=>"461611518249824256", "ldate"=>"Wed Apr 30 21:02:16 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461611518249824256", "source"=>"Twitter"}, {"contentid"=>"461611466240851969", "ldate"=>"Wed Apr 30 21:02:04 +0000 2014", "author"=>"Robin Carter", "perferredUsername"=>"rocknrobinva", "url"=>"http://twitter.com/rocknrobinva/status/461611466240851969", "source"=>"Twitter"}, {"contentid"=>"461611462834663424", "ldate"=>"Wed Apr 30 21:02:03 +0000 2014", "author"=>"Destiney Horton", "perferredUsername"=>"HortonDestiney", "url"=>"http://twitter.com/HortonDestiney/status/461611462834663424", "source"=>"Twitter"}, {"contentid"=>"461611350608060416", "ldate"=>"Wed Apr 30 21:01:36 +0000 2014", "author"=>"Ty", "perferredUsername"=>"we_got_haters", "url"=>"http://twitter.com/we_got_haters/status/461611350608060416", "source"=>"Twitter"}, {"contentid"=>"461611336133525504", "ldate"=>"Wed Apr 30 21:01:33 +0000 2014", "author"=>"#CWAM #IB", "perferredUsername"=>"molly_the_truth", "url"=>"http://twitter.com/molly_the_truth/status/461611336133525504", "source"=>"Twitter"}, {"contentid"=>"461611264905461761", "ldate"=>"Wed Apr 30 21:01:16 +0000 2014", "author"=>"JUSTIΠ βRΔSSΣΔUX", "perferredUsername"=>"_Jusstiinn", "url"=>"http://twitter.com/_Jusstiinn/status/461611264905461761", "source"=>"Twitter"}, {"contentid"=>"461611264616046592", "ldate"=>"Wed Apr 30 21:01:16 +0000 2014", "author"=>"Stephen Kolbe", "perferredUsername"=>"StephenKolbe", "url"=>"http://twitter.com/StephenKolbe/status/461611264616046592", "source"=>"Twitter"}, {"contentid"=>"461611246475694080", "ldate"=>"Wed Apr 30 21:01:12 +0000 2014", "author"=>"Pat the ice god", "perferredUsername"=>"Patrickj12345", "url"=>"http://twitter.com/Patrickj12345/status/461611246475694080", "source"=>"Twitter"}, {"contentid"=>"461611245829754880", "ldate"=>"Wed Apr 30 21:01:11 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461611245829754880", "source"=>"Twitter"}, {"contentid"=>"461611226431107073", "ldate"=>"Wed Apr 30 21:01:07 +0000 2014", "author"=>"Stephen Kolbe", "perferredUsername"=>"StephenKolbe", "url"=>"http://twitter.com/StephenKolbe/status/461611226431107073", "source"=>"Twitter"}, {"contentid"=>"461611163894030336", "ldate"=>"Wed Apr 30 21:00:52 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461611163894030336", "source"=>"Twitter"}, {"contentid"=>"461611154012639233", "ldate"=>"Wed Apr 30 21:00:50 +0000 2014", "author"=>"Brittany-ann", "perferredUsername"=>"Hay_Brittanyy", "url"=>"http://twitter.com/Hay_Brittanyy/status/461611154012639233", "source"=>"Twitter"}, {"contentid"=>"461611105488343040", "ldate"=>"Wed Apr 30 21:00:38 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461611105488343040", "source"=>"Twitter"}, {"contentid"=>"461611083199811585", "ldate"=>"Wed Apr 30 21:00:33 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461611083199811585", "source"=>"Twitter"}, {"contentid"=>"461611069350227968", "ldate"=>"Wed Apr 30 21:00:29 +0000 2014", "author"=>"Stephen Kolbe", "perferredUsername"=>"StephenKolbe", "url"=>"http://twitter.com/StephenKolbe/status/461611069350227968", "source"=>"Twitter"}, {"contentid"=>"461611050538774528", "ldate"=>"Wed Apr 30 21:00:25 +0000 2014", "author"=>"☼kayla☪", "perferredUsername"=>"vintage77kay", "url"=>"http://twitter.com/vintage77kay/status/461611050538774528", "source"=>"Twitter"}, {"contentid"=>"461611049351782401", "ldate"=>"Wed Apr 30 21:00:25 +0000 2014", "author"=>"Stephen Kolbe", "perferredUsername"=>"StephenKolbe", "url"=>"http://twitter.com/StephenKolbe/status/461611049351782401", "source"=>"Twitter"}, {"contentid"=>"461611048185757696", "ldate"=>"Wed Apr 30 21:00:24 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461611048185757696", "source"=>"Twitter"}, {"contentid"=>"461611039143251968", "ldate"=>"Wed Apr 30 21:00:22 +0000 2014", "author"=>"Alec Walker", "perferredUsername"=>"Alecw1983", "url"=>"http://twitter.com/Alecw1983/status/461611039143251968", "source"=>"Twitter"}, {"contentid"=>"461611026279301121", "ldate"=>"Wed Apr 30 21:00:19 +0000 2014", "author"=>"Jose Luis Rodriguez", "perferredUsername"=>"JRodRP", "url"=>"http://twitter.com/JRodRP/status/461611026279301121", "source"=>"Twitter"}, {"contentid"=>"461610961044918273", "ldate"=>"Wed Apr 30 21:00:04 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461610961044918273", "source"=>"Twitter"}, {"contentid"=>"461610936856363008", "ldate"=>"Wed Apr 30 20:59:58 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461610936856363008", "source"=>"Twitter"}, {"contentid"=>"461610914534285312", "ldate"=>"Wed Apr 30 20:59:53 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461610914534285312", "source"=>"Twitter"}, {"contentid"=>"461610809286590464", "ldate"=>"Wed Apr 30 20:59:27 +0000 2014", "author"=>"ShortyBlanco♊️", "perferredUsername"=>"IM_NIK_366", "url"=>"http://twitter.com/IM_NIK_366/status/461610809286590464", "source"=>"Twitter"}, {"contentid"=>"461610759358005248", "ldate"=>"Wed Apr 30 20:59:16 +0000 2014", "author"=>"Neil Kettle", "perferredUsername"=>"NeilKettle88", "url"=>"http://twitter.com/NeilKettle88/status/461610759358005248", "source"=>"Twitter"}, {"contentid"=>"461610723035336704", "ldate"=>"Wed Apr 30 20:59:07 +0000 2014", "author"=>"Tommy Cercena", "perferredUsername"=>"CercenaTommy", "url"=>"http://twitter.com/CercenaTommy/status/461610723035336704", "source"=>"Twitter"}, {"contentid"=>"461610718786097152", "ldate"=>"Wed Apr 30 20:59:06 +0000 2014", "author"=>"Vamoose Bus", "perferredUsername"=>"VamooseBus", "url"=>"http://twitter.com/VamooseBus/status/461610718786097152", "source"=>"Twitter"}, {"contentid"=>"461610694350491649", "ldate"=>"Wed Apr 30 20:59:00 +0000 2014", "author"=>"Feb.13th✨", "perferredUsername"=>"WhatsDa_Tei", "url"=>"http://twitter.com/WhatsDa_Tei/status/461610694350491649", "source"=>"Twitter"}, {"contentid"=>"461610686255493120", "ldate"=>"Wed Apr 30 20:58:58 +0000 2014", "author"=>"♊️ Easy G ", "perferredUsername"=>"MustB_JAM", "url"=>"http://twitter.com/MustB_JAM/status/461610686255493120", "source"=>"Twitter"}, {"contentid"=>"461610528062705664", "ldate"=>"Wed Apr 30 20:58:20 +0000 2014", "author"=>"IceJJ_watkins", "perferredUsername"=>"S_Denovous_W", "url"=>"http://twitter.com/S_Denovous_W/status/461610528062705664", "source"=>"Twitter"}, {"contentid"=>"461610512737132544", "ldate"=>"Wed Apr 30 20:58:17 +0000 2014", "author"=>"Hanigan, James", "perferredUsername"=>"jameshanigan", "url"=>"http://twitter.com/jameshanigan/status/461610512737132544", "source"=>"Twitter"}, {"contentid"=>"461610504184930304", "ldate"=>"Wed Apr 30 20:58:15 +0000 2014", "author"=>"Leako-Lin-Skii", "perferredUsername"=>"DaddyLeako___", "url"=>"http://twitter.com/DaddyLeako___/status/461610504184930304", "source"=>"Twitter"}, {"contentid"=>"461610404796305408", "ldate"=>"Wed Apr 30 20:57:51 +0000 2014", "author"=>"Maliciaaa", "perferredUsername"=>"maliciajade21", "url"=>"http://twitter.com/maliciajade21/status/461610404796305408", "source"=>"Twitter"}, {"contentid"=>"461610387905863680", "ldate"=>"Wed Apr 30 20:57:47 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461610387905863680", "source"=>"Twitter"}, {"contentid"=>"461610366967902209", "ldate"=>"Wed Apr 30 20:57:42 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461610366967902209", "source"=>"Twitter"}, {"contentid"=>"461610346478714880", "ldate"=>"Wed Apr 30 20:57:37 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461610346478714880", "source"=>"Twitter"}, {"contentid"=>"461610206238375937", "ldate"=>"Wed Apr 30 20:57:04 +0000 2014", "author"=>"Megan Welch", "perferredUsername"=>"m_welch2116", "url"=>"http://twitter.com/m_welch2116/status/461610206238375937", "source"=>"Twitter"}, {"contentid"=>"461610150391189504", "ldate"=>"Wed Apr 30 20:56:50 +0000 2014", "author"=>"Regina Puckett", "perferredUsername"=>"ReginaPucket", "url"=>"http://twitter.com/ReginaPucket/status/461610150391189504", "source"=>"Twitter"}]}, "requestid"=>"8cc9c484-c2a1-4585-9da6-9b6c2919c075"}
|
22
|
+
I, [2014-04-30T17:12:03.935849 #32088] INFO -- : Prediction loader waiting for scores ...
|
23
|
+
D, [2014-04-30T17:12:03.935886 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
24
|
+
D, [2014-04-30T17:27:00.993088 #32088] DEBUG -- : Adding posts for scout_id: 27
|
25
|
+
D, [2014-04-30T17:27:00.994236 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "The Daily Caller", body: "RT @ChuckGLP: Anheuser-Busch donated to these 2 Rep...", url: "http://twitter.com/DailyCaller/status/4616144554793...", source: "Twitter", sentiment: #<BigDecimal:6ec9298,'0.0',9(36)>, leadprob: #<BigDecimal:6ec9068,'0.4061882149 303099E0',18(45)>, notleadprob: #<BigDecimal:6ec8e38,'0.9660896780 658177E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461614455479361536", ldate: "2014-04-30 21:13:57", loadstamp: "2014-04-30 21:27:00", user_id: 7, scout_id: 27>
|
26
|
+
D, [2014-04-30T17:27:01.013914 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "jose victor guevara", body: "RT @ChuckGLP: Anheuser-Busch donated to these 2 Rep...", url: "http://twitter.com/guevaramelgar/status/46161465100...", source: "Twitter", sentiment: #<BigDecimal:6f30740,'0.0',9(36)>, leadprob: #<BigDecimal:6f30510,'0.4061882149 303099E0',18(45)>, notleadprob: #<BigDecimal:6f302e0,'0.9660896780 658177E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461614651005239296", ldate: "2014-04-30 21:14:43", loadstamp: "2014-04-30 21:27:00", user_id: 7, scout_id: 27>
|
27
|
+
D, [2014-04-30T17:27:01.030663 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Nick ", body: "RT @ChuckGLP: Anheuser-Busch donated to these 2 Rep...", url: "http://twitter.com/DCsmartguy/status/46161504084898...", source: "Twitter", sentiment: #<BigDecimal:6fa7c78,'0.0',9(36)>, leadprob: #<BigDecimal:6fa7a48,'0.4061882149 303099E0',18(45)>, notleadprob: #<BigDecimal:6fa7818,'0.9660896780 658177E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461615040848986112", ldate: "2014-04-30 21:16:16", loadstamp: "2014-04-30 21:27:00", user_id: 7, scout_id: 27>
|
28
|
+
D, [2014-04-30T17:27:01.047079 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Mark Czerniec", body: "More awkwardness all summer: One Republican has alr...", url: "http://twitter.com/MarkCzerniec/status/461616096324...", source: "Twitter", sentiment: #<BigDecimal:700f238,'0.0',9(36)>, leadprob: #<BigDecimal:700f008,'0.7960802118 186738E0',18(45)>, notleadprob: #<BigDecimal:700edd8,'0.8173149451 178257E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461616096324235264", ldate: "2014-04-30 21:20:28", loadstamp: "2014-04-30 21:27:00", user_id: 7, scout_id: 27>
|
29
|
+
D, [2014-04-30T17:27:01.063971 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: " Tante Gretchen", body: "RT @ChuckGLP: Anheuser-Busch donated to these 2 Rep...", url: "http://twitter.com/TanteGretchen/status/46161609866...", source: "Twitter", sentiment: #<BigDecimal:707e8b8,'0.0',9(36)>, leadprob: #<BigDecimal:707e688,'0.4061882149 303099E0',18(45)>, notleadprob: #<BigDecimal:707e458,'0.9660896780 658177E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461616098660458497", ldate: "2014-04-30 21:20:29", loadstamp: "2014-04-30 21:27:00", user_id: 7, scout_id: 27>
|
30
|
+
D, [2014-04-30T17:27:01.080635 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Pam Laycook", body: "RT @ChuckGLP: Anheuser-Busch donated to these 2 Rep...", url: "http://twitter.com/playcook/status/4616162980958085...", source: "Twitter", sentiment: #<BigDecimal:70e9f00,'0.0',9(36)>, leadprob: #<BigDecimal:70e9cd0,'0.4061882149 303099E0',18(45)>, notleadprob: #<BigDecimal:70e9aa0,'0.9660896780 658177E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461616298095808513", ldate: "2014-04-30 21:21:16", loadstamp: "2014-04-30 21:27:00", user_id: 7, scout_id: 27>
|
31
|
+
D, [2014-04-30T17:27:01.097223 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "David Bixenspan", body: "RT @SBNLukeThomas: Zuffa gave $100k to the Republic...", url: "http://twitter.com/davidbix/status/4616164796336742...", source: "Twitter", sentiment: #<BigDecimal:714d618,'0.0',9(36)>, leadprob: #<BigDecimal:714d3e8,'0.6891705022 490536E0',18(45)>, notleadprob: #<BigDecimal:714d1b8,'0.8790701624 413797E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461616479633674240", ldate: "2014-04-30 21:21:59", loadstamp: "2014-04-30 21:27:00", user_id: 7, scout_id: 27>
|
32
|
+
D, [2014-04-30T17:27:01.113873 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "M Soto", body: "RT @ChuckGLP: Anheuser-Busch donated to these 2 Rep...", url: "http://twitter.com/mbmsoto/status/46161738318282752...", source: "Twitter", sentiment: #<BigDecimal:71b4cf0,'0.0',9(36)>, leadprob: #<BigDecimal:71b4ac0,'0.4061882149 303099E0',18(45)>, notleadprob: #<BigDecimal:71b4890,'0.9660896780 658177E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461617383182827520", ldate: "2014-04-30 21:25:35", loadstamp: "2014-04-30 21:27:00", user_id: 7, scout_id: 27>
|
33
|
+
I, [2014-04-30T17:27:01.129726 #32088] INFO -- : Total Number of records: 8
|
34
|
+
I, [2014-04-30T17:27:01.129772 #32088] INFO -- : Total Number of records Not Loaded: 0
|
35
|
+
I, [2014-04-30T17:27:01.129802 #32088] INFO -- : Prediction loader waiting for scores ...
|
36
|
+
D, [2014-04-30T17:27:01.129832 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
37
|
+
W, [2014-04-30T17:27:02.082495 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"@gglamazon5000 I will when I get a chance till then it's rather \"oh\" or a quick text ..don't Wana be the last text I ever send while driving", "contentid"=>"461617541719523328"}, {"content"=>"RT @_SouthernBlonde: \"Date someone who will text you they love you at 2am & 9pm, someone who will let you change the station in the car whe…", "contentid"=>"461617513869373440"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461617472987082753"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461617456008953856"}, {"content"=>"Be safe ! Don't text and drive lol \"@xoxonikolexoxo: this rain really needs to chill tf out ὡ2ὡ1 I'm getting annoyed\"", "contentid"=>"461617374031257600"}, {"content"=>"lorddd . it pays not to text and drive ὢ6ὡ4ὡ3ὒB❌ὪB", "contentid"=>"461617364044247042"}, {"content"=>"RT @blackmagic4444: Seems like people snapchat and drive more than text and drive", "contentid"=>"461617331933040640"}, {"content"=>"@EmperorKabuto yeah I didnt want to text and drive", "contentid"=>"461617113187090433"}, {"content"=>"RT @_SouthernBlonde: \"Date someone who will text you they love you at 2am & 9pm, someone who will let you change the station in the car whe…", "contentid"=>"461617021760073729"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461616842264805376"}, {"content"=>"RT @gabrielledoug: Hey guyyss! So I took the pledge to never text & drive...have you?? Let's support @ATT to raise #ItcanWait awareness… ht…", "contentid"=>"461616779488657408"}, {"content"=>"you know what's really disrespectful. stupid little fuck faces that think it's ok to text during a driving seminar. you're there to (c)", "contentid"=>"461616762296217600"}, {"content"=>"RT @_SouthernBlonde: \"Date someone who will text you they love you at 2am & 9pm, someone who will let you change the station in the car whe…", "contentid"=>"461616649612054529"}, {"content"=>"I hate it when people text and drive.", "contentid"=>"461616167291863040"}, {"content"=>"RT @ChristinaCIM: Don't text and drive wait a minute stay alive. IT CAN WAIT!!!!", "contentid"=>"461615953793798144"}, {"content"=>"RT @JazzyxDuran: Don't text and drive people !!!!! Especially on a rainy day smh ὡ1ὡ1ὡ1ὡ1", "contentid"=>"461615935661809664"}, {"content"=>"First birthday text I get and it's from my driving instructor who taught me two years ago :) so lovely :)", "contentid"=>"461615859099004928"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461615829566914560"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461615671625781248"}, {"content"=>"A sad and painful reminder to not text while driving!!\nDriver posts Facebook update before dying in head-on collision http://t.co/3Kt7Pz46C9", "contentid"=>"461615496077398016"}, {"content"=>"If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461615470743805954"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461615469980430336"}, {"content"=>"If you think that you can text and drive, you could be dead wrong #TXTL8RIN", "contentid"=>"461615438276079616"}, {"content"=>"RT @MelanieShebel: It's not safe to text and drive! Drive Now. TXT L8R. #TXTL8RIN http://t.co/7hCF8ef8kG", "contentid"=>"461615346412052481"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461615331518078977"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461615326606921728"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461615305182027776"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461615099333996544"}, {"content"=>"Talking bout i must text them when i am going to drive", "contentid"=>"461615026374447104"}, {"content"=>"@TinaArgenTina i can't drive and text. Only tweet", "contentid"=>"461614867032850432"}, {"content"=>"Don't text and drive kids...https://t.co/vlv0bja7B6 RT: @DavidSmania", "contentid"=>"461614858010517504"}, {"content"=>"In order to survive, don’t text and drive #TXTL8RIN", "contentid"=>"461614839115571201"}, {"content"=>"Text on your own time, not while you are driving #TXTL8RIN", "contentid"=>"461614812414623744"}, {"content"=>"Drive now, text later #txtl8rin", "contentid"=>"461614692340080640"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461614661746835456"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461614661192790016"}, {"content"=>"RT @JazzyxDuran: Don't text and drive people !!!!! Especially on a rainy day smh ὡ1ὡ1ὡ1ὡ1", "contentid"=>"461614536924336129"}, {"content"=>"RT @jas_nicoleee: I really hate when people text & drive while I'm in the car with them or at all.. ὡ1", "contentid"=>"461614460135030784"}, {"content"=>"RT @_SouthernBlonde: \"Date someone who will text you they love you at 2am & 9pm, someone who will let you change the station in the car whe…", "contentid"=>"461614444364042240"}, {"content"=>"@LilyVanBuren -text- on way now x * getting in my car driving twitter speed to @LilyVanBuren apartment*", "contentid"=>"461614352916029440"}, {"content"=>"@DaNeesha_Bracey then don't ride with me lol mom told me about you driving like me now, just text me I have something to show you", "contentid"=>"461614352786014208"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461614319860744192"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461614207276838913"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461614190151491585"}, {"content"=>"If you think that you can text and drive, you are wrong #TXTL8RIN", "contentid"=>"461614154487717888"}, {"content"=>"If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461614125270175745"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461614067233595392"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461614040448794624"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461617541719523328", "ldate"=>"Wed Apr 30 21:26:13 +0000 2014", "author"=>"SLOW...", "perferredUsername"=>"J_Lord_", "url"=>"http://twitter.com/J_Lord_/status/461617541719523328", "source"=>"Twitter"}, {"contentid"=>"461617513869373440", "ldate"=>"Wed Apr 30 21:26:06 +0000 2014", "author"=>"Peter therien", "perferredUsername"=>"Pete_pete19", "url"=>"http://twitter.com/Pete_pete19/status/461617513869373440", "source"=>"Twitter"}, {"contentid"=>"461617472987082753", "ldate"=>"Wed Apr 30 21:25:56 +0000 2014", "author"=>"Valeria G", "perferredUsername"=>"vg_562", "url"=>"http://twitter.com/vg_562/status/461617472987082753", "source"=>"Twitter"}, {"contentid"=>"461617456008953856", "ldate"=>"Wed Apr 30 21:25:52 +0000 2014", "author"=>"Jada", "perferredUsername"=>"KickAddict_Jada", "url"=>"http://twitter.com/KickAddict_Jada/status/461617456008953856", "source"=>"Twitter"}, {"contentid"=>"461617374031257600", "ldate"=>"Wed Apr 30 21:25:33 +0000 2014", "author"=>"Chaunnn", "perferredUsername"=>"simplychaunnn", "url"=>"http://twitter.com/simplychaunnn/status/461617374031257600", "source"=>"Twitter"}, {"contentid"=>"461617364044247042", "ldate"=>"Wed Apr 30 21:25:30 +0000 2014", "author"=>"Who Ask'n ?", "perferredUsername"=>"SelfMade_Boss18", "url"=>"http://twitter.com/SelfMade_Boss18/status/461617364044247042", "source"=>"Twitter"}, {"contentid"=>"461617331933040640", "ldate"=>"Wed Apr 30 21:25:23 +0000 2014", "author"=>"Níìck", "perferredUsername"=>"NHatts97", "url"=>"http://twitter.com/NHatts97/status/461617331933040640", "source"=>"Twitter"}, {"contentid"=>"461617113187090433", "ldate"=>"Wed Apr 30 21:24:30 +0000 2014", "author"=>"kristin czerniak", "perferredUsername"=>"KLCCDP", "url"=>"http://twitter.com/KLCCDP/status/461617113187090433", "source"=>"Twitter"}, {"contentid"=>"461617021760073729", "ldate"=>"Wed Apr 30 21:24:09 +0000 2014", "author"=>"kels. ⚓", "perferredUsername"=>"kelseyreneeeee", "url"=>"http://twitter.com/kelseyreneeeee/status/461617021760073729", "source"=>"Twitter"}, {"contentid"=>"461616842264805376", "ldate"=>"Wed Apr 30 21:23:26 +0000 2014", "author"=>"Khalib ✊", "perferredUsername"=>"khalibwhitted", "url"=>"http://twitter.com/khalibwhitted/status/461616842264805376", "source"=>"Twitter"}, {"contentid"=>"461616779488657408", "ldate"=>"Wed Apr 30 21:23:11 +0000 2014", "author"=>"Democrat for Obama", "perferredUsername"=>"areyou0", "url"=>"http://twitter.com/areyou0/status/461616779488657408", "source"=>"Twitter"}, {"contentid"=>"461616762296217600", "ldate"=>"Wed Apr 30 21:23:07 +0000 2014", "author"=>"stumpy/alex", "perferredUsername"=>"Alexander_61297", "url"=>"http://twitter.com/Alexander_61297/status/461616762296217600", "source"=>"Twitter"}, {"contentid"=>"461616649612054529", "ldate"=>"Wed Apr 30 21:22:40 +0000 2014", "author"=>"N I K K I", "perferredUsername"=>"kiki_2112", "url"=>"http://twitter.com/kiki_2112/status/461616649612054529", "source"=>"Twitter"}, {"contentid"=>"461616167291863040", "ldate"=>"Wed Apr 30 21:20:45 +0000 2014", "author"=>"Zak Barker (^S^)", "perferredUsername"=>"therealnotzakb", "url"=>"http://twitter.com/therealnotzakb/status/461616167291863040", "source"=>"Twitter"}, {"contentid"=>"461615953793798144", "ldate"=>"Wed Apr 30 21:19:54 +0000 2014", "author"=>"4/7 FOLLOWED!!", "perferredUsername"=>"JustLoveCimBand", "url"=>"http://twitter.com/JustLoveCimBand/status/461615953793798144", "source"=>"Twitter"}, {"contentid"=>"461615935661809664", "ldate"=>"Wed Apr 30 21:19:50 +0000 2014", "author"=>"Melissa Guzman", "perferredUsername"=>"Untameable_xO", "url"=>"http://twitter.com/Untameable_xO/status/461615935661809664", "source"=>"Twitter"}, {"contentid"=>"461615859099004928", "ldate"=>"Wed Apr 30 21:19:31 +0000 2014", "author"=>"Rosie Dewberry", "perferredUsername"=>"rosie_dewberry", "url"=>"http://twitter.com/rosie_dewberry/status/461615859099004928", "source"=>"Twitter"}, {"contentid"=>"461615829566914560", "ldate"=>"Wed Apr 30 21:19:24 +0000 2014", "author"=>"Sarah Goff", "perferredUsername"=>"SrrrahIssabella", "url"=>"http://twitter.com/SrrrahIssabella/status/461615829566914560", "source"=>"Twitter"}, {"contentid"=>"461615671625781248", "ldate"=>"Wed Apr 30 21:18:47 +0000 2014", "author"=>"Morgan Mae", "perferredUsername"=>"morgan_mae15", "url"=>"http://twitter.com/morgan_mae15/status/461615671625781248", "source"=>"Twitter"}, {"contentid"=>"461615496077398016", "ldate"=>"Wed Apr 30 21:18:05 +0000 2014", "author"=>"lori jean", "perferredUsername"=>"sunflowerlori", "url"=>"http://twitter.com/sunflowerlori/status/461615496077398016", "source"=>"Twitter"}, {"contentid"=>"461615470743805954", "ldate"=>"Wed Apr 30 21:17:59 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461615470743805954", "source"=>"Twitter"}, {"contentid"=>"461615469980430336", "ldate"=>"Wed Apr 30 21:17:59 +0000 2014", "author"=>" Rashad", "perferredUsername"=>"Abreezyy", "url"=>"http://twitter.com/Abreezyy/status/461615469980430336", "source"=>"Twitter"}, {"contentid"=>"461615438276079616", "ldate"=>"Wed Apr 30 21:17:51 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461615438276079616", "source"=>"Twitter"}, {"contentid"=>"461615346412052481", "ldate"=>"Wed Apr 30 21:17:29 +0000 2014", "author"=>"Joe Buchel", "perferredUsername"=>"joebuchel", "url"=>"http://twitter.com/joebuchel/status/461615346412052481", "source"=>"Twitter"}, {"contentid"=>"461615331518078977", "ldate"=>"Wed Apr 30 21:17:26 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461615331518078977", "source"=>"Twitter"}, {"contentid"=>"461615326606921728", "ldate"=>"Wed Apr 30 21:17:24 +0000 2014", "author"=>"Danny", "perferredUsername"=>"DannyH145", "url"=>"http://twitter.com/DannyH145/status/461615326606921728", "source"=>"Twitter"}, {"contentid"=>"461615305182027776", "ldate"=>"Wed Apr 30 21:17:19 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461615305182027776", "source"=>"Twitter"}, {"contentid"=>"461615099333996544", "ldate"=>"Wed Apr 30 21:16:30 +0000 2014", "author"=>"Cheda Yuon", "perferredUsername"=>"ChedaYuon", "url"=>"http://twitter.com/ChedaYuon/status/461615099333996544", "source"=>"Twitter"}, {"contentid"=>"461615026374447104", "ldate"=>"Wed Apr 30 21:16:13 +0000 2014", "author"=>".::\\/::.Ai.::\\/::.", "perferredUsername"=>"candy_and_sugar", "url"=>"http://twitter.com/candy_and_sugar/status/461615026374447104", "source"=>"Twitter"}, {"contentid"=>"461614867032850432", "ldate"=>"Wed Apr 30 21:15:35 +0000 2014", "author"=>"Brad Smolen", "perferredUsername"=>"smolen_brad", "url"=>"http://twitter.com/smolen_brad/status/461614867032850432", "source"=>"Twitter"}, {"contentid"=>"461614858010517504", "ldate"=>"Wed Apr 30 21:15:33 +0000 2014", "author"=>"Caleb McIntyre", "perferredUsername"=>"CalebMcIntyre_", "url"=>"http://twitter.com/CalebMcIntyre_/status/461614858010517504", "source"=>"Twitter"}, {"contentid"=>"461614839115571201", "ldate"=>"Wed Apr 30 21:15:28 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461614839115571201", "source"=>"Twitter"}, {"contentid"=>"461614812414623744", "ldate"=>"Wed Apr 30 21:15:22 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461614812414623744", "source"=>"Twitter"}, {"contentid"=>"461614692340080640", "ldate"=>"Wed Apr 30 21:14:53 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461614692340080640", "source"=>"Twitter"}, {"contentid"=>"461614661746835456", "ldate"=>"Wed Apr 30 21:14:46 +0000 2014", "author"=>"shelby donnelly♡", "perferredUsername"=>"_ShelbyDonnelly", "url"=>"http://twitter.com/_ShelbyDonnelly/status/461614661746835456", "source"=>"Twitter"}, {"contentid"=>"461614661192790016", "ldate"=>"Wed Apr 30 21:14:46 +0000 2014", "author"=>"⚓Brittany Gaither⚓", "perferredUsername"=>"bkay12707", "url"=>"http://twitter.com/bkay12707/status/461614661192790016", "source"=>"Twitter"}, {"contentid"=>"461614536924336129", "ldate"=>"Wed Apr 30 21:14:16 +0000 2014", "author"=>"David G", "perferredUsername"=>"dagdaman", "url"=>"http://twitter.com/dagdaman/status/461614536924336129", "source"=>"Twitter"}, {"contentid"=>"461614460135030784", "ldate"=>"Wed Apr 30 21:13:58 +0000 2014", "author"=>"Fatima", "perferredUsername"=>"Prodigy_durr", "url"=>"http://twitter.com/Prodigy_durr/status/461614460135030784", "source"=>"Twitter"}, {"contentid"=>"461614444364042240", "ldate"=>"Wed Apr 30 21:13:54 +0000 2014", "author"=>"Morgan Kelsey Fowler", "perferredUsername"=>"moekelsey", "url"=>"http://twitter.com/moekelsey/status/461614444364042240", "source"=>"Twitter"}, {"contentid"=>"461614352916029440", "ldate"=>"Wed Apr 30 21:13:32 +0000 2014", "author"=>"Luke Sawyer", "perferredUsername"=>"GEH_LukeSawyer", "url"=>"http://twitter.com/GEH_LukeSawyer/status/461614352916029440", "source"=>"Twitter"}, {"contentid"=>"461614352786014208", "ldate"=>"Wed Apr 30 21:13:32 +0000 2014", "author"=>"kwando bracey", "perferredUsername"=>"kwando_bracey", "url"=>"http://twitter.com/kwando_bracey/status/461614352786014208", "source"=>"Twitter"}, {"contentid"=>"461614319860744192", "ldate"=>"Wed Apr 30 21:13:24 +0000 2014", "author"=>"Benita Salazar", "perferredUsername"=>"BenitaSalazar10", "url"=>"http://twitter.com/BenitaSalazar10/status/461614319860744192", "source"=>"Twitter"}, {"contentid"=>"461614207276838913", "ldate"=>"Wed Apr 30 21:12:58 +0000 2014", "author"=>"Denzell Dotson", "perferredUsername"=>"K1NGDOTSON", "url"=>"http://twitter.com/K1NGDOTSON/status/461614207276838913", "source"=>"Twitter"}, {"contentid"=>"461614190151491585", "ldate"=>"Wed Apr 30 21:12:53 +0000 2014", "author"=>"Y.M.L.B", "perferredUsername"=>"JUNEtaughther", "url"=>"http://twitter.com/JUNEtaughther/status/461614190151491585", "source"=>"Twitter"}, {"contentid"=>"461614154487717888", "ldate"=>"Wed Apr 30 21:12:45 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461614154487717888", "source"=>"Twitter"}, {"contentid"=>"461614125270175745", "ldate"=>"Wed Apr 30 21:12:38 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461614125270175745", "source"=>"Twitter"}, {"contentid"=>"461614067233595392", "ldate"=>"Wed Apr 30 21:12:24 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461614067233595392", "source"=>"Twitter"}, {"contentid"=>"461614040448794624", "ldate"=>"Wed Apr 30 21:12:18 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461614040448794624", "source"=>"Twitter"}]}, "requestid"=>"944645a1-7c4c-47f0-ab09-bf36d716fa1e"}
|
38
|
+
I, [2014-04-30T17:27:02.082592 #32088] INFO -- : Prediction loader waiting for scores ...
|
39
|
+
D, [2014-04-30T17:27:02.082629 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
40
|
+
D, [2014-04-30T17:42:01.080682 #32088] DEBUG -- : Adding posts for scout_id: 27
|
41
|
+
D, [2014-04-30T17:42:01.080761 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
42
|
+
D, [2014-04-30T17:42:01.088727 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "HORSE TORNADO", body: "god fuck off I don't think Florida needs conservati...", url: "http://twitter.com/lavibookmans/status/461618501632...", source: "Twitter", sentiment: #<BigDecimal:7273060,'0.0',9(36)>, leadprob: #<BigDecimal:7272e30,'0.6736188959 10806E0',18(45)>, notleadprob: #<BigDecimal:7272c00,'0.8772557170 977603E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461618501632147456", ldate: "2014-04-30 21:30:01", loadstamp: "2014-04-30 21:42:01", user_id: 7, scout_id: 27>
|
43
|
+
D, [2014-04-30T17:42:01.111349 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Ima Patriot", body: "FL Governor Poll: Crist 48, Scott 38: Rick Scott (R...", url: "http://twitter.com/libertyhacking/status/4616185451...", source: "Twitter", sentiment: #<BigDecimal:72de590,'0.0',9(36)>, leadprob: #<BigDecimal:72de360,'0.7191206623 061387E0',18(45)>, notleadprob: #<BigDecimal:72de130,'0.8815894788 048897E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461618545193799680", ldate: "2014-04-30 21:30:12", loadstamp: "2014-04-30 21:42:01", user_id: 7, scout_id: 27>
|
44
|
+
D, [2014-04-30T17:42:01.127881 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: " Fine$$e ", body: "RT @nawfwood_tri99a: @DevoCrooks I can't talk my ne...", url: "http://twitter.com/DevoCrooks/status/46161882258407...", source: "Twitter", sentiment: #<BigDecimal:734da58,'0.0',9(36)>, leadprob: #<BigDecimal:734d828,'0.8355767147 009194E0',18(45)>, notleadprob: #<BigDecimal:734d5f8,'0.6419151237 531434E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461618822584078336", ldate: "2014-04-30 21:31:18", loadstamp: "2014-04-30 21:42:01", user_id: 7, scout_id: 27>
|
45
|
+
D, [2014-04-30T17:42:01.144582 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "MillieFLRealtor", body: "#Florida EverBank cited as a 'growth leader' in nat...", url: "http://twitter.com/MillieGil/status/461619894245543...", source: "Twitter", sentiment: #<BigDecimal:73b5090,'0.0',9(36)>, leadprob: #<BigDecimal:73b4e60,'0.9466409929 45236E0',18(45)>, notleadprob: #<BigDecimal:73b4c30,'0.6338048606 766785E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461619894245543938", ldate: "2014-04-30 21:35:33", loadstamp: "2014-04-30 21:42:01", user_id: 7, scout_id: 27>
|
46
|
+
D, [2014-04-30T17:42:01.161099 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Full Lates News", body: "Republican David Jolly Defeats Democrat Alex Sink I...", url: "http://twitter.com/FullLatesNews3/status/4616207088...", source: "Twitter", sentiment: #<BigDecimal:741c6f0,'0.0',9(36)>, leadprob: #<BigDecimal:741c4c0,'0.6730169016 655186E0',18(45)>, notleadprob: #<BigDecimal:741c290,'0.9267394750 759193E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461620708876226560", ldate: "2014-04-30 21:38:48", loadstamp: "2014-04-30 21:42:01", user_id: 7, scout_id: 27>
|
47
|
+
D, [2014-04-30T17:42:01.178011 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Bradley Burtner", body: "RT @RepTedDeutch: Graphic: Here's what #1010Means f...", url: "http://twitter.com/BradBurtner/status/4616211068356...", source: "Twitter", sentiment: #<BigDecimal:748f1a0,'0.0',9(36)>, leadprob: #<BigDecimal:748ef70,'0.8275129795 447093E0',18(45)>, notleadprob: #<BigDecimal:748ed40,'0.6267857952 108301E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461621106835611648", ldate: "2014-04-30 21:40:23", loadstamp: "2014-04-30 21:42:01", user_id: 7, scout_id: 27>
|
48
|
+
D, [2014-04-30T17:42:01.194735 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Jax Florida", body: "RT @JaxBizExchange: #Jacksonville EverBank cited as...", url: "http://twitter.com/jax_florida/status/4616211383352...", source: "Twitter", sentiment: #<BigDecimal:74f6738,'0.0',9(36)>, leadprob: #<BigDecimal:74f6508,'0.6367513870 768262E0',18(45)>, notleadprob: #<BigDecimal:74f62d8,'0.8073544948 96839E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461621138335215616", ldate: "2014-04-30 21:40:30", loadstamp: "2014-04-30 21:42:01", user_id: 7, scout_id: 27>
|
49
|
+
I, [2014-04-30T17:42:01.210481 #32088] INFO -- : Total Number of records: 7
|
50
|
+
I, [2014-04-30T17:42:01.210526 #32088] INFO -- : Total Number of records Not Loaded: 0
|
51
|
+
I, [2014-04-30T17:42:01.210556 #32088] INFO -- : Prediction loader waiting for scores ...
|
52
|
+
D, [2014-04-30T17:42:01.210598 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
53
|
+
W, [2014-04-30T17:42:02.361089 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"RT @DVLAgovuk: Motorists are warned about driving licence renewal reminders received by text or email, more details at: http://t.co/QbaXq2b…", "contentid"=>"461621335064850432"}, {"content"=>"RT @MelanieShebel: It's not safe to text and drive! Drive Now. TXT L8R. #TXTL8RIN http://t.co/7hCF8ef8kG", "contentid"=>"461621317708820480"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461621142063558656"}, {"content"=>"Extremely bored and have a long drive. Someone should text/DM me. Ὀ1", "contentid"=>"461621129828761601"}, {"content"=>"I don't understand how people text and drive. I can't even text and walk.", "contentid"=>"461621051932155905"}, {"content"=>"RT @USAA: It's the last day of #DistractedDriving Awareness Month – have you taken the pledge to never text and drive? http://t.co/quV3wceX…", "contentid"=>"461621046500528128"}, {"content"=>"RT @MelanieShebel: It's not safe to text and drive! Drive Now. TXT L8R. #TXTL8RIN http://t.co/7hCF8ef8kG", "contentid"=>"461621008794132480"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461621000073789440"}, {"content"=>"RT @_ItCanWait: Do you take the pledge not to text and drive? #TXTL8RIN Let us know !", "contentid"=>"461620795089776640"}, {"content"=>"RT @TeensDriveSmart: RT @DNTTXTNDRIV Not everyone should text and walk. No one should text and drive. #TXTL8RIN", "contentid"=>"461620775674339328"}, {"content"=>"RT @Hannah__Kline: Stop the violence. Don't text and drive. #TXTL8RIN http://t.co/X00vq3h5um", "contentid"=>"461620755290021888"}, {"content"=>"RT @14caldwellj: Do you want to continue having a skull and bones? Then you shouldn't text and drive. #TXTL8RIN http://t.co/iwjwPPrVz3", "contentid"=>"461620737657171968"}, {"content"=>"gotta stay in the middle lane during traffic.... I almost hit the guard rail tryna text and drive.", "contentid"=>"461620705612677120"}, {"content"=>"DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrapped around a treeἳ2ὡE", "contentid"=>"461620612666888194"}, {"content"=>"You wouldn't practice karate and drive, would you? So why text and drive? Drive now, text later. #TXTL8RIN", "contentid"=>"461620580350193665"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461620562293305345"}, {"content"=>"RT @Mattress89_: I'd much rather live another day than have to send that ONE text while driving.", "contentid"=>"461620467548577792"}, {"content"=>"@AmyReid_ I'm off deary so text me when you're up and I'll come round if you want ὠA we can go a wee drive, but not too far cause petrol ὠ2", "contentid"=>"461620454747537408"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461620426506899456"}, {"content"=>"my dad called me as I was driving to tell me to be careful & not to text & drive then yelled at me for being on the phone..when HE called ME", "contentid"=>"461620303060144128"}, {"content"=>"@Mixhellesamante I LOVE YOU! I'm heading out for work now but I'll be free later, love! Don't text n driveὠ2", "contentid"=>"461620293811728384"}, {"content"=>"Don't text and drive #YOLO", "contentid"=>"461620240460177408"}, {"content"=>"RT @MikeSaenz_: I don't always text and drive but when I do I use Swype lol", "contentid"=>"461620240451776512"}, {"content"=>"RT @SPFSADD: This is the cutest way to say don't text and drive!\nRetweet for an another iPad entry! http://t.co/JlwdcSz1f4", "contentid"=>"461620189357162496"}, {"content"=>"...do not text & drive my friends.", "contentid"=>"461620163520245760"}, {"content"=>"RT @mrskohl: Voice to Text in Drive looks amazing! #WDPslam", "contentid"=>"461620140828672001"}, {"content"=>"I can not text and drive because I always forget to look up", "contentid"=>"461620053020909569"}, {"content"=>"RT @ESTFamiIy: I don't do a lot of promotional stuff on here, but don't text and drive guys. I learned this lesson firsthand last October. …", "contentid"=>"461619859399245824"}, {"content"=>"My dad can barely text & he's attempting to text while driving. Noooo just no", "contentid"=>"461619775643213824"}, {"content"=>"RT @SolonPolice: Driving distracted creates a crash risk 23 times worse than driving not distracted. Arrive alive, don't text and drive! #D…", "contentid"=>"461619744169148417"}, {"content"=>"One thing worse than seeing ppl text & drive are cell phones in the gym...this says it all https://t.co/FsULcKXEC4 http://t.co/e4zF5GIhSo", "contentid"=>"461619728403148800"}, {"content"=>"Don't text and drive. http://t.co/UmTBajLYqv", "contentid"=>"461619653232451585"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461619644919345154"}, {"content"=>"So, are all movers hours late for their scheduled time? And they apparently text and drive? Or is it just all the movers I work with?", "contentid"=>"461619642159480832"}, {"content"=>"RT @TylerGirton1: If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461619603370549248"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461619580268314624"}, {"content"=>"I'd much rather live another day than have to send that ONE text while driving.", "contentid"=>"461619505886928896"}, {"content"=>"it's getting far too close to my driving text n my provisional is still not here", "contentid"=>"461619495967395840"}, {"content"=>"Voice to Text in Drive looks amazing! #WDPslam", "contentid"=>"461619365788385281"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461619342539386880"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461619102620979200"}, {"content"=>"@joeteague3rd text me and explain when you get done \"driving\" lol", "contentid"=>"461619026938957825"}, {"content"=>"I can't stand people who drink & drive, text & drive or just don't pay attention. You will wish you would've when you die or kill someone.", "contentid"=>"461618793153056768"}, {"content"=>"Please read and then share with anyone you know who may text or post while driving. This is so sad. http://t.co/yVXKtot5hF", "contentid"=>"461618467058098176"}, {"content"=>"RT @jacobcassidy125: Already dressed, in the car and driving to my game, then we get a text \"game cancled\" this is ridiculous", "contentid"=>"461618447051268096"}, {"content"=>"if you text & drive & justify it by saying ur good at it, then go eat a dick bc ur endangering so many people's lives & ur a shitty person", "contentid"=>"461618406270042112"}, {"content"=>"I never text when I'm driving cuz that little screen is too hard to read when I'm drunk.", "contentid"=>"461618404345257984"}, {"content"=>"I don't always text and drive but when I do I use Swype lol", "contentid"=>"461618348996845568"}, {"content"=>"SMS Car Accident .\n\nTHIS IS WHY YOU SHOULD NEVERR TEXT WHILE YOU'RE DRIVING !!! \n\n\u1F4F5\u1F4F5\u1F4F5\u1F4F5\n\nhttp://t.co/3eU87NXMzj", "contentid"=>"461618343196491776"}, {"content"=>"Already dressed, in the car and driving to my game, then we get a text \"game cancled\" this is ridiculous", "contentid"=>"461618047686828032"}, {"content"=>"“@IZrainingmen: \"I was literally half a Virgin when I met him\" @SLeanBack” can you not.... Text while driving?", "contentid"=>"461617993668386816"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461617770774269952"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461621335064850432", "ldate"=>"Wed Apr 30 21:41:17 +0000 2014", "author"=>"EVO Driver Training", "perferredUsername"=>"EVODT2013", "url"=>"http://twitter.com/EVODT2013/status/461621335064850432", "source"=>"Twitter"}, {"contentid"=>"461621317708820480", "ldate"=>"Wed Apr 30 21:41:13 +0000 2014", "author"=>"MartinWinWeb", "perferredUsername"=>"martinwinweb", "url"=>"http://twitter.com/martinwinweb/status/461621317708820480", "source"=>"Twitter"}, {"contentid"=>"461621142063558656", "ldate"=>"Wed Apr 30 21:40:31 +0000 2014", "author"=>"Ashley ", "perferredUsername"=>"andudley_", "url"=>"http://twitter.com/andudley_/status/461621142063558656", "source"=>"Twitter"}, {"contentid"=>"461621129828761601", "ldate"=>"Wed Apr 30 21:40:28 +0000 2014", "author"=>"Dawn of the Daryl", "perferredUsername"=>"DarylDixon_DOTD", "url"=>"http://twitter.com/DarylDixon_DOTD/status/461621129828761601", "source"=>"Twitter"}, {"contentid"=>"461621051932155905", "ldate"=>"Wed Apr 30 21:40:09 +0000 2014", "author"=>"Cilla", "perferredUsername"=>"CillaPena", "url"=>"http://twitter.com/CillaPena/status/461621051932155905", "source"=>"Twitter"}, {"contentid"=>"461621046500528128", "ldate"=>"Wed Apr 30 21:40:08 +0000 2014", "author"=>"Stephanie Cameron", "perferredUsername"=>"Ellamaebooks", "url"=>"http://twitter.com/Ellamaebooks/status/461621046500528128", "source"=>"Twitter"}, {"contentid"=>"461621008794132480", "ldate"=>"Wed Apr 30 21:39:59 +0000 2014", "author"=>"Abel Pardo Fernández", "perferredUsername"=>"wsiabelpardo", "url"=>"http://twitter.com/wsiabelpardo/status/461621008794132480", "source"=>"Twitter"}, {"contentid"=>"461621000073789440", "ldate"=>"Wed Apr 30 21:39:57 +0000 2014", "author"=>"", "perferredUsername"=>"maluesi", "url"=>"http://twitter.com/maluesi/status/461621000073789440", "source"=>"Twitter"}, {"contentid"=>"461620795089776640", "ldate"=>"Wed Apr 30 21:39:08 +0000 2014", "author"=>"Chris Berns", "perferredUsername"=>"ChrisLBerns", "url"=>"http://twitter.com/ChrisLBerns/status/461620795089776640", "source"=>"Twitter"}, {"contentid"=>"461620775674339328", "ldate"=>"Wed Apr 30 21:39:04 +0000 2014", "author"=>"Chris Berns", "perferredUsername"=>"ChrisLBerns", "url"=>"http://twitter.com/ChrisLBerns/status/461620775674339328", "source"=>"Twitter"}, {"contentid"=>"461620755290021888", "ldate"=>"Wed Apr 30 21:38:59 +0000 2014", "author"=>"Chris Berns", "perferredUsername"=>"ChrisLBerns", "url"=>"http://twitter.com/ChrisLBerns/status/461620755290021888", "source"=>"Twitter"}, {"contentid"=>"461620737657171968", "ldate"=>"Wed Apr 30 21:38:55 +0000 2014", "author"=>"Chris Berns", "perferredUsername"=>"ChrisLBerns", "url"=>"http://twitter.com/ChrisLBerns/status/461620737657171968", "source"=>"Twitter"}, {"contentid"=>"461620705612677120", "ldate"=>"Wed Apr 30 21:38:47 +0000 2014", "author"=>"D'Né", "perferredUsername"=>"Marca_Polo_", "url"=>"http://twitter.com/Marca_Polo_/status/461620705612677120", "source"=>"Twitter"}, {"contentid"=>"461620612666888194", "ldate"=>"Wed Apr 30 21:38:25 +0000 2014", "author"=>"InLoveWithFood (; ♡", "perferredUsername"=>"AriannaSwaqq", "url"=>"http://twitter.com/AriannaSwaqq/status/461620612666888194", "source"=>"Twitter"}, {"contentid"=>"461620580350193665", "ldate"=>"Wed Apr 30 21:38:17 +0000 2014", "author"=>"JBG", "perferredUsername"=>"JBGMedia", "url"=>"http://twitter.com/JBGMedia/status/461620580350193665", "source"=>"Twitter"}, {"contentid"=>"461620562293305345", "ldate"=>"Wed Apr 30 21:38:13 +0000 2014", "author"=>"David McGee", "perferredUsername"=>"davidmcgee1996", "url"=>"http://twitter.com/davidmcgee1996/status/461620562293305345", "source"=>"Twitter"}, {"contentid"=>"461620467548577792", "ldate"=>"Wed Apr 30 21:37:50 +0000 2014", "author"=>"Ashley Howell", "perferredUsername"=>"ahowell15", "url"=>"http://twitter.com/ahowell15/status/461620467548577792", "source"=>"Twitter"}, {"contentid"=>"461620454747537408", "ldate"=>"Wed Apr 30 21:37:47 +0000 2014", "author"=>"Kerry Steward", "perferredUsername"=>"Gublerette__", "url"=>"http://twitter.com/Gublerette__/status/461620454747537408", "source"=>"Twitter"}, {"contentid"=>"461620426506899456", "ldate"=>"Wed Apr 30 21:37:40 +0000 2014", "author"=>"Ron", "perferredUsername"=>"Ronnielee95", "url"=>"http://twitter.com/Ronnielee95/status/461620426506899456", "source"=>"Twitter"}, {"contentid"=>"461620303060144128", "ldate"=>"Wed Apr 30 21:37:11 +0000 2014", "author"=>"hannah", "perferredUsername"=>"HAANNNN_ah", "url"=>"http://twitter.com/HAANNNN_ah/status/461620303060144128", "source"=>"Twitter"}, {"contentid"=>"461620293811728384", "ldate"=>"Wed Apr 30 21:37:09 +0000 2014", "author"=>"Darien B. Wales", "perferredUsername"=>"dariberryx", "url"=>"http://twitter.com/dariberryx/status/461620293811728384", "source"=>"Twitter"}, {"contentid"=>"461620240460177408", "ldate"=>"Wed Apr 30 21:36:56 +0000 2014", "author"=>"Aaron Yazzie", "perferredUsername"=>"YazzieSays", "url"=>"http://twitter.com/YazzieSays/status/461620240460177408", "source"=>"Twitter"}, {"contentid"=>"461620240451776512", "ldate"=>"Wed Apr 30 21:36:56 +0000 2014", "author"=>"ÐRÜ", "perferredUsername"=>"Drewskeezz", "url"=>"http://twitter.com/Drewskeezz/status/461620240451776512", "source"=>"Twitter"}, {"contentid"=>"461620189357162496", "ldate"=>"Wed Apr 30 21:36:44 +0000 2014", "author"=>"Jessica DeBellis", "perferredUsername"=>"jessicadodgedb", "url"=>"http://twitter.com/jessicadodgedb/status/461620189357162496", "source"=>"Twitter"}, {"contentid"=>"461620163520245760", "ldate"=>"Wed Apr 30 21:36:38 +0000 2014", "author"=>"Eli Hyatt", "perferredUsername"=>"EFlySolo", "url"=>"http://twitter.com/EFlySolo/status/461620163520245760", "source"=>"Twitter"}, {"contentid"=>"461620140828672001", "ldate"=>"Wed Apr 30 21:36:32 +0000 2014", "author"=>"Klikaclass", "perferredUsername"=>"KlikaClass", "url"=>"http://twitter.com/KlikaClass/status/461620140828672001", "source"=>"Twitter"}, {"contentid"=>"461620053020909569", "ldate"=>"Wed Apr 30 21:36:11 +0000 2014", "author"=>"politely rude.", "perferredUsername"=>"MarkeshaDeann", "url"=>"http://twitter.com/MarkeshaDeann/status/461620053020909569", "source"=>"Twitter"}, {"contentid"=>"461619859399245824", "ldate"=>"Wed Apr 30 21:35:25 +0000 2014", "author"=>"Chris Berns", "perferredUsername"=>"ChrisLBerns", "url"=>"http://twitter.com/ChrisLBerns/status/461619859399245824", "source"=>"Twitter"}, {"contentid"=>"461619775643213824", "ldate"=>"Wed Apr 30 21:35:05 +0000 2014", "author"=>"dynamite", "perferredUsername"=>"dreababy_", "url"=>"http://twitter.com/dreababy_/status/461619775643213824", "source"=>"Twitter"}, {"contentid"=>"461619744169148417", "ldate"=>"Wed Apr 30 21:34:58 +0000 2014", "author"=>"Solon, Ohio", "perferredUsername"=>"Solon_Ohio", "url"=>"http://twitter.com/Solon_Ohio/status/461619744169148417", "source"=>"Twitter"}, {"contentid"=>"461619728403148800", "ldate"=>"Wed Apr 30 21:34:54 +0000 2014", "author"=>"VJAY #33", "perferredUsername"=>"Vjay_gunshow", "url"=>"http://twitter.com/Vjay_gunshow/status/461619728403148800", "source"=>"Twitter"}, {"contentid"=>"461619653232451585", "ldate"=>"Wed Apr 30 21:34:36 +0000 2014", "author"=>"TeamPremiere", "perferredUsername"=>"TeamPremiere", "url"=>"http://twitter.com/TeamPremiere/status/461619653232451585", "source"=>"Twitter"}, {"contentid"=>"461619644919345154", "ldate"=>"Wed Apr 30 21:34:34 +0000 2014", "author"=>"KILLUMINATI", "perferredUsername"=>"Kilvm_", "url"=>"http://twitter.com/Kilvm_/status/461619644919345154", "source"=>"Twitter"}, {"contentid"=>"461619642159480832", "ldate"=>"Wed Apr 30 21:34:33 +0000 2014", "author"=>"Kim Horcher", "perferredUsername"=>"kimscorcher", "url"=>"http://twitter.com/kimscorcher/status/461619642159480832", "source"=>"Twitter"}, {"contentid"=>"461619603370549248", "ldate"=>"Wed Apr 30 21:34:24 +0000 2014", "author"=>"Chris Berns", "perferredUsername"=>"ChrisLBerns", "url"=>"http://twitter.com/ChrisLBerns/status/461619603370549248", "source"=>"Twitter"}, {"contentid"=>"461619580268314624", "ldate"=>"Wed Apr 30 21:34:19 +0000 2014", "author"=>"Kayla Sajor", "perferredUsername"=>"kaylasajor", "url"=>"http://twitter.com/kaylasajor/status/461619580268314624", "source"=>"Twitter"}, {"contentid"=>"461619505886928896", "ldate"=>"Wed Apr 30 21:34:01 +0000 2014", "author"=>"Matty Ice ", "perferredUsername"=>"Mattress89_", "url"=>"http://twitter.com/Mattress89_/status/461619505886928896", "source"=>"Twitter"}, {"contentid"=>"461619495967395840", "ldate"=>"Wed Apr 30 21:33:58 +0000 2014", "author"=>"ron ron", "perferredUsername"=>"ahronReilly1", "url"=>"http://twitter.com/ahronReilly1/status/461619495967395840", "source"=>"Twitter"}, {"contentid"=>"461619365788385281", "ldate"=>"Wed Apr 30 21:33:27 +0000 2014", "author"=>"Mrs Kohl", "perferredUsername"=>"mrskohl", "url"=>"http://twitter.com/mrskohl/status/461619365788385281", "source"=>"Twitter"}, {"contentid"=>"461619342539386880", "ldate"=>"Wed Apr 30 21:33:22 +0000 2014", "author"=>"Kaitlyn Lachance", "perferredUsername"=>"Kaitlyn12429457", "url"=>"http://twitter.com/Kaitlyn12429457/status/461619342539386880", "source"=>"Twitter"}, {"contentid"=>"461619102620979200", "ldate"=>"Wed Apr 30 21:32:25 +0000 2014", "author"=>"Magaly ", "perferredUsername"=>"orozco__16", "url"=>"http://twitter.com/orozco__16/status/461619102620979200", "source"=>"Twitter"}, {"contentid"=>"461619026938957825", "ldate"=>"Wed Apr 30 21:32:07 +0000 2014", "author"=>"Duke Nukem ", "perferredUsername"=>"Snappy_Dan", "url"=>"http://twitter.com/Snappy_Dan/status/461619026938957825", "source"=>"Twitter"}, {"contentid"=>"461618793153056768", "ldate"=>"Wed Apr 30 21:31:11 +0000 2014", "author"=>"Mermaid ☯", "perferredUsername"=>"blaze4bettadayz", "url"=>"http://twitter.com/blaze4bettadayz/status/461618793153056768", "source"=>"Twitter"}, {"contentid"=>"461618467058098176", "ldate"=>"Wed Apr 30 21:29:53 +0000 2014", "author"=>"Julia Dyer", "perferredUsername"=>"mulberrymoods", "url"=>"http://twitter.com/mulberrymoods/status/461618467058098176", "source"=>"Twitter"}, {"contentid"=>"461618447051268096", "ldate"=>"Wed Apr 30 21:29:48 +0000 2014", "author"=>"Jake Travis", "perferredUsername"=>"Jake_Travis27", "url"=>"http://twitter.com/Jake_Travis27/status/461618447051268096", "source"=>"Twitter"}, {"contentid"=>"461618406270042112", "ldate"=>"Wed Apr 30 21:29:39 +0000 2014", "author"=>"《《 Dylan Amanda《《", "perferredUsername"=>"DylanAmandaaa", "url"=>"http://twitter.com/DylanAmandaaa/status/461618406270042112", "source"=>"Twitter"}, {"contentid"=>"461618404345257984", "ldate"=>"Wed Apr 30 21:29:38 +0000 2014", "author"=>"Cory?", "perferredUsername"=>"poketfulonothin", "url"=>"http://twitter.com/poketfulonothin/status/461618404345257984", "source"=>"Twitter"}, {"contentid"=>"461618348996845568", "ldate"=>"Wed Apr 30 21:29:25 +0000 2014", "author"=>"Mike Saenz", "perferredUsername"=>"MikeSaenz_", "url"=>"http://twitter.com/MikeSaenz_/status/461618348996845568", "source"=>"Twitter"}, {"contentid"=>"461618343196491776", "ldate"=>"Wed Apr 30 21:29:24 +0000 2014", "author"=>"مناير.", "perferredUsername"=>"Manayer_otb", "url"=>"http://twitter.com/Manayer_otb/status/461618343196491776", "source"=>"Twitter"}, {"contentid"=>"461618047686828032", "ldate"=>"Wed Apr 30 21:28:13 +0000 2014", "author"=>"Jacob Cassidy", "perferredUsername"=>"jacobcassidy125", "url"=>"http://twitter.com/jacobcassidy125/status/461618047686828032", "source"=>"Twitter"}, {"contentid"=>"461617993668386816", "ldate"=>"Wed Apr 30 21:28:00 +0000 2014", "author"=>"SLeanBack", "perferredUsername"=>"SLeanBack", "url"=>"http://twitter.com/SLeanBack/status/461617993668386816", "source"=>"Twitter"}, {"contentid"=>"461617770774269952", "ldate"=>"Wed Apr 30 21:27:07 +0000 2014", "author"=>"Emma Lou", "perferredUsername"=>"EmmaRicard", "url"=>"http://twitter.com/EmmaRicard/status/461617770774269952", "source"=>"Twitter"}]}, "requestid"=>"47d2d715-f12a-459f-9319-e7815266179f"}
|
54
|
+
I, [2014-04-30T17:42:02.361185 #32088] INFO -- : Prediction loader waiting for scores ...
|
55
|
+
D, [2014-04-30T17:42:02.361220 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
56
|
+
D, [2014-04-30T17:57:01.176806 #32088] DEBUG -- : Adding posts for scout_id: 27
|
57
|
+
D, [2014-04-30T17:57:01.177946 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Full Lates News", body: "Republican David Jolly Defeats Democrat Alex Sink I...", url: "http://twitter.com/FullLatesNews3/status/4616225348...", source: "Twitter", sentiment: #<BigDecimal:75ab250,'0.0',9(36)>, leadprob: #<BigDecimal:75aaf80,'0.6730169016 655186E0',18(45)>, notleadprob: #<BigDecimal:75aad50,'0.9267394750 759193E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461622534815764481", ldate: "2014-04-30 21:46:03", loadstamp: "2014-04-30 21:57:01", user_id: 7, scout_id: 27>
|
58
|
+
D, [2014-04-30T17:57:01.200573 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "#ABWisdom", body: "RT @Mozi_N: Florida can thank Republican Jeb Bush a...", url: "http://twitter.com/adbridgeforth/status/46162308832...", source: "Twitter", sentiment: #<BigDecimal:75e2610,'0.0',9(36)>, leadprob: #<BigDecimal:75e23e0,'0.7440362496 888129E0',18(45)>, notleadprob: #<BigDecimal:75e21b0,'0.9669060893 444905E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461623088325464065", ldate: "2014-04-30 21:48:15", loadstamp: "2014-04-30 21:57:01", user_id: 7, scout_id: 27>
|
59
|
+
D, [2014-04-30T17:57:01.217122 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Chef Taz", body: "RT @Mozi_N: Florida can thank Republican Jeb Bush a...", url: "http://twitter.com/cantdance2it/status/461623417176...", source: "Twitter", sentiment: #<BigDecimal:7645a08,'0.0',9(36)>, leadprob: #<BigDecimal:76457b0,'0.7440362496 888129E0',18(45)>, notleadprob: #<BigDecimal:7645580,'0.9669060893 444905E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461623417176092672", ldate: "2014-04-30 21:49:33", loadstamp: "2014-04-30 21:57:01", user_id: 7, scout_id: 27>
|
60
|
+
D, [2014-04-30T17:57:01.250651 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: " WeCanVoteThemOut", body: "RT @Mozi_N: Florida can thank Republican Jeb Bush a...", url: "http://twitter.com/patticar/status/4616234202542981...", source: "Twitter", sentiment: #<BigDecimal:76b1028,'0.0',9(36)>, leadprob: #<BigDecimal:76b0df8,'0.7440362496 888129E0',18(45)>, notleadprob: #<BigDecimal:76b0bc8,'0.9669060893 444905E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461623420254298112", ldate: "2014-04-30 21:49:34", loadstamp: "2014-04-30 21:57:01", user_id: 7, scout_id: 27>
|
61
|
+
D, [2014-04-30T17:57:01.267290 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "jack cesare", body: "WE HAVE TO GET RID OF THE REPUBLICAN PARTY- ARE ON ...", url: "http://twitter.com/jcesare2005/status/4616234451520...", source: "Twitter", sentiment: #<BigDecimal:7994308,'0.0',9(36)>, leadprob: #<BigDecimal:79940b0,'0.8408224141 547513E0',18(45)>, notleadprob: #<BigDecimal:799eb00,'0.7414795296 343467E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461623445152092160", ldate: "2014-04-30 21:49:40", loadstamp: "2014-04-30 21:57:01", user_id: 7, scout_id: 27>
|
62
|
+
D, [2014-04-30T17:57:01.283898 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "carmenvellon", body: "RT @Mozi_N: Florida can thank Republican Jeb Bush a...", url: "http://twitter.com/carmenvellon/status/461623570297...", source: "Twitter", sentiment: #<BigDecimal:7a07a88,'0.0',9(36)>, leadprob: #<BigDecimal:7a07858,'0.7440362496 888129E0',18(45)>, notleadprob: #<BigDecimal:7a07600,'0.9669060893 444905E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461623570297552896", ldate: "2014-04-30 21:50:10", loadstamp: "2014-04-30 21:57:01", user_id: 7, scout_id: 27>
|
63
|
+
D, [2014-04-30T17:57:01.300532 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Political Ω", body: "RT @Mozi_N: Florida can thank Republican Jeb Bush a...", url: "http://twitter.com/Politi_QUE/status/46162365058449...", source: "Twitter", sentiment: #<BigDecimal:7776fd0,'0.0',9(36)>, leadprob: #<BigDecimal:7776da0,'0.7440362496 888129E0',18(45)>, notleadprob: #<BigDecimal:7776b48,'0.9669060893 444905E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461623650584494081", ldate: "2014-04-30 21:50:29", loadstamp: "2014-04-30 21:57:01", user_id: 7, scout_id: 27>
|
64
|
+
D, [2014-04-30T17:57:01.317082 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Fred Rotondaro", body: "RT @Mozi_N: Florida can thank Republican Jeb Bush a...", url: "http://twitter.com/PapaRaspa/status/461623972065738...", source: "Twitter", sentiment: #<BigDecimal:77de6d0,'0.0',9(36)>, leadprob: #<BigDecimal:77de4a0,'0.7440362496 888129E0',18(45)>, notleadprob: #<BigDecimal:77de220,'0.9669060893 444905E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461623972065738753", ldate: "2014-04-30 21:51:46", loadstamp: "2014-04-30 21:57:01", user_id: 7, scout_id: 27>
|
65
|
+
D, [2014-04-30T17:57:01.333773 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Full Lates News", body: "Republican David Jolly Defeats Democrat Alex Sink I...", url: "http://twitter.com/FullLatesNews3/status/4616243734...", source: "Twitter", sentiment: #<BigDecimal:7841eb0,'0.0',9(36)>, leadprob: #<BigDecimal:7841c80,'0.6730169016 655186E0',18(45)>, notleadprob: #<BigDecimal:7841988,'0.9267394750 759193E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461624373460234240", ldate: "2014-04-30 21:53:21", loadstamp: "2014-04-30 21:57:01", user_id: 7, scout_id: 27>
|
66
|
+
I, [2014-04-30T17:57:01.349643 #32088] INFO -- : Total Number of records: 9
|
67
|
+
I, [2014-04-30T17:57:01.349688 #32088] INFO -- : Total Number of records Not Loaded: 0
|
68
|
+
I, [2014-04-30T17:57:01.349719 #32088] INFO -- : Prediction loader waiting for scores ...
|
69
|
+
D, [2014-04-30T17:57:01.349748 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
70
|
+
W, [2014-04-30T17:57:01.819831 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461625238305116160"}, {"content"=>"Someone please text me before I drive myself to the point if insanity because your stupidity is on my mind ὒB", "contentid"=>"461625188057358336"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461625186744152064"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461625033270382592"}, {"content"=>"If I can't text and drive, can I tweet and drive?", "contentid"=>"461624860867715072"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461624856828981248"}, {"content"=>"@macmtpt we'll these came out a year ago. And you for wanting to be a cop should know how unsafe it is to text and drive so u should be", "contentid"=>"461624708601896960"}, {"content"=>"Really enjoying this driveὠDὄF Text me ?ὡ8", "contentid"=>"461624614590750720"}, {"content"=>"@simon_helson Feels like a text adventure minus the text. You click the installer. A drive mounts. There is an icon. There are no exits.", "contentid"=>"461624482281840640"}, {"content"=>"@mikeyflo24 @WillYuumm haha I'll text and drive then look up and don't remember driving for the last 3 miles...", "contentid"=>"461624481333538816"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461624454284460032"}, {"content"=>"It disgusts me how many people text and drive.", "contentid"=>"461624314563805184"}, {"content"=>"\"honk if you love jesus, text and drive if you wanna meet him\" ὠ2 these presentations are hilarious.", "contentid"=>"461624310734405632"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461623965405179904"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461623918340874240"}, {"content"=>"RT @kitchens_h: I wanna know why people seem to think it's only teenagers that text and drive", "contentid"=>"461623897704906752"}, {"content"=>"Dawg! if you cant text & drive dont do it!!!", "contentid"=>"461623792629194752"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461623578107342848"}, {"content"=>"I wanna know why people seem to think it's only teenagers that text and drive", "contentid"=>"461623574889910273"}, {"content"=>"@HRHPM @jayvert i don't text and drive cause i don't want mom knowing my final moments were typing about how much i want kiefer sutherland", "contentid"=>"461623135528570880"}, {"content"=>"RT @_SouthernBlonde: \"Date someone who will text you they love you at 2am & 9pm, someone who will let you change the station in the car whe…", "contentid"=>"461622913561800704"}, {"content"=>"RT @madisontaylor48: my face when people text and drive #TXTL8RIN http://t.co/lS98iXHAff", "contentid"=>"461622903767695360"}, {"content"=>"I've sent my dad a lovely text message for when he gets back at like 2 in the morning then has to drive from Manchester to Middlesbroughὠ2", "contentid"=>"461622460325310464"}, {"content"=>"RT @KLCCDP: @EmperorKabuto yeah I didnt want to text and drive", "contentid"=>"461622391446069249"}, {"content"=>"\"@lcthatsit: if u cant fuckin drive n text then dont fuckin drive n text! shit slowing up damn traffic\"", "contentid"=>"461622332423823361"}, {"content"=>"If you're going to text & drive, do it without swerving. Otherwise it can wait.", "contentid"=>"461621927699021824"}, {"content"=>"@domi_AUT dont text and drive", "contentid"=>"461621685058551809"}, {"content"=>"RT @rysox80: Don't text and drive. In your case also don't breathe, open your eyes, or use the brakes and drive.", "contentid"=>"461621503117647872"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461625238305116160", "ldate"=>"Wed Apr 30 21:56:48 +0000 2014", "author"=>"", "perferredUsername"=>"goldnarry", "url"=>"http://twitter.com/goldnarry/status/461625238305116160", "source"=>"Twitter"}, {"contentid"=>"461625188057358336", "ldate"=>"Wed Apr 30 21:56:36 +0000 2014", "author"=>"Hayleeeeeee✌️", "perferredUsername"=>"hayleemarie99", "url"=>"http://twitter.com/hayleemarie99/status/461625188057358336", "source"=>"Twitter"}, {"contentid"=>"461625186744152064", "ldate"=>"Wed Apr 30 21:56:35 +0000 2014", "author"=>"syrine // 144", "perferredUsername"=>"gummyzarry", "url"=>"http://twitter.com/gummyzarry/status/461625186744152064", "source"=>"Twitter"}, {"contentid"=>"461625033270382592", "ldate"=>"Wed Apr 30 21:55:59 +0000 2014", "author"=>"ИᎥℓᎠᗩ✩", "perferredUsername"=>"NildaNilly", "url"=>"http://twitter.com/NildaNilly/status/461625033270382592", "source"=>"Twitter"}, {"contentid"=>"461624860867715072", "ldate"=>"Wed Apr 30 21:55:18 +0000 2014", "author"=>"Paul Walker", "perferredUsername"=>"I_Am_PaulWalker", "url"=>"http://twitter.com/I_Am_PaulWalker/status/461624860867715072", "source"=>"Twitter"}, {"contentid"=>"461624856828981248", "ldate"=>"Wed Apr 30 21:55:17 +0000 2014", "author"=>"E M M A.", "perferredUsername"=>"xblamestylesx", "url"=>"http://twitter.com/xblamestylesx/status/461624856828981248", "source"=>"Twitter"}, {"contentid"=>"461624708601896960", "ldate"=>"Wed Apr 30 21:54:41 +0000 2014", "author"=>"Jocelyn", "perferredUsername"=>"Jocjoc_92", "url"=>"http://twitter.com/Jocjoc_92/status/461624708601896960", "source"=>"Twitter"}, {"contentid"=>"461624614590750720", "ldate"=>"Wed Apr 30 21:54:19 +0000 2014", "author"=>"Yaanaa ✌️", "perferredUsername"=>"mianavillasana", "url"=>"http://twitter.com/mianavillasana/status/461624614590750720", "source"=>"Twitter"}, {"contentid"=>"461624482281840640", "ldate"=>"Wed Apr 30 21:53:47 +0000 2014", "author"=>"Zach Bagnall", "perferredUsername"=>"yemble", "url"=>"http://twitter.com/yemble/status/461624482281840640", "source"=>"Twitter"}, {"contentid"=>"461624481333538816", "ldate"=>"Wed Apr 30 21:53:47 +0000 2014", "author"=>"GeNA", "perferredUsername"=>"GenaBarrea", "url"=>"http://twitter.com/GenaBarrea/status/461624481333538816", "source"=>"Twitter"}, {"contentid"=>"461624454284460032", "ldate"=>"Wed Apr 30 21:53:41 +0000 2014", "author"=>"Tonia Robinson", "perferredUsername"=>"robton4482", "url"=>"http://twitter.com/robton4482/status/461624454284460032", "source"=>"Twitter"}, {"contentid"=>"461624314563805184", "ldate"=>"Wed Apr 30 21:53:07 +0000 2014", "author"=>"Lorenzo", "perferredUsername"=>"lspurrier8", "url"=>"http://twitter.com/lspurrier8/status/461624314563805184", "source"=>"Twitter"}, {"contentid"=>"461624310734405632", "ldate"=>"Wed Apr 30 21:53:06 +0000 2014", "author"=>"Dora", "perferredUsername"=>"Dd0raa", "url"=>"http://twitter.com/Dd0raa/status/461624310734405632", "source"=>"Twitter"}, {"contentid"=>"461623965405179904", "ldate"=>"Wed Apr 30 21:51:44 +0000 2014", "author"=>"H", "perferredUsername"=>"hkhk82", "url"=>"http://twitter.com/hkhk82/status/461623965405179904", "source"=>"Twitter"}, {"contentid"=>"461623918340874240", "ldate"=>"Wed Apr 30 21:51:33 +0000 2014", "author"=>"gerrard", "perferredUsername"=>"gerrygrace3", "url"=>"http://twitter.com/gerrygrace3/status/461623918340874240", "source"=>"Twitter"}, {"contentid"=>"461623897704906752", "ldate"=>"Wed Apr 30 21:51:28 +0000 2014", "author"=>"Kaylee.", "perferredUsername"=>"PrincessKayleeB", "url"=>"http://twitter.com/PrincessKayleeB/status/461623897704906752", "source"=>"Twitter"}, {"contentid"=>"461623792629194752", "ldate"=>"Wed Apr 30 21:51:03 +0000 2014", "author"=>"veebee", "perferredUsername"=>"_queenveee", "url"=>"http://twitter.com/_queenveee/status/461623792629194752", "source"=>"Twitter"}, {"contentid"=>"461623578107342848", "ldate"=>"Wed Apr 30 21:50:12 +0000 2014", "author"=>"30 DAYS", "perferredUsername"=>"nouisisperfect", "url"=>"http://twitter.com/nouisisperfect/status/461623578107342848", "source"=>"Twitter"}, {"contentid"=>"461623574889910273", "ldate"=>"Wed Apr 30 21:50:11 +0000 2014", "author"=>"haley.", "perferredUsername"=>"kitchens_h", "url"=>"http://twitter.com/kitchens_h/status/461623574889910273", "source"=>"Twitter"}, {"contentid"=>"461623135528570880", "ldate"=>"Wed Apr 30 21:48:26 +0000 2014", "author"=>"I'MMMMM THE BEST", "perferredUsername"=>"VegetaMonologs", "url"=>"http://twitter.com/VegetaMonologs/status/461623135528570880", "source"=>"Twitter"}, {"contentid"=>"461622913561800704", "ldate"=>"Wed Apr 30 21:47:33 +0000 2014", "author"=>"Savannah ♡", "perferredUsername"=>"vannahhh____", "url"=>"http://twitter.com/vannahhh____/status/461622913561800704", "source"=>"Twitter"}, {"contentid"=>"461622903767695360", "ldate"=>"Wed Apr 30 21:47:31 +0000 2014", "author"=>"Chris Berns", "perferredUsername"=>"ChrisLBerns", "url"=>"http://twitter.com/ChrisLBerns/status/461622903767695360", "source"=>"Twitter"}, {"contentid"=>"461622460325310464", "ldate"=>"Wed Apr 30 21:45:45 +0000 2014", "author"=>"Arielle", "perferredUsername"=>"AriellePrior", "url"=>"http://twitter.com/AriellePrior/status/461622460325310464", "source"=>"Twitter"}, {"contentid"=>"461622391446069249", "ldate"=>"Wed Apr 30 21:45:29 +0000 2014", "author"=>"el capitan", "perferredUsername"=>"fuckthebauhaus", "url"=>"http://twitter.com/fuckthebauhaus/status/461622391446069249", "source"=>"Twitter"}, {"contentid"=>"461622332423823361", "ldate"=>"Wed Apr 30 21:45:15 +0000 2014", "author"=>"Lady Ankh", "perferredUsername"=>"unoankh", "url"=>"http://twitter.com/unoankh/status/461622332423823361", "source"=>"Twitter"}, {"contentid"=>"461621927699021824", "ldate"=>"Wed Apr 30 21:43:38 +0000 2014", "author"=>"B. Will", "perferredUsername"=>"BGreat_", "url"=>"http://twitter.com/BGreat_/status/461621927699021824", "source"=>"Twitter"}, {"contentid"=>"461621685058551809", "ldate"=>"Wed Apr 30 21:42:40 +0000 2014", "author"=>"Kitten ", "perferredUsername"=>"dongjirat", "url"=>"http://twitter.com/dongjirat/status/461621685058551809", "source"=>"Twitter"}, {"contentid"=>"461621503117647872", "ldate"=>"Wed Apr 30 21:41:57 +0000 2014", "author"=>"Stacy ", "perferredUsername"=>"staceaustin", "url"=>"http://twitter.com/staceaustin/status/461621503117647872", "source"=>"Twitter"}]}, "requestid"=>"1beca0a6-fe92-4719-aee8-ba55eff2f018"}
|
71
|
+
I, [2014-04-30T17:57:01.819920 #32088] INFO -- : Prediction loader waiting for scores ...
|
72
|
+
D, [2014-04-30T17:57:01.819957 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
73
|
+
D, [2014-04-30T18:12:01.342215 #32088] DEBUG -- : Adding posts for scout_id: 27
|
74
|
+
D, [2014-04-30T18:12:01.342290 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
75
|
+
D, [2014-04-30T18:12:01.350338 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Randy Caparoso", body: "Yet we fear that it will be mostly Republican wing ...", url: "http://twitter.com/RCaparoso/status/461626751387324...", source: "Twitter", sentiment: #<BigDecimal:7916e30,'0.0',9(36)>, leadprob: #<BigDecimal:7916a98,'0.8112106606 558843E0',18(45)>, notleadprob: #<BigDecimal:7916868,'0.8600416441 378801E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461626751387324416", ldate: "2014-04-30 22:02:48", loadstamp: "2014-04-30 22:12:01", user_id: 7, scout_id: 27>
|
76
|
+
D, [2014-04-30T18:12:01.364562 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Le Chat Noire", body: "RT @RCaparoso: Yet we fear that it will be mostly R...", url: "http://twitter.com/LeChatNoire4/status/461627581637...", source: "Twitter", sentiment: #<BigDecimal:7a5e130,'0.0',9(36)>, leadprob: #<BigDecimal:7a5df00,'0.6489953009 717573E0',18(45)>, notleadprob: #<BigDecimal:7a5dcd0,'0.9182657465 096854E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461627581637591040", ldate: "2014-04-30 22:06:06", loadstamp: "2014-04-30 22:12:01", user_id: 7, scout_id: 27>
|
77
|
+
I, [2014-04-30T18:12:01.380617 #32088] INFO -- : Total Number of records: 2
|
78
|
+
I, [2014-04-30T18:12:01.380864 #32088] INFO -- : Total Number of records Not Loaded: 0
|
79
|
+
I, [2014-04-30T18:12:01.380946 #32088] INFO -- : Prediction loader waiting for scores ...
|
80
|
+
D, [2014-04-30T18:12:01.380993 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
81
|
+
W, [2014-04-30T18:12:02.353193 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"Driving down to ft Lauderdale there's a sign that says \"YOLO don't text & drive\" whaackkkk how many old folks know what Yolo is ?", "contentid"=>"461629021286322176"}, {"content"=>"Attention Basha High School Students: do not text and drive, especially in the parking lot. You already suck enough at driving.", "contentid"=>"461628998141755393"}, {"content"=>"me to mike: I don't text you drive!\nme: tweets nonstop while driving", "contentid"=>"461628817967448064"}, {"content"=>"@vasteph @MSDIRTYVA ὣ4ὣ4ὣ4ὣ4 jus make sure you don't text and drive", "contentid"=>"461628764250972161"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461628710693527553"}, {"content"=>"RT @MelanieShebel: It's not safe to text and drive! Drive Now. TXT L8R. #TXTL8RIN http://t.co/7hCF8ef8kG", "contentid"=>"461628681975496704"}, {"content"=>"@Cousin_Lu pledge to not text and drive", "contentid"=>"461628557014609920"}, {"content"=>"RT @KDOTHQ: 1/4 of teens respond to a text message one or more times they drive. #distracteddriving #justdrive", "contentid"=>"461628464445919232"}, {"content"=>"I text and drive entirely too much", "contentid"=>"461628424503955456"}, {"content"=>"RT @yankeepipher: 2024:\ntext messages are replaced with tupac holograms\ndon't pac and drive, they'll say\nc a l i f o r n i a knows how to p…", "contentid"=>"461628424117694464"}, {"content"=>"Ladies and gentleman this is not the day to text and drive", "contentid"=>"461628216340656128"}, {"content"=>"@Mike_Neumeier okay well we'll see if i'm even in the mood to drive i'll text you later", "contentid"=>"461628214540918784"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461627989550051328"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461627922986438656"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461627831311552512"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461627490532737024"}, {"content"=>"RT @the__real__jb: it's illegal to text and drive but it's completely legal to solve a rubix cube while driving", "contentid"=>"461627458752495618"}, {"content"=>"all this dumb b does is text and drive while complaining about pple who text and drive (my mother)", "contentid"=>"461627420723150849"}, {"content"=>"it's illegal to text and drive but it's completely legal to solve a rubix cube while driving", "contentid"=>"461627289059328000"}, {"content"=>"RT @Hannah__Kline: Don't be like Tom Haverford. Don't text and drive. #seriouslythough #TXTL8RIN http://t.co/5VZMScl6kT", "contentid"=>"461626980568694784"}, {"content"=>"RT @Hannah__Kline: @SocramOrravan and I were featured in the paper today. He was my designated texter. Drive now, text later. #TXTL8RIN htt…", "contentid"=>"461626869935140864"}, {"content"=>"RT @Hannah__Kline: Arrive alive, don't text and drive. #TXTL8RIN", "contentid"=>"461626837391527937"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461626808048549888"}, {"content"=>"RT @Hannah__Kline: Don't risk your life for something that can wait. Drive now, text later. #itcanwait #TXTL8RIN http://t.co/MFMa11QhLy", "contentid"=>"461626805007294464"}, {"content"=>"RT @SPFSADD: This is the cutest way to say don't text and drive!\nRetweet for an another iPad entry! http://t.co/JlwdcSz1f4", "contentid"=>"461626700359823361"}, {"content"=>"RT @Hannah__Kline: Stop the violence. Don't text and drive. #TXTL8RIN http://t.co/X00vq3h5um", "contentid"=>"461626699986120704"}, {"content"=>"@KatGregory24 I can do any time so just text me when your out and I'll drive up x", "contentid"=>"461626473364070400"}, {"content"=>"\"I'm driving I can't talk so ill text you\" great logic sis", "contentid"=>"461626239254413312"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461626149286596608"}, {"content"=>"I swear I see more adults text while driving then teenagers!! #notus #setanexample #dontlectureme ✌️", "contentid"=>"461626095842783232"}, {"content"=>"765-639-2515!\nText me for the address, try to carpool! I'll be driving so be ready to pile into my… http://t.co/2Z53FdfL0f", "contentid"=>"461626085198008320"}, {"content"=>"everyone text me bc denver has work & im gunna be driving all night", "contentid"=>"461625941450440705"}, {"content"=>"RT @USAA: It's the last day of #DistractedDriving Awareness Month – have you taken the pledge to never text and drive? http://t.co/quV3wceX…", "contentid"=>"461625917182189568"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461625572331102208"}, {"content"=>"Rjthink you can beat the Peugeot rcz in a tweetrace. Show us what you're made of to win a text drive weekend #RCZRace http://t.co/0GwY7bFMVh", "contentid"=>"461625567943864320"}, {"content"=>"RT @Nvqueeee: I cant text and drive tbh my last words would probably be dumb af", "contentid"=>"461625396593950720"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461625394102534145"}, {"content"=>"NeveR call me or text me while you're driving please ὤFὢ5", "contentid"=>"461625377803096065"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461629021286322176", "ldate"=>"Wed Apr 30 22:11:49 +0000 2014", "author"=>"pXl", "perferredUsername"=>"zelpxx", "url"=>"http://twitter.com/zelpxx/status/461629021286322176", "source"=>"Twitter"}, {"contentid"=>"461628998141755393", "ldate"=>"Wed Apr 30 22:11:44 +0000 2014", "author"=>"Tall Oak", "perferredUsername"=>"breedingphily", "url"=>"http://twitter.com/breedingphily/status/461628998141755393", "source"=>"Twitter"}, {"contentid"=>"461628817967448064", "ldate"=>"Wed Apr 30 22:11:01 +0000 2014", "author"=>"toonami slut", "perferredUsername"=>"paigeroderiques", "url"=>"http://twitter.com/paigeroderiques/status/461628817967448064", "source"=>"Twitter"}, {"contentid"=>"461628764250972161", "ldate"=>"Wed Apr 30 22:10:48 +0000 2014", "author"=>"Cougar Hunter", "perferredUsername"=>"Rude757", "url"=>"http://twitter.com/Rude757/status/461628764250972161", "source"=>"Twitter"}, {"contentid"=>"461628710693527553", "ldate"=>"Wed Apr 30 22:10:35 +0000 2014", "author"=>"Elizabeth Kreilein", "perferredUsername"=>"EKreilein", "url"=>"http://twitter.com/EKreilein/status/461628710693527553", "source"=>"Twitter"}, {"contentid"=>"461628681975496704", "ldate"=>"Wed Apr 30 22:10:29 +0000 2014", "author"=>"♥ Kavalon ♥ ", "perferredUsername"=>"KavalonThatsMe", "url"=>"http://twitter.com/KavalonThatsMe/status/461628681975496704", "source"=>"Twitter"}, {"contentid"=>"461628557014609920", "ldate"=>"Wed Apr 30 22:09:59 +0000 2014", "author"=>"Kait", "perferredUsername"=>"yooitskaitycruz", "url"=>"http://twitter.com/yooitskaitycruz/status/461628557014609920", "source"=>"Twitter"}, {"contentid"=>"461628464445919232", "ldate"=>"Wed Apr 30 22:09:37 +0000 2014", "author"=>"Sandi", "perferredUsername"=>"sandiwurzer", "url"=>"http://twitter.com/sandiwurzer/status/461628464445919232", "source"=>"Twitter"}, {"contentid"=>"461628424503955456", "ldate"=>"Wed Apr 30 22:09:27 +0000 2014", "author"=>"Everett Minchew", "perferredUsername"=>"eminchew00", "url"=>"http://twitter.com/eminchew00/status/461628424503955456", "source"=>"Twitter"}, {"contentid"=>"461628424117694464", "ldate"=>"Wed Apr 30 22:09:27 +0000 2014", "author"=>"yourself", "perferredUsername"=>"VampireIguana", "url"=>"http://twitter.com/VampireIguana/status/461628424117694464", "source"=>"Twitter"}, {"contentid"=>"461628216340656128", "ldate"=>"Wed Apr 30 22:08:38 +0000 2014", "author"=>"Brian Kazarian", "perferredUsername"=>"BrianKazarian", "url"=>"http://twitter.com/BrianKazarian/status/461628216340656128", "source"=>"Twitter"}, {"contentid"=>"461628214540918784", "ldate"=>"Wed Apr 30 22:08:37 +0000 2014", "author"=>"don't call me jill", "perferredUsername"=>"xpoorsouls", "url"=>"http://twitter.com/xpoorsouls/status/461628214540918784", "source"=>"Twitter"}, {"contentid"=>"461627989550051328", "ldate"=>"Wed Apr 30 22:07:44 +0000 2014", "author"=>"Linds✨", "perferredUsername"=>"Lindsieeee", "url"=>"http://twitter.com/Lindsieeee/status/461627989550051328", "source"=>"Twitter"}, {"contentid"=>"461627922986438656", "ldate"=>"Wed Apr 30 22:07:28 +0000 2014", "author"=>"b e t h a n y", "perferredUsername"=>"bethatrix101", "url"=>"http://twitter.com/bethatrix101/status/461627922986438656", "source"=>"Twitter"}, {"contentid"=>"461627831311552512", "ldate"=>"Wed Apr 30 22:07:06 +0000 2014", "author"=>"Jscott", "perferredUsername"=>"Juldeliz", "url"=>"http://twitter.com/Juldeliz/status/461627831311552512", "source"=>"Twitter"}, {"contentid"=>"461627490532737024", "ldate"=>"Wed Apr 30 22:05:45 +0000 2014", "author"=>"♛T-Easy♛", "perferredUsername"=>"t_soeasy", "url"=>"http://twitter.com/t_soeasy/status/461627490532737024", "source"=>"Twitter"}, {"contentid"=>"461627458752495618", "ldate"=>"Wed Apr 30 22:05:37 +0000 2014", "author"=>"bell!!!!!!", "perferredUsername"=>"bellayyylmao", "url"=>"http://twitter.com/bellayyylmao/status/461627458752495618", "source"=>"Twitter"}, {"contentid"=>"461627420723150849", "ldate"=>"Wed Apr 30 22:05:28 +0000 2014", "author"=>"grainy smith", "perferredUsername"=>"matthieulorenzo", "url"=>"http://twitter.com/matthieulorenzo/status/461627420723150849", "source"=>"Twitter"}, {"contentid"=>"461627289059328000", "ldate"=>"Wed Apr 30 22:04:56 +0000 2014", "author"=>"", "perferredUsername"=>"the__real__jb", "url"=>"http://twitter.com/the__real__jb/status/461627289059328000", "source"=>"Twitter"}, {"contentid"=>"461626980568694784", "ldate"=>"Wed Apr 30 22:03:43 +0000 2014", "author"=>"Cassie Perales", "perferredUsername"=>"cassiecat_pls", "url"=>"http://twitter.com/cassiecat_pls/status/461626980568694784", "source"=>"Twitter"}, {"contentid"=>"461626869935140864", "ldate"=>"Wed Apr 30 22:03:17 +0000 2014", "author"=>"Cassie Perales", "perferredUsername"=>"cassiecat_pls", "url"=>"http://twitter.com/cassiecat_pls/status/461626869935140864", "source"=>"Twitter"}, {"contentid"=>"461626837391527937", "ldate"=>"Wed Apr 30 22:03:09 +0000 2014", "author"=>"Cassie Perales", "perferredUsername"=>"cassiecat_pls", "url"=>"http://twitter.com/cassiecat_pls/status/461626837391527937", "source"=>"Twitter"}, {"contentid"=>"461626808048549888", "ldate"=>"Wed Apr 30 22:03:02 +0000 2014", "author"=>"marieh", "perferredUsername"=>"mbharr35", "url"=>"http://twitter.com/mbharr35/status/461626808048549888", "source"=>"Twitter"}, {"contentid"=>"461626805007294464", "ldate"=>"Wed Apr 30 22:03:01 +0000 2014", "author"=>"Cassie Perales", "perferredUsername"=>"cassiecat_pls", "url"=>"http://twitter.com/cassiecat_pls/status/461626805007294464", "source"=>"Twitter"}, {"contentid"=>"461626700359823361", "ldate"=>"Wed Apr 30 22:02:36 +0000 2014", "author"=>"kiza lussner", "perferredUsername"=>"BigLiez", "url"=>"http://twitter.com/BigLiez/status/461626700359823361", "source"=>"Twitter"}, {"contentid"=>"461626699986120704", "ldate"=>"Wed Apr 30 22:02:36 +0000 2014", "author"=>"Cassie Perales", "perferredUsername"=>"cassiecat_pls", "url"=>"http://twitter.com/cassiecat_pls/status/461626699986120704", "source"=>"Twitter"}, {"contentid"=>"461626473364070400", "ldate"=>"Wed Apr 30 22:01:42 +0000 2014", "author"=>"Danielle Dean", "perferredUsername"=>"DanielleDean_", "url"=>"http://twitter.com/DanielleDean_/status/461626473364070400", "source"=>"Twitter"}, {"contentid"=>"461626239254413312", "ldate"=>"Wed Apr 30 22:00:46 +0000 2014", "author"=>"Hannah Sloan", "perferredUsername"=>"hannah9932", "url"=>"http://twitter.com/hannah9932/status/461626239254413312", "source"=>"Twitter"}, {"contentid"=>"461626149286596608", "ldate"=>"Wed Apr 30 22:00:25 +0000 2014", "author"=>"Sayra Avila", "perferredUsername"=>"AvilaAvila23", "url"=>"http://twitter.com/AvilaAvila23/status/461626149286596608", "source"=>"Twitter"}, {"contentid"=>"461626095842783232", "ldate"=>"Wed Apr 30 22:00:12 +0000 2014", "author"=>"Alyson Wontkowski", "perferredUsername"=>"Awontkowski", "url"=>"http://twitter.com/Awontkowski/status/461626095842783232", "source"=>"Twitter"}, {"contentid"=>"461626085198008320", "ldate"=>"Wed Apr 30 22:00:09 +0000 2014", "author"=>"Yost.", "perferredUsername"=>"kodiemccay", "url"=>"http://twitter.com/kodiemccay/status/461626085198008320", "source"=>"Twitter"}, {"contentid"=>"461625941450440705", "ldate"=>"Wed Apr 30 21:59:35 +0000 2014", "author"=>"k y l i E", "perferredUsername"=>"kymirror3", "url"=>"http://twitter.com/kymirror3/status/461625941450440705", "source"=>"Twitter"}, {"contentid"=>"461625917182189568", "ldate"=>"Wed Apr 30 21:59:29 +0000 2014", "author"=>"Jamison", "perferredUsername"=>"LatuffAutoBody", "url"=>"http://twitter.com/LatuffAutoBody/status/461625917182189568", "source"=>"Twitter"}, {"contentid"=>"461625572331102208", "ldate"=>"Wed Apr 30 21:58:07 +0000 2014", "author"=>"Please Luke", "perferredUsername"=>"ShayIee5SOS", "url"=>"http://twitter.com/ShayIee5SOS/status/461625572331102208", "source"=>"Twitter"}, {"contentid"=>"461625567943864320", "ldate"=>"Wed Apr 30 21:58:06 +0000 2014", "author"=>"Marie Redding", "perferredUsername"=>"Chinnie777", "url"=>"http://twitter.com/Chinnie777/status/461625567943864320", "source"=>"Twitter"}, {"contentid"=>"461625396593950720", "ldate"=>"Wed Apr 30 21:57:25 +0000 2014", "author"=>"Jenna B. ♒️✨", "perferredUsername"=>"illaEst_diversa", "url"=>"http://twitter.com/illaEst_diversa/status/461625396593950720", "source"=>"Twitter"}, {"contentid"=>"461625394102534145", "ldate"=>"Wed Apr 30 21:57:25 +0000 2014", "author"=>"♡♡ ", "perferredUsername"=>"zarrygoddess", "url"=>"http://twitter.com/zarrygoddess/status/461625394102534145", "source"=>"Twitter"}, {"contentid"=>"461625377803096065", "ldate"=>"Wed Apr 30 21:57:21 +0000 2014", "author"=>"Ibeth \\o/", "perferredUsername"=>"Claudetteeeeee", "url"=>"http://twitter.com/Claudetteeeeee/status/461625377803096065", "source"=>"Twitter"}]}, "requestid"=>"9d85cc99-8e6c-47ee-85a4-7f140c8d4641"}
|
82
|
+
I, [2014-04-30T18:12:02.353287 #32088] INFO -- : Prediction loader waiting for scores ...
|
83
|
+
D, [2014-04-30T18:12:02.353324 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
84
|
+
D, [2014-04-30T18:27:01.532363 #32088] DEBUG -- : Adding posts for scout_id: 27
|
85
|
+
D, [2014-04-30T18:27:01.533508 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Sydnee Love", body: "Shopping on http://t.co/BOr1yUKQcU in Florida? Expe...", url: "http://twitter.com/lovesydneemarie/status/461629659...", source: "Twitter", sentiment: #<BigDecimal:7d1b0d0,'0.0',9(36)>, leadprob: #<BigDecimal:7d1aea0,'0.8936143850 948659E0',18(45)>, notleadprob: #<BigDecimal:7d1ac70,'0.4137718931 143053E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461629659927412737", ldate: "2014-04-30 22:14:22", loadstamp: "2014-04-30 22:27:01", user_id: 7, scout_id: 27>
|
86
|
+
D, [2014-04-30T18:27:01.545446 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Cedric James", body: "Most of the republican party doesn't strike me as b...", url: "http://twitter.com/cedricjames/status/4616307495576...", source: "Twitter", sentiment: #<BigDecimal:76da6a8,'0.0',9(36)>, leadprob: #<BigDecimal:76da478,'0.4227558254 443122E0',18(45)>, notleadprob: #<BigDecimal:76da248,'0.9401963490 087369E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461630749557657600", ldate: "2014-04-30 22:18:42", loadstamp: "2014-04-30 22:27:01", user_id: 7, scout_id: 27>
|
87
|
+
D, [2014-04-30T18:27:01.562017 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Full Lates News", body: "Republican David Jolly Defeats Democrat Alex Sink I...", url: "http://twitter.com/FullLatesNews3/status/4616310833...", source: "Twitter", sentiment: #<BigDecimal:7c41cb8,'0.0',9(36)>, leadprob: #<BigDecimal:7c41a88,'0.6730169016 655186E0',18(45)>, notleadprob: #<BigDecimal:7c41858,'0.9267394750 759193E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461631083381932032", ldate: "2014-04-30 22:20:01", loadstamp: "2014-04-30 22:27:01", user_id: 7, scout_id: 27>
|
88
|
+
I, [2014-04-30T18:27:01.569475 #32088] INFO -- : Total Number of records: 3
|
89
|
+
I, [2014-04-30T18:27:01.569521 #32088] INFO -- : Total Number of records Not Loaded: 0
|
90
|
+
I, [2014-04-30T18:27:01.569551 #32088] INFO -- : Prediction loader waiting for scores ...
|
91
|
+
D, [2014-04-30T18:27:01.569583 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
92
|
+
W, [2014-04-30T18:27:02.637454 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"Don't Text/ FACEBOOK and DRIVE. seriously http://t.co/HFbeWXd3QV", "contentid"=>"461632670804750336"}, {"content"=>"idk how i havent gotten in an accident yet bc i text n drive way too much", "contentid"=>"461632614831783936"}, {"content"=>"Don't Text/ FACEBOOK and DRIVE. seriously http://t.co/Ur9bmp8m8c", "contentid"=>"461632543406968832"}, {"content"=>"RT @Reneau72: Don't text and drive!! Please help me earn a $5K scholarship, and spread a valuable message, RT and Favorite this tweet. Tha…", "contentid"=>"461632503975931905"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461632435038322688"}, {"content"=>"RT @HurricaneRina_: don't text me while u driving I refuse to be on that commercial like \"this is the txt that killed my friend\" like no so…", "contentid"=>"461632332395708416"}, {"content"=>"RT @the__real__jb: it's illegal to text and drive but it's completely legal to solve a rubix cube while driving", "contentid"=>"461632180016250880"}, {"content"=>"RT @monicaadouglas: Installed \"Stay alive, Don't text and drive\" signs today at MATES! Thanks @PADDorg for the signs! @FocusOnTheDrive http…", "contentid"=>"461631835823673344"}, {"content"=>"Don't text and drive.", "contentid"=>"461631826256080897"}, {"content"=>"Aaaaand maybe dont text and drive.", "contentid"=>"461631815438966784"}, {"content"=>"The friend who asks you to text for them while they drive. https://t.co/R3hUT7gD1a", "contentid"=>"461631804714549248"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461631801367494657"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461631514661629952"}, {"content"=>"@jayjaymonkeyx driving with my friend. Text me or snap me?", "contentid"=>"461631485078806530"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461631467173736448"}, {"content"=>"RT @SPFSADD: This is the cutest way to say don't text and drive!\nRetweet for an another iPad entry! http://t.co/JlwdcSz1f4", "contentid"=>"461631192694280193"}, {"content"=>"Stupid driving instructor wont text me back.", "contentid"=>"461631091708006400"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461631010082271233"}, {"content"=>"@IBeBoredNShvt wow Thot don't drive and tweet during a flood homo! I'm not tryna have you in them text crash commercials.", "contentid"=>"461630686932500480"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461630497567674371"}, {"content"=>"RT @SPFSADD: This is the cutest way to say don't text and drive!\nRetweet for an another iPad entry! http://t.co/JlwdcSz1f4", "contentid"=>"461629944544915456"}, {"content"=>"@UmnaKhan text not going through, but I left my book in your car, interesting drive we had thoughὢ9ὠ2", "contentid"=>"461629937632677889"}, {"content"=>"RT @blaze4bettadayz: I can't stand people who drink & drive, text & drive or just don't pay attention. You will wish you would've when you …", "contentid"=>"461629841251762177"}, {"content"=>"It's really pissing outside...bet niggas still drive in this shyt if they receive that text to fuck", "contentid"=>"461629823358869504"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461629810607796224"}, {"content"=>"RT @the__real__jb: it's illegal to text and drive but it's completely legal to solve a rubix cube while driving", "contentid"=>"461629643796135936"}, {"content"=>"I like how Alissa tries to not text and drive and I look over and she's playing alpaca worldὠ5", "contentid"=>"461629480113803265"}, {"content"=>"RT @MelanieShebel: It's not safe to text and drive! Drive Now. TXT L8R. #TXTL8RIN http://t.co/7hCF8ef8kG", "contentid"=>"461629477609418752"}, {"content"=>"@babypinky27 don't text and drive either.", "contentid"=>"461629455689990144"}, {"content"=>"RT @TopNotchSaditty: please dont text and drive", "contentid"=>"461629327743127552"}, {"content"=>"RT @TopNotchSaditty: please dont text and drive", "contentid"=>"461629309325955072"}, {"content"=>"please dont text and drive", "contentid"=>"461629262706245632"}, {"content"=>"don't text me while u driving I refuse to be on that commercial like \"this is the txt that killed my friend\" like no sorry lmfao", "contentid"=>"461629249690947584"}, {"content"=>"RT @yankeepipher: 2024:\ntext messages are replaced with tupac holograms\ndon't pac and drive, they'll say\nc a l i f o r n i a knows how to p…", "contentid"=>"461629244742062082"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461629144712089601"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461632670804750336", "ldate"=>"Wed Apr 30 22:26:20 +0000 2014", "author"=>"Bear Waco", "perferredUsername"=>"1025thebear", "url"=>"http://twitter.com/1025thebear/status/461632670804750336", "source"=>"Twitter"}, {"contentid"=>"461632614831783936", "ldate"=>"Wed Apr 30 22:26:06 +0000 2014", "author"=>"kat", "perferredUsername"=>"kitteaism", "url"=>"http://twitter.com/kitteaism/status/461632614831783936", "source"=>"Twitter"}, {"contentid"=>"461632543406968832", "ldate"=>"Wed Apr 30 22:25:49 +0000 2014", "author"=>"Fox Rox", "perferredUsername"=>"1073thefox", "url"=>"http://twitter.com/1073thefox/status/461632543406968832", "source"=>"Twitter"}, {"contentid"=>"461632503975931905", "ldate"=>"Wed Apr 30 22:25:40 +0000 2014", "author"=>"Chris Berns", "perferredUsername"=>"ChrisLBerns", "url"=>"http://twitter.com/ChrisLBerns/status/461632503975931905", "source"=>"Twitter"}, {"contentid"=>"461632435038322688", "ldate"=>"Wed Apr 30 22:25:23 +0000 2014", "author"=>"Kal Figueroa", "perferredUsername"=>"KalFigueroa", "url"=>"http://twitter.com/KalFigueroa/status/461632435038322688", "source"=>"Twitter"}, {"contentid"=>"461632332395708416", "ldate"=>"Wed Apr 30 22:24:59 +0000 2014", "author"=>"KingChy", "perferredUsername"=>"rihhloaded", "url"=>"http://twitter.com/rihhloaded/status/461632332395708416", "source"=>"Twitter"}, {"contentid"=>"461632180016250880", "ldate"=>"Wed Apr 30 22:24:23 +0000 2014", "author"=>"jon jene", "perferredUsername"=>"al_sand_ec_oval", "url"=>"http://twitter.com/al_sand_ec_oval/status/461632180016250880", "source"=>"Twitter"}, {"contentid"=>"461631835823673344", "ldate"=>"Wed Apr 30 22:23:01 +0000 2014", "author"=>"Focus On the Drive", "perferredUsername"=>"FocusOnTheDrive", "url"=>"http://twitter.com/FocusOnTheDrive/status/461631835823673344", "source"=>"Twitter"}, {"contentid"=>"461631826256080897", "ldate"=>"Wed Apr 30 22:22:58 +0000 2014", "author"=>"♡aDrIaNa_GoMez♡", "perferredUsername"=>"DIAZ_NENA", "url"=>"http://twitter.com/DIAZ_NENA/status/461631826256080897", "source"=>"Twitter"}, {"contentid"=>"461631815438966784", "ldate"=>"Wed Apr 30 22:22:56 +0000 2014", "author"=>"saskia", "perferredUsername"=>"thishumanform", "url"=>"http://twitter.com/thishumanform/status/461631815438966784", "source"=>"Twitter"}, {"contentid"=>"461631804714549248", "ldate"=>"Wed Apr 30 22:22:53 +0000 2014", "author"=>"Pedro José Castillo", "perferredUsername"=>"PedroCastilloV", "url"=>"http://twitter.com/PedroCastilloV/status/461631804714549248", "source"=>"Twitter"}, {"contentid"=>"461631801367494657", "ldate"=>"Wed Apr 30 22:22:52 +0000 2014", "author"=>"Michael", "perferredUsername"=>"michael_gervasi", "url"=>"http://twitter.com/michael_gervasi/status/461631801367494657", "source"=>"Twitter"}, {"contentid"=>"461631514661629952", "ldate"=>"Wed Apr 30 22:21:44 +0000 2014", "author"=>"Lewis Stokes", "perferredUsername"=>"Lewis_stokes_", "url"=>"http://twitter.com/Lewis_stokes_/status/461631514661629952", "source"=>"Twitter"}, {"contentid"=>"461631485078806530", "ldate"=>"Wed Apr 30 22:21:37 +0000 2014", "author"=>"_trying_ ✌️", "perferredUsername"=>"_aspen09_", "url"=>"http://twitter.com/_aspen09_/status/461631485078806530", "source"=>"Twitter"}, {"contentid"=>"461631467173736448", "ldate"=>"Wed Apr 30 22:21:33 +0000 2014", "author"=>"", "perferredUsername"=>"BASEDWALT", "url"=>"http://twitter.com/BASEDWALT/status/461631467173736448", "source"=>"Twitter"}, {"contentid"=>"461631192694280193", "ldate"=>"Wed Apr 30 22:20:27 +0000 2014", "author"=>"Donald", "perferredUsername"=>"dondonbambam", "url"=>"http://twitter.com/dondonbambam/status/461631192694280193", "source"=>"Twitter"}, {"contentid"=>"461631091708006400", "ldate"=>"Wed Apr 30 22:20:03 +0000 2014", "author"=>"Niamh Sands.", "perferredUsername"=>"NiamhSands_", "url"=>"http://twitter.com/NiamhSands_/status/461631091708006400", "source"=>"Twitter"}, {"contentid"=>"461631010082271233", "ldate"=>"Wed Apr 30 22:19:44 +0000 2014", "author"=>"Satan's Baby", "perferredUsername"=>"DaSilva2820", "url"=>"http://twitter.com/DaSilva2820/status/461631010082271233", "source"=>"Twitter"}, {"contentid"=>"461630686932500480", "ldate"=>"Wed Apr 30 22:18:27 +0000 2014", "author"=>"C A S", "perferredUsername"=>"C_40Z", "url"=>"http://twitter.com/C_40Z/status/461630686932500480", "source"=>"Twitter"}, {"contentid"=>"461630497567674371", "ldate"=>"Wed Apr 30 22:17:41 +0000 2014", "author"=>"Alyssa Hammond", "perferredUsername"=>"TheAwesomeAlyss", "url"=>"http://twitter.com/TheAwesomeAlyss/status/461630497567674371", "source"=>"Twitter"}, {"contentid"=>"461629944544915456", "ldate"=>"Wed Apr 30 22:15:30 +0000 2014", "author"=>"bizzle", "perferredUsername"=>"laniekosciolek", "url"=>"http://twitter.com/laniekosciolek/status/461629944544915456", "source"=>"Twitter"}, {"contentid"=>"461629937632677889", "ldate"=>"Wed Apr 30 22:15:28 +0000 2014", "author"=>"Zari.", "perferredUsername"=>"zarah_amira", "url"=>"http://twitter.com/zarah_amira/status/461629937632677889", "source"=>"Twitter"}, {"contentid"=>"461629841251762177", "ldate"=>"Wed Apr 30 22:15:05 +0000 2014", "author"=>"Brandi Adams", "perferredUsername"=>"Brandi_Adams97", "url"=>"http://twitter.com/Brandi_Adams97/status/461629841251762177", "source"=>"Twitter"}, {"contentid"=>"461629823358869504", "ldate"=>"Wed Apr 30 22:15:01 +0000 2014", "author"=>"WildAl", "perferredUsername"=>"WildSimba21", "url"=>"http://twitter.com/WildSimba21/status/461629823358869504", "source"=>"Twitter"}, {"contentid"=>"461629810607796224", "ldate"=>"Wed Apr 30 22:14:58 +0000 2014", "author"=>"Mark Andrew", "perferredUsername"=>"Chino2412", "url"=>"http://twitter.com/Chino2412/status/461629810607796224", "source"=>"Twitter"}, {"contentid"=>"461629643796135936", "ldate"=>"Wed Apr 30 22:14:18 +0000 2014", "author"=>"$i:3nna", "perferredUsername"=>"girlwerewolf143", "url"=>"http://twitter.com/girlwerewolf143/status/461629643796135936", "source"=>"Twitter"}, {"contentid"=>"461629480113803265", "ldate"=>"Wed Apr 30 22:13:39 +0000 2014", "author"=>"Copelenn McMahon", "perferredUsername"=>"Copelenn", "url"=>"http://twitter.com/Copelenn/status/461629480113803265", "source"=>"Twitter"}, {"contentid"=>"461629477609418752", "ldate"=>"Wed Apr 30 22:13:38 +0000 2014", "author"=>"brooke bergman", "perferredUsername"=>"brookeberg89", "url"=>"http://twitter.com/brookeberg89/status/461629477609418752", "source"=>"Twitter"}, {"contentid"=>"461629455689990144", "ldate"=>"Wed Apr 30 22:13:33 +0000 2014", "author"=>"Alex", "perferredUsername"=>"AlexEverhart", "url"=>"http://twitter.com/AlexEverhart/status/461629455689990144", "source"=>"Twitter"}, {"contentid"=>"461629327743127552", "ldate"=>"Wed Apr 30 22:13:03 +0000 2014", "author"=>"Christian Joel Ramos", "perferredUsername"=>"IAmKingSlater", "url"=>"http://twitter.com/IAmKingSlater/status/461629327743127552", "source"=>"Twitter"}, {"contentid"=>"461629309325955072", "ldate"=>"Wed Apr 30 22:12:58 +0000 2014", "author"=>"Jiva ➰", "perferredUsername"=>"Jivannette_", "url"=>"http://twitter.com/Jivannette_/status/461629309325955072", "source"=>"Twitter"}, {"contentid"=>"461629262706245632", "ldate"=>"Wed Apr 30 22:12:47 +0000 2014", "author"=>"TopNotchSadiity", "perferredUsername"=>"TopNotchSaditty", "url"=>"http://twitter.com/TopNotchSaditty/status/461629262706245632", "source"=>"Twitter"}, {"contentid"=>"461629249690947584", "ldate"=>"Wed Apr 30 22:12:44 +0000 2014", "author"=>"cacici", "perferredUsername"=>"HurricaneRina_", "url"=>"http://twitter.com/HurricaneRina_/status/461629249690947584", "source"=>"Twitter"}, {"contentid"=>"461629244742062082", "ldate"=>"Wed Apr 30 22:12:43 +0000 2014", "author"=>"FLAIRfield", "perferredUsername"=>"wildebeast913", "url"=>"http://twitter.com/wildebeast913/status/461629244742062082", "source"=>"Twitter"}, {"contentid"=>"461629144712089601", "ldate"=>"Wed Apr 30 22:12:19 +0000 2014", "author"=>"clemenceedeuxfois", "perferredUsername"=>"clemencedryvers", "url"=>"http://twitter.com/clemencedryvers/status/461629144712089601", "source"=>"Twitter"}]}, "requestid"=>"e949d224-5b20-4afb-889f-6957d11980ef"}
|
93
|
+
I, [2014-04-30T18:27:02.637546 #32088] INFO -- : Prediction loader waiting for scores ...
|
94
|
+
D, [2014-04-30T18:27:02.637583 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
95
|
+
D, [2014-04-30T18:42:00.701917 #32088] DEBUG -- : Adding posts for scout_id: 27
|
96
|
+
D, [2014-04-30T18:42:00.701994 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
97
|
+
D, [2014-04-30T18:42:00.710122 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Mike Broemmel", body: "RT @FullLatesNews3: Republican David Jolly Defeats ...", url: "http://twitter.com/MBroemmel/status/461634124424294...", source: "Twitter", sentiment: #<BigDecimal:7b42b00,'0.0',9(36)>, leadprob: #<BigDecimal:7b428d0,'0.4995105980 879849E0',18(45)>, notleadprob: #<BigDecimal:7b426a0,'0.9610703224 690667E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461634124424294400", ldate: "2014-04-30 22:32:06", loadstamp: "2014-04-30 22:42:00", user_id: 7, scout_id: 27>
|
98
|
+
D, [2014-04-30T18:42:00.726187 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "MAD SOLAR-te", body: "@willblackmon bruh you in Jacksonville, Florida...I...", url: "http://twitter.com/OrangeBlueSky21/status/461636348...", source: "Twitter", sentiment: #<BigDecimal:7baa160,'0.0',9(36)>, leadprob: #<BigDecimal:7ba9f30,'0.7722796658 99219E0',18(45)>, notleadprob: #<BigDecimal:7ba9d00,'0.7107824869 859745E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461636348466978816", ldate: "2014-04-30 22:40:56", loadstamp: "2014-04-30 22:42:00", user_id: 7, scout_id: 27>
|
99
|
+
I, [2014-04-30T18:42:00.741807 #32088] INFO -- : Total Number of records: 2
|
100
|
+
I, [2014-04-30T18:42:00.741855 #32088] INFO -- : Total Number of records Not Loaded: 0
|
101
|
+
I, [2014-04-30T18:42:00.741886 #32088] INFO -- : Prediction loader waiting for scores ...
|
102
|
+
D, [2014-04-30T18:42:00.741917 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
103
|
+
W, [2014-04-30T18:42:01.973899 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/SICUZY22UI", "contentid"=>"461636485037690881"}, {"content"=>"1 in 5 teens will have a text conversation while driving. This phone wallpaper will remind you to stop.... http://t.co/fXFNZTQ8UL", "contentid"=>"461636439617585153"}, {"content"=>"Well this is a real fun drive!ὡ2 Someone text meὄC", "contentid"=>"461636408461893632"}, {"content"=>"1 in 5 teens will have a text conversation while driving. http://t.co/l9ZBTHe16C http://t.co/3QHKMLLvVA", "contentid"=>"461636344070942721"}, {"content"=>"RT @hey_holls: Help spread the word! Retweet/favorite this and help save lives! Drive Now. Text L8R. #TXTL8RIN", "contentid"=>"461636118459318272"}, {"content"=>"RT @LibertyIRL: Tomorrow, it will be an offence to read or send a text at the wheel. 13% of Irish drivers admit to using a phone while driv…", "contentid"=>"461636106187182081"}, {"content"=>"How do people text while driving. I can barely blink ὠ2", "contentid"=>"461635996460019712"}, {"content"=>"\"@_AshantiShanice: “@Kaaaayyyyyyyy: I hate driving” text me back babymama\" you didn't text me back.", "contentid"=>"461635960208240640"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/rDXFntjWhR", "contentid"=>"461635712954400768"}, {"content"=>"\"@FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho\"", "contentid"=>"461635710135844864"}, {"content"=>"RT @TylerGirton1: A study shows that approximately 3/4 of young adults are very or somewhat confident they can text and drive and they are…", "contentid"=>"461635636164694016"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461635586835873792"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461635477934972928"}, {"content"=>"“@Kaaaayyyyyyyy: I hate driving” text me back babymama", "contentid"=>"461635451485704192"}, {"content"=>"RT @_ItCanWait: SHOUT OUT TO: @Hannah__Kline for taking the pledge not to text and drive ! DRIVE NOW, TXT L8R #TXTL8RIN", "contentid"=>"461635438608777216"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461635419046551553"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461635046542430208"}, {"content"=>"RT @ClintTJohnson: Please don't text or use social media while driving. A young lady in North Carolina lost her life doing so! That text/se…", "contentid"=>"461634998995415040"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461634968658399232"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461634961003388928"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461634942003585024"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461634903030132736"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461634843236114432"}, {"content"=>"RT @neverknownfacts: Please, don't text and drive http://t.co/g3lmCGrlj9", "contentid"=>"461634809459404800"}, {"content"=>"RT @HurricaneRina_: don't text me while u driving I refuse to be on that commercial like \"this is the txt that killed my friend\" like no so…", "contentid"=>"461634798109609984"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461634778350223360"}, {"content"=>"Like sometimes i feel like purchasing a police siren and scaring the shit out of people who text & drive ὠ2", "contentid"=>"461634748234747904"}, {"content"=>"RT @neverknownfacts: Please, don't text and drive http://t.co/g3lmCGrlj9", "contentid"=>"461634699387871232"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461634683378229248"}, {"content"=>"I shouldn't be driving and reading these text because it's frustrating me.", "contentid"=>"461634629045190657"}, {"content"=>"Dear people who text & drive.. Youre so obvious..", "contentid"=>"461634514146852864"}, {"content"=>"DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461634508660695040"}, {"content"=>"You wouldn't do your homework and drive, would you? So why text and drive? Drive now, text later. #TXTL8RIN", "contentid"=>"461634471884636161"}, {"content"=>"@BrianSteffen They Say You Shouldn't Text And Drive. Good Thing I'm At A Stand Still", "contentid"=>"461634387553964032"}, {"content"=>"Don't text and drive... Or tweet... http://t.co/OV5DmaB3T2", "contentid"=>"461634383275782147"}, {"content"=>"RT @FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461634375629963267"}, {"content"=>"I don't text and drive.. I talk to text and drive.. There's a difference.. Lol", "contentid"=>"461634340913709057"}, {"content"=>"RT @FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461634300002447360"}, {"content"=>"Intellectually, todays teenagers are more aware than ever theyre not supposed to drink and drive, or text and drive.", "contentid"=>"461634195647782913"}, {"content"=>"RT @FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461633942857457664"}, {"content"=>"RT @mistasvetas: *gets pulled over*\n\nOfficer: \"Do you know it's illegal to text and drive?\"\n\nMe: \"I was snap chatting\"\n\n*drives away*", "contentid"=>"461633923668119552"}, {"content"=>"RT @FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461633722878787584"}, {"content"=>"RT @FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461633704549298176"}, {"content"=>"RT @FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461633702443769856"}, {"content"=>"RT @FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461633657501782016"}, {"content"=>"RT @FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461633620822601728"}, {"content"=>"RT @FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461633570985873408"}, {"content"=>"RT @FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461633456590446592"}, {"content"=>"RT @FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461633456401707008"}, {"content"=>"RT @FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461633319759663104"}, {"content"=>"RT @FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461633286511423488"}, {"content"=>"RT @FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461633278433177601"}, {"content"=>"RT @FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461633194086125568"}, {"content"=>"RT @FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461633187681415168"}, {"content"=>"fam..... RT“@FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho”", "contentid"=>"461633153539391489"}, {"content"=>"RT @FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461633131532267520"}, {"content"=>"*gets pulled over*\n\nOfficer: \"Do you know it's illegal to text and drive?\"\n\nMe: \"I was snap chatting\"\n\n*drives away*", "contentid"=>"461633113332805632"}, {"content"=>"They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461633004570288128"}, {"content"=>"RT @the__real__jb: it's illegal to text and drive but it's completely legal to solve a rubix cube while driving", "contentid"=>"461632914992533505"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461636485037690881", "ldate"=>"Wed Apr 30 22:41:29 +0000 2014", "author"=>"¢σ∂у мαятιи ℓιиℓєу", "perferredUsername"=>"Ria11Rialove", "url"=>"http://twitter.com/Ria11Rialove/status/461636485037690881", "source"=>"Twitter"}, {"contentid"=>"461636439617585153", "ldate"=>"Wed Apr 30 22:41:18 +0000 2014", "author"=>"Chris Tucker", "perferredUsername"=>"ctucker71", "url"=>"http://twitter.com/ctucker71/status/461636439617585153", "source"=>"Twitter"}, {"contentid"=>"461636408461893632", "ldate"=>"Wed Apr 30 22:41:11 +0000 2014", "author"=>"kadie Gentry", "perferredUsername"=>"Kadie_Madison", "url"=>"http://twitter.com/Kadie_Madison/status/461636408461893632", "source"=>"Twitter"}, {"contentid"=>"461636344070942721", "ldate"=>"Wed Apr 30 22:40:55 +0000 2014", "author"=>"First Honda Simi ", "perferredUsername"=>"FirstHondaSimi", "url"=>"http://twitter.com/FirstHondaSimi/status/461636344070942721", "source"=>"Twitter"}, {"contentid"=>"461636118459318272", "ldate"=>"Wed Apr 30 22:40:02 +0000 2014", "author"=>"Chris Berns", "perferredUsername"=>"ChrisLBerns", "url"=>"http://twitter.com/ChrisLBerns/status/461636118459318272", "source"=>"Twitter"}, {"contentid"=>"461636106187182081", "ldate"=>"Wed Apr 30 22:39:59 +0000 2014", "author"=>"Michael Corcoran", "perferredUsername"=>"lemachine", "url"=>"http://twitter.com/lemachine/status/461636106187182081", "source"=>"Twitter"}, {"contentid"=>"461635996460019712", "ldate"=>"Wed Apr 30 22:39:33 +0000 2014", "author"=>"naïve bird", "perferredUsername"=>"Fatafati_", "url"=>"http://twitter.com/Fatafati_/status/461635996460019712", "source"=>"Twitter"}, {"contentid"=>"461635960208240640", "ldate"=>"Wed Apr 30 22:39:24 +0000 2014", "author"=>"K.", "perferredUsername"=>"Kaaaayyyyyyyy", "url"=>"http://twitter.com/Kaaaayyyyyyyy/status/461635960208240640", "source"=>"Twitter"}, {"contentid"=>"461635712954400768", "ldate"=>"Wed Apr 30 22:38:25 +0000 2014", "author"=>"Demonic_kittens_rull", "perferredUsername"=>"JustGonnaDewMe", "url"=>"http://twitter.com/JustGonnaDewMe/status/461635712954400768", "source"=>"Twitter"}, {"contentid"=>"461635710135844864", "ldate"=>"Wed Apr 30 22:38:24 +0000 2014", "author"=>"olugbamigbe israel", "perferredUsername"=>"olu_bams", "url"=>"http://twitter.com/olu_bams/status/461635710135844864", "source"=>"Twitter"}, {"contentid"=>"461635636164694016", "ldate"=>"Wed Apr 30 22:38:07 +0000 2014", "author"=>"Chris Berns", "perferredUsername"=>"ChrisLBerns", "url"=>"http://twitter.com/ChrisLBerns/status/461635636164694016", "source"=>"Twitter"}, {"contentid"=>"461635586835873792", "ldate"=>"Wed Apr 30 22:37:55 +0000 2014", "author"=>"♿️TIA&EMANI♿️", "perferredUsername"=>"PrettyBrownTia", "url"=>"http://twitter.com/PrettyBrownTia/status/461635586835873792", "source"=>"Twitter"}, {"contentid"=>"461635477934972928", "ldate"=>"Wed Apr 30 22:37:29 +0000 2014", "author"=>"John BCFC green", "perferredUsername"=>"UNCUTENERGY", "url"=>"http://twitter.com/UNCUTENERGY/status/461635477934972928", "source"=>"Twitter"}, {"contentid"=>"461635451485704192", "ldate"=>"Wed Apr 30 22:37:23 +0000 2014", "author"=>"Ashanti ", "perferredUsername"=>"_AshantiShanice", "url"=>"http://twitter.com/_AshantiShanice/status/461635451485704192", "source"=>"Twitter"}, {"contentid"=>"461635438608777216", "ldate"=>"Wed Apr 30 22:37:20 +0000 2014", "author"=>"Lorinda Kline", "perferredUsername"=>"LorindaKline", "url"=>"http://twitter.com/LorindaKline/status/461635438608777216", "source"=>"Twitter"}, {"contentid"=>"461635419046551553", "ldate"=>"Wed Apr 30 22:37:15 +0000 2014", "author"=>"✌K Zooyo", "perferredUsername"=>"KoolKlikKZOO", "url"=>"http://twitter.com/KoolKlikKZOO/status/461635419046551553", "source"=>"Twitter"}, {"contentid"=>"461635046542430208", "ldate"=>"Wed Apr 30 22:35:46 +0000 2014", "author"=>"samaraa ", "perferredUsername"=>"_mexicanmonroe", "url"=>"http://twitter.com/_mexicanmonroe/status/461635046542430208", "source"=>"Twitter"}, {"contentid"=>"461634998995415040", "ldate"=>"Wed Apr 30 22:35:35 +0000 2014", "author"=>"Dreaming & Enriching", "perferredUsername"=>"Dream_Council", "url"=>"http://twitter.com/Dream_Council/status/461634998995415040", "source"=>"Twitter"}, {"contentid"=>"461634968658399232", "ldate"=>"Wed Apr 30 22:35:27 +0000 2014", "author"=>"leadr.∞", "perferredUsername"=>"_angelgoyagoy", "url"=>"http://twitter.com/_angelgoyagoy/status/461634968658399232", "source"=>"Twitter"}, {"contentid"=>"461634961003388928", "ldate"=>"Wed Apr 30 22:35:26 +0000 2014", "author"=>"Grace Lupepe", "perferredUsername"=>"grace_elle", "url"=>"http://twitter.com/grace_elle/status/461634961003388928", "source"=>"Twitter"}, {"contentid"=>"461634942003585024", "ldate"=>"Wed Apr 30 22:35:21 +0000 2014", "author"=>"HBIC✨", "perferredUsername"=>"_kujaa", "url"=>"http://twitter.com/_kujaa/status/461634942003585024", "source"=>"Twitter"}, {"contentid"=>"461634903030132736", "ldate"=>"Wed Apr 30 22:35:12 +0000 2014", "author"=>"My Brothers Keeper ♥", "perferredUsername"=>"KingJayy_", "url"=>"http://twitter.com/KingJayy_/status/461634903030132736", "source"=>"Twitter"}, {"contentid"=>"461634843236114432", "ldate"=>"Wed Apr 30 22:34:58 +0000 2014", "author"=>"Tyshae Veltoreizihno", "perferredUsername"=>"HALEyeah_Shaee", "url"=>"http://twitter.com/HALEyeah_Shaee/status/461634843236114432", "source"=>"Twitter"}, {"contentid"=>"461634809459404800", "ldate"=>"Wed Apr 30 22:34:50 +0000 2014", "author"=>"Batman!", "perferredUsername"=>"NaNaNaNotBatman", "url"=>"http://twitter.com/NaNaNaNotBatman/status/461634809459404800", "source"=>"Twitter"}, {"contentid"=>"461634798109609984", "ldate"=>"Wed Apr 30 22:34:47 +0000 2014", "author"=>"Eazy-e", "perferredUsername"=>"so_Dopekidd23", "url"=>"http://twitter.com/so_Dopekidd23/status/461634798109609984", "source"=>"Twitter"}, {"contentid"=>"461634778350223360", "ldate"=>"Wed Apr 30 22:34:42 +0000 2014", "author"=>"QUEEN♊️", "perferredUsername"=>"LeeaChae", "url"=>"http://twitter.com/LeeaChae/status/461634778350223360", "source"=>"Twitter"}, {"contentid"=>"461634748234747904", "ldate"=>"Wed Apr 30 22:34:35 +0000 2014", "author"=>"Canadian Queen Xo", "perferredUsername"=>"Can_Queenxo", "url"=>"http://twitter.com/Can_Queenxo/status/461634748234747904", "source"=>"Twitter"}, {"contentid"=>"461634699387871232", "ldate"=>"Wed Apr 30 22:34:23 +0000 2014", "author"=>"whatswrongwithme ", "perferredUsername"=>"ec0c58de957748f", "url"=>"http://twitter.com/ec0c58de957748f/status/461634699387871232", "source"=>"Twitter"}, {"contentid"=>"461634683378229248", "ldate"=>"Wed Apr 30 22:34:19 +0000 2014", "author"=>"imj.✨", "perferredUsername"=>"ishaaaa__", "url"=>"http://twitter.com/ishaaaa__/status/461634683378229248", "source"=>"Twitter"}, {"contentid"=>"461634629045190657", "ldate"=>"Wed Apr 30 22:34:06 +0000 2014", "author"=>"Stephanie camarena", "perferredUsername"=>"_StephYvette", "url"=>"http://twitter.com/_StephYvette/status/461634629045190657", "source"=>"Twitter"}, {"contentid"=>"461634514146852864", "ldate"=>"Wed Apr 30 22:33:39 +0000 2014", "author"=>"Canadian Queen Xo", "perferredUsername"=>"Can_Queenxo", "url"=>"http://twitter.com/Can_Queenxo/status/461634514146852864", "source"=>"Twitter"}, {"contentid"=>"461634508660695040", "ldate"=>"Wed Apr 30 22:33:38 +0000 2014", "author"=>"⛽️uwopp Ⓜ️oney ", "perferredUsername"=>"J_Guwopp", "url"=>"http://twitter.com/J_Guwopp/status/461634508660695040", "source"=>"Twitter"}, {"contentid"=>"461634471884636161", "ldate"=>"Wed Apr 30 22:33:29 +0000 2014", "author"=>"JBG", "perferredUsername"=>"JBGMedia", "url"=>"http://twitter.com/JBGMedia/status/461634471884636161", "source"=>"Twitter"}, {"contentid"=>"461634387553964032", "ldate"=>"Wed Apr 30 22:33:09 +0000 2014", "author"=>"Jordan Briggs", "perferredUsername"=>"jbriggs1017", "url"=>"http://twitter.com/jbriggs1017/status/461634387553964032", "source"=>"Twitter"}, {"contentid"=>"461634383275782147", "ldate"=>"Wed Apr 30 22:33:08 +0000 2014", "author"=>"Maria❤", "perferredUsername"=>"OhMariaXo", "url"=>"http://twitter.com/OhMariaXo/status/461634383275782147", "source"=>"Twitter"}, {"contentid"=>"461634375629963267", "ldate"=>"Wed Apr 30 22:33:06 +0000 2014", "author"=>"Mackenzie Talerico", "perferredUsername"=>"Sunnfloweerr", "url"=>"http://twitter.com/Sunnfloweerr/status/461634375629963267", "source"=>"Twitter"}, {"contentid"=>"461634340913709057", "ldate"=>"Wed Apr 30 22:32:58 +0000 2014", "author"=>"DJ Preme (AMS)", "perferredUsername"=>"DJPreme", "url"=>"http://twitter.com/DJPreme/status/461634340913709057", "source"=>"Twitter"}, {"contentid"=>"461634300002447360", "ldate"=>"Wed Apr 30 22:32:48 +0000 2014", "author"=>"ChiChi Get The Yeyo!", "perferredUsername"=>"zeeshanrkiyani", "url"=>"http://twitter.com/zeeshanrkiyani/status/461634300002447360", "source"=>"Twitter"}, {"contentid"=>"461634195647782913", "ldate"=>"Wed Apr 30 22:32:23 +0000 2014", "author"=>"Mike ", "perferredUsername"=>"mikeydonahuey", "url"=>"http://twitter.com/mikeydonahuey/status/461634195647782913", "source"=>"Twitter"}, {"contentid"=>"461633942857457664", "ldate"=>"Wed Apr 30 22:31:23 +0000 2014", "author"=>"audrey.", "perferredUsername"=>"dctach", "url"=>"http://twitter.com/dctach/status/461633942857457664", "source"=>"Twitter"}, {"contentid"=>"461633923668119552", "ldate"=>"Wed Apr 30 22:31:18 +0000 2014", "author"=>"M A", "perferredUsername"=>"maileakeo", "url"=>"http://twitter.com/maileakeo/status/461633923668119552", "source"=>"Twitter"}, {"contentid"=>"461633722878787584", "ldate"=>"Wed Apr 30 22:30:30 +0000 2014", "author"=>"他妈的他们 ⁉️", "perferredUsername"=>"Maryanneeee69", "url"=>"http://twitter.com/Maryanneeee69/status/461633722878787584", "source"=>"Twitter"}, {"contentid"=>"461633704549298176", "ldate"=>"Wed Apr 30 22:30:26 +0000 2014", "author"=>"✨Queen J✨", "perferredUsername"=>"JestonaeLives", "url"=>"http://twitter.com/JestonaeLives/status/461633704549298176", "source"=>"Twitter"}, {"contentid"=>"461633702443769856", "ldate"=>"Wed Apr 30 22:30:26 +0000 2014", "author"=>"Lorde Bacon", "perferredUsername"=>"ScoDizz", "url"=>"http://twitter.com/ScoDizz/status/461633702443769856", "source"=>"Twitter"}, {"contentid"=>"461633657501782016", "ldate"=>"Wed Apr 30 22:30:15 +0000 2014", "author"=>"$", "perferredUsername"=>"ovonkayla", "url"=>"http://twitter.com/ovonkayla/status/461633657501782016", "source"=>"Twitter"}, {"contentid"=>"461633620822601728", "ldate"=>"Wed Apr 30 22:30:06 +0000 2014", "author"=>"Princess Cassandra.", "perferredUsername"=>"CassiieMariee98", "url"=>"http://twitter.com/CassiieMariee98/status/461633620822601728", "source"=>"Twitter"}, {"contentid"=>"461633570985873408", "ldate"=>"Wed Apr 30 22:29:54 +0000 2014", "author"=>"Ashley", "perferredUsername"=>"SweetPenguins", "url"=>"http://twitter.com/SweetPenguins/status/461633570985873408", "source"=>"Twitter"}, {"contentid"=>"461633456590446592", "ldate"=>"Wed Apr 30 22:29:27 +0000 2014", "author"=>"thuggy☆", "perferredUsername"=>"roodbeerfloat", "url"=>"http://twitter.com/roodbeerfloat/status/461633456590446592", "source"=>"Twitter"}, {"contentid"=>"461633456401707008", "ldate"=>"Wed Apr 30 22:29:27 +0000 2014", "author"=>"️∂ιмρℓєѕѕ™♌️", "perferredUsername"=>"SoQUITstuntinq", "url"=>"http://twitter.com/SoQUITstuntinq/status/461633456401707008", "source"=>"Twitter"}, {"contentid"=>"461633319759663104", "ldate"=>"Wed Apr 30 22:28:54 +0000 2014", "author"=>"#PRAYFORSOUTHKOREA", "perferredUsername"=>"kwonyuri557", "url"=>"http://twitter.com/kwonyuri557/status/461633319759663104", "source"=>"Twitter"}, {"contentid"=>"461633286511423488", "ldate"=>"Wed Apr 30 22:28:46 +0000 2014", "author"=>"YungxBasedXBruh", "perferredUsername"=>"YungxBasedxBruh", "url"=>"http://twitter.com/YungxBasedxBruh/status/461633286511423488", "source"=>"Twitter"}, {"contentid"=>"461633278433177601", "ldate"=>"Wed Apr 30 22:28:44 +0000 2014", "author"=>"Tye", "perferredUsername"=>"TyeRaySmith", "url"=>"http://twitter.com/TyeRaySmith/status/461633278433177601", "source"=>"Twitter"}, {"contentid"=>"461633194086125568", "ldate"=>"Wed Apr 30 22:28:24 +0000 2014", "author"=>"Hunter", "perferredUsername"=>"OldGuWop", "url"=>"http://twitter.com/OldGuWop/status/461633194086125568", "source"=>"Twitter"}, {"contentid"=>"461633187681415168", "ldate"=>"Wed Apr 30 22:28:23 +0000 2014", "author"=>"Sir' $wank", "perferredUsername"=>"Daddy_Reem", "url"=>"http://twitter.com/Daddy_Reem/status/461633187681415168", "source"=>"Twitter"}, {"contentid"=>"461633153539391489", "ldate"=>"Wed Apr 30 22:28:15 +0000 2014", "author"=>"", "perferredUsername"=>"x_vyntxgeo5", "url"=>"http://twitter.com/x_vyntxgeo5/status/461633153539391489", "source"=>"Twitter"}, {"contentid"=>"461633131532267520", "ldate"=>"Wed Apr 30 22:28:09 +0000 2014", "author"=>"Melanie ", "perferredUsername"=>"melanie_marie97", "url"=>"http://twitter.com/melanie_marie97/status/461633131532267520", "source"=>"Twitter"}, {"contentid"=>"461633113332805632", "ldate"=>"Wed Apr 30 22:28:05 +0000 2014", "author"=>"Petar D. Fourlinski", "perferredUsername"=>"mistasvetas", "url"=>"http://twitter.com/mistasvetas/status/461633113332805632", "source"=>"Twitter"}, {"contentid"=>"461633004570288128", "ldate"=>"Wed Apr 30 22:27:39 +0000 2014", "author"=>"COOKIE MONSTER", "perferredUsername"=>"FreeTopher", "url"=>"http://twitter.com/FreeTopher/status/461633004570288128", "source"=>"Twitter"}, {"contentid"=>"461632914992533505", "ldate"=>"Wed Apr 30 22:27:18 +0000 2014", "author"=>"Nikki Boner Barataco", "perferredUsername"=>"CleverFoxNikki", "url"=>"http://twitter.com/CleverFoxNikki/status/461632914992533505", "source"=>"Twitter"}]}, "requestid"=>"e27ecea6-b0b6-42c6-8459-19d26016a520"}
|
104
|
+
I, [2014-04-30T18:42:01.974008 #32088] INFO -- : Prediction loader waiting for scores ...
|
105
|
+
D, [2014-04-30T18:42:01.974045 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
106
|
+
D, [2014-04-30T18:57:00.958241 #32088] DEBUG -- : Adding posts for scout_id: 27
|
107
|
+
D, [2014-04-30T18:57:00.959382 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Kesy Namikaze", body: "WTF bruh they adding sales taxes to Amazon purchase...", url: "http://twitter.com/kesyj13/status/46163692394224844...", source: "Twitter", sentiment: #<BigDecimal:770a3f8,'0.0',9(36)>, leadprob: #<BigDecimal:770a1c8,'0.9696257387 883592E0',18(45)>, notleadprob: #<BigDecimal:7709f98,'0.7000175755 526066E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461636923942248448", ldate: "2014-04-30 22:43:14", loadstamp: "2014-04-30 22:57:00", user_id: 7, scout_id: 27>
|
108
|
+
D, [2014-04-30T18:57:00.973791 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Jim Murray", body: "RT @AmandaBeadle: Florida Senate debating tuition e...", url: "http://twitter.com/murray_jim/status/46163704058125...", source: "Twitter", sentiment: #<BigDecimal:7ee1b08,'0.0',9(36)>, leadprob: #<BigDecimal:7ee18d8,'0.8354695187 236224E0',18(45)>, notleadprob: #<BigDecimal:7ee16a8,'0.5263248228 018261E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461637040581259264", ldate: "2014-04-30 22:43:41", loadstamp: "2014-04-30 22:57:00", user_id: 7, scout_id: 27>
|
109
|
+
D, [2014-04-30T18:57:00.990406 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Rev. Big Baby Huey", body: "Even when #RickScott is being truthful, he is anoth...", url: "http://twitter.com/RevBigBabyHuey/status/4616399172...", source: "Twitter", sentiment: #<BigDecimal:7df11d0,'0.0',9(36)>, leadprob: #<BigDecimal:7df0f00,'0.8786553085 961936E0',18(45)>, notleadprob: #<BigDecimal:7df0b90,'0.8050057901 186779E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461639917265625088", ldate: "2014-04-30 22:55:07", loadstamp: "2014-04-30 22:57:00", user_id: 7, scout_id: 27>
|
110
|
+
I, [2014-04-30T18:57:01.006176 #32088] INFO -- : Total Number of records: 3
|
111
|
+
I, [2014-04-30T18:57:01.006222 #32088] INFO -- : Total Number of records Not Loaded: 0
|
112
|
+
I, [2014-04-30T18:57:01.006252 #32088] INFO -- : Prediction loader waiting for scores ...
|
113
|
+
D, [2014-04-30T18:57:01.006282 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
114
|
+
W, [2014-04-30T18:57:02.016919 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"Don't Text & Drive produced by Sugar Ray Coney: http://t.co/jfqLaGGA4e via @YouTube", "contentid"=>"461640136518664193"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/8aG8vxUvLS", "contentid"=>"461640066386112513"}, {"content"=>"RT @MelanieShebel: It's not safe to text and drive! Drive Now. TXT L8R. #TXTL8RIN http://t.co/7hCF8ef8kG", "contentid"=>"461640007678435328"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/EpsyYF9aSC", "contentid"=>"461639758931042304"}, {"content"=>"I can drive to another store before destiny can text back", "contentid"=>"461639743709536256"}, {"content"=>"@madwilk10 Madi don't text and drive! Ur dangerous enough", "contentid"=>"461639653552967680"}, {"content"=>"I wish my driving instructor or someone like that sent me a text by mistake id be creasin for daysὢ9ὠ2", "contentid"=>"461639639057833984"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461639431821463552"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461639426901553152"}, {"content"=>"Don't text and drive guys", "contentid"=>"461639424498229248"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/lA6bOg8V4N", "contentid"=>"461639198752391168"}, {"content"=>"@s_temean You shouldn't text and drive...oh wait...you're stuck in traffic. lol", "contentid"=>"461638706164936704"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461638461494018048"}, {"content"=>"RT @HurricaneRina_: don't text me while u driving I refuse to be on that commercial like \"this is the txt that killed my friend\" like no so…", "contentid"=>"461638334084022272"}, {"content"=>"RT @imthatgirlxox: Dont text and drive #itcanwait", "contentid"=>"461638101899558912"}, {"content"=>"RT @HurricaneRina_: don't text me while u driving I refuse to be on that commercial like \"this is the txt that killed my friend\" like no so…", "contentid"=>"461638101497294848"}, {"content"=>"RT @FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461637981258805249"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/uAw7n8rg4n", "contentid"=>"461637724760723457"}, {"content"=>"@ericasweeney48 I was driving their when I got dat text", "contentid"=>"461637722952962048"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461637516261875713"}, {"content"=>"Most have probably seen this video http://t.co/VJPib4gOSO - but it seems like many need a reminder. Don't text & drive. #LeaveThePhoneALone", "contentid"=>"461637500227047424"}, {"content"=>"I text and drive while I drive by the police station because I'm obviously really rebellious", "contentid"=>"461637488000258048"}, {"content"=>"RT @DaveGaudreau: Happy to see the Police at the base of the Osborne bridge checking for distracted drivers. Don't text and Drive, save a …", "contentid"=>"461637477493534720"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461637448729366528"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/qJrOPLXtGf", "contentid"=>"461637415653081088"}, {"content"=>"Happy to see the Police at the base of the Osborne bridge checking for distracted drivers. Don't text and Drive, save a life.", "contentid"=>"461637380743512065"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461637348615520256"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461637310455746560"}, {"content"=>"Mmmm wouldn't know if my godson and cousin made it home alive from driving here from Florida bcus I got no text backkkkk ὢ1 @alexandriaculin", "contentid"=>"461637270655991808"}, {"content"=>"@BethCrawshawx excuse me David doesn't text and drive ✋", "contentid"=>"461637264200982528"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/DbhJsCrs61", "contentid"=>"461637190251212801"}, {"content"=>"Dont text and drive #itcanwait", "contentid"=>"461637161276538881"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461637143199502336"}, {"content"=>"Thumb bands to remind you to NOT TEXT AND DRIVE!\n$1.50 or less! http://t.co/bJk4cCi80n", "contentid"=>"461637075402760192"}, {"content"=>"I try really hard not to text and drive... Snapchat is another story", "contentid"=>"461636971979235330"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461636935803346944"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461636857176924160"}, {"content"=>"RT @Ria11Rialove: so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/S…", "contentid"=>"461636836582895617"}, {"content"=>"Mom's text: DON'T TEXT AND DRIVE\nMe: I'm not driving, and aren't you on your way home from work… driving? \n-no response-", "contentid"=>"461636811316424706"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461636782996856833"}, {"content"=>"\"@Fatafati_: How do people text while driving. I can barely blink ὠ2\" I saw someone eating a yoghurt once", "contentid"=>"461636762511872000"}, {"content"=>"Just watched a motorcycle cop stop and text in the middle of the road. I guess it's okay to text and drive now.", "contentid"=>"461636740457840641"}, {"content"=>"Crazy how when you first start driving its kinda scary, but then you eventually get to the point where you can text n drive no fucks given", "contentid"=>"461636668466819072"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461636658157592576"}, {"content"=>"Although, we end National Distrcted Driving month, take our year around pledge to NOT Text and Drive. @LASPD http://t.co/09MdGhuFCs", "contentid"=>"461636632756514817"}, {"content"=>"RT @LibertyIRL: Tomorrow, it will be an offence to read or send a text at the wheel. 13% of Irish drivers admit to using a phone while driv…", "contentid"=>"461636604617297920"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461640136518664193", "ldate"=>"Wed Apr 30 22:56:00 +0000 2014", "author"=>"sugar ray coney", "perferredUsername"=>"sugarrayconey", "url"=>"http://twitter.com/sugarrayconey/status/461640136518664193", "source"=>"Twitter"}, {"contentid"=>"461640066386112513", "ldate"=>"Wed Apr 30 22:55:43 +0000 2014", "author"=>"Milly", "perferredUsername"=>"MillyGates_", "url"=>"http://twitter.com/MillyGates_/status/461640066386112513", "source"=>"Twitter"}, {"contentid"=>"461640007678435328", "ldate"=>"Wed Apr 30 22:55:29 +0000 2014", "author"=>"Mrfish1", "perferredUsername"=>"Mrfish12", "url"=>"http://twitter.com/Mrfish12/status/461640007678435328", "source"=>"Twitter"}, {"contentid"=>"461639758931042304", "ldate"=>"Wed Apr 30 22:54:30 +0000 2014", "author"=>"Maria(:", "perferredUsername"=>"MariaTobler1", "url"=>"http://twitter.com/MariaTobler1/status/461639758931042304", "source"=>"Twitter"}, {"contentid"=>"461639743709536256", "ldate"=>"Wed Apr 30 22:54:26 +0000 2014", "author"=>"Steven", "perferredUsername"=>"StevenBriesch", "url"=>"http://twitter.com/StevenBriesch/status/461639743709536256", "source"=>"Twitter"}, {"contentid"=>"461639653552967680", "ldate"=>"Wed Apr 30 22:54:04 +0000 2014", "author"=>"cody wilkerson", "perferredUsername"=>"CodyWilk3006", "url"=>"http://twitter.com/CodyWilk3006/status/461639653552967680", "source"=>"Twitter"}, {"contentid"=>"461639639057833984", "ldate"=>"Wed Apr 30 22:54:01 +0000 2014", "author"=>"kenzie ", "perferredUsername"=>"Kenzie_Craddock", "url"=>"http://twitter.com/Kenzie_Craddock/status/461639639057833984", "source"=>"Twitter"}, {"contentid"=>"461639431821463552", "ldate"=>"Wed Apr 30 22:53:12 +0000 2014", "author"=>"Aaron Mc. ", "perferredUsername"=>"I_BeDaBaller", "url"=>"http://twitter.com/I_BeDaBaller/status/461639431821463552", "source"=>"Twitter"}, {"contentid"=>"461639426901553152", "ldate"=>"Wed Apr 30 22:53:10 +0000 2014", "author"=>"Angelo Tsagarakis", "perferredUsername"=>"actsagarakis", "url"=>"http://twitter.com/actsagarakis/status/461639426901553152", "source"=>"Twitter"}, {"contentid"=>"461639424498229248", "ldate"=>"Wed Apr 30 22:53:10 +0000 2014", "author"=>"Parris ♡", "perferredUsername"=>"parrisxo", "url"=>"http://twitter.com/parrisxo/status/461639424498229248", "source"=>"Twitter"}, {"contentid"=>"461639198752391168", "ldate"=>"Wed Apr 30 22:52:16 +0000 2014", "author"=>"Sarah", "perferredUsername"=>"Collegestuck", "url"=>"http://twitter.com/Collegestuck/status/461639198752391168", "source"=>"Twitter"}, {"contentid"=>"461638706164936704", "ldate"=>"Wed Apr 30 22:50:19 +0000 2014", "author"=>"Smiley", "perferredUsername"=>"smiley49", "url"=>"http://twitter.com/smiley49/status/461638706164936704", "source"=>"Twitter"}, {"contentid"=>"461638461494018048", "ldate"=>"Wed Apr 30 22:49:20 +0000 2014", "author"=>"◄⭕Alex Biegunski⭕►", "perferredUsername"=>"Wazzupjj98", "url"=>"http://twitter.com/Wazzupjj98/status/461638461494018048", "source"=>"Twitter"}, {"contentid"=>"461638334084022272", "ldate"=>"Wed Apr 30 22:48:50 +0000 2014", "author"=>"❄️Ashley❄️", "perferredUsername"=>"Ashhhleeeeyyyyy", "url"=>"http://twitter.com/Ashhhleeeeyyyyy/status/461638334084022272", "source"=>"Twitter"}, {"contentid"=>"461638101899558912", "ldate"=>"Wed Apr 30 22:47:54 +0000 2014", "author"=>"✨befferrr_pieeee✨", "perferredUsername"=>"aTaylor4life12", "url"=>"http://twitter.com/aTaylor4life12/status/461638101899558912", "source"=>"Twitter"}, {"contentid"=>"461638101497294848", "ldate"=>"Wed Apr 30 22:47:54 +0000 2014", "author"=>"♋️", "perferredUsername"=>"Itsjonathan15", "url"=>"http://twitter.com/Itsjonathan15/status/461638101497294848", "source"=>"Twitter"}, {"contentid"=>"461637981258805249", "ldate"=>"Wed Apr 30 22:47:26 +0000 2014", "author"=>"Destiny Blair", "perferredUsername"=>"Baes_queen__", "url"=>"http://twitter.com/Baes_queen__/status/461637981258805249", "source"=>"Twitter"}, {"contentid"=>"461637724760723457", "ldate"=>"Wed Apr 30 22:46:25 +0000 2014", "author"=>"Tierra Ellie ™", "perferredUsername"=>"Elllie_Winter", "url"=>"http://twitter.com/Elllie_Winter/status/461637724760723457", "source"=>"Twitter"}, {"contentid"=>"461637722952962048", "ldate"=>"Wed Apr 30 22:46:24 +0000 2014", "author"=>"queen", "perferredUsername"=>"leahsimps0n", "url"=>"http://twitter.com/leahsimps0n/status/461637722952962048", "source"=>"Twitter"}, {"contentid"=>"461637516261875713", "ldate"=>"Wed Apr 30 22:45:35 +0000 2014", "author"=>"A$VP", "perferredUsername"=>"Lil_PoloDown_", "url"=>"http://twitter.com/Lil_PoloDown_/status/461637516261875713", "source"=>"Twitter"}, {"contentid"=>"461637500227047424", "ldate"=>"Wed Apr 30 22:45:31 +0000 2014", "author"=>"CQ RCMP", "perferredUsername"=>"cqrcmp", "url"=>"http://twitter.com/cqrcmp/status/461637500227047424", "source"=>"Twitter"}, {"contentid"=>"461637488000258048", "ldate"=>"Wed Apr 30 22:45:28 +0000 2014", "author"=>"kendall", "perferredUsername"=>"K_Daniels4", "url"=>"http://twitter.com/K_Daniels4/status/461637488000258048", "source"=>"Twitter"}, {"contentid"=>"461637477493534720", "ldate"=>"Wed Apr 30 22:45:26 +0000 2014", "author"=>"Manitoba NDP Caucus", "perferredUsername"=>"ndpcaucus", "url"=>"http://twitter.com/ndpcaucus/status/461637477493534720", "source"=>"Twitter"}, {"contentid"=>"461637448729366528", "ldate"=>"Wed Apr 30 22:45:19 +0000 2014", "author"=>"♌️✨✈️", "perferredUsername"=>"AyooRenn", "url"=>"http://twitter.com/AyooRenn/status/461637448729366528", "source"=>"Twitter"}, {"contentid"=>"461637415653081088", "ldate"=>"Wed Apr 30 22:45:11 +0000 2014", "author"=>"Cassidy Johnson", "perferredUsername"=>"crashjjohnson", "url"=>"http://twitter.com/crashjjohnson/status/461637415653081088", "source"=>"Twitter"}, {"contentid"=>"461637380743512065", "ldate"=>"Wed Apr 30 22:45:03 +0000 2014", "author"=>"Dave Gaudreau", "perferredUsername"=>"DaveGaudreau", "url"=>"http://twitter.com/DaveGaudreau/status/461637380743512065", "source"=>"Twitter"}, {"contentid"=>"461637348615520256", "ldate"=>"Wed Apr 30 22:44:55 +0000 2014", "author"=>"αмαяυ", "perferredUsername"=>"__ohsoblase", "url"=>"http://twitter.com/__ohsoblase/status/461637348615520256", "source"=>"Twitter"}, {"contentid"=>"461637310455746560", "ldate"=>"Wed Apr 30 22:44:46 +0000 2014", "author"=>"❤️YoungWild&Free❤️", "perferredUsername"=>"_YouBaeOrNah_", "url"=>"http://twitter.com/_YouBaeOrNah_/status/461637310455746560", "source"=>"Twitter"}, {"contentid"=>"461637270655991808", "ldate"=>"Wed Apr 30 22:44:36 +0000 2014", "author"=>"Kristen", "perferredUsername"=>"Kristenseefeldt", "url"=>"http://twitter.com/Kristenseefeldt/status/461637270655991808", "source"=>"Twitter"}, {"contentid"=>"461637264200982528", "ldate"=>"Wed Apr 30 22:44:35 +0000 2014", "author"=>"James Cook ", "perferredUsername"=>"kneveeehawkins", "url"=>"http://twitter.com/kneveeehawkins/status/461637264200982528", "source"=>"Twitter"}, {"contentid"=>"461637190251212801", "ldate"=>"Wed Apr 30 22:44:17 +0000 2014", "author"=>"I dont like you", "perferredUsername"=>"Toby_is_mein", "url"=>"http://twitter.com/Toby_is_mein/status/461637190251212801", "source"=>"Twitter"}, {"contentid"=>"461637161276538881", "ldate"=>"Wed Apr 30 22:44:10 +0000 2014", "author"=>"nikki alcini", "perferredUsername"=>"imthatgirlxox", "url"=>"http://twitter.com/imthatgirlxox/status/461637161276538881", "source"=>"Twitter"}, {"contentid"=>"461637143199502336", "ldate"=>"Wed Apr 30 22:44:06 +0000 2014", "author"=>"B-U-S-H-I-D-O", "perferredUsername"=>"xdinga", "url"=>"http://twitter.com/xdinga/status/461637143199502336", "source"=>"Twitter"}, {"contentid"=>"461637075402760192", "ldate"=>"Wed Apr 30 22:43:50 +0000 2014", "author"=>"Rhonda Sposato", "perferredUsername"=>"RK_Spot", "url"=>"http://twitter.com/RK_Spot/status/461637075402760192", "source"=>"Twitter"}, {"contentid"=>"461636971979235330", "ldate"=>"Wed Apr 30 22:43:25 +0000 2014", "author"=>"Melissa MS", "perferredUsername"=>"MelSunderland", "url"=>"http://twitter.com/MelSunderland/status/461636971979235330", "source"=>"Twitter"}, {"contentid"=>"461636935803346944", "ldate"=>"Wed Apr 30 22:43:16 +0000 2014", "author"=>"yagirldutches", "perferredUsername"=>"__xbossladyy", "url"=>"http://twitter.com/__xbossladyy/status/461636935803346944", "source"=>"Twitter"}, {"contentid"=>"461636857176924160", "ldate"=>"Wed Apr 30 22:42:58 +0000 2014", "author"=>"briceonmcmahand", "perferredUsername"=>"briceonmcmahand", "url"=>"http://twitter.com/briceonmcmahand/status/461636857176924160", "source"=>"Twitter"}, {"contentid"=>"461636836582895617", "ldate"=>"Wed Apr 30 22:42:53 +0000 2014", "author"=>"BE MINE NASH GRIER", "perferredUsername"=>"howgloriousofyo", "url"=>"http://twitter.com/howgloriousofyo/status/461636836582895617", "source"=>"Twitter"}, {"contentid"=>"461636811316424706", "ldate"=>"Wed Apr 30 22:42:47 +0000 2014", "author"=>"Shainia", "perferredUsername"=>"Shainia_L", "url"=>"http://twitter.com/Shainia_L/status/461636811316424706", "source"=>"Twitter"}, {"contentid"=>"461636782996856833", "ldate"=>"Wed Apr 30 22:42:40 +0000 2014", "author"=>"K E E G S ", "perferredUsername"=>"keegan_3hunna", "url"=>"http://twitter.com/keegan_3hunna/status/461636782996856833", "source"=>"Twitter"}, {"contentid"=>"461636762511872000", "ldate"=>"Wed Apr 30 22:42:35 +0000 2014", "author"=>"Abdo", "perferredUsername"=>"thenoureldin", "url"=>"http://twitter.com/thenoureldin/status/461636762511872000", "source"=>"Twitter"}, {"contentid"=>"461636740457840641", "ldate"=>"Wed Apr 30 22:42:30 +0000 2014", "author"=>"Ryan Kaser", "perferredUsername"=>"Ryankaser9", "url"=>"http://twitter.com/Ryankaser9/status/461636740457840641", "source"=>"Twitter"}, {"contentid"=>"461636668466819072", "ldate"=>"Wed Apr 30 22:42:13 +0000 2014", "author"=>"eddie", "perferredUsername"=>"CAMPA1N", "url"=>"http://twitter.com/CAMPA1N/status/461636668466819072", "source"=>"Twitter"}, {"contentid"=>"461636658157592576", "ldate"=>"Wed Apr 30 22:42:10 +0000 2014", "author"=>"ERIC HENRY ", "perferredUsername"=>"_ERICHENRY", "url"=>"http://twitter.com/_ERICHENRY/status/461636658157592576", "source"=>"Twitter"}, {"contentid"=>"461636632756514817", "ldate"=>"Wed Apr 30 22:42:04 +0000 2014", "author"=>"Chief Zipperman", "perferredUsername"=>"LASchoolPolice", "url"=>"http://twitter.com/LASchoolPolice/status/461636632756514817", "source"=>"Twitter"}, {"contentid"=>"461636604617297920", "ldate"=>"Wed Apr 30 22:41:58 +0000 2014", "author"=>"Andrew Murray", "perferredUsername"=>"The80sKids", "url"=>"http://twitter.com/The80sKids/status/461636604617297920", "source"=>"Twitter"}]}, "requestid"=>"5909f7bc-0799-4e36-a3d1-193adb72a724"}
|
115
|
+
I, [2014-04-30T18:57:02.017021 #32088] INFO -- : Prediction loader waiting for scores ...
|
116
|
+
D, [2014-04-30T18:57:02.017056 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
117
|
+
D, [2014-04-30T19:12:01.263592 #32088] DEBUG -- : Adding posts for scout_id: 27
|
118
|
+
D, [2014-04-30T19:12:01.263665 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
119
|
+
D, [2014-04-30T19:12:01.310729 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "CJU", body: "RT @ChuckGLP: Anheuser-Busch donated to these 2 Rep...", url: "http://twitter.com/coastiefromgpt/status/4616406663...", source: "Twitter", sentiment: #<BigDecimal:7e84688,'0.0',9(36)>, leadprob: #<BigDecimal:7e84458,'0.4061882149 303099E0',18(45)>, notleadprob: #<BigDecimal:7e84200,'0.9660896780 658177E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461640666305400833", ldate: "2014-04-30 22:58:06", loadstamp: "2014-04-30 23:12:01", user_id: 7, scout_id: 27>
|
120
|
+
D, [2014-04-30T19:12:01.329378 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Manolete John Garcia", body: "This is a VERY conservative part of Florida but wat...", url: "http://twitter.com/MJGarciaKCMO/status/461641027150...", source: "Twitter", sentiment: #<BigDecimal:7e13c80,'0.0',9(36)>, leadprob: #<BigDecimal:7e13a50,'0.8558092366 284294E0',18(45)>, notleadprob: #<BigDecimal:7e13820,'0.7763582826 285129E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461641027150176257", ldate: "2014-04-30 22:59:32", loadstamp: "2014-04-30 23:12:01", user_id: 7, scout_id: 27>
|
121
|
+
I, [2014-04-30T19:12:01.345186 #32088] INFO -- : Total Number of records: 2
|
122
|
+
I, [2014-04-30T19:12:01.345234 #32088] INFO -- : Total Number of records Not Loaded: 0
|
123
|
+
I, [2014-04-30T19:12:01.345264 #32088] INFO -- : Prediction loader waiting for scores ...
|
124
|
+
D, [2014-04-30T19:12:01.345296 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
125
|
+
W, [2014-04-30T19:12:02.440207 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"RT @MagicalVanessa: I wish my mom wouldn't text and drive", "contentid"=>"461643962026315776"}, {"content"=>"RT @SPFSADD: This is the cutest way to say don't text and drive!\nRetweet for an another iPad entry! http://t.co/JlwdcSz1f4", "contentid"=>"461643855788773376"}, {"content"=>"RT @cqrcmp: Most have probably seen this video http://t.co/VJPib4gOSO - but it seems like many need a reminder. Don't text & drive. #LeaveT…", "contentid"=>"461643847081029632"}, {"content"=>"Drivers that text and drive are 23 times more likely to be involved in a car accident. NO text is worth a life. http://t.co/4m7WTXEB6J", "contentid"=>"461643793331417088"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461643791149977601"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461643784200011776"}, {"content"=>"Do not text me while you're driving. If you crash, I don't want them to check your phone and see you were last texting me or some sh-t", "contentid"=>"461643710250237952"}, {"content"=>"@_FixmyAC you won't be driving anything if you don't text me back ὄA", "contentid"=>"461643559247290371"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461643518147309568"}, {"content"=>"RT @MelanieShebel: It's not safe to text and drive! Drive Now. TXT L8R. #TXTL8RIN http://t.co/7hCF8ef8kG", "contentid"=>"461643442876325888"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461643427994931200"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461643416775163905"}, {"content"=>"RT @BostInno: 28% of Connecticut drivers text & drive at the same time. Go home, Connecticut. http://t.co/SRomMqrvNW", "contentid"=>"461643367915720704"}, {"content"=>"RT @BostInno: 28% of Connecticut drivers text & drive at the same time. Go home, Connecticut. http://t.co/SRomMqrvNW", "contentid"=>"461643320507498496"}, {"content"=>"28% of Connecticut drivers text & drive at the same time. Go home, Connecticut. http://t.co/SRomMqrvNW", "contentid"=>"461643081343705090"}, {"content"=>"RT @HurricaneRina_: don't text me while u driving I refuse to be on that commercial like \"this is the txt that killed my friend\" like no so…", "contentid"=>"461643005087457280"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461642996316766208"}, {"content"=>"@patricedebonis your annoying cause I'm pretty sure the text before that was me showing concern and telling you how to drive in it but okay", "contentid"=>"461642994836586496"}, {"content"=>"“@Fact: Please, don't text and drive: http://t.co/TxSJm0loXu”still doesn't stop people.", "contentid"=>"461642840146472960"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/hMrUgJcyKt", "contentid"=>"461642770420367360"}, {"content"=>"*@lilfrick gets one text while she was driving for 15 minutes* \"Crap I'm popular!\"", "contentid"=>"461642714640314368"}, {"content"=>"RT @Tiffy_013: My moms the type to text me and ask me where I am.... THEN get mad at me for replying while I'm driving.", "contentid"=>"461642561208074241"}, {"content"=>"RT @mileysbae: I ain't ever text and drive cuz I know My mama gon be on TV reading my last outgoing text that says \"I can't wait to eat tha…", "contentid"=>"461642021996724224"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/HRulN96ljW", "contentid"=>"461641894569975808"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461641842342502400"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461641836768288769"}, {"content"=>"RT @_ItCanWait: SHOUT OUT TO: @Hannah__Kline for taking the pledge not to text and drive ! DRIVE NOW, TXT L8R #TXTL8RIN", "contentid"=>"461641806862495745"}, {"content"=>"Emojis on their own line in a tweet or text drive me crazyyyyy", "contentid"=>"461641799727996928"}, {"content"=>"RT @couurtneee_: I text, tweet, talk on the phone, and change my music while driving. I'm such a rebel. ὠ8", "contentid"=>"461641752860848128"}, {"content"=>"Text message marketing is an easy, cost-effective way to drive more business. Go to http://t.co/9to1FjiI8W to learn more.", "contentid"=>"461641741636874241"}, {"content"=>"RT @SoxyFoxyCoxy: 'Dont text and drive' signs on the highway just remind me to send a text that I forgot about earlier.", "contentid"=>"461641739334193154"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461641728295186432"}, {"content"=>"@PIayCrackTheSky my car doesn't have power steering to it's hard to text and drive.", "contentid"=>"461641715863265280"}, {"content"=>"RT @FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461641481980108800"}, {"content"=>"@PIayCrackTheSky exactly. I always text back right away unless in driving lol", "contentid"=>"461641437738967040"}, {"content"=>"RT @HurricaneRina_: don't text me while u driving I refuse to be on that commercial like \"this is the txt that killed my friend\" like no so…", "contentid"=>"461641360714764288"}, {"content"=>"I wish my mom wouldn't text and drive", "contentid"=>"461641351655071744"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461641349885067264"}, {"content"=>"My moms the type to text me and ask me where I am.... THEN get mad at me for replying while I'm driving.", "contentid"=>"461641339143073793"}, {"content"=>"RT @LASchoolPolice: Although, we end National Distrcted Driving month, take our year around pledge to NOT Text and Drive. @LASPD http://t.c…", "contentid"=>"461641230523183105"}, {"content"=>"@dianamarieexo bc D made me promise not to text & drive ❤️ I love you http://t.co/rEheYpXjEs", "contentid"=>"461641041645666304"}, {"content"=>"How do you know you're deep in thought while driving? Your text message tone startles you! #smallheartattack", "contentid"=>"461641009642733568"}, {"content"=>"DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappedaround a treeἳ2ὡE\"", "contentid"=>"461640845058273280"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461640716159307776"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461640683208851457"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461640465637728256"}, {"content"=>"Don't Text & Drive produced by Sugar Ray Coney http://t.co/FhvhDiCRfM", "contentid"=>"461640450445938688"}, {"content"=>"@fjo_jr lmaoo cause you text & drive too much + other things lol", "contentid"=>"461640438240534528"}, {"content"=>"Do you realize that your kids will emulate you? They learn faster than you realize. Don't Drink and Drive or Text while Driving!", "contentid"=>"461640356996460544"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461643962026315776", "ldate"=>"Wed Apr 30 23:11:12 +0000 2014", "author"=>"Selena Lopez", "perferredUsername"=>"selena_e64", "url"=>"http://twitter.com/selena_e64/status/461643962026315776", "source"=>"Twitter"}, {"contentid"=>"461643855788773376", "ldate"=>"Wed Apr 30 23:10:46 +0000 2014", "author"=>"Zianne_♡", "perferredUsername"=>"zianne_hoover", "url"=>"http://twitter.com/zianne_hoover/status/461643855788773376", "source"=>"Twitter"}, {"contentid"=>"461643847081029632", "ldate"=>"Wed Apr 30 23:10:44 +0000 2014", "author"=>"Steve", "perferredUsername"=>"Steve68554689", "url"=>"http://twitter.com/Steve68554689/status/461643847081029632", "source"=>"Twitter"}, {"contentid"=>"461643793331417088", "ldate"=>"Wed Apr 30 23:10:31 +0000 2014", "author"=>"Williamson Insurance", "perferredUsername"=>"WilliamsonInsr", "url"=>"http://twitter.com/WilliamsonInsr/status/461643793331417088", "source"=>"Twitter"}, {"contentid"=>"461643791149977601", "ldate"=>"Wed Apr 30 23:10:31 +0000 2014", "author"=>"christina gembicki", "perferredUsername"=>"MadestThouLook", "url"=>"http://twitter.com/MadestThouLook/status/461643791149977601", "source"=>"Twitter"}, {"contentid"=>"461643784200011776", "ldate"=>"Wed Apr 30 23:10:29 +0000 2014", "author"=>"Nurfarah Nabila", "perferredUsername"=>"frhnbl", "url"=>"http://twitter.com/frhnbl/status/461643784200011776", "source"=>"Twitter"}, {"contentid"=>"461643710250237952", "ldate"=>"Wed Apr 30 23:10:12 +0000 2014", "author"=>"meleni.", "perferredUsername"=>"HeleniHopoi", "url"=>"http://twitter.com/HeleniHopoi/status/461643710250237952", "source"=>"Twitter"}, {"contentid"=>"461643559247290371", "ldate"=>"Wed Apr 30 23:09:36 +0000 2014", "author"=>"Tony Becton", "perferredUsername"=>"tbecton_2", "url"=>"http://twitter.com/tbecton_2/status/461643559247290371", "source"=>"Twitter"}, {"contentid"=>"461643518147309568", "ldate"=>"Wed Apr 30 23:09:26 +0000 2014", "author"=>"Tino No Lackin", "perferredUsername"=>"Nasty_Tino", "url"=>"http://twitter.com/Nasty_Tino/status/461643518147309568", "source"=>"Twitter"}, {"contentid"=>"461643442876325888", "ldate"=>"Wed Apr 30 23:09:08 +0000 2014", "author"=>"Michael Buttler", "perferredUsername"=>"mibuttler", "url"=>"http://twitter.com/mibuttler/status/461643442876325888", "source"=>"Twitter"}, {"contentid"=>"461643427994931200", "ldate"=>"Wed Apr 30 23:09:04 +0000 2014", "author"=>"Ryan Forsythe", "perferredUsername"=>"forsythe_ryan17", "url"=>"http://twitter.com/forsythe_ryan17/status/461643427994931200", "source"=>"Twitter"}, {"contentid"=>"461643416775163905", "ldate"=>"Wed Apr 30 23:09:02 +0000 2014", "author"=>"Queen.", "perferredUsername"=>"_FvckYoCurls", "url"=>"http://twitter.com/_FvckYoCurls/status/461643416775163905", "source"=>"Twitter"}, {"contentid"=>"461643367915720704", "ldate"=>"Wed Apr 30 23:08:50 +0000 2014", "author"=>"Greg R", "perferredUsername"=>"GregRizz", "url"=>"http://twitter.com/GregRizz/status/461643367915720704", "source"=>"Twitter"}, {"contentid"=>"461643320507498496", "ldate"=>"Wed Apr 30 23:08:39 +0000 2014", "author"=>"Dave Dudek", "perferredUsername"=>"redsoxdad", "url"=>"http://twitter.com/redsoxdad/status/461643320507498496", "source"=>"Twitter"}, {"contentid"=>"461643081343705090", "ldate"=>"Wed Apr 30 23:07:42 +0000 2014", "author"=>"BostInno", "perferredUsername"=>"BostInno", "url"=>"http://twitter.com/BostInno/status/461643081343705090", "source"=>"Twitter"}, {"contentid"=>"461643005087457280", "ldate"=>"Wed Apr 30 23:07:24 +0000 2014", "author"=>"ZaddyKay", "perferredUsername"=>"atTRACKtive_xo", "url"=>"http://twitter.com/atTRACKtive_xo/status/461643005087457280", "source"=>"Twitter"}, {"contentid"=>"461642996316766208", "ldate"=>"Wed Apr 30 23:07:21 +0000 2014", "author"=>"Harrison", "perferredUsername"=>"chelletharrison", "url"=>"http://twitter.com/chelletharrison/status/461642996316766208", "source"=>"Twitter"}, {"contentid"=>"461642994836586496", "ldate"=>"Wed Apr 30 23:07:21 +0000 2014", "author"=>"Cole World", "perferredUsername"=>"Rocco_mazz", "url"=>"http://twitter.com/Rocco_mazz/status/461642994836586496", "source"=>"Twitter"}, {"contentid"=>"461642840146472960", "ldate"=>"Wed Apr 30 23:06:44 +0000 2014", "author"=>"Danielle", "perferredUsername"=>"DanielleSaxon", "url"=>"http://twitter.com/DanielleSaxon/status/461642840146472960", "source"=>"Twitter"}, {"contentid"=>"461642770420367360", "ldate"=>"Wed Apr 30 23:06:28 +0000 2014", "author"=>"Ashley Diana", "perferredUsername"=>"mysticfairy2012", "url"=>"http://twitter.com/mysticfairy2012/status/461642770420367360", "source"=>"Twitter"}, {"contentid"=>"461642714640314368", "ldate"=>"Wed Apr 30 23:06:14 +0000 2014", "author"=>" that fufu lame", "perferredUsername"=>"eddie_thomas1", "url"=>"http://twitter.com/eddie_thomas1/status/461642714640314368", "source"=>"Twitter"}, {"contentid"=>"461642561208074241", "ldate"=>"Wed Apr 30 23:05:38 +0000 2014", "author"=>"GabrielaCordova", "perferredUsername"=>"gaby_dova", "url"=>"http://twitter.com/gaby_dova/status/461642561208074241", "source"=>"Twitter"}, {"contentid"=>"461642021996724224", "ldate"=>"Wed Apr 30 23:03:29 +0000 2014", "author"=>"UGH", "perferredUsername"=>"leslyeochoa1", "url"=>"http://twitter.com/leslyeochoa1/status/461642021996724224", "source"=>"Twitter"}, {"contentid"=>"461641894569975808", "ldate"=>"Wed Apr 30 23:02:59 +0000 2014", "author"=>"Harlen Garham", "perferredUsername"=>"HarliniMartini", "url"=>"http://twitter.com/HarliniMartini/status/461641894569975808", "source"=>"Twitter"}, {"contentid"=>"461641842342502400", "ldate"=>"Wed Apr 30 23:02:46 +0000 2014", "author"=>"Alyisha", "perferredUsername"=>"Aishoutheone", "url"=>"http://twitter.com/Aishoutheone/status/461641842342502400", "source"=>"Twitter"}, {"contentid"=>"461641836768288769", "ldate"=>"Wed Apr 30 23:02:45 +0000 2014", "author"=>"Evan Byrd", "perferredUsername"=>"Mr_New_Orleans7", "url"=>"http://twitter.com/Mr_New_Orleans7/status/461641836768288769", "source"=>"Twitter"}, {"contentid"=>"461641806862495745", "ldate"=>"Wed Apr 30 23:02:38 +0000 2014", "author"=>"jane westwood", "perferredUsername"=>"WestwoodJane", "url"=>"http://twitter.com/WestwoodJane/status/461641806862495745", "source"=>"Twitter"}, {"contentid"=>"461641799727996928", "ldate"=>"Wed Apr 30 23:02:36 +0000 2014", "author"=>"Tayyy", "perferredUsername"=>"taybeezy21", "url"=>"http://twitter.com/taybeezy21/status/461641799727996928", "source"=>"Twitter"}, {"contentid"=>"461641752860848128", "ldate"=>"Wed Apr 30 23:02:25 +0000 2014", "author"=>"Chastityy•", "perferredUsername"=>"ThatGirlChas", "url"=>"http://twitter.com/ThatGirlChas/status/461641752860848128", "source"=>"Twitter"}, {"contentid"=>"461641741636874241", "ldate"=>"Wed Apr 30 23:02:22 +0000 2014", "author"=>"Mike Larry", "perferredUsername"=>"MikeLarry8616", "url"=>"http://twitter.com/MikeLarry8616/status/461641741636874241", "source"=>"Twitter"}, {"contentid"=>"461641739334193154", "ldate"=>"Wed Apr 30 23:02:22 +0000 2014", "author"=>"Dustin Ragusa", "perferredUsername"=>"DustRagu", "url"=>"http://twitter.com/DustRagu/status/461641739334193154", "source"=>"Twitter"}, {"contentid"=>"461641728295186432", "ldate"=>"Wed Apr 30 23:02:19 +0000 2014", "author"=>"Caroline Herriman ", "perferredUsername"=>"ColinRobertsgm", "url"=>"http://twitter.com/ColinRobertsgm/status/461641728295186432", "source"=>"Twitter"}, {"contentid"=>"461641715863265280", "ldate"=>"Wed Apr 30 23:02:16 +0000 2014", "author"=>"Andonis.", "perferredUsername"=>"sinodnA", "url"=>"http://twitter.com/sinodnA/status/461641715863265280", "source"=>"Twitter"}, {"contentid"=>"461641481980108800", "ldate"=>"Wed Apr 30 23:01:20 +0000 2014", "author"=>"Rauli Boeee⚡️", "perferredUsername"=>"nini_loveeee", "url"=>"http://twitter.com/nini_loveeee/status/461641481980108800", "source"=>"Twitter"}, {"contentid"=>"461641437738967040", "ldate"=>"Wed Apr 30 23:01:10 +0000 2014", "author"=>"Andonis.", "perferredUsername"=>"sinodnA", "url"=>"http://twitter.com/sinodnA/status/461641437738967040", "source"=>"Twitter"}, {"contentid"=>"461641360714764288", "ldate"=>"Wed Apr 30 23:00:51 +0000 2014", "author"=>"*RICH HOMIE*", "perferredUsername"=>"31_keith", "url"=>"http://twitter.com/31_keith/status/461641360714764288", "source"=>"Twitter"}, {"contentid"=>"461641351655071744", "ldate"=>"Wed Apr 30 23:00:49 +0000 2014", "author"=>"Vanessa Lopez♡", "perferredUsername"=>"MagicalVanessa", "url"=>"http://twitter.com/MagicalVanessa/status/461641351655071744", "source"=>"Twitter"}, {"contentid"=>"461641349885067264", "ldate"=>"Wed Apr 30 23:00:49 +0000 2014", "author"=>"#ItzJustSɪϻøɴ", "perferredUsername"=>"ItzJustSimon", "url"=>"http://twitter.com/ItzJustSimon/status/461641349885067264", "source"=>"Twitter"}, {"contentid"=>"461641339143073793", "ldate"=>"Wed Apr 30 23:00:46 +0000 2014", "author"=>"Tiffany Bell", "perferredUsername"=>"Tiffy_013", "url"=>"http://twitter.com/Tiffy_013/status/461641339143073793", "source"=>"Twitter"}, {"contentid"=>"461641230523183105", "ldate"=>"Wed Apr 30 23:00:20 +0000 2014", "author"=>"LASPD", "perferredUsername"=>"LASPD", "url"=>"http://twitter.com/LASPD/status/461641230523183105", "source"=>"Twitter"}, {"contentid"=>"461641041645666304", "ldate"=>"Wed Apr 30 22:59:35 +0000 2014", "author"=>"angelina", "perferredUsername"=>"xoangelinaoxo", "url"=>"http://twitter.com/xoangelinaoxo/status/461641041645666304", "source"=>"Twitter"}, {"contentid"=>"461641009642733568", "ldate"=>"Wed Apr 30 22:59:28 +0000 2014", "author"=>"Nichol Green", "perferredUsername"=>"NicholGreen", "url"=>"http://twitter.com/NicholGreen/status/461641009642733568", "source"=>"Twitter"}, {"contentid"=>"461640845058273280", "ldate"=>"Wed Apr 30 22:58:48 +0000 2014", "author"=>"K R I S H A Y ❤️", "perferredUsername"=>"ShayThePreddi1", "url"=>"http://twitter.com/ShayThePreddi1/status/461640845058273280", "source"=>"Twitter"}, {"contentid"=>"461640716159307776", "ldate"=>"Wed Apr 30 22:58:18 +0000 2014", "author"=>"yana tyb ✨", "perferredUsername"=>"_xoyanakartel", "url"=>"http://twitter.com/_xoyanakartel/status/461640716159307776", "source"=>"Twitter"}, {"contentid"=>"461640683208851457", "ldate"=>"Wed Apr 30 22:58:10 +0000 2014", "author"=>"jack fisher", "perferredUsername"=>"jackisphresh", "url"=>"http://twitter.com/jackisphresh/status/461640683208851457", "source"=>"Twitter"}, {"contentid"=>"461640465637728256", "ldate"=>"Wed Apr 30 22:57:18 +0000 2014", "author"=>"Domo_Bethea", "perferredUsername"=>"DominiqueBethea", "url"=>"http://twitter.com/DominiqueBethea/status/461640465637728256", "source"=>"Twitter"}, {"contentid"=>"461640450445938688", "ldate"=>"Wed Apr 30 22:57:14 +0000 2014", "author"=>"sugar ray coney", "perferredUsername"=>"sugarrayconey", "url"=>"http://twitter.com/sugarrayconey/status/461640450445938688", "source"=>"Twitter"}, {"contentid"=>"461640438240534528", "ldate"=>"Wed Apr 30 22:57:12 +0000 2014", "author"=>"❄️Ashley❄️", "perferredUsername"=>"Ashhhleeeeyyyyy", "url"=>"http://twitter.com/Ashhhleeeeyyyyy/status/461640438240534528", "source"=>"Twitter"}, {"contentid"=>"461640356996460544", "ldate"=>"Wed Apr 30 22:56:52 +0000 2014", "author"=>"Public Safety East", "perferredUsername"=>"PublicSafetyEst", "url"=>"http://twitter.com/PublicSafetyEst/status/461640356996460544", "source"=>"Twitter"}]}, "requestid"=>"30e4b868-04e6-4542-bca9-736e6b4d5dcf"}
|
126
|
+
I, [2014-04-30T19:12:02.440334 #32088] INFO -- : Prediction loader waiting for scores ...
|
127
|
+
D, [2014-04-30T19:12:02.440374 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
128
|
+
D, [2014-04-30T19:27:01.366337 #32088] DEBUG -- : Adding posts for scout_id: 27
|
129
|
+
D, [2014-04-30T19:27:01.367994 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Full Lates News", body: "Republican David Jolly Defeats Democrat Alex Sink I...", url: "http://twitter.com/FullLatesNews3/status/4616470422...", source: "Twitter", sentiment: #<BigDecimal:7ed8af8,'0.0',9(36)>, leadprob: #<BigDecimal:7ed88c8,'0.6730169016 655186E0',18(45)>, notleadprob: #<BigDecimal:7ed8698,'0.9267394750 759193E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461647042264064000", ldate: "2014-04-30 23:23:26", loadstamp: "2014-04-30 23:27:01", user_id: 7, scout_id: 27>
|
130
|
+
D, [2014-04-30T19:27:01.385631 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Pirate News", body: "FL Governor Poll: Crist 48, Scott 38 - A new poll ...", url: "http://twitter.com/Pirate_News_/status/461647630464...", source: "Twitter", sentiment: #<BigDecimal:7dc8320,'0.0',9(36)>, leadprob: #<BigDecimal:7dc80c8,'0.8258000889 839934E0',18(45)>, notleadprob: #<BigDecimal:7dbff68,'0.8730444479 488177E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461647630464872448", ldate: "2014-04-30 23:25:46", loadstamp: "2014-04-30 23:27:01", user_id: 7, scout_id: 27>
|
131
|
+
I, [2014-04-30T19:27:01.400799 #32088] INFO -- : Total Number of records: 2
|
132
|
+
I, [2014-04-30T19:27:01.400843 #32088] INFO -- : Total Number of records Not Loaded: 0
|
133
|
+
I, [2014-04-30T19:27:01.400873 #32088] INFO -- : Prediction loader waiting for scores ...
|
134
|
+
D, [2014-04-30T19:27:01.400906 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
135
|
+
W, [2014-04-30T19:27:02.106015 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"#TXTL8RIN Don't text and drive... Any questions? https://t.co/YhNMKKOZe7", "contentid"=>"461647853103104000"}, {"content"=>"Seeing people text and drive makes me SO angry. Especially teenagers.", "contentid"=>"461647799906353152"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461647605882433537"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461647439854727169"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461647290672091136"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461647237685075968"}, {"content"=>"if you text and drive we can't be friends!!! this is a zero tolerance policy don't be an idiot and put other people in danger :-)))", "contentid"=>"461647197382012928"}, {"content"=>"@MelanieShebel RT @MelanieShebel: It's not safe to text and drive! Drive Now. TXT L8R. #TXTL8RIN http://t.co/0CKYDfeONk", "contentid"=>"461646788122787841"}, {"content"=>"Seriously people? What makes you feel so important that you need to text while you drive? No conversation is worth another person's life.", "contentid"=>"461646780380090368"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/GGoN6fJx9b", "contentid"=>"461646657239937024"}, {"content"=>"It's so ironic to see someone that has a \"no texting and driving\" sticker while they text and driveὡ1", "contentid"=>"461646296399368192"}, {"content"=>"Your phone can wait. Its not going anywhere ,but you might if you text and drive.\n #TXTL8RIN", "contentid"=>"461646201717133313"}, {"content"=>"RT @HurricaneRina_: don't text me while u driving I refuse to be on that commercial like \"this is the txt that killed my friend\" like no so…", "contentid"=>"461646196910862336"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461645763265572864"}, {"content"=>"RT @incindyous: I don't let bae text and drive cus bae can't be bae if bae is dead. #MIND2014", "contentid"=>"461645643069390850"}, {"content"=>"@Wy_SoSerious I literally just decided I was as I was driving thank you & I just sent a group text to everybody!", "contentid"=>"461645592792678400"}, {"content"=>"“@rowdyyyy_: My parents never let me drive anywhere” can u text back", "contentid"=>"461645587784273921"}, {"content"=>"I will never let my parents text and drive. I'll do it for them", "contentid"=>"461645367096778752"}, {"content"=>"@Arriibeerryyy @marisolovely_ lol @ times you'd drive for me when id text ὠ2", "contentid"=>"461645314756059136"}, {"content"=>"Attention drivers of Wharton, I'll be joyriding on my bike so y'all don't text and drive and run me over #kthanks", "contentid"=>"461644781672615938"}, {"content"=>"Drive now text later! Be a responsible driver, don't text and drive. #TXTL8RIN http://t.co/nwID34Z9WT", "contentid"=>"461644645878218752"}, {"content"=>"Have you taken the pledge to not text and drive? #TXTL8RI", "contentid"=>"461644582208274432"}, {"content"=>"RT @ManteYung: @PassKeyyy don't text and drive paskey.", "contentid"=>"461644510628687874"}, {"content"=>"RT @MelanieShebel: It's not safe to text and drive! Drive Now. TXT L8R. #TXTL8RIN http://t.co/7hCF8ef8kG", "contentid"=>"461644377270398977"}, {"content"=>"“@tbecton_2: @_FixmyAC you won't be driving anything if you don't text me back ὄA” http://t.co/GomLBBSpRf", "contentid"=>"461644363135582211"}, {"content"=>"@PassKeyyy don't text and drive paskey.", "contentid"=>"461644291710787584"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461647853103104000", "ldate"=>"Wed Apr 30 23:26:39 +0000 2014", "author"=>"Hammond Civic Center", "perferredUsername"=>"HammondCivicCen", "url"=>"http://twitter.com/HammondCivicCen/status/461647853103104000", "source"=>"Twitter"}, {"contentid"=>"461647799906353152", "ldate"=>"Wed Apr 30 23:26:27 +0000 2014", "author"=>"Gabby Corrao", "perferredUsername"=>"BabbyGabby_11", "url"=>"http://twitter.com/BabbyGabby_11/status/461647799906353152", "source"=>"Twitter"}, {"contentid"=>"461647605882433537", "ldate"=>"Wed Apr 30 23:25:40 +0000 2014", "author"=>"Queen_Sirama", "perferredUsername"=>"Sirama_2_Lovely", "url"=>"http://twitter.com/Sirama_2_Lovely/status/461647605882433537", "source"=>"Twitter"}, {"contentid"=>"461647439854727169", "ldate"=>"Wed Apr 30 23:25:01 +0000 2014", "author"=>"Jake Sexton", "perferredUsername"=>"SexyTown4000", "url"=>"http://twitter.com/SexyTown4000/status/461647439854727169", "source"=>"Twitter"}, {"contentid"=>"461647290672091136", "ldate"=>"Wed Apr 30 23:24:25 +0000 2014", "author"=>"Dessy ", "perferredUsername"=>"Desstanii_", "url"=>"http://twitter.com/Desstanii_/status/461647290672091136", "source"=>"Twitter"}, {"contentid"=>"461647237685075968", "ldate"=>"Wed Apr 30 23:24:13 +0000 2014", "author"=>"Diana Elizabeth", "perferredUsername"=>"Diana1345A", "url"=>"http://twitter.com/Diana1345A/status/461647237685075968", "source"=>"Twitter"}, {"contentid"=>"461647197382012928", "ldate"=>"Wed Apr 30 23:24:03 +0000 2014", "author"=>"♡ Kayla ♡", "perferredUsername"=>"dweebery", "url"=>"http://twitter.com/dweebery/status/461647197382012928", "source"=>"Twitter"}, {"contentid"=>"461646788122787841", "ldate"=>"Wed Apr 30 23:22:25 +0000 2014", "author"=>"BogDan Wrzesinski", "perferredUsername"=>"godsent247", "url"=>"http://twitter.com/godsent247/status/461646788122787841", "source"=>"Twitter"}, {"contentid"=>"461646780380090368", "ldate"=>"Wed Apr 30 23:22:24 +0000 2014", "author"=>"Zander Thornburg", "perferredUsername"=>"zanderthornburg", "url"=>"http://twitter.com/zanderthornburg/status/461646780380090368", "source"=>"Twitter"}, {"contentid"=>"461646657239937024", "ldate"=>"Wed Apr 30 23:21:54 +0000 2014", "author"=>"savannah ♛", "perferredUsername"=>"samagsby", "url"=>"http://twitter.com/samagsby/status/461646657239937024", "source"=>"Twitter"}, {"contentid"=>"461646296399368192", "ldate"=>"Wed Apr 30 23:20:28 +0000 2014", "author"=>"Maddie:))))", "perferredUsername"=>"maddiecarlock_", "url"=>"http://twitter.com/maddiecarlock_/status/461646296399368192", "source"=>"Twitter"}, {"contentid"=>"461646201717133313", "ldate"=>"Wed Apr 30 23:20:06 +0000 2014", "author"=>"Katheryn Henderson", "perferredUsername"=>"kehtigg96er", "url"=>"http://twitter.com/kehtigg96er/status/461646201717133313", "source"=>"Twitter"}, {"contentid"=>"461646196910862336", "ldate"=>"Wed Apr 30 23:20:04 +0000 2014", "author"=>"Dominique Singletary", "perferredUsername"=>"Skullzboy252", "url"=>"http://twitter.com/Skullzboy252/status/461646196910862336", "source"=>"Twitter"}, {"contentid"=>"461645763265572864", "ldate"=>"Wed Apr 30 23:18:21 +0000 2014", "author"=>"Evan Rosner", "perferredUsername"=>"Evan_Rosner", "url"=>"http://twitter.com/Evan_Rosner/status/461645763265572864", "source"=>"Twitter"}, {"contentid"=>"461645643069390850", "ldate"=>"Wed Apr 30 23:17:52 +0000 2014", "author"=>"Jemmings◇", "perferredUsername"=>"kAnnabalistic", "url"=>"http://twitter.com/kAnnabalistic/status/461645643069390850", "source"=>"Twitter"}, {"contentid"=>"461645592792678400", "ldate"=>"Wed Apr 30 23:17:40 +0000 2014", "author"=>"La'trice✨", "perferredUsername"=>"BonitaBlasian_", "url"=>"http://twitter.com/BonitaBlasian_/status/461645592792678400", "source"=>"Twitter"}, {"contentid"=>"461645587784273921", "ldate"=>"Wed Apr 30 23:17:39 +0000 2014", "author"=>"Kay Schliegelmeyer", "perferredUsername"=>"callmekaylynn", "url"=>"http://twitter.com/callmekaylynn/status/461645587784273921", "source"=>"Twitter"}, {"contentid"=>"461645367096778752", "ldate"=>"Wed Apr 30 23:16:47 +0000 2014", "author"=>"lexie✨", "perferredUsername"=>"lexie_1089", "url"=>"http://twitter.com/lexie_1089/status/461645367096778752", "source"=>"Twitter"}, {"contentid"=>"461645314756059136", "ldate"=>"Wed Apr 30 23:16:34 +0000 2014", "author"=>"Anissa", "perferredUsername"=>"nissakassaundra", "url"=>"http://twitter.com/nissakassaundra/status/461645314756059136", "source"=>"Twitter"}, {"contentid"=>"461644781672615938", "ldate"=>"Wed Apr 30 23:14:27 +0000 2014", "author"=>"Jael Ramirez", "perferredUsername"=>"jaelramirez09", "url"=>"http://twitter.com/jaelramirez09/status/461644781672615938", "source"=>"Twitter"}, {"contentid"=>"461644645878218752", "ldate"=>"Wed Apr 30 23:13:55 +0000 2014", "author"=>"Audrey", "perferredUsername"=>"AudreyTraylor", "url"=>"http://twitter.com/AudreyTraylor/status/461644645878218752", "source"=>"Twitter"}, {"contentid"=>"461644582208274432", "ldate"=>"Wed Apr 30 23:13:40 +0000 2014", "author"=>"Katheryn Henderson", "perferredUsername"=>"kehtigg96er", "url"=>"http://twitter.com/kehtigg96er/status/461644582208274432", "source"=>"Twitter"}, {"contentid"=>"461644510628687874", "ldate"=>"Wed Apr 30 23:13:22 +0000 2014", "author"=>"Pascale", "perferredUsername"=>"PassKeyyy", "url"=>"http://twitter.com/PassKeyyy/status/461644510628687874", "source"=>"Twitter"}, {"contentid"=>"461644377270398977", "ldate"=>"Wed Apr 30 23:12:51 +0000 2014", "author"=>"maryauda", "perferredUsername"=>"maryauda", "url"=>"http://twitter.com/maryauda/status/461644377270398977", "source"=>"Twitter"}, {"contentid"=>"461644363135582211", "ldate"=>"Wed Apr 30 23:12:47 +0000 2014", "author"=>"Queen.", "perferredUsername"=>"_FixmyAC", "url"=>"http://twitter.com/_FixmyAC/status/461644363135582211", "source"=>"Twitter"}, {"contentid"=>"461644291710787584", "ldate"=>"Wed Apr 30 23:12:30 +0000 2014", "author"=>"Mr.TooReal", "perferredUsername"=>"ManteYung", "url"=>"http://twitter.com/ManteYung/status/461644291710787584", "source"=>"Twitter"}]}, "requestid"=>"676bd065-363d-4461-9c83-9ea8b6628901"}
|
136
|
+
I, [2014-04-30T19:27:02.106097 #32088] INFO -- : Prediction loader waiting for scores ...
|
137
|
+
D, [2014-04-30T19:27:02.106131 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
138
|
+
D, [2014-04-30T19:42:01.561877 #32088] DEBUG -- : Adding posts for scout_id: 27
|
139
|
+
D, [2014-04-30T19:42:01.561952 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
140
|
+
D, [2014-04-30T19:42:01.571142 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "USF Business", body: "RT @usfsbdc: GLT Total Office spurs #growth of comp...", url: "http://twitter.com/USFBusiness/status/4616500907559...", source: "Twitter", sentiment: #<BigDecimal:7b760b8,'0.0',9(36)>, leadprob: #<BigDecimal:7b75e88,'0.8659030616 375853E0',18(45)>, notleadprob: #<BigDecimal:7b75c58,'0.7029713238 811658E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461650090755911680", ldate: "2014-04-30 23:35:33", loadstamp: "2014-04-30 23:42:01", user_id: 7, scout_id: 27>
|
141
|
+
D, [2014-04-30T19:42:01.591023 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Jeff Odgis", body: "RT @RepTedDeutch: Graphic: Here's what #1010Means f...", url: "http://twitter.com/SaidTheater/status/4616502372000...", source: "Twitter", sentiment: #<BigDecimal:7b0d950,'0.0',9(36)>, leadprob: #<BigDecimal:7b0d720,'0.8275129795 447093E0',18(45)>, notleadprob: #<BigDecimal:7b0d4f0,'0.6267857952 108301E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461650237200039936", ldate: "2014-04-30 23:36:08", loadstamp: "2014-04-30 23:42:01", user_id: 7, scout_id: 27>
|
142
|
+
I, [2014-04-30T19:42:01.606397 #32088] INFO -- : Total Number of records: 2
|
143
|
+
I, [2014-04-30T19:42:01.606441 #32088] INFO -- : Total Number of records Not Loaded: 0
|
144
|
+
I, [2014-04-30T19:42:01.606471 #32088] INFO -- : Prediction loader waiting for scores ...
|
145
|
+
D, [2014-04-30T19:42:01.606503 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
146
|
+
W, [2014-04-30T19:42:02.579001 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461651609475637249"}, {"content"=>"DO NOT TEXT ME WHILE YOU'RE DRIVING I'm not trying to be the last unfinished message they find when your ass is wrapped around a tree.", "contentid"=>"461651593101066240"}, {"content"=>"#parentsbelike \"don't text and drive\" After they blow your phone up smh", "contentid"=>"461651333788221440"}, {"content"=>"RT @The_MikeWest: Bullshit. Corvette's do not have back seats. http://t.co/XQ6fdpOKN9 #Hoax “@Fact: Please, don't text and drive: http://t.…", "contentid"=>"461651256105136129"}, {"content"=>"got a long drive back home so, text, dm, kik, or snapchat me lmao but srsly", "contentid"=>"461651220529049601"}, {"content"=>"Bullshit. Corvette's do not have back seats. http://t.co/XQ6fdpOKN9 #Hoax “@Fact: Please, don't text and drive: http://t.co/nkBOKGOMHI”", "contentid"=>"461650821114253312"}, {"content"=>"WANTED!!!!!! Executive Producer! A Pastor unwillingly donates his son's organs after he is killed in a tragic text and driving accident.", "contentid"=>"461650794367184896"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461650734581166080"}, {"content"=>"Only 19% of Maine drivers text & drive at the same time. How does Mass. compare though? http://t.co/QPBvHkIouo", "contentid"=>"461650631388717058"}, {"content"=>"@channicebond So fun! So much money on petrol, but so fun racing other cars... I mean driving safely ὠ9 haha. I'll text you about a date xxx", "contentid"=>"461650492817686528"}, {"content"=>"RT @AdelMohamed5696: @littlejasmine1_ shush ὡ2 u didn't even text me :0 and I drive nigga why u tripping", "contentid"=>"461650387288604672"}, {"content"=>"RT @SwankThoughts: Don't text & drive, it can wait, seriously...", "contentid"=>"461650335115657217"}, {"content"=>"\"NIGGABITCH DONT TEXT AND DRIVE\" \nMy Nigga I tweet and drive haha! \nRight now I'm sitting in a chair drinking coke tho ;)\n@liamcious", "contentid"=>"461650320645308416"}, {"content"=>"RT @Hannah__Kline: Don't risk your life for something that can wait. Drive now, text later. #itcanwait #TXTL8RIN http://t.co/MFMa11QhLy", "contentid"=>"461650277565599745"}, {"content"=>"Somebody drive to the dells, come to wilderness, text me, and hangout with bc I can't handle this much family time. ὠ5ὡ0", "contentid"=>"461650229591150592"}, {"content"=>"RT @Hannah__Kline: Stop the violence. Don't text and drive. #TXTL8RIN http://t.co/X00vq3h5um", "contentid"=>"461650210326732800"}, {"content"=>"@littlejasmine1_ shush ὡ2 u didn't even text me :0 and I drive nigga why u tripping", "contentid"=>"461649786718797824"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461649775515807744"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461649731916427264"}, {"content"=>"RT @blaze4bettadayz: I can't stand people who drink & drive, text & drive or just don't pay attention. You will wish you would've when you …", "contentid"=>"461649506014986240"}, {"content"=>"RT @SwankThoughts: Don't text & drive, it can wait, seriously...", "contentid"=>"461649462709202944"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461649401241280512"}, {"content"=>"RT @BabbyGabby_11: Seeing people text and drive makes me SO angry. Especially teenagers.", "contentid"=>"461649224933732352"}, {"content"=>"RT @jwalk2012: \"@_ItCanWait: @jwalk2012 Do you take the pledge not to text and drive? #TXTL8RIN\"you bet!! #TXTL8RIN", "contentid"=>"461649143535251457"}, {"content"=>"RT @zanderthornburg: Seriously people? What makes you feel so important that you need to text while you drive? No conversation is worth ano…", "contentid"=>"461648939456806912"}, {"content"=>"RT @SwankThoughts: Don't text & drive, it can wait, seriously...", "contentid"=>"461648836021067776"}, {"content"=>"Don't text and drive kids.", "contentid"=>"461648800046911488"}, {"content"=>"RT @MelanieShebel: It's not safe to text and drive! Drive Now. TXT L8R. #TXTL8RIN http://t.co/7hCF8ef8kG", "contentid"=>"461648786473762817"}, {"content"=>"Don't text & drive, it can wait, seriously...", "contentid"=>"461648716357971968"}, {"content"=>"Don't text and drive kids. It's dangerous", "contentid"=>"461648711873871872"}, {"content"=>"RT @Hannah__Kline: Don't be like Tom Haverford. Don't text and drive. #seriouslythough #TXTL8RIN http://t.co/5VZMScl6kT", "contentid"=>"461648602356412416"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461648524598587392"}, {"content"=>"RT @Hannah__Kline: @SocramOrravan and I were featured in the paper today. He was my designated texter. Drive now, text later. #TXTL8RIN htt…", "contentid"=>"461648489496059904"}, {"content"=>"Just saw the craziest don't text and drive commercial. Felt so real", "contentid"=>"461648488090963968"}, {"content"=>"RT @Hannah__Kline: Arrive alive, don't text and drive. #TXTL8RIN", "contentid"=>"461648439801942017"}, {"content"=>"RT @Hannah__Kline: Don't risk your life for something that can wait. Drive now, text later. #itcanwait #TXTL8RIN http://t.co/MFMa11QhLy", "contentid"=>"461648413457530880"}, {"content"=>"RT @_ItCanWait: Do you take the pledge not to text and drive? #TXTL8RIN Let us know !", "contentid"=>"461648400178360320"}, {"content"=>"Text message marketing is an easy, cost-effective way to drive more business. Go to http://t.co/Lam5Q0bUky to learn more.", "contentid"=>"461648395333931008"}, {"content"=>"@missmolly_20 Don't text and drive!", "contentid"=>"461648351675809792"}, {"content"=>"I am gonna drive over to my cousins house and kick him in the nuts if he doesn't text me back. @KeepaCole", "contentid"=>"461648297174642688"}, {"content"=>"RT @Hannah__Kline: Stop the violence. Don't text and drive. #TXTL8RIN http://t.co/X00vq3h5um", "contentid"=>"461648292980334592"}, {"content"=>"If i ever die by texting and driving and I make those commercials i hope my last text is something real like \"iz we fucking or what? \"ὠ2", "contentid"=>"461648292208967680"}, {"content"=>"@optich3cz HECZ DONT TEXT DRIVE PLAYA DONT DO IT", "contentid"=>"461648209832837120"}, {"content"=>"RT @JBGMedia: #TXTL8RIN Don't text and drive... Any questions? https://t.co/FDaumytixL", "contentid"=>"461648197857718272"}, {"content"=>"@JLTito321 heck no I DO NOT text and drive. I am just saying when I drive home from work I always notice it and it drives me nuts lol", "contentid"=>"461648061739966466"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461648044123893760"}, {"content"=>"RT @BabbyGabby_11: Seeing people text and drive makes me SO angry. Especially teenagers.", "contentid"=>"461648015950761984"}, {"content"=>"#TXTL8RIN Don't text and drive... Any questions? https://t.co/FDaumytixL", "contentid"=>"461647982400512000"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/XOpWPcUydn", "contentid"=>"461647909797502976"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461651609475637249", "ldate"=>"Wed Apr 30 23:41:35 +0000 2014", "author"=>"Jessica McDonough", "perferredUsername"=>"Jessica17McD", "url"=>"http://twitter.com/Jessica17McD/status/461651609475637249", "source"=>"Twitter"}, {"contentid"=>"461651593101066240", "ldate"=>"Wed Apr 30 23:41:31 +0000 2014", "author"=>"Marylin is dtf", "perferredUsername"=>"_18_smile_", "url"=>"http://twitter.com/_18_smile_/status/461651593101066240", "source"=>"Twitter"}, {"contentid"=>"461651333788221440", "ldate"=>"Wed Apr 30 23:40:29 +0000 2014", "author"=>"Abby Sexton", "perferredUsername"=>"abbylsexton", "url"=>"http://twitter.com/abbylsexton/status/461651333788221440", "source"=>"Twitter"}, {"contentid"=>"461651256105136129", "ldate"=>"Wed Apr 30 23:40:11 +0000 2014", "author"=>"FeRg", "perferredUsername"=>"JFerguson50", "url"=>"http://twitter.com/JFerguson50/status/461651256105136129", "source"=>"Twitter"}, {"contentid"=>"461651220529049601", "ldate"=>"Wed Apr 30 23:40:02 +0000 2014", "author"=>"sam", "perferredUsername"=>"samanthamata_", "url"=>"http://twitter.com/samanthamata_/status/461651220529049601", "source"=>"Twitter"}, {"contentid"=>"461650821114253312", "ldate"=>"Wed Apr 30 23:38:27 +0000 2014", "author"=>"Mike West", "perferredUsername"=>"The_MikeWest", "url"=>"http://twitter.com/The_MikeWest/status/461650821114253312", "source"=>"Twitter"}, {"contentid"=>"461650794367184896", "ldate"=>"Wed Apr 30 23:38:21 +0000 2014", "author"=>"Ty Manns", "perferredUsername"=>"moviemaker50", "url"=>"http://twitter.com/moviemaker50/status/461650794367184896", "source"=>"Twitter"}, {"contentid"=>"461650734581166080", "ldate"=>"Wed Apr 30 23:38:06 +0000 2014", "author"=>"", "perferredUsername"=>"VALLERICHA", "url"=>"http://twitter.com/VALLERICHA/status/461650734581166080", "source"=>"Twitter"}, {"contentid"=>"461650631388717058", "ldate"=>"Wed Apr 30 23:37:42 +0000 2014", "author"=>"BostInno City", "perferredUsername"=>"BostInnoCity", "url"=>"http://twitter.com/BostInnoCity/status/461650631388717058", "source"=>"Twitter"}, {"contentid"=>"461650492817686528", "ldate"=>"Wed Apr 30 23:37:09 +0000 2014", "author"=>"Melody James", "perferredUsername"=>"MelodyGJ", "url"=>"http://twitter.com/MelodyGJ/status/461650492817686528", "source"=>"Twitter"}, {"contentid"=>"461650387288604672", "ldate"=>"Wed Apr 30 23:36:44 +0000 2014", "author"=>"jasmine Valencia", "perferredUsername"=>"littlejasmine1_", "url"=>"http://twitter.com/littlejasmine1_/status/461650387288604672", "source"=>"Twitter"}, {"contentid"=>"461650335115657217", "ldate"=>"Wed Apr 30 23:36:31 +0000 2014", "author"=>"IG: TrinaTheCreator", "perferredUsername"=>"axvptrina_", "url"=>"http://twitter.com/axvptrina_/status/461650335115657217", "source"=>"Twitter"}, {"contentid"=>"461650320645308416", "ldate"=>"Wed Apr 30 23:36:28 +0000 2014", "author"=>" ..... ", "perferredUsername"=>"AndresMontoya08", "url"=>"http://twitter.com/AndresMontoya08/status/461650320645308416", "source"=>"Twitter"}, {"contentid"=>"461650277565599745", "ldate"=>"Wed Apr 30 23:36:17 +0000 2014", "author"=>"Jeremy W. Cox", "perferredUsername"=>"Cox2354", "url"=>"http://twitter.com/Cox2354/status/461650277565599745", "source"=>"Twitter"}, {"contentid"=>"461650229591150592", "ldate"=>"Wed Apr 30 23:36:06 +0000 2014", "author"=>"Chelsea", "perferredUsername"=>"chelseaaaaaamay", "url"=>"http://twitter.com/chelseaaaaaamay/status/461650229591150592", "source"=>"Twitter"}, {"contentid"=>"461650210326732800", "ldate"=>"Wed Apr 30 23:36:01 +0000 2014", "author"=>"Jeremy W. Cox", "perferredUsername"=>"Cox2354", "url"=>"http://twitter.com/Cox2354/status/461650210326732800", "source"=>"Twitter"}, {"contentid"=>"461649786718797824", "ldate"=>"Wed Apr 30 23:34:20 +0000 2014", "author"=>"moe", "perferredUsername"=>"AdelMohamed5696", "url"=>"http://twitter.com/AdelMohamed5696/status/461649786718797824", "source"=>"Twitter"}, {"contentid"=>"461649775515807744", "ldate"=>"Wed Apr 30 23:34:18 +0000 2014", "author"=>"Chibi Mantalas", "perferredUsername"=>"thelittlest_one", "url"=>"http://twitter.com/thelittlest_one/status/461649775515807744", "source"=>"Twitter"}, {"contentid"=>"461649731916427264", "ldate"=>"Wed Apr 30 23:34:07 +0000 2014", "author"=>"Maary S.", "perferredUsername"=>"MAARYS_", "url"=>"http://twitter.com/MAARYS_/status/461649731916427264", "source"=>"Twitter"}, {"contentid"=>"461649506014986240", "ldate"=>"Wed Apr 30 23:33:13 +0000 2014", "author"=>"Taylor", "perferredUsername"=>"chaaattoo", "url"=>"http://twitter.com/chaaattoo/status/461649506014986240", "source"=>"Twitter"}, {"contentid"=>"461649462709202944", "ldate"=>"Wed Apr 30 23:33:03 +0000 2014", "author"=>"Joni Tiara", "perferredUsername"=>"joni_tiara", "url"=>"http://twitter.com/joni_tiara/status/461649462709202944", "source"=>"Twitter"}, {"contentid"=>"461649401241280512", "ldate"=>"Wed Apr 30 23:32:48 +0000 2014", "author"=>"Tara Jackson", "perferredUsername"=>"taraamichele13", "url"=>"http://twitter.com/taraamichele13/status/461649401241280512", "source"=>"Twitter"}, {"contentid"=>"461649224933732352", "ldate"=>"Wed Apr 30 23:32:06 +0000 2014", "author"=>"Hannah Dziedzic", "perferredUsername"=>"dziedzic_hannah", "url"=>"http://twitter.com/dziedzic_hannah/status/461649224933732352", "source"=>"Twitter"}, {"contentid"=>"461649143535251457", "ldate"=>"Wed Apr 30 23:31:47 +0000 2014", "author"=>"Brittany Wells", "perferredUsername"=>"brittwells30", "url"=>"http://twitter.com/brittwells30/status/461649143535251457", "source"=>"Twitter"}, {"contentid"=>"461648939456806912", "ldate"=>"Wed Apr 30 23:30:58 +0000 2014", "author"=>"Stupac", "perferredUsername"=>"stubydoo7", "url"=>"http://twitter.com/stubydoo7/status/461648939456806912", "source"=>"Twitter"}, {"contentid"=>"461648836021067776", "ldate"=>"Wed Apr 30 23:30:34 +0000 2014", "author"=>"Sigh Santiago", "perferredUsername"=>"SighArmoir", "url"=>"http://twitter.com/SighArmoir/status/461648836021067776", "source"=>"Twitter"}, {"contentid"=>"461648800046911488", "ldate"=>"Wed Apr 30 23:30:25 +0000 2014", "author"=>"...it's Nyeila", "perferredUsername"=>"Alieyn_", "url"=>"http://twitter.com/Alieyn_/status/461648800046911488", "source"=>"Twitter"}, {"contentid"=>"461648786473762817", "ldate"=>"Wed Apr 30 23:30:22 +0000 2014", "author"=>"David Haskell", "perferredUsername"=>"DDHaskell", "url"=>"http://twitter.com/DDHaskell/status/461648786473762817", "source"=>"Twitter"}, {"contentid"=>"461648716357971968", "ldate"=>"Wed Apr 30 23:30:05 +0000 2014", "author"=>"", "perferredUsername"=>"SwankThoughts", "url"=>"http://twitter.com/SwankThoughts/status/461648716357971968", "source"=>"Twitter"}, {"contentid"=>"461648711873871872", "ldate"=>"Wed Apr 30 23:30:04 +0000 2014", "author"=>"Bluto", "perferredUsername"=>"MatthewEvansky_", "url"=>"http://twitter.com/MatthewEvansky_/status/461648711873871872", "source"=>"Twitter"}, {"contentid"=>"461648602356412416", "ldate"=>"Wed Apr 30 23:29:38 +0000 2014", "author"=>"Jennifer Walker-Craw", "perferredUsername"=>"jwalk2012", "url"=>"http://twitter.com/jwalk2012/status/461648602356412416", "source"=>"Twitter"}, {"contentid"=>"461648524598587392", "ldate"=>"Wed Apr 30 23:29:19 +0000 2014", "author"=>"brianna chantae", "perferredUsername"=>"AsheBennerwfp", "url"=>"http://twitter.com/AsheBennerwfp/status/461648524598587392", "source"=>"Twitter"}, {"contentid"=>"461648489496059904", "ldate"=>"Wed Apr 30 23:29:11 +0000 2014", "author"=>"Jennifer Walker-Craw", "perferredUsername"=>"jwalk2012", "url"=>"http://twitter.com/jwalk2012/status/461648489496059904", "source"=>"Twitter"}, {"contentid"=>"461648488090963968", "ldate"=>"Wed Apr 30 23:29:11 +0000 2014", "author"=>"Capstone Creations", "perferredUsername"=>"CapstonCreatnoi", "url"=>"http://twitter.com/CapstonCreatnoi/status/461648488090963968", "source"=>"Twitter"}, {"contentid"=>"461648439801942017", "ldate"=>"Wed Apr 30 23:28:59 +0000 2014", "author"=>"Jennifer Walker-Craw", "perferredUsername"=>"jwalk2012", "url"=>"http://twitter.com/jwalk2012/status/461648439801942017", "source"=>"Twitter"}, {"contentid"=>"461648413457530880", "ldate"=>"Wed Apr 30 23:28:53 +0000 2014", "author"=>"Jennifer Walker-Craw", "perferredUsername"=>"jwalk2012", "url"=>"http://twitter.com/jwalk2012/status/461648413457530880", "source"=>"Twitter"}, {"contentid"=>"461648400178360320", "ldate"=>"Wed Apr 30 23:28:50 +0000 2014", "author"=>"Jennifer Walker-Craw", "perferredUsername"=>"jwalk2012", "url"=>"http://twitter.com/jwalk2012/status/461648400178360320", "source"=>"Twitter"}, {"contentid"=>"461648395333931008", "ldate"=>"Wed Apr 30 23:28:49 +0000 2014", "author"=>"Samuel King", "perferredUsername"=>"designsbywje", "url"=>"http://twitter.com/designsbywje/status/461648395333931008", "source"=>"Twitter"}, {"contentid"=>"461648351675809792", "ldate"=>"Wed Apr 30 23:28:38 +0000 2014", "author"=>"Marla Durfee", "perferredUsername"=>"mcdurfee71", "url"=>"http://twitter.com/mcdurfee71/status/461648351675809792", "source"=>"Twitter"}, {"contentid"=>"461648297174642688", "ldate"=>"Wed Apr 30 23:28:25 +0000 2014", "author"=>"Kaci Knight", "perferredUsername"=>"kacisknight", "url"=>"http://twitter.com/kacisknight/status/461648297174642688", "source"=>"Twitter"}, {"contentid"=>"461648292980334592", "ldate"=>"Wed Apr 30 23:28:24 +0000 2014", "author"=>"Jennifer Walker-Craw", "perferredUsername"=>"jwalk2012", "url"=>"http://twitter.com/jwalk2012/status/461648292980334592", "source"=>"Twitter"}, {"contentid"=>"461648292208967680", "ldate"=>"Wed Apr 30 23:28:24 +0000 2014", "author"=>"Broke Homie Sean ", "perferredUsername"=>"KeepingItGeechi", "url"=>"http://twitter.com/KeepingItGeechi/status/461648292208967680", "source"=>"Twitter"}, {"contentid"=>"461648209832837120", "ldate"=>"Wed Apr 30 23:28:04 +0000 2014", "author"=>"BasedGodKrame", "perferredUsername"=>"MikeKramerrr", "url"=>"http://twitter.com/MikeKramerrr/status/461648209832837120", "source"=>"Twitter"}, {"contentid"=>"461648197857718272", "ldate"=>"Wed Apr 30 23:28:02 +0000 2014", "author"=>"Hammond Civic Center", "perferredUsername"=>"HammondCivicCen", "url"=>"http://twitter.com/HammondCivicCen/status/461648197857718272", "source"=>"Twitter"}, {"contentid"=>"461648061739966466", "ldate"=>"Wed Apr 30 23:27:29 +0000 2014", "author"=>"Shelby Roh", "perferredUsername"=>"ShelbyRoh", "url"=>"http://twitter.com/ShelbyRoh/status/461648061739966466", "source"=>"Twitter"}, {"contentid"=>"461648044123893760", "ldate"=>"Wed Apr 30 23:27:25 +0000 2014", "author"=>"Erick Sipin", "perferredUsername"=>"DGK_Erick", "url"=>"http://twitter.com/DGK_Erick/status/461648044123893760", "source"=>"Twitter"}, {"contentid"=>"461648015950761984", "ldate"=>"Wed Apr 30 23:27:18 +0000 2014", "author"=>"EM™", "perferredUsername"=>"EMendez415", "url"=>"http://twitter.com/EMendez415/status/461648015950761984", "source"=>"Twitter"}, {"contentid"=>"461647982400512000", "ldate"=>"Wed Apr 30 23:27:10 +0000 2014", "author"=>"JBG", "perferredUsername"=>"JBGMedia", "url"=>"http://twitter.com/JBGMedia/status/461647982400512000", "source"=>"Twitter"}, {"contentid"=>"461647909797502976", "ldate"=>"Wed Apr 30 23:26:53 +0000 2014", "author"=>"Andrew Sanghera", "perferredUsername"=>"AndrewSanghera", "url"=>"http://twitter.com/AndrewSanghera/status/461647909797502976", "source"=>"Twitter"}]}, "requestid"=>"ea680ab1-4ea9-415c-b876-b42f863384db"}
|
147
|
+
I, [2014-04-30T19:42:02.579217 #32088] INFO -- : Prediction loader waiting for scores ...
|
148
|
+
D, [2014-04-30T19:42:02.579258 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
149
|
+
D, [2014-04-30T19:57:00.825929 #32088] DEBUG -- : Adding posts for scout_id: 27
|
150
|
+
D, [2014-04-30T19:57:00.827425 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Max Return", body: "#Florida small business owners... get free tax tips...", url: "http://twitter.com/MaxReturnTax/status/461653295476...", source: "Twitter", sentiment: #<BigDecimal:14a9bc8,'0.0',9(36)>, leadprob: #<BigDecimal:14a9858,'0.9534807168 681566E0',18(45)>, notleadprob: #<BigDecimal:14a9538,'0.6859327799 244459E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461653295476391936", ldate: "2014-04-30 23:48:17", loadstamp: "2014-04-30 23:57:00", user_id: 7, scout_id: 27>
|
151
|
+
D, [2014-04-30T19:57:00.838080 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "twilight2000", body: "as many as six deaths a day that could be prevented...", url: "http://twitter.com/twilight2000/status/461654208459...", source: "Twitter", sentiment: #<BigDecimal:18248c0,'0.0',9(36)>, leadprob: #<BigDecimal:18241b8,'0.8479840380 518128E0',18(45)>, notleadprob: #<BigDecimal:182bc38,'0.9029908788 461118E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461654208459329536", ldate: "2014-04-30 23:51:55", loadstamp: "2014-04-30 23:57:00", user_id: 7, scout_id: 27>
|
152
|
+
D, [2014-04-30T19:57:00.854641 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Kate", body: "RT @MiamiHerald: Shopping on Amazon in Florida? Exp...", url: "http://twitter.com/travisina/status/461654274163101...", source: "Twitter", sentiment: #<BigDecimal:1a72b90,'0.0',9(36)>, leadprob: #<BigDecimal:1a728e8,'0.7195170979 687802E0',18(45)>, notleadprob: #<BigDecimal:1a72618,'0.6158989713 574841E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461654274163101696", ldate: "2014-04-30 23:52:10", loadstamp: "2014-04-30 23:57:00", user_id: 7, scout_id: 27>
|
153
|
+
D, [2014-04-30T19:57:00.871405 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Jacquelyn Calvert", body: "RT @twilight2000: as many as six deaths a day that ...", url: "http://twitter.com/JacquelynCalver/status/461655377...", source: "Twitter", sentiment: #<BigDecimal:1b32620,'0.0',9(36)>, leadprob: #<BigDecimal:1b322d8,'0.7280985613 417524E0',18(45)>, notleadprob: #<BigDecimal:1b32080,'0.9478662181 562217E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461655377239474176", ldate: "2014-04-30 23:56:33", loadstamp: "2014-04-30 23:57:00", user_id: 7, scout_id: 27>
|
154
|
+
I, [2014-04-30T19:57:00.887054 #32088] INFO -- : Total Number of records: 4
|
155
|
+
I, [2014-04-30T19:57:00.887099 #32088] INFO -- : Total Number of records Not Loaded: 0
|
156
|
+
I, [2014-04-30T19:57:00.887129 #32088] INFO -- : Prediction loader waiting for scores ...
|
157
|
+
D, [2014-04-30T19:57:00.887159 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
158
|
+
W, [2014-04-30T19:57:01.559887 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461655425843081216"}, {"content"=>"RT @LauknessMonster: Don't Text & Drive: http://t.co/SzN2ornstT via @YouTube", "contentid"=>"461655425424044032"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. That shits dangerous.", "contentid"=>"461655390527037440"}, {"content"=>"If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461655356850974720"}, {"content"=>"You aren't invincible, so don't text and drive #TXTL8RIN", "contentid"=>"461655319857229825"}, {"content"=>"Don't Text & Drive: http://t.co/SzN2ornstT via @YouTube", "contentid"=>"461655314132377600"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461655241121726464"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461655222121537536"}, {"content"=>"In order to survive, don’t text and drive #TXTL8RIN", "contentid"=>"461655165494247424"}, {"content"=>"Text on your own time, not while you are driving #TXTL8RIN", "contentid"=>"461655133491699712"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461655092114898945"}, {"content"=>"If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461655029653307393"}, {"content"=>"If you think that you can text and drive, you could be dead wrong #TXTL8RIN", "contentid"=>"461655007805198337"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461654916721672193"}, {"content"=>"My mom is crazy she literally gets mad when I don't text her back as I am driving", "contentid"=>"461654914125807616"}, {"content"=>"RT @Mr_Blondie_: Alex when you text and drive while he is in the car.@Bunk_Based http://t.co/1KjBLJG9mv", "contentid"=>"461654624122834945"}, {"content"=>"I HATE WHEN PEOPLE TEXT AND DRIVE", "contentid"=>"461654622999162880"}, {"content"=>"I have zero tolerance for people who text and drive", "contentid"=>"461654602849746944"}, {"content"=>"Moms it's not safe to text & drive especially in downtown", "contentid"=>"461654302751064064"}, {"content"=>"RT @RepairMethod: Tried to text u suck to @jeffersonrusso while driving. Came out I suck u. Means something totally different. #donttextand…", "contentid"=>"461654138279825408"}, {"content"=>"@kayyyyamanda I'm about to drive home. Text you in a few!", "contentid"=>"461654099553816576"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461653946013347840"}, {"content"=>"RT @Alieyn_: Don't text and drive kids.", "contentid"=>"461653562716864512"}, {"content"=>"DO NOT TEXT ME WHILE YOU'RE DRIVING im not trying to be the last unfinished message they find when your ass is wrapped around a tree", "contentid"=>"461653378750509056"}, {"content"=>"RT @Mr_Blondie_: Alex when you text and drive while he is in the car.@Bunk_Based http://t.co/1KjBLJG9mv", "contentid"=>"461653180506337281"}, {"content"=>"Even when my dad isn't with us he still manages to text us and point out the M as we drive by Golden #Minesalumchildrenproblems", "contentid"=>"461653092396589056"}, {"content"=>"RT @SahilsHaveEyes_: @cerespapi Bruh don't text and drive!", "contentid"=>"461653088395223040"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy … http://t.co/mbVX3FwleE", "contentid"=>"461653016626872320"}, {"content"=>"Alex when you text and drive while he is in the car.@Bunk_Based http://t.co/1KjBLJG9mv", "contentid"=>"461652942110867456"}, {"content"=>"Just received this text...if you're driving and encounter a flooded roadway, turn around! http://t.co/o1xzltisVO", "contentid"=>"461652848393330688"}, {"content"=>"Hate hate hate when people text and drive like umm hello? My life is more important than your fucking stupid text", "contentid"=>"461652675038158849"}, {"content"=>"@_taylorg_ I was already driving to school when I read your text ὣE", "contentid"=>"461652656432226304"}, {"content"=>"@cerespapi Bruh don't text and drive!", "contentid"=>"461652593253425152"}, {"content"=>"@drewINGTON I feels you. I've gotten used to mine now. Still hard to text and drive though.", "contentid"=>"461652591169265664"}, {"content"=>"RT @blaze4bettadayz: I can't stand people who drink & drive, text & drive or just don't pay attention. You will wish you would've when you …", "contentid"=>"461652589751599104"}, {"content"=>"I only text while I'm driving because trying to do smoke signals got me pulled over WAY faster.", "contentid"=>"461652366107107328"}, {"content"=>"“@Fact: Please, don't text and drive: http://t.co/Q5qv6NJC3O” this is just...", "contentid"=>"461652113513144321"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461651992926892032"}, {"content"=>"I try not to text and drive but its hard!", "contentid"=>"461651976015446016"}, {"content"=>"RT @ChristinaCIM: Don't text and drive wait a minute stay alive. IT CAN WAIT!!!!", "contentid"=>"461651968273182720"}, {"content"=>"RT @blaze4bettadayz: I can't stand people who drink & drive, text & drive or just don't pay attention. You will wish you would've when you …", "contentid"=>"461651960744394752"}, {"content"=>"@stlredbirds85 Damn. I'm with you. Don't text and drive. It's insanely dangerous.", "contentid"=>"461651756301451264"}, {"content"=>"RT @SwankThoughts: Don't text & drive, it can wait, seriously...", "contentid"=>"461651730674249729"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461651722688278528"}, {"content"=>"BE WISE DONT TEXT AND DRIVE #itcanwait", "contentid"=>"461651708314406914"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461655425843081216", "ldate"=>"Wed Apr 30 23:56:45 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461655425843081216", "source"=>"Twitter"}, {"contentid"=>"461655425424044032", "ldate"=>"Wed Apr 30 23:56:45 +0000 2014", "author"=>"Rod", "perferredUsername"=>"ROCKINRIZZLE", "url"=>"http://twitter.com/ROCKINRIZZLE/status/461655425424044032", "source"=>"Twitter"}, {"contentid"=>"461655390527037440", "ldate"=>"Wed Apr 30 23:56:36 +0000 2014", "author"=>"2014 ", "perferredUsername"=>"StayJBAGVato", "url"=>"http://twitter.com/StayJBAGVato/status/461655390527037440", "source"=>"Twitter"}, {"contentid"=>"461655356850974720", "ldate"=>"Wed Apr 30 23:56:28 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461655356850974720", "source"=>"Twitter"}, {"contentid"=>"461655319857229825", "ldate"=>"Wed Apr 30 23:56:20 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461655319857229825", "source"=>"Twitter"}, {"contentid"=>"461655314132377600", "ldate"=>"Wed Apr 30 23:56:18 +0000 2014", "author"=>"MrTechnicalDifficult", "perferredUsername"=>"LauknessMonster", "url"=>"http://twitter.com/LauknessMonster/status/461655314132377600", "source"=>"Twitter"}, {"contentid"=>"461655241121726464", "ldate"=>"Wed Apr 30 23:56:01 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461655241121726464", "source"=>"Twitter"}, {"contentid"=>"461655222121537536", "ldate"=>"Wed Apr 30 23:55:56 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461655222121537536", "source"=>"Twitter"}, {"contentid"=>"461655165494247424", "ldate"=>"Wed Apr 30 23:55:43 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461655165494247424", "source"=>"Twitter"}, {"contentid"=>"461655133491699712", "ldate"=>"Wed Apr 30 23:55:35 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461655133491699712", "source"=>"Twitter"}, {"contentid"=>"461655092114898945", "ldate"=>"Wed Apr 30 23:55:25 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461655092114898945", "source"=>"Twitter"}, {"contentid"=>"461655029653307393", "ldate"=>"Wed Apr 30 23:55:10 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461655029653307393", "source"=>"Twitter"}, {"contentid"=>"461655007805198337", "ldate"=>"Wed Apr 30 23:55:05 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461655007805198337", "source"=>"Twitter"}, {"contentid"=>"461654916721672193", "ldate"=>"Wed Apr 30 23:54:43 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461654916721672193", "source"=>"Twitter"}, {"contentid"=>"461654914125807616", "ldate"=>"Wed Apr 30 23:54:43 +0000 2014", "author"=>"Shea ", "perferredUsername"=>"shearose131", "url"=>"http://twitter.com/shearose131/status/461654914125807616", "source"=>"Twitter"}, {"contentid"=>"461654624122834945", "ldate"=>"Wed Apr 30 23:53:34 +0000 2014", "author"=>"Alexander", "perferredUsername"=>"Bunk_Based", "url"=>"http://twitter.com/Bunk_Based/status/461654624122834945", "source"=>"Twitter"}, {"contentid"=>"461654622999162880", "ldate"=>"Wed Apr 30 23:53:33 +0000 2014", "author"=>"AJ ⚽️⚽️", "perferredUsername"=>"AjAlaina", "url"=>"http://twitter.com/AjAlaina/status/461654622999162880", "source"=>"Twitter"}, {"contentid"=>"461654602849746944", "ldate"=>"Wed Apr 30 23:53:29 +0000 2014", "author"=>"mon qui qui", "perferredUsername"=>"monchichi_11", "url"=>"http://twitter.com/monchichi_11/status/461654602849746944", "source"=>"Twitter"}, {"contentid"=>"461654302751064064", "ldate"=>"Wed Apr 30 23:52:17 +0000 2014", "author"=>"S.", "perferredUsername"=>"Stephanie010392", "url"=>"http://twitter.com/Stephanie010392/status/461654302751064064", "source"=>"Twitter"}, {"contentid"=>"461654138279825408", "ldate"=>"Wed Apr 30 23:51:38 +0000 2014", "author"=>"Fo shizzle", "perferredUsername"=>"Kevin_Number_7", "url"=>"http://twitter.com/Kevin_Number_7/status/461654138279825408", "source"=>"Twitter"}, {"contentid"=>"461654099553816576", "ldate"=>"Wed Apr 30 23:51:29 +0000 2014", "author"=>"Tracey Rodriguez", "perferredUsername"=>"Trayyyceeee", "url"=>"http://twitter.com/Trayyyceeee/status/461654099553816576", "source"=>"Twitter"}, {"contentid"=>"461653946013347840", "ldate"=>"Wed Apr 30 23:50:52 +0000 2014", "author"=>"Kim Anderson ", "perferredUsername"=>"KimmySuA", "url"=>"http://twitter.com/KimmySuA/status/461653946013347840", "source"=>"Twitter"}, {"contentid"=>"461653562716864512", "ldate"=>"Wed Apr 30 23:49:21 +0000 2014", "author"=>"Christian Whitfill", "perferredUsername"=>"MexiMelt96", "url"=>"http://twitter.com/MexiMelt96/status/461653562716864512", "source"=>"Twitter"}, {"contentid"=>"461653378750509056", "ldate"=>"Wed Apr 30 23:48:37 +0000 2014", "author"=>".. iGETCRAZY XD", "perferredUsername"=>"_shaaeeB", "url"=>"http://twitter.com/_shaaeeB/status/461653378750509056", "source"=>"Twitter"}, {"contentid"=>"461653180506337281", "ldate"=>"Wed Apr 30 23:47:50 +0000 2014", "author"=>"Daniel", "perferredUsername"=>"Bunk_Caveman", "url"=>"http://twitter.com/Bunk_Caveman/status/461653180506337281", "source"=>"Twitter"}, {"contentid"=>"461653092396589056", "ldate"=>"Wed Apr 30 23:47:28 +0000 2014", "author"=>"Brittney Smith", "perferredUsername"=>"britts021", "url"=>"http://twitter.com/britts021/status/461653092396589056", "source"=>"Twitter"}, {"contentid"=>"461653088395223040", "ldate"=>"Wed Apr 30 23:47:28 +0000 2014", "author"=>"playboy", "perferredUsername"=>"cerespapi", "url"=>"http://twitter.com/cerespapi/status/461653088395223040", "source"=>"Twitter"}, {"contentid"=>"461653016626872320", "ldate"=>"Wed Apr 30 23:47:10 +0000 2014", "author"=>"cee•死んだ•shell", "perferredUsername"=>"ceeceratops", "url"=>"http://twitter.com/ceeceratops/status/461653016626872320", "source"=>"Twitter"}, {"contentid"=>"461652942110867456", "ldate"=>"Wed Apr 30 23:46:53 +0000 2014", "author"=>"~Mr.Deeds~", "perferredUsername"=>"Mr_Blondie_", "url"=>"http://twitter.com/Mr_Blondie_/status/461652942110867456", "source"=>"Twitter"}, {"contentid"=>"461652848393330688", "ldate"=>"Wed Apr 30 23:46:30 +0000 2014", "author"=>"Cinnaminson Weather", "perferredUsername"=>"CinnaWx", "url"=>"http://twitter.com/CinnaWx/status/461652848393330688", "source"=>"Twitter"}, {"contentid"=>"461652675038158849", "ldate"=>"Wed Apr 30 23:45:49 +0000 2014", "author"=>"The_Little_Mermaid", "perferredUsername"=>"julisa_mejia26", "url"=>"http://twitter.com/julisa_mejia26/status/461652675038158849", "source"=>"Twitter"}, {"contentid"=>"461652656432226304", "ldate"=>"Wed Apr 30 23:45:45 +0000 2014", "author"=>"Maddie", "perferredUsername"=>"maddiejohnn", "url"=>"http://twitter.com/maddiejohnn/status/461652656432226304", "source"=>"Twitter"}, {"contentid"=>"461652593253425152", "ldate"=>"Wed Apr 30 23:45:29 +0000 2014", "author"=>"sahil", "perferredUsername"=>"SahilsHaveEyes_", "url"=>"http://twitter.com/SahilsHaveEyes_/status/461652593253425152", "source"=>"Twitter"}, {"contentid"=>"461652591169265664", "ldate"=>"Wed Apr 30 23:45:29 +0000 2014", "author"=>"Rayoncé. ", "perferredUsername"=>"RatchetRachel__", "url"=>"http://twitter.com/RatchetRachel__/status/461652591169265664", "source"=>"Twitter"}, {"contentid"=>"461652589751599104", "ldate"=>"Wed Apr 30 23:45:29 +0000 2014", "author"=>"hannah brushwood", "perferredUsername"=>"hbwooood", "url"=>"http://twitter.com/hbwooood/status/461652589751599104", "source"=>"Twitter"}, {"contentid"=>"461652366107107328", "ldate"=>"Wed Apr 30 23:44:35 +0000 2014", "author"=>"Apparently Sorry", "perferredUsername"=>"apparentlysmart", "url"=>"http://twitter.com/apparentlysmart/status/461652366107107328", "source"=>"Twitter"}, {"contentid"=>"461652113513144321", "ldate"=>"Wed Apr 30 23:43:35 +0000 2014", "author"=>"Emielyn Pastolero", "perferredUsername"=>"bheypastolero", "url"=>"http://twitter.com/bheypastolero/status/461652113513144321", "source"=>"Twitter"}, {"contentid"=>"461651992926892032", "ldate"=>"Wed Apr 30 23:43:06 +0000 2014", "author"=>"š〽️õøTH", "perferredUsername"=>"swishhhh_", "url"=>"http://twitter.com/swishhhh_/status/461651992926892032", "source"=>"Twitter"}, {"contentid"=>"461651976015446016", "ldate"=>"Wed Apr 30 23:43:02 +0000 2014", "author"=>"K", "perferredUsername"=>"kierss_my_ass", "url"=>"http://twitter.com/kierss_my_ass/status/461651976015446016", "source"=>"Twitter"}, {"contentid"=>"461651968273182720", "ldate"=>"Wed Apr 30 23:43:00 +0000 2014", "author"=>"мєα∂σω нєη∂єяѕση", "perferredUsername"=>"BNMismyidol", "url"=>"http://twitter.com/BNMismyidol/status/461651968273182720", "source"=>"Twitter"}, {"contentid"=>"461651960744394752", "ldate"=>"Wed Apr 30 23:42:59 +0000 2014", "author"=>"kj", "perferredUsername"=>"kamjam97", "url"=>"http://twitter.com/kamjam97/status/461651960744394752", "source"=>"Twitter"}, {"contentid"=>"461651756301451264", "ldate"=>"Wed Apr 30 23:42:10 +0000 2014", "author"=>"Mike West", "perferredUsername"=>"The_MikeWest", "url"=>"http://twitter.com/The_MikeWest/status/461651756301451264", "source"=>"Twitter"}, {"contentid"=>"461651730674249729", "ldate"=>"Wed Apr 30 23:42:04 +0000 2014", "author"=>"cεятιғιε∂ үιкεя", "perferredUsername"=>"babythinkshebad", "url"=>"http://twitter.com/babythinkshebad/status/461651730674249729", "source"=>"Twitter"}, {"contentid"=>"461651722688278528", "ldate"=>"Wed Apr 30 23:42:02 +0000 2014", "author"=>"lindsey roaseau", "perferredUsername"=>"linseeea", "url"=>"http://twitter.com/linseeea/status/461651722688278528", "source"=>"Twitter"}, {"contentid"=>"461651708314406914", "ldate"=>"Wed Apr 30 23:41:58 +0000 2014", "author"=>"laurend69", "perferredUsername"=>"lauren_dakotaa", "url"=>"http://twitter.com/lauren_dakotaa/status/461651708314406914", "source"=>"Twitter"}]}, "requestid"=>"5da50dfa-6129-4449-a9e6-b072b20ea274"}
|
159
|
+
I, [2014-04-30T19:57:01.559976 #32088] INFO -- : Prediction loader waiting for scores ...
|
160
|
+
D, [2014-04-30T19:57:01.560011 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
161
|
+
D, [2014-04-30T20:12:02.239304 #32088] DEBUG -- : Adding posts for scout_id: 27
|
162
|
+
D, [2014-04-30T20:12:02.239383 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
163
|
+
D, [2014-04-30T20:12:02.247957 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Rick Strandlof", body: "#Oklahoma taxes sunshine, outlaws minimum wage incr...", url: "http://twitter.com/RickStrandlof/status/46165636667...", source: "Twitter", sentiment: #<BigDecimal:3f61870,'0.0',9(36)>, leadprob: #<BigDecimal:3f61618,'0.9501421385 353296E0',18(45)>, notleadprob: #<BigDecimal:3f61348,'0.6013459592 497306E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461656366672007168", ldate: "2014-05-01 00:00:29", loadstamp: "2014-05-01 00:12:02", user_id: 7, scout_id: 27>
|
164
|
+
D, [2014-04-30T20:12:02.268720 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Michelle Maskaly", body: "The expansion of Reef-A-Palooza to #Florida signals...", url: "http://twitter.com/mmaskaly/status/4616565174236733...", source: "Twitter", sentiment: #<BigDecimal:3fe3f00,'0.0',9(36)>, leadprob: #<BigDecimal:3fe3ac8,'0.9228144834 500042E0',18(45)>, notleadprob: #<BigDecimal:3fe3820,'0.6822445955 017918E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461656517423673344", ldate: "2014-05-01 00:01:05", loadstamp: "2014-05-01 00:12:02", user_id: 7, scout_id: 27>
|
165
|
+
D, [2014-04-30T20:12:02.285488 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "CMDuick", body: "Palm Beach, Miami-Dade show good wage growth while ...", url: "http://twitter.com/SFLPFGMarketing/status/461656644...", source: "Twitter", sentiment: #<BigDecimal:4044a08,'0.0',9(36)>, leadprob: #<BigDecimal:4047668,'0.9065748266 284392E0',18(45)>, notleadprob: #<BigDecimal:4047dc0,'0.7758171347 900525E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461656644284190720", ldate: "2014-05-01 00:01:35", loadstamp: "2014-05-01 00:12:02", user_id: 7, scout_id: 27>
|
166
|
+
D, [2014-04-30T20:12:02.302103 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "PascoDems", body: "RT @sirbetterled: @FLHOUSEDEMS Florida's Republican...", url: "http://twitter.com/PascoDems/status/461656676324478...", source: "Twitter", sentiment: #<BigDecimal:408c650,'0.0',9(36)>, leadprob: #<BigDecimal:408c3f8,'0.7830198806 084975E0',18(45)>, notleadprob: #<BigDecimal:408c1c8,'0.7421998970 676182E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461656676324478976", ldate: "2014-05-01 00:01:43", loadstamp: "2014-05-01 00:12:02", user_id: 7, scout_id: 27>
|
167
|
+
D, [2014-04-30T20:12:02.318667 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Is No Bueno", body: "RT @kathybird305: Did latvala say undocumented immi...", url: "http://twitter.com/IsNoBueno/status/461656715323510...", source: "Twitter", sentiment: #<BigDecimal:40d5508,'0.0',9(36)>, leadprob: #<BigDecimal:40d52b0,'0.9221535373 242691E0',18(45)>, notleadprob: #<BigDecimal:40d5058,'0.6580675806 679407E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461656715323510784", ldate: "2014-05-01 00:01:52", loadstamp: "2014-05-01 00:12:02", user_id: 7, scout_id: 27>
|
168
|
+
D, [2014-04-30T20:12:02.335378 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Mark Spain", body: "BREAKING NEWS: Republican Party Chairman of Florida...", url: "http://twitter.com/MarkSpainANjax/status/4616577850...", source: "Twitter", sentiment: #<BigDecimal:4114140,'0.0',9(36)>, leadprob: #<BigDecimal:4118b28,'0.5530548670 596573E0',18(45)>, notleadprob: #<BigDecimal:411b008,'0.9652683824 079507E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461657785089142784", ldate: "2014-05-01 00:06:07", loadstamp: "2014-05-01 00:12:02", user_id: 7, scout_id: 27>
|
169
|
+
D, [2014-04-30T20:12:02.352172 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Paul McClintock", body: "RT @sirbetterled: @FLHOUSEDEMS Florida's Republican...", url: "http://twitter.com/paulmcclintock/status/4616577900...", source: "Twitter", sentiment: #<BigDecimal:41583e0,'0.0',9(36)>, leadprob: #<BigDecimal:4158070,'0.7830198806 084975E0',18(45)>, notleadprob: #<BigDecimal:415e100,'0.7421998970 676182E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461657790046425089", ldate: "2014-05-01 00:06:09", loadstamp: "2014-05-01 00:12:02", user_id: 7, scout_id: 27>
|
170
|
+
D, [2014-04-30T20:12:02.368821 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Sam Turley", body: "RT @MarkSpainANjax: BREAKING NEWS: Republican Party...", url: "http://twitter.com/SamTurleyANjax/status/4616587908...", source: "Twitter", sentiment: #<BigDecimal:6281030,'0.0',9(36)>, leadprob: #<BigDecimal:6280e00,'0.3452318311 503386E0',18(45)>, notleadprob: #<BigDecimal:6280b58,'0.9800569291 717757E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461658790895828992", ldate: "2014-05-01 00:10:07", loadstamp: "2014-05-01 00:12:02", user_id: 7, scout_id: 27>
|
171
|
+
D, [2014-04-30T20:12:02.385484 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Edgar Viera", body: "Weston’s well managed growth has given rise to one ...", url: "http://twitter.com/EdgarLViera/status/4616588435004...", source: "Twitter", sentiment: #<BigDecimal:66ec5c0,'0.0',9(36)>, leadprob: #<BigDecimal:66ec390,'0.9480887048 892009E0',18(45)>, notleadprob: #<BigDecimal:66ec160,'0.6163638551 361206E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461658843500404736", ldate: "2014-05-01 00:10:20", loadstamp: "2014-05-01 00:12:02", user_id: 7, scout_id: 27>
|
172
|
+
D, [2014-04-30T20:12:02.402133 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "MicroBrewr", body: "Bill going to kill growth of the microbreweries in ...", url: "http://twitter.com/MicroBrewr/status/46165904765015...", source: "Twitter", sentiment: #<BigDecimal:6acf700,'0.0',9(36)>, leadprob: #<BigDecimal:6acf4d0,'0.8580000216 877003E0',18(45)>, notleadprob: #<BigDecimal:6acf278,'0.6491487464 222848E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461659047650156544", ldate: "2014-05-01 00:11:08", loadstamp: "2014-05-01 00:12:02", user_id: 7, scout_id: 27>
|
173
|
+
I, [2014-04-30T20:12:02.417791 #32088] INFO -- : Total Number of records: 10
|
174
|
+
I, [2014-04-30T20:12:02.417834 #32088] INFO -- : Total Number of records Not Loaded: 0
|
175
|
+
I, [2014-04-30T20:12:02.417868 #32088] INFO -- : Prediction loader waiting for scores ...
|
176
|
+
D, [2014-04-30T20:12:02.417898 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
177
|
+
W, [2014-04-30T20:12:03.771755 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461659211647033344"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461659052590657536"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461659027747778560"}, {"content"=>"So I called you twice and you don't answer, then you text me back that you are driving. #somethingwrongwiththispicture #donttextanddrive", "contentid"=>"461659021338898432"}, {"content"=>"Pssh this is why you don't text and drive\n#firstcarcrash #weareallgood #donttextanddrive http://t.co/WQ8qBMNgLZ", "contentid"=>"461658867441487872"}, {"content"=>"RT @monchichi_11: I have zero tolerance for people who text and drive", "contentid"=>"461658791667576832"}, {"content"=>"You aren't invincible, so don't text and drive #TXTL8RIN", "contentid"=>"461658740916105216"}, {"content"=>"Older people really shouldn't text and drive..", "contentid"=>"461658672389562368"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461658649547395073"}, {"content"=>"In order to survive, don’t text and drive #TXTL8RIN", "contentid"=>"461658576574894080"}, {"content"=>"Text on your own time, not while you are driving #TXTL8RIN", "contentid"=>"461658545981648896"}, {"content"=>"RT @Jhared_sancheZz: \"@7notyours: Know what happens when you text and drive? Mothetfucking typos\"", "contentid"=>"461658518076940288"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461658498976067584"}, {"content"=>"@NuBlackVision @juliusb727 also those typos were so simple as I drive and use voice text so the phone spelled know instead of no. .....", "contentid"=>"461658496329478145"}, {"content"=>"\"@7notyours: Know what happens when you text and drive? Mothetfucking typos\"", "contentid"=>"461658462468845568"}, {"content"=>"This is the only time u can text and drive is at walmart Hahahahahah I'm so ghetto they see me Rollin they hatin http://t.co/NiQFZb1oD9", "contentid"=>"461658412401426432"}, {"content"=>"RT @7notyours: Know what happens when you text and drive?\n\nMothetfucking typos", "contentid"=>"461658323826122752"}, {"content"=>"@alex_grohe can you not text and drive please, you're scaring me", "contentid"=>"461658323733868545"}, {"content"=>"If you think that you can text and drive, you are wrong #TXTL8RIN", "contentid"=>"461658278171119616"}, {"content"=>"If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461658238220791810"}, {"content"=>"RT @LauknessMonster: Don't Text & Drive: http://t.co/SzN2ornstT via @YouTube", "contentid"=>"461658237008220160"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461658080632000512"}, {"content"=>"“@Loyal2Tae__: @Loyal2Loyalty_ text me ASAP I can't find yo number !” Ok girl you finna drive me crazy ὠ1ὠ1", "contentid"=>"461658064567799808"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/XInGK2BeoG Don't Text & Drive", "contentid"=>"461658039289131010"}, {"content"=>"RT @jmarquez5150: People who text while driving. Go fuck yourself.", "contentid"=>"461657909693124608"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461657904672952320"}, {"content"=>"@Taylaaa___ @ashlynharriss you can tweet while driving but can't text. Ok", "contentid"=>"461657900977381376"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461657771440472064"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461657743909089280"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461657733939625984"}, {"content"=>"RT @BabbyGabby_11: Seeing people text and drive makes me SO angry. Especially teenagers.", "contentid"=>"461657719800225792"}, {"content"=>"In order to survive, don’t text and drive #TXTL8RIN", "contentid"=>"461657697624936448"}, {"content"=>"RT @Hannah__Kline: Texting and driving slows your reaction time MORE THAN drinking. If you wouldn't drink and drive, why would you text and…", "contentid"=>"461657694525726720"}, {"content"=>"Text on your own time, not while you are driving #TXTL8RIN", "contentid"=>"461657679304224768"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461657650946928640"}, {"content"=>"RT @Hannah__Kline: Stop the violence. Don't text and drive. #TXTL8RIN http://t.co/X00vq3h5um", "contentid"=>"461657593468170240"}, {"content"=>"RT @Hannah__Kline: Don't risk your life for something that can wait. Drive now, text later. #itcanwait #TXTL8RIN http://t.co/MFMa11QhLy", "contentid"=>"461657546668126208"}, {"content"=>"RT @Hannah__Kline: Arrive alive, don't text and drive. #TXTL8RIN", "contentid"=>"461657529374998528"}, {"content"=>"RT @Hannah__Kline: @SocramOrravan and I were featured in the paper today. He was my designated texter. Drive now, text later. #TXTL8RIN htt…", "contentid"=>"461657498517516288"}, {"content"=>"RT @Hannah__Kline: Don't be like Tom Haverford. Don't text and drive. #seriouslythough #TXTL8RIN http://t.co/5VZMScl6kT", "contentid"=>"461657468104617984"}, {"content"=>"Don't text and drive guys :)", "contentid"=>"461657446193197058"}, {"content"=>"RT @LauknessMonster: Don't Text & Drive: http://t.co/SzN2ornstT via @YouTube", "contentid"=>"461657380170649600"}, {"content"=>"When you text and drive you don’t just put your life in danger. It can wait. #TXTL8RIN", "contentid"=>"461657355579449344"}, {"content"=>"Choose to be alive and don't text and drive #TXTL8RIN", "contentid"=>"461657303293231104"}, {"content"=>"Start your engine & power off your cell. Drive now, text l8r. #TXTL8RIN", "contentid"=>"461657298473988096"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/R81MemHykJ", "contentid"=>"461657294473035776"}, {"content"=>"my dads teaching me a lesson not to text and drive while he's texting and driving ..", "contentid"=>"461657254471958529"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461657151568482304"}, {"content"=>"A study shows that approximately 3/4 of young adults are very or somewhat confident they can text and drive and they are Wrong #TXTL8RIN", "contentid"=>"461657126083907584"}, {"content"=>"Text on your own time, not while you are driving #TXTL8RIN", "contentid"=>"461657081645264896"}, {"content"=>"People who text while driving. Go fuck yourself.", "contentid"=>"461657060694700032"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/zC4hKn5Mrn Don't Text & Drive", "contentid"=>"461656990817992705"}, {"content"=>"1 text can = 1 life. Drive now, txt l8r. #TXTL8RIN #itcanwait", "contentid"=>"461656975990718465"}, {"content"=>"Texting and driving has killer odds. Drive now, text l8r. #itcanwait #TXTL8RIN", "contentid"=>"461656913034219520"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461656864694870016"}, {"content"=>"1 text can = 6 feet under. Drive now, text later #TXTL8RIN", "contentid"=>"461656782910144512"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461656751969169409"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/pI3bqJN1D4 Don't Text & Drive", "contentid"=>"461656741709885441"}, {"content"=>"In order to survive, don’t text and drive #TXTL8RIN", "contentid"=>"461656651511365632"}, {"content"=>"Don’t let ur last text say, “On my wa--.” Drive now, text l8r. #TXTL8RIN #itcanwait", "contentid"=>"461656639603343360"}, {"content"=>"Text on your own time, not while you are driving #TXTL8RIN", "contentid"=>"461656590039678976"}, {"content"=>"Reasons u shld STOP txting & driving: it could save ur life. Drive now, text later! #TXTL8RIN", "contentid"=>"461656583315787777"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461656568128634880"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/68UqVkZ664 Don't Text & Drive", "contentid"=>"461656546137870336"}, {"content"=>"If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461656476285935616"}, {"content"=>"I wish Tyler wouldn't text and drive", "contentid"=>"461656433151328256"}, {"content"=>"Take the pledge not to text and drive here: http://t.co/Nouj4ZhHMz #TXTL8RIN", "contentid"=>"461656428113969153"}, {"content"=>"You aren't invincible, so don't text and drive #TXTL8RIN", "contentid"=>"461656404819189760"}, {"content"=>"RT @SPFSADD: This is the cutest way to say don't text and drive!\nRetweet for an another iPad entry! http://t.co/JlwdcSz1f4", "contentid"=>"461656363106844672"}, {"content"=>"RT @lauren_dakotaa: BE WISE DONT TEXT AND DRIVE #itcanwait", "contentid"=>"461656361797832704"}, {"content"=>"Just because you have a smart phone it doesn’t mean it’s smart to text and drive. #TXTL8RIN", "contentid"=>"461656360518565888"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461656340192980992"}, {"content"=>"The struggle. I have to stand in my drive way and talk to my friends so I can get wifi and text. ὢB", "contentid"=>"461656282982658048"}, {"content"=>"Rule of advice never let me text talk and drive down a muddy road! #badoutcome #stuck #fuckme", "contentid"=>"461656231115886592"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461656203576098816"}, {"content"=>"RT @monchichi_11: I have zero tolerance for people who text and drive", "contentid"=>"461656172966477824"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461656168218525696"}, {"content"=>"In order to survive, don’t text and drive #TXTL8RIN", "contentid"=>"461656092632965120"}, {"content"=>"Text on your own time, not while you are driving #TXTL8RIN", "contentid"=>"461656062366867456"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461656006762967040"}, {"content"=>"If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461655928073232384"}, {"content"=>"If you think that you can text and drive, you could be dead wrong #TXTL8RIN", "contentid"=>"461655901867233280"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461655792970522624"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461655769130090496"}, {"content"=>"The worst thing you can do when you get older is drink and drive or text and drive", "contentid"=>"461655601463169024"}, {"content"=>"Help save lives, don’t text and drive. #TXTL8RIN", "contentid"=>"461655565437906944"}, {"content"=>"RT @monchichi_11: I have zero tolerance for people who text and drive", "contentid"=>"461655561344655360"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/g7UmdTnU3D", "contentid"=>"461655495309529088"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461659211647033344", "ldate"=>"Thu May 01 00:11:47 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461659211647033344", "source"=>"Twitter"}, {"contentid"=>"461659052590657536", "ldate"=>"Thu May 01 00:11:10 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461659052590657536", "source"=>"Twitter"}, {"contentid"=>"461659027747778560", "ldate"=>"Thu May 01 00:11:04 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461659027747778560", "source"=>"Twitter"}, {"contentid"=>"461659021338898432", "ldate"=>"Thu May 01 00:11:02 +0000 2014", "author"=>"La'Gena Gilder", "perferredUsername"=>"ElleG01", "url"=>"http://twitter.com/ElleG01/status/461659021338898432", "source"=>"Twitter"}, {"contentid"=>"461658867441487872", "ldate"=>"Thu May 01 00:10:25 +0000 2014", "author"=>"Alden Flo-Flo", "perferredUsername"=>"awwwden", "url"=>"http://twitter.com/awwwden/status/461658867441487872", "source"=>"Twitter"}, {"contentid"=>"461658791667576832", "ldate"=>"Thu May 01 00:10:07 +0000 2014", "author"=>"Mary Michael ", "perferredUsername"=>"_meeemss", "url"=>"http://twitter.com/_meeemss/status/461658791667576832", "source"=>"Twitter"}, {"contentid"=>"461658740916105216", "ldate"=>"Thu May 01 00:09:55 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461658740916105216", "source"=>"Twitter"}, {"contentid"=>"461658672389562368", "ldate"=>"Thu May 01 00:09:39 +0000 2014", "author"=>"Kaylin Webster", "perferredUsername"=>"kwebster3310", "url"=>"http://twitter.com/kwebster3310/status/461658672389562368", "source"=>"Twitter"}, {"contentid"=>"461658649547395073", "ldate"=>"Thu May 01 00:09:33 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461658649547395073", "source"=>"Twitter"}, {"contentid"=>"461658576574894080", "ldate"=>"Thu May 01 00:09:16 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461658576574894080", "source"=>"Twitter"}, {"contentid"=>"461658545981648896", "ldate"=>"Thu May 01 00:09:09 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461658545981648896", "source"=>"Twitter"}, {"contentid"=>"461658518076940288", "ldate"=>"Thu May 01 00:09:02 +0000 2014", "author"=>"Christian Laprades", "perferredUsername"=>"IANongayon", "url"=>"http://twitter.com/IANongayon/status/461658518076940288", "source"=>"Twitter"}, {"contentid"=>"461658498976067584", "ldate"=>"Thu May 01 00:08:58 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461658498976067584", "source"=>"Twitter"}, {"contentid"=>"461658496329478145", "ldate"=>"Thu May 01 00:08:57 +0000 2014", "author"=>"Chad Simonton", "perferredUsername"=>"ChadSimonton", "url"=>"http://twitter.com/ChadSimonton/status/461658496329478145", "source"=>"Twitter"}, {"contentid"=>"461658462468845568", "ldate"=>"Thu May 01 00:08:49 +0000 2014", "author"=>"Jhared Carlo Sanchez", "perferredUsername"=>"Jhared_sancheZz", "url"=>"http://twitter.com/Jhared_sancheZz/status/461658462468845568", "source"=>"Twitter"}, {"contentid"=>"461658412401426432", "ldate"=>"Thu May 01 00:08:37 +0000 2014", "author"=>"jamaldice", "perferredUsername"=>"paligunz09", "url"=>"http://twitter.com/paligunz09/status/461658412401426432", "source"=>"Twitter"}, {"contentid"=>"461658323826122752", "ldate"=>"Thu May 01 00:08:16 +0000 2014", "author"=>"Sir Clarty Plodger", "perferredUsername"=>"Prince_Madness1", "url"=>"http://twitter.com/Prince_Madness1/status/461658323826122752", "source"=>"Twitter"}, {"contentid"=>"461658323733868545", "ldate"=>"Thu May 01 00:08:16 +0000 2014", "author"=>"Haley Kruis", "perferredUsername"=>"HaleyKruis", "url"=>"http://twitter.com/HaleyKruis/status/461658323733868545", "source"=>"Twitter"}, {"contentid"=>"461658278171119616", "ldate"=>"Thu May 01 00:08:05 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461658278171119616", "source"=>"Twitter"}, {"contentid"=>"461658238220791810", "ldate"=>"Thu May 01 00:07:55 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461658238220791810", "source"=>"Twitter"}, {"contentid"=>"461658237008220160", "ldate"=>"Thu May 01 00:07:55 +0000 2014", "author"=>"★Adam Holloway★", "perferredUsername"=>"HollowayA12", "url"=>"http://twitter.com/HollowayA12/status/461658237008220160", "source"=>"Twitter"}, {"contentid"=>"461658080632000512", "ldate"=>"Thu May 01 00:07:18 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461658080632000512", "source"=>"Twitter"}, {"contentid"=>"461658064567799808", "ldate"=>"Thu May 01 00:07:14 +0000 2014", "author"=>"#RIPRon❤️", "perferredUsername"=>"Loyal2Loyalty_", "url"=>"http://twitter.com/Loyal2Loyalty_/status/461658064567799808", "source"=>"Twitter"}, {"contentid"=>"461658039289131010", "ldate"=>"Thu May 01 00:07:08 +0000 2014", "author"=>"MUNAKIM1", "perferredUsername"=>"techlyjohn", "url"=>"http://twitter.com/techlyjohn/status/461658039289131010", "source"=>"Twitter"}, {"contentid"=>"461657909693124608", "ldate"=>"Thu May 01 00:06:37 +0000 2014", "author"=>"TiTty_Boiiiiii", "perferredUsername"=>"dema8088", "url"=>"http://twitter.com/dema8088/status/461657909693124608", "source"=>"Twitter"}, {"contentid"=>"461657904672952320", "ldate"=>"Thu May 01 00:06:36 +0000 2014", "author"=>"Laura. ❀ ", "perferredUsername"=>"Burroughssyg", "url"=>"http://twitter.com/Burroughssyg/status/461657904672952320", "source"=>"Twitter"}, {"contentid"=>"461657900977381376", "ldate"=>"Thu May 01 00:06:35 +0000 2014", "author"=>"Marty McFly", "perferredUsername"=>"NoPower3", "url"=>"http://twitter.com/NoPower3/status/461657900977381376", "source"=>"Twitter"}, {"contentid"=>"461657771440472064", "ldate"=>"Thu May 01 00:06:04 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461657771440472064", "source"=>"Twitter"}, {"contentid"=>"461657743909089280", "ldate"=>"Thu May 01 00:05:57 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461657743909089280", "source"=>"Twitter"}, {"contentid"=>"461657733939625984", "ldate"=>"Thu May 01 00:05:55 +0000 2014", "author"=>"Darek Gulich", "perferredUsername"=>"dGuLiCh_13", "url"=>"http://twitter.com/dGuLiCh_13/status/461657733939625984", "source"=>"Twitter"}, {"contentid"=>"461657719800225792", "ldate"=>"Thu May 01 00:05:52 +0000 2014", "author"=>"Natalie", "perferredUsername"=>"nataliegrimm", "url"=>"http://twitter.com/nataliegrimm/status/461657719800225792", "source"=>"Twitter"}, {"contentid"=>"461657697624936448", "ldate"=>"Thu May 01 00:05:46 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461657697624936448", "source"=>"Twitter"}, {"contentid"=>"461657694525726720", "ldate"=>"Thu May 01 00:05:46 +0000 2014", "author"=>"Matthew Ruark", "perferredUsername"=>"matthewgruark", "url"=>"http://twitter.com/matthewgruark/status/461657694525726720", "source"=>"Twitter"}, {"contentid"=>"461657679304224768", "ldate"=>"Thu May 01 00:05:42 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461657679304224768", "source"=>"Twitter"}, {"contentid"=>"461657650946928640", "ldate"=>"Thu May 01 00:05:35 +0000 2014", "author"=>"Zoe Allen", "perferredUsername"=>"YoIts_Zoe", "url"=>"http://twitter.com/YoIts_Zoe/status/461657650946928640", "source"=>"Twitter"}, {"contentid"=>"461657593468170240", "ldate"=>"Thu May 01 00:05:22 +0000 2014", "author"=>"Matthew Ruark", "perferredUsername"=>"matthewgruark", "url"=>"http://twitter.com/matthewgruark/status/461657593468170240", "source"=>"Twitter"}, {"contentid"=>"461657546668126208", "ldate"=>"Thu May 01 00:05:10 +0000 2014", "author"=>"Matthew Ruark", "perferredUsername"=>"matthewgruark", "url"=>"http://twitter.com/matthewgruark/status/461657546668126208", "source"=>"Twitter"}, {"contentid"=>"461657529374998528", "ldate"=>"Thu May 01 00:05:06 +0000 2014", "author"=>"Matthew Ruark", "perferredUsername"=>"matthewgruark", "url"=>"http://twitter.com/matthewgruark/status/461657529374998528", "source"=>"Twitter"}, {"contentid"=>"461657498517516288", "ldate"=>"Thu May 01 00:04:59 +0000 2014", "author"=>"Matthew Ruark", "perferredUsername"=>"matthewgruark", "url"=>"http://twitter.com/matthewgruark/status/461657498517516288", "source"=>"Twitter"}, {"contentid"=>"461657468104617984", "ldate"=>"Thu May 01 00:04:52 +0000 2014", "author"=>"Matthew Ruark", "perferredUsername"=>"matthewgruark", "url"=>"http://twitter.com/matthewgruark/status/461657468104617984", "source"=>"Twitter"}, {"contentid"=>"461657446193197058", "ldate"=>"Thu May 01 00:04:47 +0000 2014", "author"=>"T∆kkun ", "perferredUsername"=>"_lvyze", "url"=>"http://twitter.com/_lvyze/status/461657446193197058", "source"=>"Twitter"}, {"contentid"=>"461657380170649600", "ldate"=>"Thu May 01 00:04:31 +0000 2014", "author"=>"Dannny", "perferredUsername"=>"1428Dan", "url"=>"http://twitter.com/1428Dan/status/461657380170649600", "source"=>"Twitter"}, {"contentid"=>"461657355579449344", "ldate"=>"Thu May 01 00:04:25 +0000 2014", "author"=>"Shella Ebenkamp", "perferredUsername"=>"Shella_NewTech", "url"=>"http://twitter.com/Shella_NewTech/status/461657355579449344", "source"=>"Twitter"}, {"contentid"=>"461657303293231104", "ldate"=>"Thu May 01 00:04:12 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461657303293231104", "source"=>"Twitter"}, {"contentid"=>"461657298473988096", "ldate"=>"Thu May 01 00:04:11 +0000 2014", "author"=>"Shella Ebenkamp", "perferredUsername"=>"Shella_NewTech", "url"=>"http://twitter.com/Shella_NewTech/status/461657298473988096", "source"=>"Twitter"}, {"contentid"=>"461657294473035776", "ldate"=>"Thu May 01 00:04:10 +0000 2014", "author"=>"BeccaPettard", "perferredUsername"=>"McBeccaa", "url"=>"http://twitter.com/McBeccaa/status/461657294473035776", "source"=>"Twitter"}, {"contentid"=>"461657254471958529", "ldate"=>"Thu May 01 00:04:01 +0000 2014", "author"=>"lily hartman✨", "perferredUsername"=>"hartman_lily", "url"=>"http://twitter.com/hartman_lily/status/461657254471958529", "source"=>"Twitter"}, {"contentid"=>"461657151568482304", "ldate"=>"Thu May 01 00:03:36 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461657151568482304", "source"=>"Twitter"}, {"contentid"=>"461657126083907584", "ldate"=>"Thu May 01 00:03:30 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461657126083907584", "source"=>"Twitter"}, {"contentid"=>"461657081645264896", "ldate"=>"Thu May 01 00:03:20 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461657081645264896", "source"=>"Twitter"}, {"contentid"=>"461657060694700032", "ldate"=>"Thu May 01 00:03:15 +0000 2014", "author"=>"Jorge Marquezz", "perferredUsername"=>"jmarquez5150", "url"=>"http://twitter.com/jmarquez5150/status/461657060694700032", "source"=>"Twitter"}, {"contentid"=>"461656990817992705", "ldate"=>"Thu May 01 00:02:58 +0000 2014", "author"=>"Knubby", "perferredUsername"=>"TheChasex", "url"=>"http://twitter.com/TheChasex/status/461656990817992705", "source"=>"Twitter"}, {"contentid"=>"461656975990718465", "ldate"=>"Thu May 01 00:02:54 +0000 2014", "author"=>"Shella Ebenkamp", "perferredUsername"=>"Shella_NewTech", "url"=>"http://twitter.com/Shella_NewTech/status/461656975990718465", "source"=>"Twitter"}, {"contentid"=>"461656913034219520", "ldate"=>"Thu May 01 00:02:39 +0000 2014", "author"=>"Shella Ebenkamp", "perferredUsername"=>"Shella_NewTech", "url"=>"http://twitter.com/Shella_NewTech/status/461656913034219520", "source"=>"Twitter"}, {"contentid"=>"461656864694870016", "ldate"=>"Thu May 01 00:02:28 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461656864694870016", "source"=>"Twitter"}, {"contentid"=>"461656782910144512", "ldate"=>"Thu May 01 00:02:08 +0000 2014", "author"=>"Shella Ebenkamp", "perferredUsername"=>"Shella_NewTech", "url"=>"http://twitter.com/Shella_NewTech/status/461656782910144512", "source"=>"Twitter"}, {"contentid"=>"461656751969169409", "ldate"=>"Thu May 01 00:02:01 +0000 2014", "author"=>"oriana rojas", "perferredUsername"=>"_Orianavrf", "url"=>"http://twitter.com/_Orianavrf/status/461656751969169409", "source"=>"Twitter"}, {"contentid"=>"461656741709885441", "ldate"=>"Thu May 01 00:01:59 +0000 2014", "author"=>"Honor Txz", "perferredUsername"=>"OhhTaz", "url"=>"http://twitter.com/OhhTaz/status/461656741709885441", "source"=>"Twitter"}, {"contentid"=>"461656651511365632", "ldate"=>"Thu May 01 00:01:37 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461656651511365632", "source"=>"Twitter"}, {"contentid"=>"461656639603343360", "ldate"=>"Thu May 01 00:01:34 +0000 2014", "author"=>"Shella Ebenkamp", "perferredUsername"=>"Shella_NewTech", "url"=>"http://twitter.com/Shella_NewTech/status/461656639603343360", "source"=>"Twitter"}, {"contentid"=>"461656590039678976", "ldate"=>"Thu May 01 00:01:22 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461656590039678976", "source"=>"Twitter"}, {"contentid"=>"461656583315787777", "ldate"=>"Thu May 01 00:01:21 +0000 2014", "author"=>"Shella Ebenkamp", "perferredUsername"=>"Shella_NewTech", "url"=>"http://twitter.com/Shella_NewTech/status/461656583315787777", "source"=>"Twitter"}, {"contentid"=>"461656568128634880", "ldate"=>"Thu May 01 00:01:17 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461656568128634880", "source"=>"Twitter"}, {"contentid"=>"461656546137870336", "ldate"=>"Thu May 01 00:01:12 +0000 2014", "author"=>"Noah", "perferredUsername"=>"cliquenoah", "url"=>"http://twitter.com/cliquenoah/status/461656546137870336", "source"=>"Twitter"}, {"contentid"=>"461656476285935616", "ldate"=>"Thu May 01 00:00:55 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461656476285935616", "source"=>"Twitter"}, {"contentid"=>"461656433151328256", "ldate"=>"Thu May 01 00:00:45 +0000 2014", "author"=>"Brittany Rybicki", "perferredUsername"=>"briitrybick", "url"=>"http://twitter.com/briitrybick/status/461656433151328256", "source"=>"Twitter"}, {"contentid"=>"461656428113969153", "ldate"=>"Thu May 01 00:00:44 +0000 2014", "author"=>"Shella Ebenkamp", "perferredUsername"=>"Shella_NewTech", "url"=>"http://twitter.com/Shella_NewTech/status/461656428113969153", "source"=>"Twitter"}, {"contentid"=>"461656404819189760", "ldate"=>"Thu May 01 00:00:38 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461656404819189760", "source"=>"Twitter"}, {"contentid"=>"461656363106844672", "ldate"=>"Thu May 01 00:00:28 +0000 2014", "author"=>"Tim Mitchell", "perferredUsername"=>"tim564mitchell", "url"=>"http://twitter.com/tim564mitchell/status/461656363106844672", "source"=>"Twitter"}, {"contentid"=>"461656361797832704", "ldate"=>"Thu May 01 00:00:28 +0000 2014", "author"=>"Nick Merritt", "perferredUsername"=>"NickMerritt10", "url"=>"http://twitter.com/NickMerritt10/status/461656361797832704", "source"=>"Twitter"}, {"contentid"=>"461656360518565888", "ldate"=>"Thu May 01 00:00:28 +0000 2014", "author"=>"Shella Ebenkamp", "perferredUsername"=>"Shella_NewTech", "url"=>"http://twitter.com/Shella_NewTech/status/461656360518565888", "source"=>"Twitter"}, {"contentid"=>"461656340192980992", "ldate"=>"Thu May 01 00:00:23 +0000 2014", "author"=>"gayane", "perferredUsername"=>"gayushikkk", "url"=>"http://twitter.com/gayushikkk/status/461656340192980992", "source"=>"Twitter"}, {"contentid"=>"461656282982658048", "ldate"=>"Thu May 01 00:00:09 +0000 2014", "author"=>"Bails Yeah ✨", "perferredUsername"=>"bailaayyyy", "url"=>"http://twitter.com/bailaayyyy/status/461656282982658048", "source"=>"Twitter"}, {"contentid"=>"461656231115886592", "ldate"=>"Wed Apr 30 23:59:57 +0000 2014", "author"=>"Keri Sturgeon", "perferredUsername"=>"Sturg87", "url"=>"http://twitter.com/Sturg87/status/461656231115886592", "source"=>"Twitter"}, {"contentid"=>"461656203576098816", "ldate"=>"Wed Apr 30 23:59:50 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461656203576098816", "source"=>"Twitter"}, {"contentid"=>"461656172966477824", "ldate"=>"Wed Apr 30 23:59:43 +0000 2014", "author"=>"Storrryy", "perferredUsername"=>"storrryy", "url"=>"http://twitter.com/storrryy/status/461656172966477824", "source"=>"Twitter"}, {"contentid"=>"461656168218525696", "ldate"=>"Wed Apr 30 23:59:42 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461656168218525696", "source"=>"Twitter"}, {"contentid"=>"461656092632965120", "ldate"=>"Wed Apr 30 23:59:24 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461656092632965120", "source"=>"Twitter"}, {"contentid"=>"461656062366867456", "ldate"=>"Wed Apr 30 23:59:17 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461656062366867456", "source"=>"Twitter"}, {"contentid"=>"461656006762967040", "ldate"=>"Wed Apr 30 23:59:03 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461656006762967040", "source"=>"Twitter"}, {"contentid"=>"461655928073232384", "ldate"=>"Wed Apr 30 23:58:45 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461655928073232384", "source"=>"Twitter"}, {"contentid"=>"461655901867233280", "ldate"=>"Wed Apr 30 23:58:38 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461655901867233280", "source"=>"Twitter"}, {"contentid"=>"461655792970522624", "ldate"=>"Wed Apr 30 23:58:12 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461655792970522624", "source"=>"Twitter"}, {"contentid"=>"461655769130090496", "ldate"=>"Wed Apr 30 23:58:07 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461655769130090496", "source"=>"Twitter"}, {"contentid"=>"461655601463169024", "ldate"=>"Wed Apr 30 23:57:27 +0000 2014", "author"=>"Trinity Guadalupe", "perferredUsername"=>"imjustweirdme", "url"=>"http://twitter.com/imjustweirdme/status/461655601463169024", "source"=>"Twitter"}, {"contentid"=>"461655565437906944", "ldate"=>"Wed Apr 30 23:57:18 +0000 2014", "author"=>"Shella Ebenkamp", "perferredUsername"=>"Shella_NewTech", "url"=>"http://twitter.com/Shella_NewTech/status/461655565437906944", "source"=>"Twitter"}, {"contentid"=>"461655561344655360", "ldate"=>"Wed Apr 30 23:57:17 +0000 2014", "author"=>"Taylor Verbeke", "perferredUsername"=>"taylorverbeke", "url"=>"http://twitter.com/taylorverbeke/status/461655561344655360", "source"=>"Twitter"}, {"contentid"=>"461655495309529088", "ldate"=>"Wed Apr 30 23:57:01 +0000 2014", "author"=>"Bhunivelze", "perferredUsername"=>"Raised_KillJoy", "url"=>"http://twitter.com/Raised_KillJoy/status/461655495309529088", "source"=>"Twitter"}]}, "requestid"=>"a8b34076-a8b1-499f-a7b8-c0cee18a813f"}
|
178
|
+
I, [2014-04-30T20:12:03.771847 #32088] INFO -- : Prediction loader waiting for scores ...
|
179
|
+
D, [2014-04-30T20:12:03.771884 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
180
|
+
D, [2014-04-30T20:27:02.347260 #32088] DEBUG -- : Adding posts for scout_id: 27
|
181
|
+
D, [2014-04-30T20:27:02.348442 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Jax Florida", body: "RT @MarkSpainANjax: BREAKING NEWS: Republican Party...", url: "http://twitter.com/jax_florida/status/4616594176968...", source: "Twitter", sentiment: #<BigDecimal:6b9ed98,'0.0',9(36)>, leadprob: #<BigDecimal:6b9eac8,'0.3452318311 503386E0',18(45)>, notleadprob: #<BigDecimal:6b9e898,'0.9800569291 717757E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461659417696825344", ldate: "2014-05-01 00:12:37", loadstamp: "2014-05-01 00:27:02", user_id: 7, scout_id: 27>
|
182
|
+
D, [2014-04-30T20:27:02.357684 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Jack Hernandez", body: "Are you interested in attending a #Google seminar? ...", url: "http://twitter.com/jackhernandeztv/status/461660412...", source: "Twitter", sentiment: #<BigDecimal:6c0a3b8,'0.0',9(36)>, leadprob: #<BigDecimal:6c0a110,'0.9566588594 582781E0',18(45)>, notleadprob: #<BigDecimal:6c09ee0,'0.8690269078 62132E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461660412254371840", ldate: "2014-05-01 00:16:34", loadstamp: "2014-05-01 00:27:02", user_id: 7, scout_id: 27>
|
183
|
+
D, [2014-04-30T20:27:02.374349 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Fritz Mackey", body: "RT @RickStrandlof: #Oklahoma taxes sunshine, outlaw...", url: "http://twitter.com/fritz65/status/46166212748525158...", source: "Twitter", sentiment: #<BigDecimal:6c6daa8,'0.0',9(36)>, leadprob: #<BigDecimal:6c6d878,'0.8497226925 286088E0',18(45)>, notleadprob: #<BigDecimal:6c6d648,'0.7177891978 037205E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461662127485251585", ldate: "2014-05-01 00:23:23", loadstamp: "2014-05-01 00:27:02", user_id: 7, scout_id: 27>
|
184
|
+
I, [2014-04-30T20:27:02.390166 #32088] INFO -- : Total Number of records: 3
|
185
|
+
I, [2014-04-30T20:27:02.390208 #32088] INFO -- : Total Number of records Not Loaded: 0
|
186
|
+
I, [2014-04-30T20:27:02.390237 #32088] INFO -- : Prediction loader waiting for scores ...
|
187
|
+
D, [2014-04-30T20:27:02.390265 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
188
|
+
W, [2014-04-30T20:27:03.203393 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"They didn't have to make that text and drive commercial with the truck feel so real ... I felt that impact just by watching lol", "contentid"=>"461662738511446016"}, {"content"=>"DONT TEXT AND DRIVE.", "contentid"=>"461662634027544578"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/0CXGi26EAI Don't Text & Drive", "contentid"=>"461662078806528000"}, {"content"=>"RT @_18_smile_: DO NOT TEXT ME WHILE YOU'RE DRIVING I'm not trying to be the last unfinished message they find when your ass is wrapped aro…", "contentid"=>"461662054210736128"}, {"content"=>"seriously if you wanna come DM me or text me I'll drive the entire time", "contentid"=>"461661955984748544"}, {"content"=>"My momma ALWAYS telling me don't text and drive but texting and driving! ὡ1", "contentid"=>"461661908056043520"}, {"content"=>"RT @Hannah__Kline: Don't be like Tom Haverford. Don't text and drive. #seriouslythough #TXTL8RIN http://t.co/5VZMScl6kT", "contentid"=>"461661716514758656"}, {"content"=>"RT @Hannah__Kline: Drivers in their 20's make up 27% of fatal accidents caused by distracted driving. Drive now, text later. You're worth i…", "contentid"=>"461661678254292992"}, {"content"=>"@zanaluvxo do you drive? Text me", "contentid"=>"461661627868131328"}, {"content"=>"RT @Hannah__Kline: @SocramOrravan and I were featured in the paper today. He was my designated texter. Drive now, text later. #TXTL8RIN htt…", "contentid"=>"461661589398384640"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/AjxaLEpA0X Don't Text & Drive", "contentid"=>"461661570721144832"}, {"content"=>"RT @Hannah__Kline: Arrive alive, don't text and drive. #TXTL8RIN", "contentid"=>"461661544875839488"}, {"content"=>"RT @Hannah__Kline: Don't risk your life for something that can wait. Drive now, text later. #itcanwait #TXTL8RIN http://t.co/MFMa11QhLy", "contentid"=>"461661503868125184"}, {"content"=>"RT @_ItCanWait: Do you take the pledge not to text and drive? #TXTL8RIN Let us know !", "contentid"=>"461661482728845313"}, {"content"=>"@Ewhite_BRICKS don't text & drive .", "contentid"=>"461661458599006209"}, {"content"=>"Drive now and text later! #TXTL8RIN http://t.co/ACOQKNLIgh", "contentid"=>"461661421579689984"}, {"content"=>"RT @Hannah__Kline: Stop the violence. Don't text and drive. #TXTL8RIN http://t.co/X00vq3h5um", "contentid"=>"461661343766941696"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/4LiKiJMNcB Don't Text & Drive", "contentid"=>"461661227219832832"}, {"content"=>"Someone text me so I don't fall asleep on this drive", "contentid"=>"461661145976553472"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461661112506023936"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/VOQ8dKHRS4 Don't Text & Drive", "contentid"=>"461660644321013763"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/Pb8ylAmBDO Don't Text & Drive", "contentid"=>"461660313155162112"}, {"content"=>"@Jhett_11 @wes_rayburn Don't text & drive! ❤️", "contentid"=>"461660074193068032"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/1w8Q0nBzCW Don't Text & Drive", "contentid"=>"461660054413119488"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461660048419065856"}, {"content"=>"@TwohlaRosayy_ ὠ2ὠ2cus goofy i can drive and ft i cant drive and text", "contentid"=>"461659974293147648"}, {"content"=>"RT @xoangelinaoxo: @dianamarieexo bc D made me promise not to text & drive ❤️ I love you http://t.co/rEheYpXjEs", "contentid"=>"461659879728349185"}, {"content"=>"@SierrahJordan I don't text and drive lol", "contentid"=>"461659836300931072"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/aps4F0Zo3n Don't Text & Drive", "contentid"=>"461659478887505921"}, {"content"=>"Could you not text and drive", "contentid"=>"461659465876393984"}, {"content"=>"If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461659371198365697"}, {"content"=>"You aren't invincible, so don't text and drive #TXTL8RIN", "contentid"=>"461659329548914688"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461659287203225600"}, {"content"=>"Text on your own time, not while you are driving #TXTL8RIN", "contentid"=>"461659251409039360"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461662738511446016", "ldate"=>"Thu May 01 00:25:48 +0000 2014", "author"=>"Meesh", "perferredUsername"=>"mmichlenvie", "url"=>"http://twitter.com/mmichlenvie/status/461662738511446016", "source"=>"Twitter"}, {"contentid"=>"461662634027544578", "ldate"=>"Thu May 01 00:25:23 +0000 2014", "author"=>"Kaleigh Nichole", "perferredUsername"=>"kaleighbailey0", "url"=>"http://twitter.com/kaleighbailey0/status/461662634027544578", "source"=>"Twitter"}, {"contentid"=>"461662078806528000", "ldate"=>"Thu May 01 00:23:11 +0000 2014", "author"=>"Est Moxy", "perferredUsername"=>"KzVii", "url"=>"http://twitter.com/KzVii/status/461662078806528000", "source"=>"Twitter"}, {"contentid"=>"461662054210736128", "ldate"=>"Thu May 01 00:23:05 +0000 2014", "author"=>"dao", "perferredUsername"=>"deeholt26", "url"=>"http://twitter.com/deeholt26/status/461662054210736128", "source"=>"Twitter"}, {"contentid"=>"461661955984748544", "ldate"=>"Thu May 01 00:22:42 +0000 2014", "author"=>"john", "perferredUsername"=>"Jbreezy_28", "url"=>"http://twitter.com/Jbreezy_28/status/461661955984748544", "source"=>"Twitter"}, {"contentid"=>"461661908056043520", "ldate"=>"Thu May 01 00:22:30 +0000 2014", "author"=>"Kira", "perferredUsername"=>"Kirazhaneee", "url"=>"http://twitter.com/Kirazhaneee/status/461661908056043520", "source"=>"Twitter"}, {"contentid"=>"461661716514758656", "ldate"=>"Thu May 01 00:21:45 +0000 2014", "author"=>"Autumn Scott", "perferredUsername"=>"totsandscott", "url"=>"http://twitter.com/totsandscott/status/461661716514758656", "source"=>"Twitter"}, {"contentid"=>"461661678254292992", "ldate"=>"Thu May 01 00:21:36 +0000 2014", "author"=>"Autumn Scott", "perferredUsername"=>"totsandscott", "url"=>"http://twitter.com/totsandscott/status/461661678254292992", "source"=>"Twitter"}, {"contentid"=>"461661627868131328", "ldate"=>"Thu May 01 00:21:24 +0000 2014", "author"=>"Nitra", "perferredUsername"=>"__ARABELLA", "url"=>"http://twitter.com/__ARABELLA/status/461661627868131328", "source"=>"Twitter"}, {"contentid"=>"461661589398384640", "ldate"=>"Thu May 01 00:21:14 +0000 2014", "author"=>"Autumn Scott", "perferredUsername"=>"totsandscott", "url"=>"http://twitter.com/totsandscott/status/461661589398384640", "source"=>"Twitter"}, {"contentid"=>"461661570721144832", "ldate"=>"Thu May 01 00:21:10 +0000 2014", "author"=>"Andrew", "perferredUsername"=>"ShozzyD", "url"=>"http://twitter.com/ShozzyD/status/461661570721144832", "source"=>"Twitter"}, {"contentid"=>"461661544875839488", "ldate"=>"Thu May 01 00:21:04 +0000 2014", "author"=>"Autumn Scott", "perferredUsername"=>"totsandscott", "url"=>"http://twitter.com/totsandscott/status/461661544875839488", "source"=>"Twitter"}, {"contentid"=>"461661503868125184", "ldate"=>"Thu May 01 00:20:54 +0000 2014", "author"=>"Autumn Scott", "perferredUsername"=>"totsandscott", "url"=>"http://twitter.com/totsandscott/status/461661503868125184", "source"=>"Twitter"}, {"contentid"=>"461661482728845313", "ldate"=>"Thu May 01 00:20:49 +0000 2014", "author"=>"Autumn Scott", "perferredUsername"=>"totsandscott", "url"=>"http://twitter.com/totsandscott/status/461661482728845313", "source"=>"Twitter"}, {"contentid"=>"461661458599006209", "ldate"=>"Thu May 01 00:20:43 +0000 2014", "author"=>"lil s", "perferredUsername"=>"lilslaflare1", "url"=>"http://twitter.com/lilslaflare1/status/461661458599006209", "source"=>"Twitter"}, {"contentid"=>"461661421579689984", "ldate"=>"Thu May 01 00:20:34 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461661421579689984", "source"=>"Twitter"}, {"contentid"=>"461661343766941696", "ldate"=>"Thu May 01 00:20:16 +0000 2014", "author"=>"Autumn Scott", "perferredUsername"=>"totsandscott", "url"=>"http://twitter.com/totsandscott/status/461661343766941696", "source"=>"Twitter"}, {"contentid"=>"461661227219832832", "ldate"=>"Thu May 01 00:19:48 +0000 2014", "author"=>"Brandon (BliB)", "perferredUsername"=>"BliBCOD", "url"=>"http://twitter.com/BliBCOD/status/461661227219832832", "source"=>"Twitter"}, {"contentid"=>"461661145976553472", "ldate"=>"Thu May 01 00:19:29 +0000 2014", "author"=>"Patrick James", "perferredUsername"=>"patrickkmca", "url"=>"http://twitter.com/patrickkmca/status/461661145976553472", "source"=>"Twitter"}, {"contentid"=>"461661112506023936", "ldate"=>"Thu May 01 00:19:21 +0000 2014", "author"=>"Rob Gleesh", "perferredUsername"=>"Rob_Flatheem", "url"=>"http://twitter.com/Rob_Flatheem/status/461661112506023936", "source"=>"Twitter"}, {"contentid"=>"461660644321013763", "ldate"=>"Thu May 01 00:17:29 +0000 2014", "author"=>"Michael Romero", "perferredUsername"=>"_MichaelRomero_", "url"=>"http://twitter.com/_MichaelRomero_/status/461660644321013763", "source"=>"Twitter"}, {"contentid"=>"461660313155162112", "ldate"=>"Thu May 01 00:16:10 +0000 2014", "author"=>"KaOs ps3 ps4 ", "perferredUsername"=>"champ_1794", "url"=>"http://twitter.com/champ_1794/status/461660313155162112", "source"=>"Twitter"}, {"contentid"=>"461660074193068032", "ldate"=>"Thu May 01 00:15:13 +0000 2014", "author"=>"Lauren Hardy", "perferredUsername"=>"LHardyRN", "url"=>"http://twitter.com/LHardyRN/status/461660074193068032", "source"=>"Twitter"}, {"contentid"=>"461660054413119488", "ldate"=>"Thu May 01 00:15:08 +0000 2014", "author"=>"Katie #RoadTo150Subs", "perferredUsername"=>"MsShaBANGBANG", "url"=>"http://twitter.com/MsShaBANGBANG/status/461660054413119488", "source"=>"Twitter"}, {"contentid"=>"461660048419065856", "ldate"=>"Thu May 01 00:15:07 +0000 2014", "author"=>"Patricia Valencia", "perferredUsername"=>"PValenciiaa", "url"=>"http://twitter.com/PValenciiaa/status/461660048419065856", "source"=>"Twitter"}, {"contentid"=>"461659974293147648", "ldate"=>"Thu May 01 00:14:49 +0000 2014", "author"=>"Shawn The Don", "perferredUsername"=>"Dashawnnnn_", "url"=>"http://twitter.com/Dashawnnnn_/status/461659974293147648", "source"=>"Twitter"}, {"contentid"=>"461659879728349185", "ldate"=>"Thu May 01 00:14:27 +0000 2014", "author"=>"Diana Mandile", "perferredUsername"=>"dianamarieexo", "url"=>"http://twitter.com/dianamarieexo/status/461659879728349185", "source"=>"Twitter"}, {"contentid"=>"461659836300931072", "ldate"=>"Thu May 01 00:14:16 +0000 2014", "author"=>"Hanna Burns", "perferredUsername"=>"hannagraceburns", "url"=>"http://twitter.com/hannagraceburns/status/461659836300931072", "source"=>"Twitter"}, {"contentid"=>"461659478887505921", "ldate"=>"Thu May 01 00:12:51 +0000 2014", "author"=>"FluidEdits", "perferredUsername"=>"FluidEdits", "url"=>"http://twitter.com/FluidEdits/status/461659478887505921", "source"=>"Twitter"}, {"contentid"=>"461659465876393984", "ldate"=>"Thu May 01 00:12:48 +0000 2014", "author"=>"Lexi ", "perferredUsername"=>"SlapAnAsian", "url"=>"http://twitter.com/SlapAnAsian/status/461659465876393984", "source"=>"Twitter"}, {"contentid"=>"461659371198365697", "ldate"=>"Thu May 01 00:12:25 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461659371198365697", "source"=>"Twitter"}, {"contentid"=>"461659329548914688", "ldate"=>"Thu May 01 00:12:16 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461659329548914688", "source"=>"Twitter"}, {"contentid"=>"461659287203225600", "ldate"=>"Thu May 01 00:12:05 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461659287203225600", "source"=>"Twitter"}, {"contentid"=>"461659251409039360", "ldate"=>"Thu May 01 00:11:57 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461659251409039360", "source"=>"Twitter"}]}, "requestid"=>"dfbf71fc-4d72-40b1-825e-a9b4b238dff4"}
|
189
|
+
I, [2014-04-30T20:27:03.203479 #32088] INFO -- : Prediction loader waiting for scores ...
|
190
|
+
D, [2014-04-30T20:27:03.203513 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
191
|
+
D, [2014-04-30T20:42:01.628330 #32088] DEBUG -- : Adding posts for scout_id: 27
|
192
|
+
D, [2014-04-30T20:42:01.628403 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
193
|
+
D, [2014-04-30T20:42:01.636434 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Jim Brown", body: "Florida Democrats Have Declared A War On Women By V...", url: "http://twitter.com/Menorahblog/status/4616650705029...", source: "Twitter", sentiment: #<BigDecimal:6d43ab8,'0.0',9(36)>, leadprob: #<BigDecimal:6d43888,'0.8678136384 638989E0',18(45)>, notleadprob: #<BigDecimal:6d43658,'0.7864969585 005857E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461665070502916096", ldate: "2014-05-01 00:35:04", loadstamp: "2014-05-01 00:42:01", user_id: 7, scout_id: 27>
|
194
|
+
D, [2014-04-30T20:42:01.646562 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "RaptorsRule", body: "RT @RepTedDeutch: Graphic: Here's what #1010Means f...", url: "http://twitter.com/NYDKFL/status/461665258206003202...", source: "Twitter", sentiment: #<BigDecimal:6daf1a0,'0.0',9(36)>, leadprob: #<BigDecimal:6daef70,'0.8275129795 447093E0',18(45)>, notleadprob: #<BigDecimal:6daed40,'0.6267857952 108301E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461665258206003202", ldate: "2014-05-01 00:35:49", loadstamp: "2014-05-01 00:42:01", user_id: 7, scout_id: 27>
|
195
|
+
D, [2014-04-30T20:42:01.663225 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "MillieFLRealtor", body: "#realestate #Florida GDP Growth and the Fed’s Persp...", url: "http://twitter.com/MillieGil/status/461665314946551...", source: "Twitter", sentiment: #<BigDecimal:6e16878,'0.0',9(36)>, leadprob: #<BigDecimal:6e16648,'0.9429061679 988283E0',18(45)>, notleadprob: #<BigDecimal:6e16418,'0.6043093087 94612E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461665314946551808", ldate: "2014-05-01 00:36:03", loadstamp: "2014-05-01 00:42:01", user_id: 7, scout_id: 27>
|
196
|
+
I, [2014-04-30T20:42:01.678985 #32088] INFO -- : Total Number of records: 3
|
197
|
+
I, [2014-04-30T20:42:01.679027 #32088] INFO -- : Total Number of records Not Loaded: 0
|
198
|
+
I, [2014-04-30T20:42:01.679056 #32088] INFO -- : Prediction loader waiting for scores ...
|
199
|
+
D, [2014-04-30T20:42:01.679084 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
200
|
+
W, [2014-04-30T20:42:02.633342 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"Let me NOT text and drive", "contentid"=>"461666750996938752"}, {"content"=>"I will be selling tickets soon for this by monday Please message me or text me if you need tickets! I'll drive to you http://t.co/OSSfpeXARP", "contentid"=>"461666558876848128"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461666365930082304"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/uSiMPBNj42 Don't Text & Drive", "contentid"=>"461666322846609408"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461666101810970624"}, {"content"=>"We can't text and drive but mother fuckin cops be surfin the fuckin interweb and drivin", "contentid"=>"461666072936992768"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461666032625926144"}, {"content"=>"RT @FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461665935858753536"}, {"content"=>"Getting that text made my night go from fine to omg i wanna drive to FL just to be with my bestfriend", "contentid"=>"461665841629515776"}, {"content"=>"@halie_varney \nSomebody didn't read my research novel on why you shouldn't text & drive.", "contentid"=>"461665738617794560"}, {"content"=>"@samamber12 @bcangialosi text and drive", "contentid"=>"461665675942326272"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/3FDmhg5z0f Don't Text & Drive", "contentid"=>"461665636385820672"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/Bp6ysV8YiW Don't Text & Drive", "contentid"=>"461665532551634945"}, {"content"=>"DO NOT TEXT ME WHILE YOU'RE DRIVING I'm not trying to be the last unfinished message they find when your ass is wrapped around a tree.", "contentid"=>"461665276132855808"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461665241852416000"}, {"content"=>"People that drink and drive or text and drive are stupid.", "contentid"=>"461665034842537984"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/7sU22Wzswo Don't Text & Drive", "contentid"=>"461664950952288256"}, {"content"=>"I don't know why people text and drive when you can just use Siri she so much fun", "contentid"=>"461664390480027649"}, {"content"=>"“@f4gg0ttbh: People who drive fast AND text at the same time.. <\n\nlemme just tuck & roll out real quick.”lol me", "contentid"=>"461664316379258880"}, {"content"=>"My grandma just told me to stop trying to be cute and she's about ready to drive over and take my phone just bc I didn't text her back :-)", "contentid"=>"461664161702109185"}, {"content"=>"People who drive fast AND text at the same time.. <\n\nlemme just tuck & roll out real quick.", "contentid"=>"461664018772402176"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461664004679561216"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/C6SIDfO8oB Don't Text & Drive", "contentid"=>"461663949331918848"}, {"content"=>"RT @Hannah__Kline: Don't be like Tom Haverford. Don't text and drive. #seriouslythough #TXTL8RIN http://t.co/5VZMScl6kT", "contentid"=>"461663833812402176"}, {"content"=>"RT @Hannah__Kline: Don't risk your life for something that can wait. Drive now, text later. #itcanwait #TXTL8RIN http://t.co/MFMa11QhLy", "contentid"=>"461663813553508352"}, {"content"=>"RT @Hannah__Kline: @SocramOrravan and I were featured in the paper today. He was my designated texter. Drive now, text later. #TXTL8RIN htt…", "contentid"=>"461663782293757953"}, {"content"=>"RT @_ItCanWait: Do you take the pledge not to text and drive? #TXTL8RIN Let us know !", "contentid"=>"461663754061889536"}, {"content"=>"RT @Hannah__Kline: Stop the violence. Don't text and drive. #TXTL8RIN http://t.co/X00vq3h5um", "contentid"=>"461663596586749952"}, {"content"=>"RT @LauknessMonster: Don't Text & Drive: http://t.co/SzN2ornstT via @YouTube", "contentid"=>"461663303924596736"}, {"content"=>"I hate when people text me while driving i dont wanna end up on one of them sad ass commercials", "contentid"=>"461663067927883778"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461666750996938752", "ldate"=>"Thu May 01 00:41:45 +0000 2014", "author"=>"Nikole Rodrigues ", "perferredUsername"=>"Nikoleyyy", "url"=>"http://twitter.com/Nikoleyyy/status/461666750996938752", "source"=>"Twitter"}, {"contentid"=>"461666558876848128", "ldate"=>"Thu May 01 00:40:59 +0000 2014", "author"=>"Szike", "perferredUsername"=>"stephanie_zike", "url"=>"http://twitter.com/stephanie_zike/status/461666558876848128", "source"=>"Twitter"}, {"contentid"=>"461666365930082304", "ldate"=>"Thu May 01 00:40:13 +0000 2014", "author"=>"Hilda Fajira H", "perferredUsername"=>"hildafajira", "url"=>"http://twitter.com/hildafajira/status/461666365930082304", "source"=>"Twitter"}, {"contentid"=>"461666322846609408", "ldate"=>"Thu May 01 00:40:03 +0000 2014", "author"=>"Matt ", "perferredUsername"=>"Drunkenmouse0", "url"=>"http://twitter.com/Drunkenmouse0/status/461666322846609408", "source"=>"Twitter"}, {"contentid"=>"461666101810970624", "ldate"=>"Thu May 01 00:39:10 +0000 2014", "author"=>"Massimo Pantaleo", "perferredUsername"=>"MassimoPantaleo", "url"=>"http://twitter.com/MassimoPantaleo/status/461666101810970624", "source"=>"Twitter"}, {"contentid"=>"461666072936992768", "ldate"=>"Thu May 01 00:39:03 +0000 2014", "author"=>"RYΔN", "perferredUsername"=>"RipenedBanana", "url"=>"http://twitter.com/RipenedBanana/status/461666072936992768", "source"=>"Twitter"}, {"contentid"=>"461666032625926144", "ldate"=>"Thu May 01 00:38:54 +0000 2014", "author"=>"IG: empressranelle", "perferredUsername"=>"EmpressRanelle", "url"=>"http://twitter.com/EmpressRanelle/status/461666032625926144", "source"=>"Twitter"}, {"contentid"=>"461665935858753536", "ldate"=>"Thu May 01 00:38:31 +0000 2014", "author"=>"Jazmyne Jackson", "perferredUsername"=>"thisgirljazmyne", "url"=>"http://twitter.com/thisgirljazmyne/status/461665935858753536", "source"=>"Twitter"}, {"contentid"=>"461665841629515776", "ldate"=>"Thu May 01 00:38:08 +0000 2014", "author"=>"jess ", "perferredUsername"=>"jesstheredneck", "url"=>"http://twitter.com/jesstheredneck/status/461665841629515776", "source"=>"Twitter"}, {"contentid"=>"461665738617794560", "ldate"=>"Thu May 01 00:37:44 +0000 2014", "author"=>"Femi ", "perferredUsername"=>"adetunji_11", "url"=>"http://twitter.com/adetunji_11/status/461665738617794560", "source"=>"Twitter"}, {"contentid"=>"461665675942326272", "ldate"=>"Thu May 01 00:37:29 +0000 2014", "author"=>"Lαcey Williαms", "perferredUsername"=>"LWilliamsyo", "url"=>"http://twitter.com/LWilliamsyo/status/461665675942326272", "source"=>"Twitter"}, {"contentid"=>"461665636385820672", "ldate"=>"Thu May 01 00:37:19 +0000 2014", "author"=>"Arnar D.", "perferredUsername"=>"ArnarDb", "url"=>"http://twitter.com/ArnarDb/status/461665636385820672", "source"=>"Twitter"}, {"contentid"=>"461665532551634945", "ldate"=>"Thu May 01 00:36:54 +0000 2014", "author"=>"Luis Sequeira", "perferredUsername"=>"LuiSequeira21", "url"=>"http://twitter.com/LuiSequeira21/status/461665532551634945", "source"=>"Twitter"}, {"contentid"=>"461665276132855808", "ldate"=>"Thu May 01 00:35:53 +0000 2014", "author"=>"Nohemi ..", "perferredUsername"=>"corraIIed", "url"=>"http://twitter.com/corraIIed/status/461665276132855808", "source"=>"Twitter"}, {"contentid"=>"461665241852416000", "ldate"=>"Thu May 01 00:35:45 +0000 2014", "author"=>"arvinnia tanida", "perferredUsername"=>"arvinniatanida", "url"=>"http://twitter.com/arvinniatanida/status/461665241852416000", "source"=>"Twitter"}, {"contentid"=>"461665034842537984", "ldate"=>"Thu May 01 00:34:56 +0000 2014", "author"=>"B ❤️", "perferredUsername"=>"BreaArnaud", "url"=>"http://twitter.com/BreaArnaud/status/461665034842537984", "source"=>"Twitter"}, {"contentid"=>"461664950952288256", "ldate"=>"Thu May 01 00:34:36 +0000 2014", "author"=>"Hud293", "perferredUsername"=>"HudDoesGames", "url"=>"http://twitter.com/HudDoesGames/status/461664950952288256", "source"=>"Twitter"}, {"contentid"=>"461664390480027649", "ldate"=>"Thu May 01 00:32:22 +0000 2014", "author"=>" ", "perferredUsername"=>"westxend", "url"=>"http://twitter.com/westxend/status/461664390480027649", "source"=>"Twitter"}, {"contentid"=>"461664316379258880", "ldate"=>"Thu May 01 00:32:04 +0000 2014", "author"=>"erika ✝", "perferredUsername"=>"imjust_erika12", "url"=>"http://twitter.com/imjust_erika12/status/461664316379258880", "source"=>"Twitter"}, {"contentid"=>"461664161702109185", "ldate"=>"Thu May 01 00:31:28 +0000 2014", "author"=>"wow", "perferredUsername"=>"thegreatnegress", "url"=>"http://twitter.com/thegreatnegress/status/461664161702109185", "source"=>"Twitter"}, {"contentid"=>"461664018772402176", "ldate"=>"Thu May 01 00:30:54 +0000 2014", "author"=>"Sanchie. ✨", "perferredUsername"=>"f4gg0ttbh", "url"=>"http://twitter.com/f4gg0ttbh/status/461664018772402176", "source"=>"Twitter"}, {"contentid"=>"461664004679561216", "ldate"=>"Thu May 01 00:30:50 +0000 2014", "author"=>"hannah lemley", "perferredUsername"=>"hannahlemley1", "url"=>"http://twitter.com/hannahlemley1/status/461664004679561216", "source"=>"Twitter"}, {"contentid"=>"461663949331918848", "ldate"=>"Thu May 01 00:30:37 +0000 2014", "author"=>"Jacob Brennfleck", "perferredUsername"=>"TGTBC", "url"=>"http://twitter.com/TGTBC/status/461663949331918848", "source"=>"Twitter"}, {"contentid"=>"461663833812402176", "ldate"=>"Thu May 01 00:30:09 +0000 2014", "author"=>"Helen Bremer", "perferredUsername"=>"BremerHelen", "url"=>"http://twitter.com/BremerHelen/status/461663833812402176", "source"=>"Twitter"}, {"contentid"=>"461663813553508352", "ldate"=>"Thu May 01 00:30:05 +0000 2014", "author"=>"Megan Kratzsch", "perferredUsername"=>"megkratzsch14", "url"=>"http://twitter.com/megkratzsch14/status/461663813553508352", "source"=>"Twitter"}, {"contentid"=>"461663782293757953", "ldate"=>"Thu May 01 00:29:57 +0000 2014", "author"=>"Helen Bremer", "perferredUsername"=>"BremerHelen", "url"=>"http://twitter.com/BremerHelen/status/461663782293757953", "source"=>"Twitter"}, {"contentid"=>"461663754061889536", "ldate"=>"Thu May 01 00:29:50 +0000 2014", "author"=>"Helen Bremer", "perferredUsername"=>"BremerHelen", "url"=>"http://twitter.com/BremerHelen/status/461663754061889536", "source"=>"Twitter"}, {"contentid"=>"461663596586749952", "ldate"=>"Thu May 01 00:29:13 +0000 2014", "author"=>"Megan Kratzsch", "perferredUsername"=>"megkratzsch14", "url"=>"http://twitter.com/megkratzsch14/status/461663596586749952", "source"=>"Twitter"}, {"contentid"=>"461663303924596736", "ldate"=>"Thu May 01 00:28:03 +0000 2014", "author"=>"luisflores", "perferredUsername"=>"PopesLuisflores", "url"=>"http://twitter.com/PopesLuisflores/status/461663303924596736", "source"=>"Twitter"}, {"contentid"=>"461663067927883778", "ldate"=>"Thu May 01 00:27:07 +0000 2014", "author"=>"ZaC", "perferredUsername"=>"zacforeskin", "url"=>"http://twitter.com/zacforeskin/status/461663067927883778", "source"=>"Twitter"}]}, "requestid"=>"ac254339-c162-45a5-b31b-ce5d2573cec3"}
|
201
|
+
I, [2014-04-30T20:42:02.633421 #32088] INFO -- : Prediction loader waiting for scores ...
|
202
|
+
D, [2014-04-30T20:42:02.633455 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
203
|
+
D, [2014-04-30T20:57:02.027745 #32088] DEBUG -- : Adding posts for scout_id: 27
|
204
|
+
D, [2014-04-30T20:57:02.027818 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
205
|
+
D, [2014-04-30T20:57:02.035838 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Paige Kelton", body: "RT @MarkSpainANjax: BREAKING NEWS: Republican Party...", url: "http://twitter.com/PaigeANjax/status/46166703956925...", source: "Twitter", sentiment: #<BigDecimal:6ef16d0,'0.0',9(36)>, leadprob: #<BigDecimal:6ef14a0,'0.3452318311 503386E0',18(45)>, notleadprob: #<BigDecimal:6ef1270,'0.9800569291 717757E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461667039569256448", ldate: "2014-05-01 00:42:54", loadstamp: "2014-05-01 00:57:02", user_id: 7, scout_id: 27>
|
206
|
+
D, [2014-04-30T20:57:02.052329 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Jason Altmire", body: "RT @MarkSpainANjax: BREAKING NEWS: Republican Party...", url: "http://twitter.com/jasonaltmire/status/461667406142...", source: "Twitter", sentiment: #<BigDecimal:6f54c80,'0.0',9(36)>, leadprob: #<BigDecimal:6f54a50,'0.3452318311 503386E0',18(45)>, notleadprob: #<BigDecimal:6f54820,'0.9800569291 717757E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461667406142648321", ldate: "2014-05-01 00:44:21", loadstamp: "2014-05-01 00:57:02", user_id: 7, scout_id: 27>
|
207
|
+
D, [2014-04-30T20:57:02.068989 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Amazon News", body: "Shopping on http://t.co/vzkD2RfG7a in Florida? Expe...", url: "http://twitter.com/AmazonAllNews/status/46166759372...", source: "Twitter", sentiment: #<BigDecimal:6fbc2e0,'0.0',9(36)>, leadprob: #<BigDecimal:6fbc0b0,'0.8936143850 948659E0',18(45)>, notleadprob: #<BigDecimal:6fc7e10,'0.4137718931 143053E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461667593720700928", ldate: "2014-05-01 00:45:06", loadstamp: "2014-05-01 00:57:02", user_id: 7, scout_id: 27>
|
208
|
+
D, [2014-04-30T20:57:02.085587 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Pricezon", body: "RT @AmazonAllNews: Shopping on http://t.co/vzkD2RfG...", url: "http://twitter.com/Pricezon/status/4616681297318051...", source: "Twitter", sentiment: #<BigDecimal:702f9c0,'0.0',9(36)>, leadprob: #<BigDecimal:702f790,'0.6925337251 499426E0',18(45)>, notleadprob: #<BigDecimal:702f560,'0.5816239151 523572E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461668129731805184", ldate: "2014-05-01 00:47:14", loadstamp: "2014-05-01 00:57:02", user_id: 7, scout_id: 27>
|
209
|
+
D, [2014-04-30T20:57:02.102264 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Cheryl Harris", body: "RT @RepTedDeutch: Graphic: Here's what #1010Means f...", url: "http://twitter.com/cdh111/status/461669390002712576...", source: "Twitter", sentiment: #<BigDecimal:709b1c0,'0.0',9(36)>, leadprob: #<BigDecimal:709af90,'0.8275129795 447093E0',18(45)>, notleadprob: #<BigDecimal:709ad60,'0.6267857952 108301E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461669390002712576", ldate: "2014-05-01 00:52:14", loadstamp: "2014-05-01 00:57:02", user_id: 7, scout_id: 27>
|
210
|
+
I, [2014-04-30T20:57:02.118092 #32088] INFO -- : Total Number of records: 5
|
211
|
+
I, [2014-04-30T20:57:02.118135 #32088] INFO -- : Total Number of records Not Loaded: 0
|
212
|
+
I, [2014-04-30T20:57:02.118164 #32088] INFO -- : Prediction loader waiting for scores ...
|
213
|
+
D, [2014-04-30T20:57:02.118193 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
214
|
+
W, [2014-04-30T20:57:02.706611 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"@JCreek96 @deanna___angel @Maria_Rosela I try not to text and drive lol sometimes..", "contentid"=>"461670508019216385"}, {"content"=>"Someone text me, I need some entertainment on this drive to Florida", "contentid"=>"461670334195068928"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/impN5l1WRa Don't Text & Drive", "contentid"=>"461670044037304320"}, {"content"=>"I text am drive everyday im even tweeting as im driving right now lol just a habit i cant break", "contentid"=>"461669804743483392"}, {"content"=>"El Santo reminds you to never text and drive. ARRRIBA! #TXTL8RIN #santo https://t.co/o3fz2RsHc3", "contentid"=>"461669718420504576"}, {"content"=>"first time in my life I've ever had long nails and it's driving me crazy...don't text me because it took me a few minutes just to type thisὠ2", "contentid"=>"461669579354144768"}, {"content"=>"Looks like I might have me a long drive to text tomorrow!", "contentid"=>"461669179519545344"}, {"content"=>"i asked you a simple yes or no question and you reply \"hold on i'm driving\" you could have text \"YES\" or \"NO\"", "contentid"=>"461669089199407107"}, {"content"=>"I wish I could drive already so I could just text people like, \"me, you, lunch tomorrow, I'll be there _:__, I'm paying\"", "contentid"=>"461669051371384832"}, {"content"=>"Jabra DRIVE question: Does The Jabra Drive Read Text Messages Out Load? - http://t.co/O39e5MEepZ", "contentid"=>"461668626580267008"}, {"content"=>"maybe ur \"driving\"\nbut text me back, liz", "contentid"=>"461668620901548032"}, {"content"=>"RT @neverknownfacts: Please, don't text and drive http://t.co/g3lmCGrlj9", "contentid"=>"461668403304869888"}, {"content"=>"Hope the drive went well @KassieMeiler....My phone got water damage walking to precalc so I can't text ya. Hopefully it will be fixed soon.", "contentid"=>"461668211784957952"}, {"content"=>"@lexi2564 I actually didn't text and drive today. Can you believe that? ὣ3", "contentid"=>"461668018909880320"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/pospHW2Vtm Don't Text & Drive", "contentid"=>"461667802144079872"}, {"content"=>"Intellectually, todays teenagers are more aware than ever theyre not supposed to drink and drive, or text and drive.", "contentid"=>"461667511818125312"}, {"content"=>"Shawnee capital mission parkway? That's why you shouldn't text and drive.", "contentid"=>"461667435498979328"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/g6YpZU8mlU Don't Text & Drive", "contentid"=>"461667411268501504"}, {"content"=>"RT @LauknessMonster: Don't Text & Drive: http://t.co/SzN2ornstT via @YouTube", "contentid"=>"461667390585962496"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/rxqmksSM2e Don't Text & Drive", "contentid"=>"461667293513404417"}, {"content"=>"Text message marketing is an easy, cost-effective way to drive more business. Go to http://t.co/OwOqYuM71N to learn more.", "contentid"=>"461667232313909248"}, {"content"=>"@mcbride_kayla @zaunerr7 yes I don't text and drive that's dangerous. I don't want to die.", "contentid"=>"461667225552683008"}, {"content"=>"@_IronStorm Why would I agree to let you text and drive?", "contentid"=>"461667077057564672"}, {"content"=>"Text Your Wife Into Bed: Presentation reveals a weird but effective method for waking up your wife's sex drive. http://t.co/goLhHfcFav", "contentid"=>"461667052457959424"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461670508019216385", "ldate"=>"Thu May 01 00:56:41 +0000 2014", "author"=>"Tim Adkins", "perferredUsername"=>"TimAdkins4", "url"=>"http://twitter.com/TimAdkins4/status/461670508019216385", "source"=>"Twitter"}, {"contentid"=>"461670334195068928", "ldate"=>"Thu May 01 00:55:59 +0000 2014", "author"=>"Dallas Keeney™", "perferredUsername"=>"DallasKeeney", "url"=>"http://twitter.com/DallasKeeney/status/461670334195068928", "source"=>"Twitter"}, {"contentid"=>"461670044037304320", "ldate"=>"Thu May 01 00:54:50 +0000 2014", "author"=>"TaylorForTW", "perferredUsername"=>"TaylorForTW", "url"=>"http://twitter.com/TaylorForTW/status/461670044037304320", "source"=>"Twitter"}, {"contentid"=>"461669804743483392", "ldate"=>"Thu May 01 00:53:53 +0000 2014", "author"=>"KamInSoho", "perferredUsername"=>"KamInSoho", "url"=>"http://twitter.com/KamInSoho/status/461669804743483392", "source"=>"Twitter"}, {"contentid"=>"461669718420504576", "ldate"=>"Thu May 01 00:53:32 +0000 2014", "author"=>"JBG", "perferredUsername"=>"JBGMedia", "url"=>"http://twitter.com/JBGMedia/status/461669718420504576", "source"=>"Twitter"}, {"contentid"=>"461669579354144768", "ldate"=>"Thu May 01 00:52:59 +0000 2014", "author"=>"Kaylee Slont", "perferredUsername"=>"_Kay_BaeBae", "url"=>"http://twitter.com/_Kay_BaeBae/status/461669579354144768", "source"=>"Twitter"}, {"contentid"=>"461669179519545344", "ldate"=>"Thu May 01 00:51:24 +0000 2014", "author"=>"Zachariah", "perferredUsername"=>"ZachariahPierce", "url"=>"http://twitter.com/ZachariahPierce/status/461669179519545344", "source"=>"Twitter"}, {"contentid"=>"461669089199407107", "ldate"=>"Thu May 01 00:51:02 +0000 2014", "author"=>"Jamata Roxanne", "perferredUsername"=>"got_jam", "url"=>"http://twitter.com/got_jam/status/461669089199407107", "source"=>"Twitter"}, {"contentid"=>"461669051371384832", "ldate"=>"Thu May 01 00:50:53 +0000 2014", "author"=>"Melindelicious", "perferredUsername"=>"melinduhh12", "url"=>"http://twitter.com/melinduhh12/status/461669051371384832", "source"=>"Twitter"}, {"contentid"=>"461668626580267008", "ldate"=>"Thu May 01 00:49:12 +0000 2014", "author"=>"HelpOwl.com", "perferredUsername"=>"helpowl", "url"=>"http://twitter.com/helpowl/status/461668626580267008", "source"=>"Twitter"}, {"contentid"=>"461668620901548032", "ldate"=>"Thu May 01 00:49:11 +0000 2014", "author"=>"aj", "perferredUsername"=>"ajprzzz", "url"=>"http://twitter.com/ajprzzz/status/461668620901548032", "source"=>"Twitter"}, {"contentid"=>"461668403304869888", "ldate"=>"Thu May 01 00:48:19 +0000 2014", "author"=>"spidey♡", "perferredUsername"=>"esligg", "url"=>"http://twitter.com/esligg/status/461668403304869888", "source"=>"Twitter"}, {"contentid"=>"461668211784957952", "ldate"=>"Thu May 01 00:47:33 +0000 2014", "author"=>"Rachel Seiden☮", "perferredUsername"=>"RachelSeiden", "url"=>"http://twitter.com/RachelSeiden/status/461668211784957952", "source"=>"Twitter"}, {"contentid"=>"461668018909880320", "ldate"=>"Thu May 01 00:46:47 +0000 2014", "author"=>"Keeley✨", "perferredUsername"=>"keeley_dubensky", "url"=>"http://twitter.com/keeley_dubensky/status/461668018909880320", "source"=>"Twitter"}, {"contentid"=>"461667802144079872", "ldate"=>"Thu May 01 00:45:56 +0000 2014", "author"=>"MJLaukala", "perferredUsername"=>"MJLaukala", "url"=>"http://twitter.com/MJLaukala/status/461667802144079872", "source"=>"Twitter"}, {"contentid"=>"461667511818125312", "ldate"=>"Thu May 01 00:44:46 +0000 2014", "author"=>"Amazon Design", "perferredUsername"=>"amazon_desgni", "url"=>"http://twitter.com/amazon_desgni/status/461667511818125312", "source"=>"Twitter"}, {"contentid"=>"461667435498979328", "ldate"=>"Thu May 01 00:44:28 +0000 2014", "author"=>"Pretty Down Brown", "perferredUsername"=>"TheIllestBAlive", "url"=>"http://twitter.com/TheIllestBAlive/status/461667435498979328", "source"=>"Twitter"}, {"contentid"=>"461667411268501504", "ldate"=>"Thu May 01 00:44:22 +0000 2014", "author"=>"Final「Mr. Cat」 ", "perferredUsername"=>"Finalfantasy332", "url"=>"http://twitter.com/Finalfantasy332/status/461667411268501504", "source"=>"Twitter"}, {"contentid"=>"461667390585962496", "ldate"=>"Thu May 01 00:44:17 +0000 2014", "author"=>"MJLaukala", "perferredUsername"=>"MJLaukala", "url"=>"http://twitter.com/MJLaukala/status/461667390585962496", "source"=>"Twitter"}, {"contentid"=>"461667293513404417", "ldate"=>"Thu May 01 00:43:54 +0000 2014", "author"=>"Sean Bain", "perferredUsername"=>"SeanNufc91", "url"=>"http://twitter.com/SeanNufc91/status/461667293513404417", "source"=>"Twitter"}, {"contentid"=>"461667232313909248", "ldate"=>"Thu May 01 00:43:40 +0000 2014", "author"=>"Arturo L.", "perferredUsername"=>"Adoptecun", "url"=>"http://twitter.com/Adoptecun/status/461667232313909248", "source"=>"Twitter"}, {"contentid"=>"461667225552683008", "ldate"=>"Thu May 01 00:43:38 +0000 2014", "author"=>"Joshua Buchek", "perferredUsername"=>"Buchek07", "url"=>"http://twitter.com/Buchek07/status/461667225552683008", "source"=>"Twitter"}, {"contentid"=>"461667077057564672", "ldate"=>"Thu May 01 00:43:03 +0000 2014", "author"=>"Sam", "perferredUsername"=>"breakthearrow", "url"=>"http://twitter.com/breakthearrow/status/461667077057564672", "source"=>"Twitter"}, {"contentid"=>"461667052457959424", "ldate"=>"Thu May 01 00:42:57 +0000 2014", "author"=>"Miranda Lambert", "perferredUsername"=>"usa_toys", "url"=>"http://twitter.com/usa_toys/status/461667052457959424", "source"=>"Twitter"}]}, "requestid"=>"d1997e75-dc4d-4520-9883-328d73c4384a"}
|
215
|
+
I, [2014-04-30T20:57:02.706694 #32088] INFO -- : Prediction loader waiting for scores ...
|
216
|
+
D, [2014-04-30T20:57:02.706728 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
217
|
+
D, [2014-04-30T21:12:02.132908 #32088] DEBUG -- : Adding posts for scout_id: 27
|
218
|
+
D, [2014-04-30T21:12:02.134039 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Tim Heberlein", body: "RT @MarkSpainANjax: BREAKING NEWS: Republican Party...", url: "http://twitter.com/Timintampa/status/46167206200084...", source: "Twitter", sentiment: #<BigDecimal:712a640,'0.0',9(36)>, leadprob: #<BigDecimal:712a410,'0.3452318311 503386E0',18(45)>, notleadprob: #<BigDecimal:712a1e0,'0.9800569291 717757E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461672062000848896", ldate: "2014-05-01 01:02:51", loadstamp: "2014-05-01 01:12:02", user_id: 7, scout_id: 27>
|
219
|
+
D, [2014-04-30T21:12:02.149630 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Leo Cruz", body: "RT @MarkSpainANjax: BREAKING NEWS: Republican Party...", url: "http://twitter.com/LeoCruz1787/status/4616724139868...", source: "Twitter", sentiment: #<BigDecimal:7191ca0,'0.0',9(36)>, leadprob: #<BigDecimal:7191a70,'0.3452318311 503386E0',18(45)>, notleadprob: #<BigDecimal:7191840,'0.9800569291 717757E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461672413986844672", ldate: "2014-05-01 01:04:15", loadstamp: "2014-05-01 01:12:02", user_id: 7, scout_id: 27>
|
220
|
+
D, [2014-04-30T21:12:02.166292 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Martha Gooden", body: "RT @Mozi_N: Florida can thank Republican Jeb Bush a...", url: "http://twitter.com/marthagooden2/status/46167359406...", source: "Twitter", sentiment: #<BigDecimal:69fd3e0,'0.0',9(36)>, leadprob: #<BigDecimal:69fd1b0,'0.7440362496 888129E0',18(45)>, notleadprob: #<BigDecimal:69fcf80,'0.9669060893 444905E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461673594066436096", ldate: "2014-05-01 01:08:56", loadstamp: "2014-05-01 01:12:02", user_id: 7, scout_id: 27>
|
221
|
+
I, [2014-04-30T21:12:02.182042 #32088] INFO -- : Total Number of records: 3
|
222
|
+
I, [2014-04-30T21:12:02.182085 #32088] INFO -- : Total Number of records Not Loaded: 0
|
223
|
+
I, [2014-04-30T21:12:02.182114 #32088] INFO -- : Prediction loader waiting for scores ...
|
224
|
+
D, [2014-04-30T21:12:02.182143 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
225
|
+
W, [2014-04-30T21:12:03.069333 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"In order to survive, don’t text and drive #TXTL8RIN", "contentid"=>"461674315579023360"}, {"content"=>"Text on your own time, not while you are driving #TXTL8RIN", "contentid"=>"461674296566616064"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461674254921367552"}, {"content"=>"If you think that you can text and drive, you are wrong #TXTL8RIN", "contentid"=>"461674172679467008"}, {"content"=>"\"When I'm withy shorty bro n a bitch text me while driving n my phone in da cup holder I purposely drop it in between the seatsl\"\nMe-ὢ9ὢ9", "contentid"=>"461673731849728001"}, {"content"=>"The Wolfman doesn't text and drive.. Neither should you! #TXTL8RIN http://t.co/0L3871omul", "contentid"=>"461673641168474112"}, {"content"=>"Sara just told me she considered driving to my house at 1am & threaten me with a knife to text someone ὤAὤ8", "contentid"=>"461673594935083008"}, {"content"=>"Idiots who text & drive should have their licenses cancelled for 12 months AND be forced to make voice calls ONLY!!!", "contentid"=>"461673342370476032"}, {"content"=>"I only text and drive when I'm drunk", "contentid"=>"461673135990136832"}, {"content"=>"RT @CaltransHQ: Fines are doubled in highway work zones and can easily total $1,000 or more for drivers who speed, drive aggressively or te…", "contentid"=>"461673068255932417"}, {"content"=>"RT @The_MikeWest: Bullshit. Corvette's do not have back seats. http://t.co/XQ6fdpOKN9 #Hoax “@Fact: Please, don't text and drive: http://t.…", "contentid"=>"461673015206367232"}, {"content"=>"Amanda's text tone is going to drive me through a freakin wall ὢ0", "contentid"=>"461672876555636737"}, {"content"=>"RT @vinny_ray: Girls the way you can drive, text, and put your makeup on all at the same time is truly remarkable.", "contentid"=>"461672851243028480"}, {"content"=>"RT @CaltransHQ: Fines are doubled in highway work zones and can easily total $1,000 or more for drivers who speed, drive aggressively or te…", "contentid"=>"461672706073976832"}, {"content"=>"RT @vinny_ray: Girls the way you can drive, text, and put your makeup on all at the same time is truly remarkable.", "contentid"=>"461672635202797568"}, {"content"=>"Pledge not to text and drive http://t.co/OHHebNOuBu", "contentid"=>"461672438195957760"}, {"content"=>"i hate when adults in my life feel the need to constantly tell me not to text and drive, like ya, i know, okay, goodbye", "contentid"=>"461672262777982976"}, {"content"=>"RT @_ItCanWait: SHOUT OUT TO: @Hannah__Kline for taking the pledge not to text and drive ! DRIVE NOW, TXT L8R #TXTL8RIN", "contentid"=>"461672119521509376"}, {"content"=>"RT @JasetWayneWells: texting and driving is almost or is worse then driving under the influence, dont text and drive please #textlater", "contentid"=>"461671989825249281"}, {"content"=>"@darcybby better reply in the next 10 minutes shits going down. Only pussies don't text while they drive", "contentid"=>"461671945398779906"}, {"content"=>"RT @ThinkNowTextL8R: Want a free ride in a police car? Text and drive. #TXTL8RIN", "contentid"=>"461671935609667584"}, {"content"=>"RT @7notyours: Know what happens when you text and drive?\n\nMothetfucking typos", "contentid"=>"461671850452340736"}, {"content"=>"RT @Hannah__Kline: @SocramOrravan and I were featured in the paper today. He was my designated texter. Drive now, text later. #TXTL8RIN htt…", "contentid"=>"461671841493299200"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461671806898679808"}, {"content"=>"Sent my friend a text about Rob Ford seven minutes ago and he hasn't responded yet and I want to drive to his house and yell at him.", "contentid"=>"461671779849613312"}, {"content"=>"@DerekKarzen I don't text and drive!!!", "contentid"=>"461671653341011968"}, {"content"=>"#Texting increases your chance of getting into an #accident by 23% Don't text and drive! #ItsNotWorthIt …http://t.co/uPZsyEbSBA …", "contentid"=>"461671529835556865"}, {"content"=>"VCU PD: Text Later Live Longer | DRIVE SMART Virginia http://t.co/5jwoHIGVqu", "contentid"=>"461671422025138176"}, {"content"=>"Fines are doubled in highway work zones and can easily total $1,000 or more for drivers who speed, drive aggressively or text.", "contentid"=>"461671393428774912"}, {"content"=>"People who text and drive piss me off. \n#youregoingtodie #duh #dumbshits", "contentid"=>"461671246137012224"}, {"content"=>"I hate when my sister is driving because I always have to text for her ὡ2", "contentid"=>"461671161454399488"}, {"content"=>"\"@TimAdkins4: @JCreek96 @deanna___angel @Maria_Rosela I try not to text and drive lol sometimes..\" >>", "contentid"=>"461671146799116288"}, {"content"=>"Do you realize that your kids will emulate you? They learn faster than you realize. Don't Drink and Drive or Text while Driving!", "contentid"=>"461670768238006272"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461674315579023360", "ldate"=>"Thu May 01 01:11:48 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461674315579023360", "source"=>"Twitter"}, {"contentid"=>"461674296566616064", "ldate"=>"Thu May 01 01:11:44 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461674296566616064", "source"=>"Twitter"}, {"contentid"=>"461674254921367552", "ldate"=>"Thu May 01 01:11:34 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461674254921367552", "source"=>"Twitter"}, {"contentid"=>"461674172679467008", "ldate"=>"Thu May 01 01:11:14 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461674172679467008", "source"=>"Twitter"}, {"contentid"=>"461673731849728001", "ldate"=>"Thu May 01 01:09:29 +0000 2014", "author"=>"ALPHA MALE", "perferredUsername"=>"d0pe_boy", "url"=>"http://twitter.com/d0pe_boy/status/461673731849728001", "source"=>"Twitter"}, {"contentid"=>"461673641168474112", "ldate"=>"Thu May 01 01:09:08 +0000 2014", "author"=>"JBG", "perferredUsername"=>"JBGMedia", "url"=>"http://twitter.com/JBGMedia/status/461673641168474112", "source"=>"Twitter"}, {"contentid"=>"461673594935083008", "ldate"=>"Thu May 01 01:08:57 +0000 2014", "author"=>"Kellie", "perferredUsername"=>"Kellie_Cox", "url"=>"http://twitter.com/Kellie_Cox/status/461673594935083008", "source"=>"Twitter"}, {"contentid"=>"461673342370476032", "ldate"=>"Thu May 01 01:07:56 +0000 2014", "author"=>"No Body", "perferredUsername"=>"BBBubby77", "url"=>"http://twitter.com/BBBubby77/status/461673342370476032", "source"=>"Twitter"}, {"contentid"=>"461673135990136832", "ldate"=>"Thu May 01 01:07:07 +0000 2014", "author"=>"joshua", "perferredUsername"=>"combsDjoshua", "url"=>"http://twitter.com/combsDjoshua/status/461673135990136832", "source"=>"Twitter"}, {"contentid"=>"461673068255932417", "ldate"=>"Thu May 01 01:06:51 +0000 2014", "author"=>"Jodi Traversaro", "perferredUsername"=>"JodiTraversaro", "url"=>"http://twitter.com/JodiTraversaro/status/461673068255932417", "source"=>"Twitter"}, {"contentid"=>"461673015206367232", "ldate"=>"Thu May 01 01:06:38 +0000 2014", "author"=>"Melissa Ferguson", "perferredUsername"=>"MzFerg78", "url"=>"http://twitter.com/MzFerg78/status/461673015206367232", "source"=>"Twitter"}, {"contentid"=>"461672876555636737", "ldate"=>"Thu May 01 01:06:05 +0000 2014", "author"=>"Megan Billmeyer", "perferredUsername"=>"megann__14", "url"=>"http://twitter.com/megann__14/status/461672876555636737", "source"=>"Twitter"}, {"contentid"=>"461672851243028480", "ldate"=>"Thu May 01 01:05:59 +0000 2014", "author"=>"JamieFerrell", "perferredUsername"=>"jayferrett", "url"=>"http://twitter.com/jayferrett/status/461672851243028480", "source"=>"Twitter"}, {"contentid"=>"461672706073976832", "ldate"=>"Thu May 01 01:05:25 +0000 2014", "author"=>"SF Bay Area Traffic", "perferredUsername"=>"BayAreaCommuter", "url"=>"http://twitter.com/BayAreaCommuter/status/461672706073976832", "source"=>"Twitter"}, {"contentid"=>"461672635202797568", "ldate"=>"Thu May 01 01:05:08 +0000 2014", "author"=>"Marissa ThomASSASS", "perferredUsername"=>"MarisssaThomass", "url"=>"http://twitter.com/MarisssaThomass/status/461672635202797568", "source"=>"Twitter"}, {"contentid"=>"461672438195957760", "ldate"=>"Thu May 01 01:04:21 +0000 2014", "author"=>"Mary Parker", "perferredUsername"=>"MaryParkerRE", "url"=>"http://twitter.com/MaryParkerRE/status/461672438195957760", "source"=>"Twitter"}, {"contentid"=>"461672262777982976", "ldate"=>"Thu May 01 01:03:39 +0000 2014", "author"=>"Chass", "perferredUsername"=>"chassxox", "url"=>"http://twitter.com/chassxox/status/461672262777982976", "source"=>"Twitter"}, {"contentid"=>"461672119521509376", "ldate"=>"Thu May 01 01:03:05 +0000 2014", "author"=>"rob parker", "perferredUsername"=>"parkers1995", "url"=>"http://twitter.com/parkers1995/status/461672119521509376", "source"=>"Twitter"}, {"contentid"=>"461671989825249281", "ldate"=>"Thu May 01 01:02:34 +0000 2014", "author"=>"Heather Hester", "perferredUsername"=>"hlhester", "url"=>"http://twitter.com/hlhester/status/461671989825249281", "source"=>"Twitter"}, {"contentid"=>"461671945398779906", "ldate"=>"Thu May 01 01:02:23 +0000 2014", "author"=>"Jake Schulz", "perferredUsername"=>"JakeSchulz1208", "url"=>"http://twitter.com/JakeSchulz1208/status/461671945398779906", "source"=>"Twitter"}, {"contentid"=>"461671935609667584", "ldate"=>"Thu May 01 01:02:21 +0000 2014", "author"=>"Heather Hester", "perferredUsername"=>"hlhester", "url"=>"http://twitter.com/hlhester/status/461671935609667584", "source"=>"Twitter"}, {"contentid"=>"461671850452340736", "ldate"=>"Thu May 01 01:02:01 +0000 2014", "author"=>"Firangi Mulgi", "perferredUsername"=>"FirangiMulgi", "url"=>"http://twitter.com/FirangiMulgi/status/461671850452340736", "source"=>"Twitter"}, {"contentid"=>"461671841493299200", "ldate"=>"Thu May 01 01:01:59 +0000 2014", "author"=>"David Hoffert", "perferredUsername"=>"dahoffert", "url"=>"http://twitter.com/dahoffert/status/461671841493299200", "source"=>"Twitter"}, {"contentid"=>"461671806898679808", "ldate"=>"Thu May 01 01:01:50 +0000 2014", "author"=>"Giovani", "perferredUsername"=>"giooSC", "url"=>"http://twitter.com/giooSC/status/461671806898679808", "source"=>"Twitter"}, {"contentid"=>"461671779849613312", "ldate"=>"Thu May 01 01:01:44 +0000 2014", "author"=>"Findlay", "perferredUsername"=>"s_findlay", "url"=>"http://twitter.com/s_findlay/status/461671779849613312", "source"=>"Twitter"}, {"contentid"=>"461671653341011968", "ldate"=>"Thu May 01 01:01:14 +0000 2014", "author"=>"gabrielle mazzara☆", "perferredUsername"=>"gabsssmarie", "url"=>"http://twitter.com/gabsssmarie/status/461671653341011968", "source"=>"Twitter"}, {"contentid"=>"461671529835556865", "ldate"=>"Thu May 01 01:00:44 +0000 2014", "author"=>"SoCal Legal News", "perferredUsername"=>"SoCalLegalNews", "url"=>"http://twitter.com/SoCalLegalNews/status/461671529835556865", "source"=>"Twitter"}, {"contentid"=>"461671422025138176", "ldate"=>"Thu May 01 01:00:19 +0000 2014", "author"=>"Pastor C.V.Stansell", "perferredUsername"=>"CharlieandJena", "url"=>"http://twitter.com/CharlieandJena/status/461671422025138176", "source"=>"Twitter"}, {"contentid"=>"461671393428774912", "ldate"=>"Thu May 01 01:00:12 +0000 2014", "author"=>"CaltransHQ", "perferredUsername"=>"CaltransHQ", "url"=>"http://twitter.com/CaltransHQ/status/461671393428774912", "source"=>"Twitter"}, {"contentid"=>"461671246137012224", "ldate"=>"Thu May 01 00:59:37 +0000 2014", "author"=>"Isaac Asche", "perferredUsername"=>"Ike2196", "url"=>"http://twitter.com/Ike2196/status/461671246137012224", "source"=>"Twitter"}, {"contentid"=>"461671161454399488", "ldate"=>"Thu May 01 00:59:16 +0000 2014", "author"=>"J.G", "perferredUsername"=>"__JyleneGarcia", "url"=>"http://twitter.com/__JyleneGarcia/status/461671161454399488", "source"=>"Twitter"}, {"contentid"=>"461671146799116288", "ldate"=>"Thu May 01 00:59:13 +0000 2014", "author"=>"James Creek", "perferredUsername"=>"JCreek96", "url"=>"http://twitter.com/JCreek96/status/461671146799116288", "source"=>"Twitter"}, {"contentid"=>"461670768238006272", "ldate"=>"Thu May 01 00:57:43 +0000 2014", "author"=>"Public Safety East", "perferredUsername"=>"PublicSafetyEst", "url"=>"http://twitter.com/PublicSafetyEst/status/461670768238006272", "source"=>"Twitter"}]}, "requestid"=>"e13215d1-e68c-404d-b2bf-326e887353b0"}
|
226
|
+
I, [2014-04-30T21:12:03.069419 #32088] INFO -- : Prediction loader waiting for scores ...
|
227
|
+
D, [2014-04-30T21:12:03.069453 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
228
|
+
W, [2014-04-30T21:27:03.683333 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"You aren't invincible, so don't text and drive #TXTL8RIN", "contentid"=>"461678101299490816"}, {"content"=>"RT @Hannah__Kline: My face when you text and drive...\n\n#TXTL8RIN http://t.co/1B5lPY1oLo", "contentid"=>"461678023700279297"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461678005589663744"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461677981375930369"}, {"content"=>"RT @Hannah__Kline: Let's change that. Take the pledge not to text and drive @_ItCanWait #TXTL8RIN http://t.co/wYcH2T6Y9c", "contentid"=>"461677962257899520"}, {"content"=>"RT @Farhinnnn: When it's pouring out, I just have to shoot my sister a text to drive home safely.", "contentid"=>"461677905970757632"}, {"content"=>"In order to survive, don’t text and drive #TXTL8RIN", "contentid"=>"461677890292420608"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461677849619869696"}, {"content"=>"RT @Hannah__Kline: Don't be like Tom Haverford. Don't text and drive. #seriouslythough #TXTL8RIN http://t.co/5VZMScl6kT", "contentid"=>"461677794242490368"}, {"content"=>"If you think that you can text and drive, you are wrong #TXTL8RIN", "contentid"=>"461677786642808832"}, {"content"=>"RT @Hannah__Kline: Drivers in their 20's make up 27% of fatal accidents caused by distracted driving. Drive now, text later. You're worth i…", "contentid"=>"461677765981241344"}, {"content"=>"If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461677757186195456"}, {"content"=>"Here's a brilliant idea.....book a bus for your next event and you can text whilst we drive!", "contentid"=>"461677710532571136"}, {"content"=>"Tay please stay safe you're making me worry. Don't get in more troubleὤF dont text and drive and slow down pleaase", "contentid"=>"461677656896196608"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461677634024267776"}, {"content"=>"they did a mock car crash at my school today holy shit. It was so realistic I will literally never text and drive or drunk drive omg I ὢDὢDὢDὢDὢD", "contentid"=>"461677624709115904"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/hhdke7H2cx Don't Text & Drive", "contentid"=>"461677612801462272"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461677594270629889"}, {"content"=>"In order to survive, don’t text and drive #TXTL8RIN", "contentid"=>"461677555351703552"}, {"content"=>"RT @Hannah__Kline: @SocramOrravan and I were featured in the paper today. He was my designated texter. Drive now, text later. #TXTL8RIN htt…", "contentid"=>"461677525253382144"}, {"content"=>"RT @Hannah__Kline: Arrive alive, don't text and drive. #TXTL8RIN", "contentid"=>"461677486703534080"}, {"content"=>"A study shows that approximately 3/4 of young adults are very or somewhat confident they can text and drive and they are Wrong #TXTL8RIN", "contentid"=>"461677447855886336"}, {"content"=>"RT @_ItCanWait: Do you take the pledge not to text and drive? #TXTL8RIN Let us know !", "contentid"=>"461677437718233089"}, {"content"=>"@COR0na__b you're so sweet ill tell him love you if i can get my car before the morning which is doubtful ill text you and drive u in", "contentid"=>"461677432970706944"}, {"content"=>"RT @SPFSADD: This is the cutest way to say don't text and drive!\nRetweet for an another iPad entry! http://t.co/JlwdcSz1f4", "contentid"=>"461677424439476224"}, {"content"=>"RT @Hannah__Kline: Stop the violence. Don't text and drive. #TXTL8RIN http://t.co/X00vq3h5um", "contentid"=>"461677378364653569"}, {"content"=>"Choose to be alive and don't text and drive #TXTL8RIN", "contentid"=>"461677364271788032"}, {"content"=>"RT @Hannah__Kline: It's illegal to text and drive in Indiana. Be above the law. #TXTL8RIN http://t.co/mDU4RIYMaI", "contentid"=>"461677306025480192"}, {"content"=>"RT @Hannah__Kline: It's illegal to text and drive in Indiana. Be above the law. #TXTL8RIN http://t.co/mDU4RIYMaI", "contentid"=>"461677297947258880"}, {"content"=>"Just found random girl parked in our driveway. Upon investigation, she didn't want to text and drive. #winning", "contentid"=>"461677239969411072"}, {"content"=>"It's not worth it to text while driving. http://t.co/xUU2i4qDjD", "contentid"=>"461677228578058240"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461677202388844544"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461677180330991616"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461677115642216449"}, {"content"=>"If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461677057647579136"}, {"content"=>"You aren't invincible, so don't text and drive #TXTL8RIN", "contentid"=>"461677030795644928"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461676948142710784"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461676926831427584"}, {"content"=>"\"Don't text and drive\"\n\nWhat about tweeting and driving?", "contentid"=>"461676903770775552"}, {"content"=>"Very proud of @Hannah__Kline & @SocramOrravan campaign to Drive Now, Text Later. 30 days of continual focus to save lives. #differencemakers", "contentid"=>"461676876772016128"}, {"content"=>"In order to survive, don’t text and drive #TXTL8RIN", "contentid"=>"461676870711660544"}, {"content"=>"Text on your own time, not while you are driving #TXTL8RIN", "contentid"=>"461676841712246784"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461676803745406976"}, {"content"=>"If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461676742063968256"}, {"content"=>"@Kenzie_Hungate does he still text you too? he finds me at school everyday and like follows me and it's driving me crazy", "contentid"=>"461676724221378560"}, {"content"=>"If you think that you can text and drive, you could be dead wrong #TXTL8RIN", "contentid"=>"461676720454905857"}, {"content"=>"Last time i checked, that text your reading while driving was not more important than your life. GET OFF THE PHONE!!!", "contentid"=>"461676667216621568"}, {"content"=>"RT @gloriiaaanna: I hate when people text and drive", "contentid"=>"461676468565970944"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/JVGwwI38ED Don't Text & Drive", "contentid"=>"461676398621372416"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461676361006850048"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461676346477793280"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461676311996403712"}, {"content"=>"When it's pouring out, I just have to shoot my sister a text to drive home safely.", "contentid"=>"461676272289316864"}, {"content"=>"RT @gloriiaaanna: I hate when people text and drive", "contentid"=>"461676187027509248"}, {"content"=>"RT @Hannah__Kline: It's illegal to text and drive in Indiana. Be above the law. #TXTL8RIN http://t.co/mDU4RIYMaI", "contentid"=>"461675982726787072"}, {"content"=>"In order to survive, don’t text and drive #TXTL8RIN", "contentid"=>"461675913315229697"}, {"content"=>"Text on your own time, not while you are driving #TXTL8RIN", "contentid"=>"461675886077431808"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461675835356086272"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461675815332491264"}, {"content"=>"I hate when people text and drive", "contentid"=>"461675772676423681"}, {"content"=>"If you think that you can text and drive, you are wrong #TXTL8RIN", "contentid"=>"461675729483485184"}, {"content"=>"If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461675699905232897"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461675674575851520"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461675650042957825"}, {"content"=>"Don't text and drive. Take the pledge. #itcanwait", "contentid"=>"461675636407697408"}, {"content"=>"In order to survive, don’t text and drive #TXTL8RIN", "contentid"=>"461675586977792000"}, {"content"=>"RT @GoMotorcoach: Reason 326 to GoMotorcoach: You can TEXT while we drive! http://t.co/GZdD1k1ZfP", "contentid"=>"461675562142937089"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461675558506872833"}, {"content"=>"Text on your own time, not while you are driving #TXTL8RIN", "contentid"=>"461675556485218305"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461675513338417152"}, {"content"=>"Be smart and don't text while driving #TXTL8RIN", "contentid"=>"461675435731222528"}, {"content"=>"Choose not to text and drive #TXTL8RIN", "contentid"=>"461675395298119681"}, {"content"=>"I know you are dying to see that text, but don't text while driving #TXTL8RIN", "contentid"=>"461675332278706176"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461675208458637313"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461675207137443840"}, {"content"=>"@dj_gswizzle @kelseynemec you have to text some word to 50101. It says on a sign by the drive thru :)", "contentid"=>"461675188753428481"}, {"content"=>"RT @Hannah__Kline: It's illegal to text and drive in Indiana. Be above the law. #TXTL8RIN http://t.co/mDU4RIYMaI", "contentid"=>"461674956162465792"}, {"content"=>"DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappedaround a treeἳ2ὡE\"", "contentid"=>"461674918858727424"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/AIxB7g4khh Don't Text & Drive", "contentid"=>"461674902383505408"}, {"content"=>"If you love me you'll text me while I drive to Utah ❤️", "contentid"=>"461674895944859648"}, {"content"=>"Choose to be alive and don't text and drive #TXTL8RIN", "contentid"=>"461674740890210304"}, {"content"=>"A study shows that approximately 3/4 of young adults are very or somewhat confident they can text and drive and they are Wrong #TXTL8RIN", "contentid"=>"461674694299500544"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461674626884440064"}, {"content"=>"\"Your resume says you have superior multi tasking skills. Tell me more.\"\n\"Well, I text and drive AND clip my nails when I poop. Sooo....\"", "contentid"=>"461674479064604672"}, {"content"=>"It's illegal to text and drive in Indiana. Be above the law. #TXTL8RIN http://t.co/mDU4RIYMaI", "contentid"=>"461674429966458880"}, {"content"=>"If you think that you can text and drive, you are wrong #TXTL8RIN", "contentid"=>"461674425704669186"}, {"content"=>"If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461674399154700288"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461674376073461760"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461674357891158016"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461678101299490816", "ldate"=>"Thu May 01 01:26:51 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461678101299490816", "source"=>"Twitter"}, {"contentid"=>"461678023700279297", "ldate"=>"Thu May 01 01:26:33 +0000 2014", "author"=>"Ryan Goon", "perferredUsername"=>"RyanMGoon", "url"=>"http://twitter.com/RyanMGoon/status/461678023700279297", "source"=>"Twitter"}, {"contentid"=>"461678005589663744", "ldate"=>"Thu May 01 01:26:28 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461678005589663744", "source"=>"Twitter"}, {"contentid"=>"461677981375930369", "ldate"=>"Thu May 01 01:26:22 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461677981375930369", "source"=>"Twitter"}, {"contentid"=>"461677962257899520", "ldate"=>"Thu May 01 01:26:18 +0000 2014", "author"=>"Ryan Goon", "perferredUsername"=>"RyanMGoon", "url"=>"http://twitter.com/RyanMGoon/status/461677962257899520", "source"=>"Twitter"}, {"contentid"=>"461677905970757632", "ldate"=>"Thu May 01 01:26:05 +0000 2014", "author"=>"Aminul!!", "perferredUsername"=>"AminulRouf", "url"=>"http://twitter.com/AminulRouf/status/461677905970757632", "source"=>"Twitter"}, {"contentid"=>"461677890292420608", "ldate"=>"Thu May 01 01:26:01 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461677890292420608", "source"=>"Twitter"}, {"contentid"=>"461677849619869696", "ldate"=>"Thu May 01 01:25:51 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461677849619869696", "source"=>"Twitter"}, {"contentid"=>"461677794242490368", "ldate"=>"Thu May 01 01:25:38 +0000 2014", "author"=>"Ryan Goon", "perferredUsername"=>"RyanMGoon", "url"=>"http://twitter.com/RyanMGoon/status/461677794242490368", "source"=>"Twitter"}, {"contentid"=>"461677786642808832", "ldate"=>"Thu May 01 01:25:36 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461677786642808832", "source"=>"Twitter"}, {"contentid"=>"461677765981241344", "ldate"=>"Thu May 01 01:25:31 +0000 2014", "author"=>"Ryan Goon", "perferredUsername"=>"RyanMGoon", "url"=>"http://twitter.com/RyanMGoon/status/461677765981241344", "source"=>"Twitter"}, {"contentid"=>"461677757186195456", "ldate"=>"Thu May 01 01:25:29 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461677757186195456", "source"=>"Twitter"}, {"contentid"=>"461677710532571136", "ldate"=>"Thu May 01 01:25:18 +0000 2014", "author"=>"Dingo Bus Charter", "perferredUsername"=>"DingoBusCharter", "url"=>"http://twitter.com/DingoBusCharter/status/461677710532571136", "source"=>"Twitter"}, {"contentid"=>"461677656896196608", "ldate"=>"Thu May 01 01:25:05 +0000 2014", "author"=>"Courtney Daniels", "perferredUsername"=>"courtd_9", "url"=>"http://twitter.com/courtd_9/status/461677656896196608", "source"=>"Twitter"}, {"contentid"=>"461677634024267776", "ldate"=>"Thu May 01 01:25:00 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461677634024267776", "source"=>"Twitter"}, {"contentid"=>"461677624709115904", "ldate"=>"Thu May 01 01:24:57 +0000 2014", "author"=>"sadness", "perferredUsername"=>"_niallsmankini", "url"=>"http://twitter.com/_niallsmankini/status/461677624709115904", "source"=>"Twitter"}, {"contentid"=>"461677612801462272", "ldate"=>"Thu May 01 01:24:55 +0000 2014", "author"=>"⒮υⓀ¹ε", "perferredUsername"=>"ImSukiee", "url"=>"http://twitter.com/ImSukiee/status/461677612801462272", "source"=>"Twitter"}, {"contentid"=>"461677594270629889", "ldate"=>"Thu May 01 01:24:50 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461677594270629889", "source"=>"Twitter"}, {"contentid"=>"461677555351703552", "ldate"=>"Thu May 01 01:24:41 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461677555351703552", "source"=>"Twitter"}, {"contentid"=>"461677525253382144", "ldate"=>"Thu May 01 01:24:34 +0000 2014", "author"=>"Ryan Goon", "perferredUsername"=>"RyanMGoon", "url"=>"http://twitter.com/RyanMGoon/status/461677525253382144", "source"=>"Twitter"}, {"contentid"=>"461677486703534080", "ldate"=>"Thu May 01 01:24:25 +0000 2014", "author"=>"Ryan Goon", "perferredUsername"=>"RyanMGoon", "url"=>"http://twitter.com/RyanMGoon/status/461677486703534080", "source"=>"Twitter"}, {"contentid"=>"461677447855886336", "ldate"=>"Thu May 01 01:24:15 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461677447855886336", "source"=>"Twitter"}, {"contentid"=>"461677437718233089", "ldate"=>"Thu May 01 01:24:13 +0000 2014", "author"=>"Ryan Goon", "perferredUsername"=>"RyanMGoon", "url"=>"http://twitter.com/RyanMGoon/status/461677437718233089", "source"=>"Twitter"}, {"contentid"=>"461677432970706944", "ldate"=>"Thu May 01 01:24:12 +0000 2014", "author"=>"Marissa Kowalski", "perferredUsername"=>"RISSky_bizness", "url"=>"http://twitter.com/RISSky_bizness/status/461677432970706944", "source"=>"Twitter"}, {"contentid"=>"461677424439476224", "ldate"=>"Thu May 01 01:24:10 +0000 2014", "author"=>"madison dieu", "perferredUsername"=>"MadisonDieu", "url"=>"http://twitter.com/MadisonDieu/status/461677424439476224", "source"=>"Twitter"}, {"contentid"=>"461677378364653569", "ldate"=>"Thu May 01 01:23:59 +0000 2014", "author"=>"Ryan Goon", "perferredUsername"=>"RyanMGoon", "url"=>"http://twitter.com/RyanMGoon/status/461677378364653569", "source"=>"Twitter"}, {"contentid"=>"461677364271788032", "ldate"=>"Thu May 01 01:23:55 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461677364271788032", "source"=>"Twitter"}, {"contentid"=>"461677306025480192", "ldate"=>"Thu May 01 01:23:41 +0000 2014", "author"=>"James Wynn", "perferredUsername"=>"J_Wynning", "url"=>"http://twitter.com/J_Wynning/status/461677306025480192", "source"=>"Twitter"}, {"contentid"=>"461677297947258880", "ldate"=>"Thu May 01 01:23:40 +0000 2014", "author"=>"Ryan Goon", "perferredUsername"=>"RyanMGoon", "url"=>"http://twitter.com/RyanMGoon/status/461677297947258880", "source"=>"Twitter"}, {"contentid"=>"461677239969411072", "ldate"=>"Thu May 01 01:23:26 +0000 2014", "author"=>"word girl", "perferredUsername"=>"wordgirltalks", "url"=>"http://twitter.com/wordgirltalks/status/461677239969411072", "source"=>"Twitter"}, {"contentid"=>"461677228578058240", "ldate"=>"Thu May 01 01:23:23 +0000 2014", "author"=>"Amber Nichole Fox", "perferredUsername"=>"Amburella28", "url"=>"http://twitter.com/Amburella28/status/461677228578058240", "source"=>"Twitter"}, {"contentid"=>"461677202388844544", "ldate"=>"Thu May 01 01:23:17 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461677202388844544", "source"=>"Twitter"}, {"contentid"=>"461677180330991616", "ldate"=>"Thu May 01 01:23:12 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461677180330991616", "source"=>"Twitter"}, {"contentid"=>"461677115642216449", "ldate"=>"Thu May 01 01:22:56 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461677115642216449", "source"=>"Twitter"}, {"contentid"=>"461677057647579136", "ldate"=>"Thu May 01 01:22:42 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461677057647579136", "source"=>"Twitter"}, {"contentid"=>"461677030795644928", "ldate"=>"Thu May 01 01:22:36 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461677030795644928", "source"=>"Twitter"}, {"contentid"=>"461676948142710784", "ldate"=>"Thu May 01 01:22:16 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461676948142710784", "source"=>"Twitter"}, {"contentid"=>"461676926831427584", "ldate"=>"Thu May 01 01:22:11 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461676926831427584", "source"=>"Twitter"}, {"contentid"=>"461676903770775552", "ldate"=>"Thu May 01 01:22:06 +0000 2014", "author"=>"Keagan Morales", "perferredUsername"=>"KeaganMorales", "url"=>"http://twitter.com/KeaganMorales/status/461676903770775552", "source"=>"Twitter"}, {"contentid"=>"461676876772016128", "ldate"=>"Thu May 01 01:21:59 +0000 2014", "author"=>"Lorinda Kline", "perferredUsername"=>"LorindaKline", "url"=>"http://twitter.com/LorindaKline/status/461676876772016128", "source"=>"Twitter"}, {"contentid"=>"461676870711660544", "ldate"=>"Thu May 01 01:21:58 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461676870711660544", "source"=>"Twitter"}, {"contentid"=>"461676841712246784", "ldate"=>"Thu May 01 01:21:51 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461676841712246784", "source"=>"Twitter"}, {"contentid"=>"461676803745406976", "ldate"=>"Thu May 01 01:21:42 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461676803745406976", "source"=>"Twitter"}, {"contentid"=>"461676742063968256", "ldate"=>"Thu May 01 01:21:27 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461676742063968256", "source"=>"Twitter"}, {"contentid"=>"461676724221378560", "ldate"=>"Thu May 01 01:21:23 +0000 2014", "author"=>"olivia wiley", "perferredUsername"=>"olivianicole_", "url"=>"http://twitter.com/olivianicole_/status/461676724221378560", "source"=>"Twitter"}, {"contentid"=>"461676720454905857", "ldate"=>"Thu May 01 01:21:22 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461676720454905857", "source"=>"Twitter"}, {"contentid"=>"461676667216621568", "ldate"=>"Thu May 01 01:21:09 +0000 2014", "author"=>"Hailey Jeselson", "perferredUsername"=>"hailey_jeselson", "url"=>"http://twitter.com/hailey_jeselson/status/461676667216621568", "source"=>"Twitter"}, {"contentid"=>"461676468565970944", "ldate"=>"Thu May 01 01:20:22 +0000 2014", "author"=>"Jadaaa♏️", "perferredUsername"=>"jadaa_13", "url"=>"http://twitter.com/jadaa_13/status/461676468565970944", "source"=>"Twitter"}, {"contentid"=>"461676398621372416", "ldate"=>"Thu May 01 01:20:05 +0000 2014", "author"=>"Its Me CB", "perferredUsername"=>"cameron9611", "url"=>"http://twitter.com/cameron9611/status/461676398621372416", "source"=>"Twitter"}, {"contentid"=>"461676361006850048", "ldate"=>"Thu May 01 01:19:56 +0000 2014", "author"=>"Slutty Lynda", "perferredUsername"=>"Earlenetye", "url"=>"http://twitter.com/Earlenetye/status/461676361006850048", "source"=>"Twitter"}, {"contentid"=>"461676346477793280", "ldate"=>"Thu May 01 01:19:53 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461676346477793280", "source"=>"Twitter"}, {"contentid"=>"461676311996403712", "ldate"=>"Thu May 01 01:19:44 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461676311996403712", "source"=>"Twitter"}, {"contentid"=>"461676272289316864", "ldate"=>"Thu May 01 01:19:35 +0000 2014", "author"=>"Farhin Fardous", "perferredUsername"=>"Farhinnnn", "url"=>"http://twitter.com/Farhinnnn/status/461676272289316864", "source"=>"Twitter"}, {"contentid"=>"461676187027509248", "ldate"=>"Thu May 01 01:19:15 +0000 2014", "author"=>"Mackenzie Sheeler", "perferredUsername"=>"mackie_sheeler9", "url"=>"http://twitter.com/mackie_sheeler9/status/461676187027509248", "source"=>"Twitter"}, {"contentid"=>"461675982726787072", "ldate"=>"Thu May 01 01:18:26 +0000 2014", "author"=>"Lorinda Kline", "perferredUsername"=>"LorindaKline", "url"=>"http://twitter.com/LorindaKline/status/461675982726787072", "source"=>"Twitter"}, {"contentid"=>"461675913315229697", "ldate"=>"Thu May 01 01:18:09 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461675913315229697", "source"=>"Twitter"}, {"contentid"=>"461675886077431808", "ldate"=>"Thu May 01 01:18:03 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461675886077431808", "source"=>"Twitter"}, {"contentid"=>"461675835356086272", "ldate"=>"Thu May 01 01:17:51 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461675835356086272", "source"=>"Twitter"}, {"contentid"=>"461675815332491264", "ldate"=>"Thu May 01 01:17:46 +0000 2014", "author"=>"Marwa Naeem", "perferredUsername"=>"MimiNaeem", "url"=>"http://twitter.com/MimiNaeem/status/461675815332491264", "source"=>"Twitter"}, {"contentid"=>"461675772676423681", "ldate"=>"Thu May 01 01:17:36 +0000 2014", "author"=>"Gloriaa .", "perferredUsername"=>"gloriiaaanna", "url"=>"http://twitter.com/gloriiaaanna/status/461675772676423681", "source"=>"Twitter"}, {"contentid"=>"461675729483485184", "ldate"=>"Thu May 01 01:17:26 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461675729483485184", "source"=>"Twitter"}, {"contentid"=>"461675699905232897", "ldate"=>"Thu May 01 01:17:19 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461675699905232897", "source"=>"Twitter"}, {"contentid"=>"461675674575851520", "ldate"=>"Thu May 01 01:17:13 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461675674575851520", "source"=>"Twitter"}, {"contentid"=>"461675650042957825", "ldate"=>"Thu May 01 01:17:07 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461675650042957825", "source"=>"Twitter"}, {"contentid"=>"461675636407697408", "ldate"=>"Thu May 01 01:17:03 +0000 2014", "author"=>"Katie ", "perferredUsername"=>"KTStop22", "url"=>"http://twitter.com/KTStop22/status/461675636407697408", "source"=>"Twitter"}, {"contentid"=>"461675586977792000", "ldate"=>"Thu May 01 01:16:52 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461675586977792000", "source"=>"Twitter"}, {"contentid"=>"461675562142937089", "ldate"=>"Thu May 01 01:16:46 +0000 2014", "author"=>"Dingo Bus Charter", "perferredUsername"=>"DingoBusCharter", "url"=>"http://twitter.com/DingoBusCharter/status/461675562142937089", "source"=>"Twitter"}, {"contentid"=>"461675558506872833", "ldate"=>"Thu May 01 01:16:45 +0000 2014", "author"=>"beautifullymade", "perferredUsername"=>"douglagenius", "url"=>"http://twitter.com/douglagenius/status/461675558506872833", "source"=>"Twitter"}, {"contentid"=>"461675556485218305", "ldate"=>"Thu May 01 01:16:44 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461675556485218305", "source"=>"Twitter"}, {"contentid"=>"461675513338417152", "ldate"=>"Thu May 01 01:16:34 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461675513338417152", "source"=>"Twitter"}, {"contentid"=>"461675435731222528", "ldate"=>"Thu May 01 01:16:16 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461675435731222528", "source"=>"Twitter"}, {"contentid"=>"461675395298119681", "ldate"=>"Thu May 01 01:16:06 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461675395298119681", "source"=>"Twitter"}, {"contentid"=>"461675332278706176", "ldate"=>"Thu May 01 01:15:51 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461675332278706176", "source"=>"Twitter"}, {"contentid"=>"461675208458637313", "ldate"=>"Thu May 01 01:15:21 +0000 2014", "author"=>"Brittany ", "perferredUsername"=>"ArletteEllisqae", "url"=>"http://twitter.com/ArletteEllisqae/status/461675208458637313", "source"=>"Twitter"}, {"contentid"=>"461675207137443840", "ldate"=>"Thu May 01 01:15:21 +0000 2014", "author"=>"Guys & Glitter ", "perferredUsername"=>"Donnellwnk", "url"=>"http://twitter.com/Donnellwnk/status/461675207137443840", "source"=>"Twitter"}, {"contentid"=>"461675188753428481", "ldate"=>"Thu May 01 01:15:17 +0000 2014", "author"=>"Liz Piontek", "perferredUsername"=>"lizwhaaaat", "url"=>"http://twitter.com/lizwhaaaat/status/461675188753428481", "source"=>"Twitter"}, {"contentid"=>"461674956162465792", "ldate"=>"Thu May 01 01:14:21 +0000 2014", "author"=>"rob parker", "perferredUsername"=>"parkers1995", "url"=>"http://twitter.com/parkers1995/status/461674956162465792", "source"=>"Twitter"}, {"contentid"=>"461674918858727424", "ldate"=>"Thu May 01 01:14:12 +0000 2014", "author"=>"Aman Balla", "perferredUsername"=>"amanbhalla69", "url"=>"http://twitter.com/amanbhalla69/status/461674918858727424", "source"=>"Twitter"}, {"contentid"=>"461674902383505408", "ldate"=>"Thu May 01 01:14:08 +0000 2014", "author"=>"Pete", "perferredUsername"=>"SweetShoreGamer", "url"=>"http://twitter.com/SweetShoreGamer/status/461674902383505408", "source"=>"Twitter"}, {"contentid"=>"461674895944859648", "ldate"=>"Thu May 01 01:14:07 +0000 2014", "author"=>"Jacie Prince", "perferredUsername"=>"jacieprincess", "url"=>"http://twitter.com/jacieprincess/status/461674895944859648", "source"=>"Twitter"}, {"contentid"=>"461674740890210304", "ldate"=>"Thu May 01 01:13:30 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461674740890210304", "source"=>"Twitter"}, {"contentid"=>"461674694299500544", "ldate"=>"Thu May 01 01:13:19 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461674694299500544", "source"=>"Twitter"}, {"contentid"=>"461674626884440064", "ldate"=>"Thu May 01 01:13:03 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461674626884440064", "source"=>"Twitter"}, {"contentid"=>"461674479064604672", "ldate"=>"Thu May 01 01:12:27 +0000 2014", "author"=>"Flex Lukos", "perferredUsername"=>"FlexLukos", "url"=>"http://twitter.com/FlexLukos/status/461674479064604672", "source"=>"Twitter"}, {"contentid"=>"461674429966458880", "ldate"=>"Thu May 01 01:12:16 +0000 2014", "author"=>"H.", "perferredUsername"=>"Hannah__Kline", "url"=>"http://twitter.com/Hannah__Kline/status/461674429966458880", "source"=>"Twitter"}, {"contentid"=>"461674425704669186", "ldate"=>"Thu May 01 01:12:15 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461674425704669186", "source"=>"Twitter"}, {"contentid"=>"461674399154700288", "ldate"=>"Thu May 01 01:12:08 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461674399154700288", "source"=>"Twitter"}, {"contentid"=>"461674376073461760", "ldate"=>"Thu May 01 01:12:03 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461674376073461760", "source"=>"Twitter"}, {"contentid"=>"461674357891158016", "ldate"=>"Thu May 01 01:11:59 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461674357891158016", "source"=>"Twitter"}]}, "requestid"=>"0e0985a5-6085-4df2-ab99-295e8daa2d31"}
|
229
|
+
I, [2014-04-30T21:27:03.683445 #32088] INFO -- : Prediction loader waiting for scores ...
|
230
|
+
D, [2014-04-30T21:27:03.683483 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
231
|
+
W, [2014-04-30T21:42:02.499396 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461681832015454208"}, {"content"=>"You yell at me not to text and drive yet when you get a text, you do the same thing. Fucking hypocrite.", "contentid"=>"461681812054372352"}, {"content"=>"RT @USAA: It's the last day of #DistractedDriving Awareness Month – have you taken the pledge to never text and drive? http://t.co/quV3wceX…", "contentid"=>"461681667548008448"}, {"content"=>"One day i wont text & drive. Until then...", "contentid"=>"461681338316111872"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461681115859009538"}, {"content"=>"RT @Hannah__Kline: It's illegal to text and drive in Indiana. Be above the law. #TXTL8RIN http://t.co/mDU4RIYMaI", "contentid"=>"461680863302778880"}, {"content"=>"RT @Hannah__Kline: Stop the violence. Don't text and drive. #TXTL8RIN http://t.co/X00vq3h5um", "contentid"=>"461680825428221952"}, {"content"=>"DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN . .", "contentid"=>"461680570305503234"}, {"content"=>"“@Mr_ITYC: @_lovelymichaela ὣ3 for what” Text you later Q. Driving right now", "contentid"=>"461680456140718080"}, {"content"=>"RT @Hannah__Kline: It's illegal to text and drive in Indiana. Be above the law. #TXTL8RIN http://t.co/mDU4RIYMaI", "contentid"=>"461680424184344577"}, {"content"=>"You can now smoke text and drive all at the same time with my new phone case. Plus it's stylish (the pig)", "contentid"=>"461680421210968064"}, {"content"=>"@carlynoel11 but don't text while your driving", "contentid"=>"461680092604039168"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461679970386206720"}, {"content"=>"I just want to give a special thanks to all who favorited and retweeted my tweets and remember to DRIVE NOW TEXT LATER! #TXTL8RIN", "contentid"=>"461679911150059520"}, {"content"=>"People text and drive but seem to forget how to use a turn signal.", "contentid"=>"461679763283656704"}, {"content"=>"Okay so my best friend was texting me while driving, and didn't tell me. I can't stand it when people text and drive.", "contentid"=>"461679757239672833"}, {"content"=>"I'll text and drive to talk to you, but I won't let you text and drive to talk to me.", "contentid"=>"461679729096273920"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461679659076161536"}, {"content"=>"In order to survive, don’t text and drive #TXTL8RIN", "contentid"=>"461679586762182659"}, {"content"=>"Text on your own time, not while you are driving #TXTL8RIN", "contentid"=>"461679560824602624"}, {"content"=>"RT @MKaroumi: Can't understand why ppl pick up their phones while they drive... DON'T text and drive, seriously!\n\n#CourtneySanford http://t…", "contentid"=>"461679534317010944"}, {"content"=>"I hate you if you drink and drive and text and drive", "contentid"=>"461679533658492928"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461679461117612032"}, {"content"=>"Saying: Arrive alive, don’t text and drive #TXTL8RIN", "contentid"=>"461679279978196993"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461679258491183104"}, {"content"=>"RT @RHSKeyClub14: Everyone who has a don't text and drive shirt where it tomorrow!", "contentid"=>"461679205127049216"}, {"content"=>"Everyone who has a don't text and drive shirt where it tomorrow!", "contentid"=>"461679126982950914"}, {"content"=>"You aren't invincible, so don't text and drive #TXTL8RIN", "contentid"=>"461678964130709504"}, {"content"=>"RT @MKaroumi: Can't understand why ppl pick up their phones while they drive... DON'T text and drive, seriously!\n\n#CourtneySanford http://t…", "contentid"=>"461678875471126528"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461678773767659520"}, {"content"=>"RT @Monicann86: I love my phone, but I don't know how people can text and drive. I can barely drive and drive.", "contentid"=>"461678728322371584"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/Pt2IZ7C3CV Don't Text & Drive", "contentid"=>"461678719216914433"}, {"content"=>"Drive now, text later #TXTL8RIN", "contentid"=>"461678636873969664"}, {"content"=>"If you think that you can text and drive, you are wrong #TXTL8RIN", "contentid"=>"461678544154681344"}, {"content"=>"If you think that you can text and drive, you are dead wrong #TXTL8RIN", "contentid"=>"461678520041623552"}, {"content"=>"If you think that you can text and drive, you could be dead wrong #TXTL8RIN", "contentid"=>"461678498118004736"}, {"content"=>"Don’t text and drive #TXTL8RIN", "contentid"=>"461678410792566785"}, {"content"=>"My parents are such good remodels they tell me not to text and drive and then they do it", "contentid"=>"461678380048330754"}, {"content"=>"RT @Hannah__Kline: Texting and driving slows your reaction time MORE THAN drinking. If you wouldn't drink and drive, why would you text and…", "contentid"=>"461678159423737858"}, {"content"=>"RT @Hannah__Kline: Don't be like Tom Haverford. Don't text and drive. #seriouslythough #TXTL8RIN http://t.co/5VZMScl6kT", "contentid"=>"461678146191097856"}, {"content"=>"RT @Hannah__Kline: 9 in 10 teens expect a reply to a text or email within 5 minutes or less, pressuring them to respond while driving. #its…", "contentid"=>"461678131061854208"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461681832015454208", "ldate"=>"Thu May 01 01:41:41 +0000 2014", "author"=>"Ⓜ️oneyy", "perferredUsername"=>"_moneyyybabyy", "url"=>"http://twitter.com/_moneyyybabyy/status/461681832015454208", "source"=>"Twitter"}, {"contentid"=>"461681812054372352", "ldate"=>"Thu May 01 01:41:36 +0000 2014", "author"=>"Wallflower", "perferredUsername"=>"JayLong96", "url"=>"http://twitter.com/JayLong96/status/461681812054372352", "source"=>"Twitter"}, {"contentid"=>"461681667548008448", "ldate"=>"Thu May 01 01:41:01 +0000 2014", "author"=>"TrafficCourtClinic", "perferredUsername"=>"SDtctc", "url"=>"http://twitter.com/SDtctc/status/461681667548008448", "source"=>"Twitter"}, {"contentid"=>"461681338316111872", "ldate"=>"Thu May 01 01:39:43 +0000 2014", "author"=>"amber michelle ッ", "perferredUsername"=>"amichelleee__", "url"=>"http://twitter.com/amichelleee__/status/461681338316111872", "source"=>"Twitter"}, {"contentid"=>"461681115859009538", "ldate"=>"Thu May 01 01:38:50 +0000 2014", "author"=>"0ff!cιαl ღ Grεεκ", "perferredUsername"=>"xxTequiLiaxx", "url"=>"http://twitter.com/xxTequiLiaxx/status/461681115859009538", "source"=>"Twitter"}, {"contentid"=>"461680863302778880", "ldate"=>"Thu May 01 01:37:50 +0000 2014", "author"=>"Doug Light", "perferredUsername"=>"Doug_Light1", "url"=>"http://twitter.com/Doug_Light1/status/461680863302778880", "source"=>"Twitter"}, {"contentid"=>"461680825428221952", "ldate"=>"Thu May 01 01:37:41 +0000 2014", "author"=>"Tom Kline", "perferredUsername"=>"TklineTom", "url"=>"http://twitter.com/TklineTom/status/461680825428221952", "source"=>"Twitter"}, {"contentid"=>"461680570305503234", "ldate"=>"Thu May 01 01:36:40 +0000 2014", "author"=>"Rach☺️", "perferredUsername"=>"Blasiianrae", "url"=>"http://twitter.com/Blasiianrae/status/461680570305503234", "source"=>"Twitter"}, {"contentid"=>"461680456140718080", "ldate"=>"Thu May 01 01:36:13 +0000 2014", "author"=>"MariahMichaela", "perferredUsername"=>"_lovelymichaela", "url"=>"http://twitter.com/_lovelymichaela/status/461680456140718080", "source"=>"Twitter"}, {"contentid"=>"461680424184344577", "ldate"=>"Thu May 01 01:36:05 +0000 2014", "author"=>"Tom Kline", "perferredUsername"=>"TklineTom", "url"=>"http://twitter.com/TklineTom/status/461680424184344577", "source"=>"Twitter"}, {"contentid"=>"461680421210968064", "ldate"=>"Thu May 01 01:36:04 +0000 2014", "author"=>"Ryan S", "perferredUsername"=>"RYe_toast16", "url"=>"http://twitter.com/RYe_toast16/status/461680421210968064", "source"=>"Twitter"}, {"contentid"=>"461680092604039168", "ldate"=>"Thu May 01 01:34:46 +0000 2014", "author"=>"george wright", "perferredUsername"=>"george89529922", "url"=>"http://twitter.com/george89529922/status/461680092604039168", "source"=>"Twitter"}, {"contentid"=>"461679970386206720", "ldate"=>"Thu May 01 01:34:17 +0000 2014", "author"=>"Carly Miller ", "perferredUsername"=>"Petermanvxl", "url"=>"http://twitter.com/Petermanvxl/status/461679970386206720", "source"=>"Twitter"}, {"contentid"=>"461679911150059520", "ldate"=>"Thu May 01 01:34:03 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461679911150059520", "source"=>"Twitter"}, {"contentid"=>"461679763283656704", "ldate"=>"Thu May 01 01:33:27 +0000 2014", "author"=>"Robert Kreg Bynum ", "perferredUsername"=>"Kregb18", "url"=>"http://twitter.com/Kregb18/status/461679763283656704", "source"=>"Twitter"}, {"contentid"=>"461679757239672833", "ldate"=>"Thu May 01 01:33:26 +0000 2014", "author"=>"~.Osi.~", "perferredUsername"=>"Osiiras", "url"=>"http://twitter.com/Osiiras/status/461679757239672833", "source"=>"Twitter"}, {"contentid"=>"461679729096273920", "ldate"=>"Thu May 01 01:33:19 +0000 2014", "author"=>"Backwoods Boy", "perferredUsername"=>"WillHunter02", "url"=>"http://twitter.com/WillHunter02/status/461679729096273920", "source"=>"Twitter"}, {"contentid"=>"461679659076161536", "ldate"=>"Thu May 01 01:33:02 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461679659076161536", "source"=>"Twitter"}, {"contentid"=>"461679586762182659", "ldate"=>"Thu May 01 01:32:45 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461679586762182659", "source"=>"Twitter"}, {"contentid"=>"461679560824602624", "ldate"=>"Thu May 01 01:32:39 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461679560824602624", "source"=>"Twitter"}, {"contentid"=>"461679534317010944", "ldate"=>"Thu May 01 01:32:33 +0000 2014", "author"=>"آستاذ رتويتR€TW€€T", "perferredUsername"=>"danialoo", "url"=>"http://twitter.com/danialoo/status/461679534317010944", "source"=>"Twitter"}, {"contentid"=>"461679533658492928", "ldate"=>"Thu May 01 01:32:33 +0000 2014", "author"=>"Joey_Diorio", "perferredUsername"=>"JoeyDiorio", "url"=>"http://twitter.com/JoeyDiorio/status/461679533658492928", "source"=>"Twitter"}, {"contentid"=>"461679461117612032", "ldate"=>"Thu May 01 01:32:15 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461679461117612032", "source"=>"Twitter"}, {"contentid"=>"461679279978196993", "ldate"=>"Thu May 01 01:31:32 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461679279978196993", "source"=>"Twitter"}, {"contentid"=>"461679258491183104", "ldate"=>"Thu May 01 01:31:27 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461679258491183104", "source"=>"Twitter"}, {"contentid"=>"461679205127049216", "ldate"=>"Thu May 01 01:31:14 +0000 2014", "author"=>"Alaina Bowser", "perferredUsername"=>"AlainaNicole17", "url"=>"http://twitter.com/AlainaNicole17/status/461679205127049216", "source"=>"Twitter"}, {"contentid"=>"461679126982950914", "ldate"=>"Thu May 01 01:30:56 +0000 2014", "author"=>"RHS Key Club", "perferredUsername"=>"RHSKeyClub14", "url"=>"http://twitter.com/RHSKeyClub14/status/461679126982950914", "source"=>"Twitter"}, {"contentid"=>"461678964130709504", "ldate"=>"Thu May 01 01:30:17 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461678964130709504", "source"=>"Twitter"}, {"contentid"=>"461678875471126528", "ldate"=>"Thu May 01 01:29:56 +0000 2014", "author"=>"Followback.", "perferredUsername"=>"7Gaspar", "url"=>"http://twitter.com/7Gaspar/status/461678875471126528", "source"=>"Twitter"}, {"contentid"=>"461678773767659520", "ldate"=>"Thu May 01 01:29:31 +0000 2014", "author"=>"Carolina Mariscal", "perferredUsername"=>"qaroliina96", "url"=>"http://twitter.com/qaroliina96/status/461678773767659520", "source"=>"Twitter"}, {"contentid"=>"461678728322371584", "ldate"=>"Thu May 01 01:29:21 +0000 2014", "author"=>"Gian D'oh", "perferredUsername"=>"GianDoh", "url"=>"http://twitter.com/GianDoh/status/461678728322371584", "source"=>"Twitter"}, {"contentid"=>"461678719216914433", "ldate"=>"Thu May 01 01:29:18 +0000 2014", "author"=>"Danʕ •ᴥ•ʔ", "perferredUsername"=>"NarwhalsRock18", "url"=>"http://twitter.com/NarwhalsRock18/status/461678719216914433", "source"=>"Twitter"}, {"contentid"=>"461678636873969664", "ldate"=>"Thu May 01 01:28:59 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461678636873969664", "source"=>"Twitter"}, {"contentid"=>"461678544154681344", "ldate"=>"Thu May 01 01:28:37 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461678544154681344", "source"=>"Twitter"}, {"contentid"=>"461678520041623552", "ldate"=>"Thu May 01 01:28:31 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461678520041623552", "source"=>"Twitter"}, {"contentid"=>"461678498118004736", "ldate"=>"Thu May 01 01:28:26 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461678498118004736", "source"=>"Twitter"}, {"contentid"=>"461678410792566785", "ldate"=>"Thu May 01 01:28:05 +0000 2014", "author"=>"Tyler Girton", "perferredUsername"=>"TylerGirton1", "url"=>"http://twitter.com/TylerGirton1/status/461678410792566785", "source"=>"Twitter"}, {"contentid"=>"461678380048330754", "ldate"=>"Thu May 01 01:27:58 +0000 2014", "author"=>"Olivia Duke", "perferredUsername"=>"oliviaduke99", "url"=>"http://twitter.com/oliviaduke99/status/461678380048330754", "source"=>"Twitter"}, {"contentid"=>"461678159423737858", "ldate"=>"Thu May 01 01:27:05 +0000 2014", "author"=>"Ryan Goon", "perferredUsername"=>"RyanMGoon", "url"=>"http://twitter.com/RyanMGoon/status/461678159423737858", "source"=>"Twitter"}, {"contentid"=>"461678146191097856", "ldate"=>"Thu May 01 01:27:02 +0000 2014", "author"=>"Robyn Erklin✨", "perferredUsername"=>"RobynErklin", "url"=>"http://twitter.com/RobynErklin/status/461678146191097856", "source"=>"Twitter"}, {"contentid"=>"461678131061854208", "ldate"=>"Thu May 01 01:26:58 +0000 2014", "author"=>"Ryan Goon", "perferredUsername"=>"RyanMGoon", "url"=>"http://twitter.com/RyanMGoon/status/461678131061854208", "source"=>"Twitter"}]}, "requestid"=>"d6b4aba5-f93e-4474-bae8-8246ecf75b51"}
|
232
|
+
I, [2014-04-30T21:42:02.499488 #32088] INFO -- : Prediction loader waiting for scores ...
|
233
|
+
D, [2014-04-30T21:42:02.499529 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
234
|
+
W, [2014-04-30T21:57:02.721680 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"RT @CNNVideo: This panhandler is handing out advice. See what she’s promoting: http://t.co/eV3hLGoM9H @WMTWTV", "contentid"=>"461685608398614528"}, {"content"=>"seriously why do people text and drive? that text can definitely wait until you get to your destination.", "contentid"=>"461685445693546498"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461685349886853120"}, {"content"=>"Do you realize that your kids will emulate you? They learn faster than you realize. Don't Drink and Drive or Text while Driving!", "contentid"=>"461685058147852288"}, {"content"=>"RT @FreeTopher: They said \"Dont text and drive\"....They aint say shit bout tweeting tho", "contentid"=>"461684837431005184"}, {"content"=>"“@kelseymiless: @abbylanni I just wanna drive everywhere manὠ2” need to send me pics pls you're on twitter but can't text me back?", "contentid"=>"461684729494781952"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/ecqb9P78Lw", "contentid"=>"461684661153177600"}, {"content"=>"I text entirely too much while I'm driving. I need to stop.", "contentid"=>"461684617251008512"}, {"content"=>"@TakeAShotForMiz I'm not staying. I gotta text drive the whip before I sign for it. That's just me, and a top thing on my list", "contentid"=>"461684389274218496"}, {"content"=>"why must my mom text while driving?ὢB", "contentid"=>"461684385083715585"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/NcpvtPsJi8 Don't Text & Drive", "contentid"=>"461684328209338368"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461684026806267904"}, {"content"=>"RT @molly_jo12: @kaitlynhagen @macie_lynn11 so funny that Macie screenshotted it, sent it through text to me. & I almost shit bricks, while…", "contentid"=>"461683999769780225"}, {"content"=>"@kaitlynhagen @macie_lynn11 so funny that Macie screenshotted it, sent it through text to me. & I almost shit bricks, while driving!ὠ2", "contentid"=>"461683767782813696"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/rIPVAUqsue Don't Text & Drive", "contentid"=>"461683723281256448"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461683541739200512"}, {"content"=>"RT @Hannah__Kline: It's illegal to text and drive in Indiana. Be above the law. #TXTL8RIN http://t.co/mDU4RIYMaI", "contentid"=>"461683533786787840"}, {"content"=>"DO NOT TEXT ME WHILE YOU'RE DRIVING I'm not trying to be the last unfinished message they find when your ass is wrapped around a tree.", "contentid"=>"461683511599325184"}, {"content"=>"Never text and drive you'll miss your exit", "contentid"=>"461683131079487488"}, {"content"=>"RT @Blasiianrae: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN . .", "contentid"=>"461682854196310016"}, {"content"=>"RT @Blasiianrae: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN . .", "contentid"=>"461682790640021504"}, {"content"=>"RT @Blasiianrae: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN . .", "contentid"=>"461682757710532608"}, {"content"=>"RT @USAA: It's the last day of #DistractedDriving Awareness Month – have you taken the pledge to never text and drive? http://t.co/quV3wceX…", "contentid"=>"461682564298571776"}, {"content"=>"RT @Hannah__Kline: It's illegal to text and drive in Indiana. Be above the law. #TXTL8RIN http://t.co/mDU4RIYMaI", "contentid"=>"461682513828933632"}, {"content"=>"@unique_faces I knew it she the only one that can't drive..y u ain't text me bk", "contentid"=>"461682420983791616"}, {"content"=>"@mizzquid I'm driving my dad's car but I'm sitting at wellsfargo waiting for my mom & as he's leaving he's like \"don't text & drive!\" ὠ2ὠ2ὠ2", "contentid"=>"461682391866560512"}, {"content"=>"RT @Blasiianrae: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN . .", "contentid"=>"461682284089720832"}, {"content"=>"Turning 18, getting a new car and fourwheeler, being 18, and now getting my license took away because of my epilepsy!! Don't text and drive!", "contentid"=>"461682134655041536"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/x8UQ3a74t6 Don't Text & Drive", "contentid"=>"461682108314841088"}, {"content"=>"Lots of forward drive off the corner with this beast. Text book crossover move caught frenchy by… http://t.co/1pdyerQAjm", "contentid"=>"461682091990994947"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461685608398614528", "ldate"=>"Thu May 01 01:56:41 +0000 2014", "author"=>"kirby", "perferredUsername"=>"kirbdogg69", "url"=>"http://twitter.com/kirbdogg69/status/461685608398614528", "source"=>"Twitter"}, {"contentid"=>"461685445693546498", "ldate"=>"Thu May 01 01:56:02 +0000 2014", "author"=>"charlie laurendeau", "perferredUsername"=>"laurend0pe", "url"=>"http://twitter.com/laurend0pe/status/461685445693546498", "source"=>"Twitter"}, {"contentid"=>"461685349886853120", "ldate"=>"Thu May 01 01:55:39 +0000 2014", "author"=>"Sleezie", "perferredUsername"=>"SIeezie", "url"=>"http://twitter.com/SIeezie/status/461685349886853120", "source"=>"Twitter"}, {"contentid"=>"461685058147852288", "ldate"=>"Thu May 01 01:54:30 +0000 2014", "author"=>"Public Safety USA", "perferredUsername"=>"PublicSafetyUSA", "url"=>"http://twitter.com/PublicSafetyUSA/status/461685058147852288", "source"=>"Twitter"}, {"contentid"=>"461684837431005184", "ldate"=>"Thu May 01 01:53:37 +0000 2014", "author"=>"6.25♋️", "perferredUsername"=>"_kikiannah", "url"=>"http://twitter.com/_kikiannah/status/461684837431005184", "source"=>"Twitter"}, {"contentid"=>"461684729494781952", "ldate"=>"Thu May 01 01:53:11 +0000 2014", "author"=>"kaylee", "perferredUsername"=>"Kaylee_Miles", "url"=>"http://twitter.com/Kaylee_Miles/status/461684729494781952", "source"=>"Twitter"}, {"contentid"=>"461684661153177600", "ldate"=>"Thu May 01 01:52:55 +0000 2014", "author"=>"Kimi + Boku= Love?", "perferredUsername"=>"Eleanor_Rigby__", "url"=>"http://twitter.com/Eleanor_Rigby__/status/461684661153177600", "source"=>"Twitter"}, {"contentid"=>"461684617251008512", "ldate"=>"Thu May 01 01:52:45 +0000 2014", "author"=>"§", "perferredUsername"=>"_ShaniceRasean", "url"=>"http://twitter.com/_ShaniceRasean/status/461684617251008512", "source"=>"Twitter"}, {"contentid"=>"461684389274218496", "ldate"=>"Thu May 01 01:51:50 +0000 2014", "author"=>"YuhngRebell", "perferredUsername"=>"Dee_Tanyae", "url"=>"http://twitter.com/Dee_Tanyae/status/461684389274218496", "source"=>"Twitter"}, {"contentid"=>"461684385083715585", "ldate"=>"Thu May 01 01:51:49 +0000 2014", "author"=>"♚♡Amanda Lizzette♡♚", "perferredUsername"=>"AmandaBlue97", "url"=>"http://twitter.com/AmandaBlue97/status/461684385083715585", "source"=>"Twitter"}, {"contentid"=>"461684328209338368", "ldate"=>"Thu May 01 01:51:36 +0000 2014", "author"=>"itsterex", "perferredUsername"=>"itsterex", "url"=>"http://twitter.com/itsterex/status/461684328209338368", "source"=>"Twitter"}, {"contentid"=>"461684026806267904", "ldate"=>"Thu May 01 01:50:24 +0000 2014", "author"=>"ʝєииανιєνє нυят", "perferredUsername"=>"jennavievehurt", "url"=>"http://twitter.com/jennavievehurt/status/461684026806267904", "source"=>"Twitter"}, {"contentid"=>"461683999769780225", "ldate"=>"Thu May 01 01:50:17 +0000 2014", "author"=>"Kaitlyn LeighAnn ", "perferredUsername"=>"kaitlynhagen", "url"=>"http://twitter.com/kaitlynhagen/status/461683999769780225", "source"=>"Twitter"}, {"contentid"=>"461683767782813696", "ldate"=>"Thu May 01 01:49:22 +0000 2014", "author"=>"Molly Johnson", "perferredUsername"=>"molly_jo12", "url"=>"http://twitter.com/molly_jo12/status/461683767782813696", "source"=>"Twitter"}, {"contentid"=>"461683723281256448", "ldate"=>"Thu May 01 01:49:11 +0000 2014", "author"=>"MrNbafan7", "perferredUsername"=>"MrNbafan7", "url"=>"http://twitter.com/MrNbafan7/status/461683723281256448", "source"=>"Twitter"}, {"contentid"=>"461683541739200512", "ldate"=>"Thu May 01 01:48:28 +0000 2014", "author"=>" selina", "perferredUsername"=>"selinaasvtr", "url"=>"http://twitter.com/selinaasvtr/status/461683541739200512", "source"=>"Twitter"}, {"contentid"=>"461683533786787840", "ldate"=>"Thu May 01 01:48:26 +0000 2014", "author"=>"j.", "perferredUsername"=>"jesseniaaab", "url"=>"http://twitter.com/jesseniaaab/status/461683533786787840", "source"=>"Twitter"}, {"contentid"=>"461683511599325184", "ldate"=>"Thu May 01 01:48:21 +0000 2014", "author"=>"Brooklyn niGGa", "perferredUsername"=>"_festive", "url"=>"http://twitter.com/_festive/status/461683511599325184", "source"=>"Twitter"}, {"contentid"=>"461683131079487488", "ldate"=>"Thu May 01 01:46:50 +0000 2014", "author"=>"Pisstank", "perferredUsername"=>"Niggalessi", "url"=>"http://twitter.com/Niggalessi/status/461683131079487488", "source"=>"Twitter"}, {"contentid"=>"461682854196310016", "ldate"=>"Thu May 01 01:45:44 +0000 2014", "author"=>"J.", "perferredUsername"=>"Jassssssss_", "url"=>"http://twitter.com/Jassssssss_/status/461682854196310016", "source"=>"Twitter"}, {"contentid"=>"461682790640021504", "ldate"=>"Thu May 01 01:45:29 +0000 2014", "author"=>"de'ja ..", "perferredUsername"=>"ddejaa_", "url"=>"http://twitter.com/ddejaa_/status/461682790640021504", "source"=>"Twitter"}, {"contentid"=>"461682757710532608", "ldate"=>"Thu May 01 01:45:21 +0000 2014", "author"=>"doubleD.❤", "perferredUsername"=>"_daigernay", "url"=>"http://twitter.com/_daigernay/status/461682757710532608", "source"=>"Twitter"}, {"contentid"=>"461682564298571776", "ldate"=>"Thu May 01 01:44:35 +0000 2014", "author"=>"objkshn", "perferredUsername"=>"objkshn", "url"=>"http://twitter.com/objkshn/status/461682564298571776", "source"=>"Twitter"}, {"contentid"=>"461682513828933632", "ldate"=>"Thu May 01 01:44:23 +0000 2014", "author"=>"ciara knisely.", "perferredUsername"=>"ciaaara_ann", "url"=>"http://twitter.com/ciaaara_ann/status/461682513828933632", "source"=>"Twitter"}, {"contentid"=>"461682420983791616", "ldate"=>"Thu May 01 01:44:01 +0000 2014", "author"=>"Loyal_ju", "perferredUsername"=>"jaydenking27", "url"=>"http://twitter.com/jaydenking27/status/461682420983791616", "source"=>"Twitter"}, {"contentid"=>"461682391866560512", "ldate"=>"Thu May 01 01:43:54 +0000 2014", "author"=>"Flawlizz", "perferredUsername"=>"Lizzzbaby4", "url"=>"http://twitter.com/Lizzzbaby4/status/461682391866560512", "source"=>"Twitter"}, {"contentid"=>"461682284089720832", "ldate"=>"Thu May 01 01:43:28 +0000 2014", "author"=>"hëärtłëśś", "perferredUsername"=>"__eatit", "url"=>"http://twitter.com/__eatit/status/461682284089720832", "source"=>"Twitter"}, {"contentid"=>"461682134655041536", "ldate"=>"Thu May 01 01:42:53 +0000 2014", "author"=>"Anything is Possible", "perferredUsername"=>"Dshelby5418", "url"=>"http://twitter.com/Dshelby5418/status/461682134655041536", "source"=>"Twitter"}, {"contentid"=>"461682108314841088", "ldate"=>"Thu May 01 01:42:46 +0000 2014", "author"=>"Jared", "perferredUsername"=>"Mainecation", "url"=>"http://twitter.com/Mainecation/status/461682108314841088", "source"=>"Twitter"}, {"contentid"=>"461682091990994947", "ldate"=>"Thu May 01 01:42:43 +0000 2014", "author"=>"Keith", "perferredUsername"=>"keith40er", "url"=>"http://twitter.com/keith40er/status/461682091990994947", "source"=>"Twitter"}]}, "requestid"=>"c950e049-4a73-496d-84cd-5036e37d45cd"}
|
235
|
+
I, [2014-04-30T21:57:02.721767 #32088] INFO -- : Prediction loader waiting for scores ...
|
236
|
+
D, [2014-04-30T21:57:02.721801 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
237
|
+
W, [2014-04-30T22:12:03.412210 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"Text me if you want to go on a drive and have a heart to heart", "contentid"=>"461689305547956224"}, {"content"=>"How you expect me to text you while I'm at work or driving ὡ2 make no sense", "contentid"=>"461689302288973826"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461689153223417856"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/J9pWw3isO0 Don't Text & Drive", "contentid"=>"461689076001693696"}, {"content"=>"RT @maxjs77: If you text and drive you're an asshole #GrowUp", "contentid"=>"461689042233335809"}, {"content"=>"Lolz wuut I text better when I drive than when I'm not driving lmfao", "contentid"=>"461689022608203776"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/L3ZeEYWAIJ Don't Text & Drive", "contentid"=>"461688835051896832"}, {"content"=>"RT @AyooCruz: People who text and drive.. like do you not value your life or even anyone else's at that or? stupidest shit any person could…", "contentid"=>"461688814608461825"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/Ia0jmSlnNl Don't Text & Drive", "contentid"=>"461688459740987393"}, {"content"=>"If you text and drive you're an asshole #GrowUp", "contentid"=>"461688151258726400"}, {"content"=>"No drive to text you at all, I lost my motivation..", "contentid"=>"461687959784144896"}, {"content"=>"RT @Hannah__Kline: It's illegal to text and drive in Indiana. Be above the law. #TXTL8RIN http://t.co/mDU4RIYMaI", "contentid"=>"461687955786964992"}, {"content"=>"Like sure lets turn a sharp curve while going 60, oh and lets text and drive too in the dark during all this", "contentid"=>"461687133367828482"}, {"content"=>"RT @BabbyGabby_11: Seeing people text and drive makes me SO angry. Especially teenagers.", "contentid"=>"461687023774883840"}, {"content"=>"@JScandiffio730 don't text and drive #illegal", "contentid"=>"461687014820425728"}, {"content"=>"I drive and text, so don't hit that cross walk textin or you might not make it out ὊFὊFὊF", "contentid"=>"461686987142217728"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/E5oFjroIx3 Don't Text & Drive", "contentid"=>"461686928115396608"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/SzN2ornstT Don't Text & Drive", "contentid"=>"461686764567298048"}, {"content"=>"RT @BabbyGabby_11: Seeing people text and drive makes me SO angry. Especially teenagers.", "contentid"=>"461686602951950336"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461686587298832384"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/yseax01MWq Don't Text & Drive", "contentid"=>"461686548636106752"}, {"content"=>"RT @BabbyGabby_11: Seeing people text and drive makes me SO angry. Especially teenagers.", "contentid"=>"461686511700688896"}, {"content"=>"@Ryan7Johnson Hey Ryan, I need NHS blood drive pictures for a slideshow Millar wants. Could you text me this? 810-772-0275. Thanks!", "contentid"=>"461686463735013376"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/pWQL9R3m4A Don't Text & Drive", "contentid"=>"461686435452829696"}, {"content"=>"@jbunt4 I never text and drive ὤ8", "contentid"=>"461686424404647936"}, {"content"=>"11 hour drive so text it✌️", "contentid"=>"461686342812839937"}, {"content"=>"A text isn't worth a life, dont text and drive. #TXTL8RIN RT/SHARE to spread the word & help me win a sch... https://t.co/mBwX17k0jT", "contentid"=>"461686185547821056"}, {"content"=>"@crackaJACC don't text and drive!!!", "contentid"=>"461686099119595520"}, {"content"=>"RT @CaltransHQ: Fines are doubled in highway work zones and can easily total $1,000 or more for drivers who speed, drive aggressively or te…", "contentid"=>"461685758521114624"}, {"content"=>"@CAMERENCROW btw did u get my text? There's a change in the waka driving plan", "contentid"=>"461685678556712960"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461689305547956224", "ldate"=>"Thu May 01 02:11:22 +0000 2014", "author"=>"Hilary McKinnon", "perferredUsername"=>"Hil_swag", "url"=>"http://twitter.com/Hil_swag/status/461689305547956224", "source"=>"Twitter"}, {"contentid"=>"461689302288973826", "ldate"=>"Thu May 01 02:11:22 +0000 2014", "author"=>"Lexus Fam ", "perferredUsername"=>"LexusFam", "url"=>"http://twitter.com/LexusFam/status/461689302288973826", "source"=>"Twitter"}, {"contentid"=>"461689153223417856", "ldate"=>"Thu May 01 02:10:46 +0000 2014", "author"=>"kevin patino ", "perferredUsername"=>"kevinp1031", "url"=>"http://twitter.com/kevinp1031/status/461689153223417856", "source"=>"Twitter"}, {"contentid"=>"461689076001693696", "ldate"=>"Thu May 01 02:10:28 +0000 2014", "author"=>"Tré / Kahhmezzy", "perferredUsername"=>"Kahhmezzy", "url"=>"http://twitter.com/Kahhmezzy/status/461689076001693696", "source"=>"Twitter"}, {"contentid"=>"461689042233335809", "ldate"=>"Thu May 01 02:10:20 +0000 2014", "author"=>"Sophie Abate", "perferredUsername"=>"sophieabate", "url"=>"http://twitter.com/sophieabate/status/461689042233335809", "source"=>"Twitter"}, {"contentid"=>"461689022608203776", "ldate"=>"Thu May 01 02:10:15 +0000 2014", "author"=>"Cristina", "perferredUsername"=>"10cristinaa", "url"=>"http://twitter.com/10cristinaa/status/461689022608203776", "source"=>"Twitter"}, {"contentid"=>"461688835051896832", "ldate"=>"Thu May 01 02:09:30 +0000 2014", "author"=>"Allan", "perferredUsername"=>"Nexen213", "url"=>"http://twitter.com/Nexen213/status/461688835051896832", "source"=>"Twitter"}, {"contentid"=>"461688814608461825", "ldate"=>"Thu May 01 02:09:25 +0000 2014", "author"=>"Di$e ", "perferredUsername"=>"Merchandise2012", "url"=>"http://twitter.com/Merchandise2012/status/461688814608461825", "source"=>"Twitter"}, {"contentid"=>"461688459740987393", "ldate"=>"Thu May 01 02:08:01 +0000 2014", "author"=>"MThomas35", "perferredUsername"=>"MThomas35_", "url"=>"http://twitter.com/MThomas35_/status/461688459740987393", "source"=>"Twitter"}, {"contentid"=>"461688151258726400", "ldate"=>"Thu May 01 02:06:47 +0000 2014", "author"=>"Maxwell Steiner", "perferredUsername"=>"maxjs77", "url"=>"http://twitter.com/maxjs77/status/461688151258726400", "source"=>"Twitter"}, {"contentid"=>"461687959784144896", "ldate"=>"Thu May 01 02:06:02 +0000 2014", "author"=>"brenden cassels", "perferredUsername"=>"Cassels_Legacy", "url"=>"http://twitter.com/Cassels_Legacy/status/461687959784144896", "source"=>"Twitter"}, {"contentid"=>"461687955786964992", "ldate"=>"Thu May 01 02:06:01 +0000 2014", "author"=>"Marcos Navarro", "perferredUsername"=>"SocramOrravan", "url"=>"http://twitter.com/SocramOrravan/status/461687955786964992", "source"=>"Twitter"}, {"contentid"=>"461687133367828482", "ldate"=>"Thu May 01 02:02:44 +0000 2014", "author"=>"LEX", "perferredUsername"=>"lexitroyer", "url"=>"http://twitter.com/lexitroyer/status/461687133367828482", "source"=>"Twitter"}, {"contentid"=>"461687023774883840", "ldate"=>"Thu May 01 02:02:18 +0000 2014", "author"=>"Jdavs", "perferredUsername"=>"JordanDavis51", "url"=>"http://twitter.com/JordanDavis51/status/461687023774883840", "source"=>"Twitter"}, {"contentid"=>"461687014820425728", "ldate"=>"Thu May 01 02:02:16 +0000 2014", "author"=>"Alexa Hoovis", "perferredUsername"=>"alexa_hoovis", "url"=>"http://twitter.com/alexa_hoovis/status/461687014820425728", "source"=>"Twitter"}, {"contentid"=>"461686987142217728", "ldate"=>"Thu May 01 02:02:10 +0000 2014", "author"=>"Wilt Chamberlin", "perferredUsername"=>"LiveFast_Die_YG", "url"=>"http://twitter.com/LiveFast_Die_YG/status/461686987142217728", "source"=>"Twitter"}, {"contentid"=>"461686928115396608", "ldate"=>"Thu May 01 02:01:56 +0000 2014", "author"=>"Jared", "perferredUsername"=>"MrInvestigate", "url"=>"http://twitter.com/MrInvestigate/status/461686928115396608", "source"=>"Twitter"}, {"contentid"=>"461686764567298048", "ldate"=>"Thu May 01 02:01:17 +0000 2014", "author"=>"MrTechnicalDifficult", "perferredUsername"=>"LauknessMonster", "url"=>"http://twitter.com/LauknessMonster/status/461686764567298048", "source"=>"Twitter"}, {"contentid"=>"461686602951950336", "ldate"=>"Thu May 01 02:00:38 +0000 2014", "author"=>"baby bri", "perferredUsername"=>"BriannaBlake__", "url"=>"http://twitter.com/BriannaBlake__/status/461686602951950336", "source"=>"Twitter"}, {"contentid"=>"461686587298832384", "ldate"=>"Thu May 01 02:00:34 +0000 2014", "author"=>"Elijah meachem ", "perferredUsername"=>"EMeachem", "url"=>"http://twitter.com/EMeachem/status/461686587298832384", "source"=>"Twitter"}, {"contentid"=>"461686548636106752", "ldate"=>"Thu May 01 02:00:25 +0000 2014", "author"=>"Jade Jokers", "perferredUsername"=>"JadeJokers", "url"=>"http://twitter.com/JadeJokers/status/461686548636106752", "source"=>"Twitter"}, {"contentid"=>"461686511700688896", "ldate"=>"Thu May 01 02:00:16 +0000 2014", "author"=>"caley", "perferredUsername"=>"caley_trepac", "url"=>"http://twitter.com/caley_trepac/status/461686511700688896", "source"=>"Twitter"}, {"contentid"=>"461686463735013376", "ldate"=>"Thu May 01 02:00:05 +0000 2014", "author"=>"iDanielle ™", "perferredUsername"=>"danielleee4496", "url"=>"http://twitter.com/danielleee4496/status/461686463735013376", "source"=>"Twitter"}, {"contentid"=>"461686435452829696", "ldate"=>"Thu May 01 01:59:58 +0000 2014", "author"=>"Marina Moreno", "perferredUsername"=>"UR_SNUGGLE_BEAR", "url"=>"http://twitter.com/UR_SNUGGLE_BEAR/status/461686435452829696", "source"=>"Twitter"}, {"contentid"=>"461686424404647936", "ldate"=>"Thu May 01 01:59:55 +0000 2014", "author"=>"Brooke Blanchet ", "perferredUsername"=>"b_k_blanchet", "url"=>"http://twitter.com/b_k_blanchet/status/461686424404647936", "source"=>"Twitter"}, {"contentid"=>"461686342812839937", "ldate"=>"Thu May 01 01:59:36 +0000 2014", "author"=>"Ash", "perferredUsername"=>"UkuIeIe", "url"=>"http://twitter.com/UkuIeIe/status/461686342812839937", "source"=>"Twitter"}, {"contentid"=>"461686185547821056", "ldate"=>"Thu May 01 01:58:59 +0000 2014", "author"=>"Tori branley", "perferredUsername"=>"Whereistori", "url"=>"http://twitter.com/Whereistori/status/461686185547821056", "source"=>"Twitter"}, {"contentid"=>"461686099119595520", "ldate"=>"Thu May 01 01:58:38 +0000 2014", "author"=>"Kristina Petrino", "perferredUsername"=>"KristinaPetrino", "url"=>"http://twitter.com/KristinaPetrino/status/461686099119595520", "source"=>"Twitter"}, {"contentid"=>"461685758521114624", "ldate"=>"Thu May 01 01:57:17 +0000 2014", "author"=>"Caltrans District10", "perferredUsername"=>"CaltransDist10", "url"=>"http://twitter.com/CaltransDist10/status/461685758521114624", "source"=>"Twitter"}, {"contentid"=>"461685678556712960", "ldate"=>"Thu May 01 01:56:58 +0000 2014", "author"=>"Lily", "perferredUsername"=>"weekendwars_", "url"=>"http://twitter.com/weekendwars_/status/461685678556712960", "source"=>"Twitter"}]}, "requestid"=>"25e1b9b1-0464-484b-a6ef-fcaf9a53107c"}
|
238
|
+
I, [2014-04-30T22:12:03.412294 #32088] INFO -- : Prediction loader waiting for scores ...
|
239
|
+
D, [2014-04-30T22:12:03.412329 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
240
|
+
W, [2014-04-30T22:27:03.836800 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"Can someone inform @yoitzbp it's not safe to text and drive whatsoever thanks", "contentid"=>"461693147685593088"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/PF7Bd11G0H Don't Text & Drive", "contentid"=>"461693102403895296"}, {"content"=>"RT @DannyLoso: ὠ2ὠ2ὠ2ὠ2RT @MinaWorldPeace See them textin commercials is the reason why iont text & drive. My last words ain’t bout to be “You …", "contentid"=>"461692817426087936"}, {"content"=>"@caBAEo congrats be responsible and careful behind the wheel. DONT TEXT AND DRIVE.", "contentid"=>"461692799835197440"}, {"content"=>"RT @shot_of_cabo: I rarely text and drive! Usually I'm too drunk to find my phone.", "contentid"=>"461692759842095105"}, {"content"=>"ὠ2ὠ2ὠ2ὠ2RT @MinaWorldPeace See them textin commercials is the reason why iont text & drive. My last words ain’t bout to be “You going to Eden?”", "contentid"=>"461692718683787264"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/1m9eTHPNA1 Don't Text & Drive", "contentid"=>"461692631165054977"}, {"content"=>"RT @MinaWorldPeace See them textin commercials is the reason why iont text & drive. My last words ain't bout to be \"You going to Eden?\"", "contentid"=>"461692589352443904"}, {"content"=>"RT @AyooCruz: People who text and drive.. like do you not value your life or even anyone else's at that or? stupidest shit any person could…", "contentid"=>"461692421722497024"}, {"content"=>"“@ajprzzz: maybe ur \"driving\"\nbut text me back, liz” love my fans", "contentid"=>"461692083040825344"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/aiIFPLOVsa Don't Text & Drive", "contentid"=>"461691995652907010"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/j0w5rDqkca Don't Text & Drive", "contentid"=>"461691749207789568"}, {"content"=>"It's illegal to text and drive! @DamianGomz7", "contentid"=>"461691708153933824"}, {"content"=>"If anyone wants to volunteer for the Swab Drive this Friday in the gym during school text/DM me!", "contentid"=>"461691672725028866"}, {"content"=>"Please don't text, post, use your phone while driving.Driver posts Facebook update before dying in head-on collision http://t.co/c5LfcLSqDE", "contentid"=>"461691402515009536"}, {"content"=>"@tsimmons714 needs to answer my text before I drive to pilot ὢ1", "contentid"=>"461691353903411201"}, {"content"=>"DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass is wrapped around a treeἳ2ὡE", "contentid"=>"461691218997436417"}, {"content"=>"RT @AyooCruz: People who text and drive.. like do you not value your life or even anyone else's at that or? stupidest shit any person could…", "contentid"=>"461691210352971777"}, {"content"=>"RT @shot_of_cabo: I rarely text and drive! Usually I'm too drunk to find my phone.", "contentid"=>"461691184859979777"}, {"content"=>"@indian_giver96 moral of the story. Don't text and drive kids", "contentid"=>"461691119290830848"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/r2Dy9rkmGf Don't Text & Drive", "contentid"=>"461691005130264576"}, {"content"=>"If my bookie doesn't text me back within the next five minutes, I'm driving to his house", "contentid"=>"461690965296955393"}, {"content"=>"RT @10cristinaa: “@Katbodden21: \"I text and drive because I don't give a fuuuuuuu\" ὠ2ὠ2ὠ2” I practice safe driving http://t.co/uPfsYs0hKI", "contentid"=>"461690917259206656"}, {"content"=>"RT @laurend0pe: seriously why do people text and drive? that text can definitely wait until you get to your destination.", "contentid"=>"461690816663392256"}, {"content"=>"Sprint is making a app for u teens who like to text and drive Ὡ8", "contentid"=>"461690813094035456"}, {"content"=>"@PortableShua Don't text and drive. You might run over Oprah. #DontTextAndDrive", "contentid"=>"461690666310193152"}, {"content"=>"RT @AyooCruz: People who text and drive.. like do you not value your life or even anyone else's at that or? stupidest shit any person could…", "contentid"=>"461690542464970753"}, {"content"=>"“@Katbodden21: \"I text and drive because I don't give a fuuuuuuu\" ὠ2ὠ2ὠ2” I practice safe driving http://t.co/uPfsYs0hKI", "contentid"=>"461690469102006272"}, {"content"=>"RT @CaltransHQ: Fines are doubled in highway work zones and can easily total $1,000 or more for drivers who speed, drive aggressively or te…", "contentid"=>"461690413271613440"}, {"content"=>"When I see ppl text and drive it makes me want to honk my horn in hopes they get spooked and run off the road #justsaying #sorrynotsorry", "contentid"=>"461690373186654208"}, {"content"=>"Im sorry but I text and drive like I get paid for it, I really dont understand how people get in wrecks and shit. Are you that dumb?", "contentid"=>"461690160447762432"}, {"content"=>"\"I text and drive because I don't give a fuuuuuuu\" ὠ2ὠ2ὠ2", "contentid"=>"461690089152602112"}, {"content"=>"I liked a @YouTube video from @LauknessMonster http://t.co/SConcoYuUi Don't Text & Drive", "contentid"=>"461690051874013184"}, {"content"=>"RT @AyooCruz: People who text and drive.. like do you not value your life or even anyone else's at that or? stupidest shit any person could…", "contentid"=>"461689700189614081"}, {"content"=>"#TXTL8RIN Please be safe, don't text and drive", "contentid"=>"461689597530210304"}, {"content"=>"RT @AyooCruz: People who text and drive.. like do you not value your life or even anyone else's at that or? stupidest shit any person could…", "contentid"=>"461689468693381120"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461693147685593088", "ldate"=>"Thu May 01 02:26:38 +0000 2014", "author"=>"edward", "perferredUsername"=>"studbuttt", "url"=>"http://twitter.com/studbuttt/status/461693147685593088", "source"=>"Twitter"}, {"contentid"=>"461693102403895296", "ldate"=>"Thu May 01 02:26:28 +0000 2014", "author"=>"Blahew", "perferredUsername"=>"Blahew", "url"=>"http://twitter.com/Blahew/status/461693102403895296", "source"=>"Twitter"}, {"contentid"=>"461692817426087936", "ldate"=>"Thu May 01 02:25:20 +0000 2014", "author"=>"Däyø", "perferredUsername"=>"TheReal_Dayo", "url"=>"http://twitter.com/TheReal_Dayo/status/461692817426087936", "source"=>"Twitter"}, {"contentid"=>"461692799835197440", "ldate"=>"Thu May 01 02:25:15 +0000 2014", "author"=>"Michael Jauregui", "perferredUsername"=>"themikeinator", "url"=>"http://twitter.com/themikeinator/status/461692799835197440", "source"=>"Twitter"}, {"contentid"=>"461692759842095105", "ldate"=>"Thu May 01 02:25:06 +0000 2014", "author"=>"The Weeping Prophet", "perferredUsername"=>"GaelicMohawk", "url"=>"http://twitter.com/GaelicMohawk/status/461692759842095105", "source"=>"Twitter"}, {"contentid"=>"461692718683787264", "ldate"=>"Thu May 01 02:24:56 +0000 2014", "author"=>"Loso", "perferredUsername"=>"DannyLoso", "url"=>"http://twitter.com/DannyLoso/status/461692718683787264", "source"=>"Twitter"}, {"contentid"=>"461692631165054977", "ldate"=>"Thu May 01 02:24:35 +0000 2014", "author"=>"Noyous", "perferredUsername"=>"Noyouss", "url"=>"http://twitter.com/Noyouss/status/461692631165054977", "source"=>"Twitter"}, {"contentid"=>"461692589352443904", "ldate"=>"Thu May 01 02:24:25 +0000 2014", "author"=>"MVP.", "perferredUsername"=>"MinaWorldPeace", "url"=>"http://twitter.com/MinaWorldPeace/status/461692589352443904", "source"=>"Twitter"}, {"contentid"=>"461692421722497024", "ldate"=>"Thu May 01 02:23:45 +0000 2014", "author"=>"*♊Jü§t Käÿ♊*", "perferredUsername"=>"_Kaykayyyyy_", "url"=>"http://twitter.com/_Kaykayyyyy_/status/461692421722497024", "source"=>"Twitter"}, {"contentid"=>"461692083040825344", "ldate"=>"Thu May 01 02:22:25 +0000 2014", "author"=>"elizabeth", "perferredUsername"=>"elizabunny__", "url"=>"http://twitter.com/elizabunny__/status/461692083040825344", "source"=>"Twitter"}, {"contentid"=>"461691995652907010", "ldate"=>"Thu May 01 02:22:04 +0000 2014", "author"=>"LordGamesHD", "perferredUsername"=>"LordGHD", "url"=>"http://twitter.com/LordGHD/status/461691995652907010", "source"=>"Twitter"}, {"contentid"=>"461691749207789568", "ldate"=>"Thu May 01 02:21:05 +0000 2014", "author"=>"cornondo sanchez", "perferredUsername"=>"zZcommandoZz", "url"=>"http://twitter.com/zZcommandoZz/status/461691749207789568", "source"=>"Twitter"}, {"contentid"=>"461691708153933824", "ldate"=>"Thu May 01 02:20:55 +0000 2014", "author"=>"Celina Gomez", "perferredUsername"=>"_celinaaaaaaa", "url"=>"http://twitter.com/_celinaaaaaaa/status/461691708153933824", "source"=>"Twitter"}, {"contentid"=>"461691672725028866", "ldate"=>"Thu May 01 02:20:47 +0000 2014", "author"=>"Amrutha ✨", "perferredUsername"=>"amruthaa_97", "url"=>"http://twitter.com/amruthaa_97/status/461691672725028866", "source"=>"Twitter"}, {"contentid"=>"461691402515009536", "ldate"=>"Thu May 01 02:19:42 +0000 2014", "author"=>"Robin Mangum", "perferredUsername"=>"Busymom232", "url"=>"http://twitter.com/Busymom232/status/461691402515009536", "source"=>"Twitter"}, {"contentid"=>"461691353903411201", "ldate"=>"Thu May 01 02:19:31 +0000 2014", "author"=>"Kelton Walser", "perferredUsername"=>"keltonwalser", "url"=>"http://twitter.com/keltonwalser/status/461691353903411201", "source"=>"Twitter"}, {"contentid"=>"461691218997436417", "ldate"=>"Thu May 01 02:18:59 +0000 2014", "author"=>"Teneya_Saens", "perferredUsername"=>"Teneyaann", "url"=>"http://twitter.com/Teneyaann/status/461691218997436417", "source"=>"Twitter"}, {"contentid"=>"461691210352971777", "ldate"=>"Thu May 01 02:18:57 +0000 2014", "author"=>"Taji ❤", "perferredUsername"=>"tajaneebriunna", "url"=>"http://twitter.com/tajaneebriunna/status/461691210352971777", "source"=>"Twitter"}, {"contentid"=>"461691184859979777", "ldate"=>"Thu May 01 02:18:50 +0000 2014", "author"=>"Jaxon/Jaxoff", "perferredUsername"=>"fillthevacuum", "url"=>"http://twitter.com/fillthevacuum/status/461691184859979777", "source"=>"Twitter"}, {"contentid"=>"461691119290830848", "ldate"=>"Thu May 01 02:18:35 +0000 2014", "author"=>"Flanders", "perferredUsername"=>"VirginiaAshleyy", "url"=>"http://twitter.com/VirginiaAshleyy/status/461691119290830848", "source"=>"Twitter"}, {"contentid"=>"461691005130264576", "ldate"=>"Thu May 01 02:18:08 +0000 2014", "author"=>"TommyCraft", "perferredUsername"=>"jrtommy2934", "url"=>"http://twitter.com/jrtommy2934/status/461691005130264576", "source"=>"Twitter"}, {"contentid"=>"461690965296955393", "ldate"=>"Thu May 01 02:17:58 +0000 2014", "author"=>"Matt", "perferredUsername"=>"BigBullyDos", "url"=>"http://twitter.com/BigBullyDos/status/461690965296955393", "source"=>"Twitter"}, {"contentid"=>"461690917259206656", "ldate"=>"Thu May 01 02:17:47 +0000 2014", "author"=>"Kat", "perferredUsername"=>"Katbodden21", "url"=>"http://twitter.com/Katbodden21/status/461690917259206656", "source"=>"Twitter"}, {"contentid"=>"461690816663392256", "ldate"=>"Thu May 01 02:17:23 +0000 2014", "author"=>"Anna Chrystalla", "perferredUsername"=>"AnnaChrystalla", "url"=>"http://twitter.com/AnnaChrystalla/status/461690816663392256", "source"=>"Twitter"}, {"contentid"=>"461690813094035456", "ldate"=>"Thu May 01 02:17:22 +0000 2014", "author"=>"❤Eye of my Tiger ❤", "perferredUsername"=>"_LoveBabyDoll", "url"=>"http://twitter.com/_LoveBabyDoll/status/461690813094035456", "source"=>"Twitter"}, {"contentid"=>"461690666310193152", "ldate"=>"Thu May 01 02:16:47 +0000 2014", "author"=>"Dani", "perferredUsername"=>"DaniMM86", "url"=>"http://twitter.com/DaniMM86/status/461690666310193152", "source"=>"Twitter"}, {"contentid"=>"461690542464970753", "ldate"=>"Thu May 01 02:16:17 +0000 2014", "author"=>"♡♥♡", "perferredUsername"=>"misseslambo", "url"=>"http://twitter.com/misseslambo/status/461690542464970753", "source"=>"Twitter"}, {"contentid"=>"461690469102006272", "ldate"=>"Thu May 01 02:16:00 +0000 2014", "author"=>"Cristina", "perferredUsername"=>"10cristinaa", "url"=>"http://twitter.com/10cristinaa/status/461690469102006272", "source"=>"Twitter"}, {"contentid"=>"461690413271613440", "ldate"=>"Thu May 01 02:15:46 +0000 2014", "author"=>"Elaina Rusk", "perferredUsername"=>"Elaina23ABC", "url"=>"http://twitter.com/Elaina23ABC/status/461690413271613440", "source"=>"Twitter"}, {"contentid"=>"461690373186654208", "ldate"=>"Thu May 01 02:15:37 +0000 2014", "author"=>"Stef", "perferredUsername"=>"StephanieA0205", "url"=>"http://twitter.com/StephanieA0205/status/461690373186654208", "source"=>"Twitter"}, {"contentid"=>"461690160447762432", "ldate"=>"Thu May 01 02:14:46 +0000 2014", "author"=>"Lizzie", "perferredUsername"=>"BeautynnBlunts", "url"=>"http://twitter.com/BeautynnBlunts/status/461690160447762432", "source"=>"Twitter"}, {"contentid"=>"461690089152602112", "ldate"=>"Thu May 01 02:14:29 +0000 2014", "author"=>"Kat", "perferredUsername"=>"Katbodden21", "url"=>"http://twitter.com/Katbodden21/status/461690089152602112", "source"=>"Twitter"}, {"contentid"=>"461690051874013184", "ldate"=>"Thu May 01 02:14:20 +0000 2014", "author"=>"Kyle Miller", "perferredUsername"=>"arcjixn", "url"=>"http://twitter.com/arcjixn/status/461690051874013184", "source"=>"Twitter"}, {"contentid"=>"461689700189614081", "ldate"=>"Thu May 01 02:12:56 +0000 2014", "author"=>"lex . ✊", "perferredUsername"=>"alexuss___", "url"=>"http://twitter.com/alexuss___/status/461689700189614081", "source"=>"Twitter"}, {"contentid"=>"461689597530210304", "ldate"=>"Thu May 01 02:12:32 +0000 2014", "author"=>"Justin Monroe", "perferredUsername"=>"JustinMonroe17", "url"=>"http://twitter.com/JustinMonroe17/status/461689597530210304", "source"=>"Twitter"}, {"contentid"=>"461689468693381120", "ldate"=>"Thu May 01 02:12:01 +0000 2014", "author"=>"Loriiii.", "perferredUsername"=>"lori_pineapple", "url"=>"http://twitter.com/lori_pineapple/status/461689468693381120", "source"=>"Twitter"}]}, "requestid"=>"e0f13f23-1f77-4e85-bce9-d7be34c636d9"}
|
241
|
+
I, [2014-04-30T22:27:03.836888 #32088] INFO -- : Prediction loader waiting for scores ...
|
242
|
+
D, [2014-04-30T22:27:03.836922 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
243
|
+
D, [2014-04-30T22:27:04.126271 #32088] DEBUG -- : Adding posts for scout_id: 27
|
244
|
+
D, [2014-04-30T22:27:04.126339 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
245
|
+
D, [2014-04-30T22:27:04.134530 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "GS Nova", body: "Florida Democrats Have Declared A War On Women By V...", url: "http://twitter.com/GSNova1/status/46169259764419379...", source: "Twitter", sentiment: #<BigDecimal:7386bc8,'0.0',9(36)>, leadprob: #<BigDecimal:7386998,'0.8678136384 638989E0',18(45)>, notleadprob: #<BigDecimal:7386768,'0.7864969585 005857E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461692597644193793", ldate: "2014-05-01 02:24:27", loadstamp: "2014-05-01 02:27:04", user_id: 7, scout_id: 27>
|
246
|
+
I, [2014-04-30T22:27:04.144003 #32088] INFO -- : Total Number of records: 1
|
247
|
+
I, [2014-04-30T22:27:04.144045 #32088] INFO -- : Total Number of records Not Loaded: 0
|
248
|
+
I, [2014-04-30T22:27:04.144073 #32088] INFO -- : Prediction loader waiting for scores ...
|
249
|
+
D, [2014-04-30T22:27:04.144102 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
250
|
+
W, [2014-04-30T22:43:02.169235 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461697218207313920"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/JOhoVkt66f Don't Text & Drive", "contentid"=>"461696904699871234"}, {"content"=>"Is it bad that I beat the simulator meant to show you how bad it is to text and drive? #professionaldistracteddriver", "contentid"=>"461696764098015232"}, {"content"=>"Don't text and drive...", "contentid"=>"461696757785571329"}, {"content"=>"@The_UngerGames ayyy dont text and drive :D", "contentid"=>"461696731751518208"}, {"content"=>"@deadly_s0ul can you not text him or something god ppl drive me nuts! Learn to communicate", "contentid"=>"461696622049886208"}, {"content"=>"RT @RHSKeyClub14: Everyone who has a don't text and drive shirt where it tomorrow!", "contentid"=>"461696584192102400"}, {"content"=>"@Natalieecleland @SirCarter14 she was ὠ2ὠ2ὠ2 he was then kept driving ὠ2ὠ2 oh my. Text me dawg!", "contentid"=>"461696428256292864"}, {"content"=>"Wish i had someone to text on this long ass drive", "contentid"=>"461696393221246976"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461696315765035008"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461696121924886528"}, {"content"=>"ICYMI: How frequent the 6 New England states & New Jersey text and drive at the same time http://t.co/QPBvHkIouo", "contentid"=>"461695930677215232"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/pEK9uff7EE Don't Text & Drive", "contentid"=>"461695919814365184"}, {"content"=>"I think sammys perfect that I text and drive for her", "contentid"=>"461695801106776065"}, {"content"=>"No drive to text anyone", "contentid"=>"461695200017268736"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461695183420407808"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/Z0TLngYNyM Don't Text & Drive", "contentid"=>"461695132182405122"}, {"content"=>"Mara drives right by me and sees me texting and driving so she texts me while shes driving not to text and drive ", "contentid"=>"461695030701207552"}, {"content"=>"RT @shot_of_cabo: I rarely text and drive! Usually I'm too drunk to find my phone.", "contentid"=>"461694952494223360"}, {"content"=>"don't text and drive. don't tweet and brush your teeth. don't go on tumblr in public, all lessons i've learned fairly recently.", "contentid"=>"461694836697886720"}, {"content"=>"RT @shot_of_cabo: I rarely text and drive! Usually I'm too drunk to find my phone.", "contentid"=>"461694727109488641"}, {"content"=>"Someone text me on this 18 hour drive", "contentid"=>"461694475480219648"}, {"content"=>"@saukoma heyeyey congrats again!! sorry I didn't text, was driving then spent the rest of the day with my big sis and nephews!", "contentid"=>"461694245712433152"}, {"content"=>"Me: DON'T TEXT & DRIVE.\n@stimpy217 : I'm not. I'm snap chatting. Smh... My mothers children.", "contentid"=>"461694205606125569"}, {"content"=>"It's bad I text back faster while driving cuz I have my phone in my hand", "contentid"=>"461694060752015360"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461693956976152576"}, {"content"=>"OK ppls, I gotta go pick up bbymomma from wrk keep me posted since i can't drive and text....#gorockets", "contentid"=>"461693875568906240"}, {"content"=>"don't text me while you fucking driving !!!!!", "contentid"=>"461693726914408448"}, {"content"=>"RT @J_Guwopp: DO NOT FUCKIN TEXT ME IF YOU DRIVING . . I AINT TRYNA BE IN THOSE COMMERCIALS MANNN ὣ4ὊFὈ0", "contentid"=>"461693717959950336"}, {"content"=>"Karate Loganville GA - Don't Text and Drive http://t.co/v3dmkFH9HJ #hapkido", "contentid"=>"461693338471919616"}, {"content"=>"RT @themikeinator: @caBAEo congrats be responsible and careful behind the wheel. DONT TEXT AND DRIVE.", "contentid"=>"461693218833596416"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461697218207313920", "ldate"=>"Thu May 01 02:42:49 +0000 2014", "author"=>"Dan Kelly", "perferredUsername"=>"dan_kelly23", "url"=>"http://twitter.com/dan_kelly23/status/461697218207313920", "source"=>"Twitter"}, {"contentid"=>"461696904699871234", "ldate"=>"Thu May 01 02:41:34 +0000 2014", "author"=>"Rick Pepin", "perferredUsername"=>"rickpep256", "url"=>"http://twitter.com/rickpep256/status/461696904699871234", "source"=>"Twitter"}, {"contentid"=>"461696764098015232", "ldate"=>"Thu May 01 02:41:01 +0000 2014", "author"=>"Call me Mathlete", "perferredUsername"=>"MrsChivette", "url"=>"http://twitter.com/MrsChivette/status/461696764098015232", "source"=>"Twitter"}, {"contentid"=>"461696757785571329", "ldate"=>"Thu May 01 02:40:59 +0000 2014", "author"=>"R.I.P Yah Yah", "perferredUsername"=>"TreyNastyy", "url"=>"http://twitter.com/TreyNastyy/status/461696757785571329", "source"=>"Twitter"}, {"contentid"=>"461696731751518208", "ldate"=>"Thu May 01 02:40:53 +0000 2014", "author"=>"Zachhadoodlee Who?", "perferredUsername"=>"MrPeterson6", "url"=>"http://twitter.com/MrPeterson6/status/461696731751518208", "source"=>"Twitter"}, {"contentid"=>"461696622049886208", "ldate"=>"Thu May 01 02:40:27 +0000 2014", "author"=>"Harry's Subconscious", "perferredUsername"=>"AftrHarrySubcon", "url"=>"http://twitter.com/AftrHarrySubcon/status/461696622049886208", "source"=>"Twitter"}, {"contentid"=>"461696584192102400", "ldate"=>"Thu May 01 02:40:18 +0000 2014", "author"=>"Richland SADD", "perferredUsername"=>"RichlandSADD", "url"=>"http://twitter.com/RichlandSADD/status/461696584192102400", "source"=>"Twitter"}, {"contentid"=>"461696428256292864", "ldate"=>"Thu May 01 02:39:41 +0000 2014", "author"=>"Leah Cleland", "perferredUsername"=>"LeahhhCleland", "url"=>"http://twitter.com/LeahhhCleland/status/461696428256292864", "source"=>"Twitter"}, {"contentid"=>"461696393221246976", "ldate"=>"Thu May 01 02:39:32 +0000 2014", "author"=>"That LowKeyG Queso", "perferredUsername"=>"JonStevens27", "url"=>"http://twitter.com/JonStevens27/status/461696393221246976", "source"=>"Twitter"}, {"contentid"=>"461696315765035008", "ldate"=>"Thu May 01 02:39:14 +0000 2014", "author"=>"niishaTy", "perferredUsername"=>"7Niisha", "url"=>"http://twitter.com/7Niisha/status/461696315765035008", "source"=>"Twitter"}, {"contentid"=>"461696121924886528", "ldate"=>"Thu May 01 02:38:28 +0000 2014", "author"=>"ya boi lij", "perferredUsername"=>"Elijahh_2", "url"=>"http://twitter.com/Elijahh_2/status/461696121924886528", "source"=>"Twitter"}, {"contentid"=>"461695930677215232", "ldate"=>"Thu May 01 02:37:42 +0000 2014", "author"=>"BostInno City", "perferredUsername"=>"BostInnoCity", "url"=>"http://twitter.com/BostInnoCity/status/461695930677215232", "source"=>"Twitter"}, {"contentid"=>"461695919814365184", "ldate"=>"Thu May 01 02:37:39 +0000 2014", "author"=>"Brittanie", "perferredUsername"=>"DrtyChimichanga", "url"=>"http://twitter.com/DrtyChimichanga/status/461695919814365184", "source"=>"Twitter"}, {"contentid"=>"461695801106776065", "ldate"=>"Thu May 01 02:37:11 +0000 2014", "author"=>"سيندي", "perferredUsername"=>"CindyVarelaXO", "url"=>"http://twitter.com/CindyVarelaXO/status/461695801106776065", "source"=>"Twitter"}, {"contentid"=>"461695200017268736", "ldate"=>"Thu May 01 02:34:48 +0000 2014", "author"=>"Drü✈️☁️", "perferredUsername"=>"lilhenthorn_215", "url"=>"http://twitter.com/lilhenthorn_215/status/461695200017268736", "source"=>"Twitter"}, {"contentid"=>"461695183420407808", "ldate"=>"Thu May 01 02:34:44 +0000 2014", "author"=>"zy-yur.✨", "perferredUsername"=>"ZhaireB", "url"=>"http://twitter.com/ZhaireB/status/461695183420407808", "source"=>"Twitter"}, {"contentid"=>"461695132182405122", "ldate"=>"Thu May 01 02:34:32 +0000 2014", "author"=>"dppeschke97", "perferredUsername"=>"dppeschke97", "url"=>"http://twitter.com/dppeschke97/status/461695132182405122", "source"=>"Twitter"}, {"contentid"=>"461695030701207552", "ldate"=>"Thu May 01 02:34:07 +0000 2014", "author"=>"yesenia reyes", "perferredUsername"=>"FuknnYesenia", "url"=>"http://twitter.com/FuknnYesenia/status/461695030701207552", "source"=>"Twitter"}, {"contentid"=>"461694952494223360", "ldate"=>"Thu May 01 02:33:49 +0000 2014", "author"=>"Lynn Bell", "perferredUsername"=>"MyHugsAndMore", "url"=>"http://twitter.com/MyHugsAndMore/status/461694952494223360", "source"=>"Twitter"}, {"contentid"=>"461694836697886720", "ldate"=>"Thu May 01 02:33:21 +0000 2014", "author"=>"rolando", "perferredUsername"=>"rolandosrbx", "url"=>"http://twitter.com/rolandosrbx/status/461694836697886720", "source"=>"Twitter"}, {"contentid"=>"461694727109488641", "ldate"=>"Thu May 01 02:32:55 +0000 2014", "author"=>"PrettyUnstable", "perferredUsername"=>"CubanB1987", "url"=>"http://twitter.com/CubanB1987/status/461694727109488641", "source"=>"Twitter"}, {"contentid"=>"461694475480219648", "ldate"=>"Thu May 01 02:31:55 +0000 2014", "author"=>"amanda macayla ♕", "perferredUsername"=>"amandagarlandd", "url"=>"http://twitter.com/amandagarlandd/status/461694475480219648", "source"=>"Twitter"}, {"contentid"=>"461694245712433152", "ldate"=>"Thu May 01 02:31:00 +0000 2014", "author"=>"Zach", "perferredUsername"=>"ZaxBit", "url"=>"http://twitter.com/ZaxBit/status/461694245712433152", "source"=>"Twitter"}, {"contentid"=>"461694205606125569", "ldate"=>"Thu May 01 02:30:51 +0000 2014", "author"=>"Jaynee Stimpson", "perferredUsername"=>"jaynee_jo", "url"=>"http://twitter.com/jaynee_jo/status/461694205606125569", "source"=>"Twitter"}, {"contentid"=>"461694060752015360", "ldate"=>"Thu May 01 02:30:16 +0000 2014", "author"=>"Jalen Nelson", "perferredUsername"=>"_JNels_", "url"=>"http://twitter.com/_JNels_/status/461694060752015360", "source"=>"Twitter"}, {"contentid"=>"461693956976152576", "ldate"=>"Thu May 01 02:29:51 +0000 2014", "author"=>"Victoria", "perferredUsername"=>"Vicky_Tori_xo", "url"=>"http://twitter.com/Vicky_Tori_xo/status/461693956976152576", "source"=>"Twitter"}, {"contentid"=>"461693875568906240", "ldate"=>"Thu May 01 02:29:32 +0000 2014", "author"=>"BC", "perferredUsername"=>"BC_aka_BadCo", "url"=>"http://twitter.com/BC_aka_BadCo/status/461693875568906240", "source"=>"Twitter"}, {"contentid"=>"461693726914408448", "ldate"=>"Thu May 01 02:28:57 +0000 2014", "author"=>"artre$eeeeee .", "perferredUsername"=>"tresieeeeeB_", "url"=>"http://twitter.com/tresieeeeeB_/status/461693726914408448", "source"=>"Twitter"}, {"contentid"=>"461693717959950336", "ldate"=>"Thu May 01 02:28:54 +0000 2014", "author"=>"=^_^= Hello Nicki", "perferredUsername"=>"King_Nicxoxo", "url"=>"http://twitter.com/King_Nicxoxo/status/461693717959950336", "source"=>"Twitter"}, {"contentid"=>"461693338471919616", "ldate"=>"Thu May 01 02:27:24 +0000 2014", "author"=>"hapkido", "perferredUsername"=>"hapkido", "url"=>"http://twitter.com/hapkido/status/461693338471919616", "source"=>"Twitter"}, {"contentid"=>"461693218833596416", "ldate"=>"Thu May 01 02:26:55 +0000 2014", "author"=>"Cassondra cabello", "perferredUsername"=>"Camilasbootayy", "url"=>"http://twitter.com/Camilasbootayy/status/461693218833596416", "source"=>"Twitter"}]}, "requestid"=>"c97256b0-010e-4c6a-b400-1ec9db2b0a3b"}
|
251
|
+
I, [2014-04-30T22:43:02.169322 #32088] INFO -- : Prediction loader waiting for scores ...
|
252
|
+
D, [2014-04-30T22:43:02.169356 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
253
|
+
D, [2014-04-30T22:43:02.479231 #32088] DEBUG -- : Adding posts for scout_id: 27
|
254
|
+
D, [2014-04-30T22:43:02.479302 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
255
|
+
D, [2014-04-30T22:43:02.487399 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "LoveStockNews", body: "$AMZN - Amazon Begins Collecting Florida Taxes for ...", url: "http://twitter.com/stocknews77/status/4616932742319...", source: "Twitter", sentiment: #<BigDecimal:7459b90,'0.0',9(36)>, leadprob: #<BigDecimal:7459898,'0.9173844244 833546E0',18(45)>, notleadprob: #<BigDecimal:7459668,'0.7303501100 371687E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461693274231955457", ldate: "2014-05-01 02:27:09", loadstamp: "2014-05-01 02:43:02", user_id: 7, scout_id: 27>
|
256
|
+
D, [2014-04-30T22:43:02.508620 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Streaming TV", body: "$AMZN Amazon Begins Collecting Florida Taxes for In...", url: "http://twitter.com/astreamingbox/status/46169373864...", source: "Twitter", sentiment: #<BigDecimal:74c9120,'0.0',9(36)>, leadprob: #<BigDecimal:74c8ef0,'0.8647825443 437055E0',18(45)>, notleadprob: #<BigDecimal:74c8cc0,'0.5526620808 771205E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461693738646241280", ldate: "2014-05-01 02:28:59", loadstamp: "2014-05-01 02:43:02", user_id: 7, scout_id: 27>
|
257
|
+
D, [2014-04-30T22:43:02.525076 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Sublimin_Al ", body: "Florida Republican gets Secret Service visit after ...", url: "http://twitter.com/Sublimin_Al/status/4616938949256...", source: "Twitter", sentiment: #<BigDecimal:7534880,'0.0',9(36)>, leadprob: #<BigDecimal:7534650,'0.7739381615 741766E0',18(45)>, notleadprob: #<BigDecimal:7534420,'0.8815894788 048897E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461693894925615104", ldate: "2014-05-01 02:29:37", loadstamp: "2014-05-01 02:43:02", user_id: 7, scout_id: 27>
|
258
|
+
D, [2014-04-30T22:43:02.533505 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "PlaceTrader", body: "$AMZN: Amazon Begins Collecting Florida Taxes for I...", url: "http://twitter.com/PlaceTrader/status/4616967857825...", source: "Twitter", sentiment: #<BigDecimal:75a0670,'0.0',9(36)>, leadprob: #<BigDecimal:75a3f00,'0.8647825443 437055E0',18(45)>, notleadprob: #<BigDecimal:75a3cd0,'0.5526620808 771205E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461696785782558720", ldate: "2014-05-01 02:41:06", loadstamp: "2014-05-01 02:43:02", user_id: 7, scout_id: 27>
|
259
|
+
I, [2014-04-30T22:43:02.549287 #32088] INFO -- : Total Number of records: 4
|
260
|
+
I, [2014-04-30T22:43:02.549328 #32088] INFO -- : Total Number of records Not Loaded: 0
|
261
|
+
I, [2014-04-30T22:43:02.549356 #32088] INFO -- : Prediction loader waiting for scores ...
|
262
|
+
D, [2014-04-30T22:43:02.549385 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
263
|
+
W, [2014-04-30T22:58:03.013724 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"I just got told not to text and drive bc im tweeting and biking woops", "contentid"=>"461700939959648256"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461700403252326400"}, {"content"=>"I'm definitely a tweet first not answer a text back person. I'll get to you eventually #JustWaitOnIt", "contentid"=>"461700397074493440"}, {"content"=>"Although my mom's not at fault I'm glad to know that she still learned her lesson to not text & drive since the girl who hit her was texting", "contentid"=>"461700349485916161"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461700317562671104"}, {"content"=>"The MAIN reason why you don't text and drive", "contentid"=>"461700029455945730"}, {"content"=>"@EXXoTicc_P in these streets, driving lol text me! ὡC", "contentid"=>"461700022481195008"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461699935352520705"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461699857174896641"}, {"content"=>"@__justKiasia you could've text me this lol and if I drive..", "contentid"=>"461699804088000512"}, {"content"=>"My mom said the first day I drive to school I have to text her letting her know I actually made it to schoolὠ2ὡ2", "contentid"=>"461699676941475840"}, {"content"=>"RT @Heissarcastic: I have no problem texting while driving, but I won't text while going down stairs. That shits dangerous.", "contentid"=>"461699475388780544"}, {"content"=>"RT @_x3amount: DO NOT TEXT ME WHILE YOU'RE DRIVING I'm not trying to be the last unfinished message they find when your ass is wrapped arou…", "contentid"=>"461699315363504128"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461699271977234433"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/XLr93IfmIY Don't Text & Drive", "contentid"=>"461699241170436096"}, {"content"=>"I'm bouta text Mel allnight & drive the shit out her", "contentid"=>"461699191039721472"}, {"content"=>"DO NOT TEXT ME WHILE YOU'RE DRIVING I'm not trying to be the last unfinished message they find when your ass is wrapped around a tree.", "contentid"=>"461699165475450881"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461699035842084864"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461699012488228864"}, {"content"=>"I'm gonna text and drive and talk and drive and everything unless the police wanna make my car payment which I don't have", "contentid"=>"461698962521460737"}, {"content"=>"http://t.co/0vvGBfPJT4 Joins the “One Text or Call Could Wreck It All” Campaign to Educate Teen Drivers About Di... http://t.co/P1vGgFujn0", "contentid"=>"461698931244560385"}, {"content"=>"Try na Text Nd Drive ὡ2ὡ2ὡ2", "contentid"=>"461698794715742209"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461698697990918144"}, {"content"=>"@mmisaki1 don't text and drive ὢ1", "contentid"=>"461698646535188481"}, {"content"=>"Pledge not to text and drive http://t.co/gFI9GnWnNF", "contentid"=>"461698645557907456"}, {"content"=>"@sOurpatchROhh I was in a meeting when you 1st texted me & what was I suppose to say back? Ok!?! & the 2nd text I was driving.", "contentid"=>"461698576456753152"}, {"content"=>"I can honestly say I sometimes text and drive but I will no longer do that.", "contentid"=>"461698227431948288"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461698137216667648"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461697978181230593"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461697959613042688"}, {"content"=>"No text is worth your life. Hear stories of survivors and pledge not to text and drive. http://t.co/ji9jEt0kXV", "contentid"=>"461697893124960256"}, {"content"=>"I am talking to absolutely no one right now & it's driving me insane... Text or snap me please.ὢD", "contentid"=>"461697780654694400"}, {"content"=>"\"That accident shouldnt have happened, ppl shouldnt text and drive.\" said the stoner during his rant \"but grab the wheel so i can hit this\"", "contentid"=>"461697775382441985"}, {"content"=>"\"@Fact: Please, don't text and drive: http://t.co/XPlpW50kmE\"", "contentid"=>"461697759913836544"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/fNYqYUstQw Don't Text & Drive", "contentid"=>"461697750023696384"}, {"content"=>"RT @vinny_ray: Girls the way you can drive, text, and put your makeup on all at the same time is truly remarkable.", "contentid"=>"461697725474828288"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461697626828574720"}, {"content"=>"RT @DannyLoso: ὠ2ὠ2ὠ2ὠ2RT @MinaWorldPeace See them textin commercials is the reason why iont text & drive. My last words ain’t bout to be “You …", "contentid"=>"461697617702178817"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461697585497899008"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461697556494303232"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461697469680599040"}, {"content"=>"Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461697431873146880"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/l3dB6B64aG Don't Text & Drive", "contentid"=>"461697404681875456"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461697383512809472"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461700939959648256", "ldate"=>"Thu May 01 02:57:36 +0000 2014", "author"=>"Dr. Drey", "perferredUsername"=>"adryanneman", "url"=>"http://twitter.com/adryanneman/status/461700939959648256", "source"=>"Twitter"}, {"contentid"=>"461700403252326400", "ldate"=>"Thu May 01 02:55:28 +0000 2014", "author"=>"NINO", "perferredUsername"=>"BIGNINO_JR", "url"=>"http://twitter.com/BIGNINO_JR/status/461700403252326400", "source"=>"Twitter"}, {"contentid"=>"461700397074493440", "ldate"=>"Thu May 01 02:55:27 +0000 2014", "author"=>"Goku Jefe ", "perferredUsername"=>"Drive_2_Inspire", "url"=>"http://twitter.com/Drive_2_Inspire/status/461700397074493440", "source"=>"Twitter"}, {"contentid"=>"461700349485916161", "ldate"=>"Thu May 01 02:55:15 +0000 2014", "author"=>"Sofia☼", "perferredUsername"=>"MoonAnddBack", "url"=>"http://twitter.com/MoonAnddBack/status/461700349485916161", "source"=>"Twitter"}, {"contentid"=>"461700317562671104", "ldate"=>"Thu May 01 02:55:08 +0000 2014", "author"=>"Naomi Aguirre", "perferredUsername"=>"itsG_Raww", "url"=>"http://twitter.com/itsG_Raww/status/461700317562671104", "source"=>"Twitter"}, {"contentid"=>"461700029455945730", "ldate"=>"Thu May 01 02:53:59 +0000 2014", "author"=>"Caleb ✊", "perferredUsername"=>"_CalebJahdiel", "url"=>"http://twitter.com/_CalebJahdiel/status/461700029455945730", "source"=>"Twitter"}, {"contentid"=>"461700022481195008", "ldate"=>"Thu May 01 02:53:57 +0000 2014", "author"=>"Ta'Keia ", "perferredUsername"=>"SLIMbarbie3", "url"=>"http://twitter.com/SLIMbarbie3/status/461700022481195008", "source"=>"Twitter"}, {"contentid"=>"461699935352520705", "ldate"=>"Thu May 01 02:53:37 +0000 2014", "author"=>"Tierrah.", "perferredUsername"=>"x_danae", "url"=>"http://twitter.com/x_danae/status/461699935352520705", "source"=>"Twitter"}, {"contentid"=>"461699857174896641", "ldate"=>"Thu May 01 02:53:18 +0000 2014", "author"=>"Presumptuous", "perferredUsername"=>"teahymes", "url"=>"http://twitter.com/teahymes/status/461699857174896641", "source"=>"Twitter"}, {"contentid"=>"461699804088000512", "ldate"=>"Thu May 01 02:53:05 +0000 2014", "author"=>"June 30th ♋️", "perferredUsername"=>"_eanom", "url"=>"http://twitter.com/_eanom/status/461699804088000512", "source"=>"Twitter"}, {"contentid"=>"461699676941475840", "ldate"=>"Thu May 01 02:52:35 +0000 2014", "author"=>"Alexa", "perferredUsername"=>"AlexaPorta", "url"=>"http://twitter.com/AlexaPorta/status/461699676941475840", "source"=>"Twitter"}, {"contentid"=>"461699475388780544", "ldate"=>"Thu May 01 02:51:47 +0000 2014", "author"=>"Joshlynn", "perferredUsername"=>"Joshlynn_Harmon", "url"=>"http://twitter.com/Joshlynn_Harmon/status/461699475388780544", "source"=>"Twitter"}, {"contentid"=>"461699315363504128", "ldate"=>"Thu May 01 02:51:09 +0000 2014", "author"=>"Charles Meluch®", "perferredUsername"=>"MuddyMon3y", "url"=>"http://twitter.com/MuddyMon3y/status/461699315363504128", "source"=>"Twitter"}, {"contentid"=>"461699271977234433", "ldate"=>"Thu May 01 02:50:59 +0000 2014", "author"=>"Jackie H", "perferredUsername"=>"OfficialJackieO", "url"=>"http://twitter.com/OfficialJackieO/status/461699271977234433", "source"=>"Twitter"}, {"contentid"=>"461699241170436096", "ldate"=>"Thu May 01 02:50:51 +0000 2014", "author"=>"Alessa ", "perferredUsername"=>"AlessaRabin", "url"=>"http://twitter.com/AlessaRabin/status/461699241170436096", "source"=>"Twitter"}, {"contentid"=>"461699191039721472", "ldate"=>"Thu May 01 02:50:39 +0000 2014", "author"=>"Buck9⃣", "perferredUsername"=>"_9buckss", "url"=>"http://twitter.com/_9buckss/status/461699191039721472", "source"=>"Twitter"}, {"contentid"=>"461699165475450881", "ldate"=>"Thu May 01 02:50:33 +0000 2014", "author"=>"Jessalyn FaCe!", "perferredUsername"=>"_x3amount", "url"=>"http://twitter.com/_x3amount/status/461699165475450881", "source"=>"Twitter"}, {"contentid"=>"461699035842084864", "ldate"=>"Thu May 01 02:50:02 +0000 2014", "author"=>"Man Of The Year", "perferredUsername"=>"EarnORLearn2", "url"=>"http://twitter.com/EarnORLearn2/status/461699035842084864", "source"=>"Twitter"}, {"contentid"=>"461699012488228864", "ldate"=>"Thu May 01 02:49:57 +0000 2014", "author"=>"Lily Jean", "perferredUsername"=>"IWannaGetOnTop", "url"=>"http://twitter.com/IWannaGetOnTop/status/461699012488228864", "source"=>"Twitter"}, {"contentid"=>"461698962521460737", "ldate"=>"Thu May 01 02:49:45 +0000 2014", "author"=>"steven nicholson", "perferredUsername"=>"Oneandonlyss67", "url"=>"http://twitter.com/Oneandonlyss67/status/461698962521460737", "source"=>"Twitter"}, {"contentid"=>"461698931244560385", "ldate"=>"Thu May 01 02:49:37 +0000 2014", "author"=>"pr.co feed", "perferredUsername"=>"prcofeed", "url"=>"http://twitter.com/prcofeed/status/461698931244560385", "source"=>"Twitter"}, {"contentid"=>"461698794715742209", "ldate"=>"Thu May 01 02:49:05 +0000 2014", "author"=>"UpperEchelon", "perferredUsername"=>"_YungBOSSNigga", "url"=>"http://twitter.com/_YungBOSSNigga/status/461698794715742209", "source"=>"Twitter"}, {"contentid"=>"461698697990918144", "ldate"=>"Thu May 01 02:48:42 +0000 2014", "author"=>"babykay", "perferredUsername"=>"TheOnly_KiVon", "url"=>"http://twitter.com/TheOnly_KiVon/status/461698697990918144", "source"=>"Twitter"}, {"contentid"=>"461698646535188481", "ldate"=>"Thu May 01 02:48:29 +0000 2014", "author"=>"Jessica Barbery", "perferredUsername"=>"JessicaBarbery", "url"=>"http://twitter.com/JessicaBarbery/status/461698646535188481", "source"=>"Twitter"}, {"contentid"=>"461698645557907456", "ldate"=>"Thu May 01 02:48:29 +0000 2014", "author"=>"Denise Lavendusky", "perferredUsername"=>"DDeelave", "url"=>"http://twitter.com/DDeelave/status/461698645557907456", "source"=>"Twitter"}, {"contentid"=>"461698576456753152", "ldate"=>"Thu May 01 02:48:13 +0000 2014", "author"=>"SS ❤️", "perferredUsername"=>"Shanizzzzlle", "url"=>"http://twitter.com/Shanizzzzlle/status/461698576456753152", "source"=>"Twitter"}, {"contentid"=>"461698227431948288", "ldate"=>"Thu May 01 02:46:50 +0000 2014", "author"=>"Dariann lanae♥", "perferredUsername"=>"Dariannlove14", "url"=>"http://twitter.com/Dariannlove14/status/461698227431948288", "source"=>"Twitter"}, {"contentid"=>"461698137216667648", "ldate"=>"Thu May 01 02:46:28 +0000 2014", "author"=>"류민혁 ", "perferredUsername"=>"ravibrator", "url"=>"http://twitter.com/ravibrator/status/461698137216667648", "source"=>"Twitter"}, {"contentid"=>"461697978181230593", "ldate"=>"Thu May 01 02:45:50 +0000 2014", "author"=>"♊️", "perferredUsername"=>"DexTheGod_", "url"=>"http://twitter.com/DexTheGod_/status/461697978181230593", "source"=>"Twitter"}, {"contentid"=>"461697959613042688", "ldate"=>"Thu May 01 02:45:46 +0000 2014", "author"=>"Humbleena", "perferredUsername"=>"MarleighGardens", "url"=>"http://twitter.com/MarleighGardens/status/461697959613042688", "source"=>"Twitter"}, {"contentid"=>"461697893124960256", "ldate"=>"Thu May 01 02:45:30 +0000 2014", "author"=>"Denise Lavendusky", "perferredUsername"=>"DDeelave", "url"=>"http://twitter.com/DDeelave/status/461697893124960256", "source"=>"Twitter"}, {"contentid"=>"461697780654694400", "ldate"=>"Thu May 01 02:45:03 +0000 2014", "author"=>"✨Jamie✨", "perferredUsername"=>"coyne_jamie", "url"=>"http://twitter.com/coyne_jamie/status/461697780654694400", "source"=>"Twitter"}, {"contentid"=>"461697775382441985", "ldate"=>"Thu May 01 02:45:02 +0000 2014", "author"=>"Brennan Markley", "perferredUsername"=>"MarkleyMcFly", "url"=>"http://twitter.com/MarkleyMcFly/status/461697775382441985", "source"=>"Twitter"}, {"contentid"=>"461697759913836544", "ldate"=>"Thu May 01 02:44:58 +0000 2014", "author"=>"mxl", "perferredUsername"=>"official_kerol", "url"=>"http://twitter.com/official_kerol/status/461697759913836544", "source"=>"Twitter"}, {"contentid"=>"461697750023696384", "ldate"=>"Thu May 01 02:44:56 +0000 2014", "author"=>"Far", "perferredUsername"=>"ImAlwaysFar", "url"=>"http://twitter.com/ImAlwaysFar/status/461697750023696384", "source"=>"Twitter"}, {"contentid"=>"461697725474828288", "ldate"=>"Thu May 01 02:44:50 +0000 2014", "author"=>"Kristen Docobo", "perferredUsername"=>"kmdocobo", "url"=>"http://twitter.com/kmdocobo/status/461697725474828288", "source"=>"Twitter"}, {"contentid"=>"461697626828574720", "ldate"=>"Thu May 01 02:44:26 +0000 2014", "author"=>"kassidy martin", "perferredUsername"=>"kassidymartin00", "url"=>"http://twitter.com/kassidymartin00/status/461697626828574720", "source"=>"Twitter"}, {"contentid"=>"461697617702178817", "ldate"=>"Thu May 01 02:44:24 +0000 2014", "author"=>"Dyme.❤️", "perferredUsername"=>"TheeUndeniable", "url"=>"http://twitter.com/TheeUndeniable/status/461697617702178817", "source"=>"Twitter"}, {"contentid"=>"461697585497899008", "ldate"=>"Thu May 01 02:44:17 +0000 2014", "author"=>"MYERS", "perferredUsername"=>"_Austoo", "url"=>"http://twitter.com/_Austoo/status/461697585497899008", "source"=>"Twitter"}, {"contentid"=>"461697556494303232", "ldate"=>"Thu May 01 02:44:10 +0000 2014", "author"=>"Mohamad Hussein TMT", "perferredUsername"=>"_itsmojo", "url"=>"http://twitter.com/_itsmojo/status/461697556494303232", "source"=>"Twitter"}, {"contentid"=>"461697469680599040", "ldate"=>"Thu May 01 02:43:49 +0000 2014", "author"=>"Billy Skeet Williams", "perferredUsername"=>"yomommabiscuits", "url"=>"http://twitter.com/yomommabiscuits/status/461697469680599040", "source"=>"Twitter"}, {"contentid"=>"461697431873146880", "ldate"=>"Thu May 01 02:43:40 +0000 2014", "author"=>"Enrique", "perferredUsername"=>"2_hoopalot", "url"=>"http://twitter.com/2_hoopalot/status/461697431873146880", "source"=>"Twitter"}, {"contentid"=>"461697404681875456", "ldate"=>"Thu May 01 02:43:33 +0000 2014", "author"=>"Michael Minor", "perferredUsername"=>"michaelminor26", "url"=>"http://twitter.com/michaelminor26/status/461697404681875456", "source"=>"Twitter"}, {"contentid"=>"461697383512809472", "ldate"=>"Thu May 01 02:43:28 +0000 2014", "author"=>"SANDARA", "perferredUsername"=>"Firdaus_Fxnboy", "url"=>"http://twitter.com/Firdaus_Fxnboy/status/461697383512809472", "source"=>"Twitter"}]}, "requestid"=>"18c279b5-f463-44e8-829c-6735193b536b"}
|
264
|
+
I, [2014-04-30T22:58:03.013817 #32088] INFO -- : Prediction loader waiting for scores ...
|
265
|
+
D, [2014-04-30T22:58:03.013851 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
266
|
+
D, [2014-04-30T22:58:03.312800 #32088] DEBUG -- : Adding posts for scout_id: 27
|
267
|
+
D, [2014-04-30T22:58:03.312875 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
268
|
+
D, [2014-04-30T22:58:03.320948 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Alex Leary", body: "Report: @lennycurry to step down as Republican Part...", url: "http://twitter.com/learyreports/status/461700020534...", source: "Twitter", sentiment: #<BigDecimal:7646de0,'0.0',9(36)>, leadprob: #<BigDecimal:7646bb0,'0.4187493948 363863E0',18(45)>, notleadprob: #<BigDecimal:7646980,'0.8878555843 772461E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461700020534665217", ldate: "2014-05-01 02:53:57", loadstamp: "2014-05-01 02:58:03", user_id: 7, scout_id: 27>
|
269
|
+
I, [2014-04-30T22:58:03.329916 #32088] INFO -- : Total Number of records: 1
|
270
|
+
I, [2014-04-30T22:58:03.329958 #32088] INFO -- : Total Number of records Not Loaded: 0
|
271
|
+
I, [2014-04-30T22:58:03.329986 #32088] INFO -- : Prediction loader waiting for scores ...
|
272
|
+
D, [2014-04-30T22:58:03.330015 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
273
|
+
W, [2014-04-30T23:13:02.675278 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"#TXTL8RIN Park and then text, not while driving.", "contentid"=>"461704570276970497"}, {"content"=>"Saw an ambulance driver text and drive WTF BITCH GET OFF YOUR MOTHA FUCKING PHONE what this is why people call you!!!!!!", "contentid"=>"461704222946246656"}, {"content"=>"DO NOT TEXT ME WHILE YOU'RE DRIVING I'm not trying to be the last unfinished message they find when your ass is wrapped around a tree.", "contentid"=>"461704179346849792"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461703855449722880"}, {"content"=>"What's more dangerous, texting and driving, or reading a giant flashing sign telling you not to text and drive?", "contentid"=>"461703837934706690"}, {"content"=>"Sex Tip:\"Technology\" is a great theme for flirty text exchanges. \"Can't wait for you to mount my hard drive\" etc etc", "contentid"=>"461703682921222144"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/4kTcYCgSgB Don't Text & Drive", "contentid"=>"461703574767280128"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461703554386763776"}, {"content"=>"RT @WhoBuT_NAY: We All Text At Wrk Shit We Text While We Driving So What Happened? You was Busy Doin What?!!", "contentid"=>"461703396765216768"}, {"content"=>"babe needs to learn how to say \"I'm driving I'll text you when I'm (wherever)\" this kid worries me to much. lol", "contentid"=>"461703220994125825"}, {"content"=>"RT @cqrcmp: Most have probably seen this video http://t.co/VJPib4gOSO - but it seems like many need a reminder. Don't text & drive. #LeaveT…", "contentid"=>"461703169563561984"}, {"content"=>"#TXTL8RIN Be smart, don't text and drive.", "contentid"=>"461703107420762113"}, {"content"=>"I love when Alexis tells me she's driving and can't text rn THATS the shit I like to see atta girl safety first", "contentid"=>"461703075074674688"}, {"content"=>"We All Text At Wrk Shit We Text While We Driving So What Happened? You was Busy Doin What?!!", "contentid"=>"461703056661696512"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/puMy6f5dl8 Don't Text & Drive", "contentid"=>"461703049564536833"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461702973207232512"}, {"content"=>"RT @keeley_dubensky: @lexi2564 I actually didn't text and drive today. Can you believe that? ὣ3", "contentid"=>"461702961128042498"}, {"content"=>"“@Drive_2_Inspire: I'm definitely a tweet first not answer a text back person. I'll get to you eventually #JustWaitOnIt” right ὠ2ὠ2", "contentid"=>"461702812834201600"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461702798304747520"}, {"content"=>"#TXTL8RIN Think, don't text and drive", "contentid"=>"461702744949399552"}, {"content"=>"RT @RealStonedPanda: DO NOT TEXT ME WHILE YOU'RE DRIVING I'm not trying to be the last unfinished message they find when your ass is wrappe…", "contentid"=>"461702503977844737"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/TPJtlyrFI1 Don't Text & Drive", "contentid"=>"461702425343057920"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461702331265191936"}, {"content"=>"You really wanna get me chapped? Use the word \"doe\" in a text. I'll drive to your house and put your head through the wall.", "contentid"=>"461702230559571968"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461702201836990464"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461702091811987456"}, {"content"=>"Not being able to text Jake is driving me INSANE!!!!!!!!! ὢ5ὢ5ὢ5ὢ5", "contentid"=>"461702068466483200"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461702015454699522"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461702009192579072"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461701762726916096"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461701690236731393"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461701637724057600"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461701536863645697"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461701470178385920"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461701271091548160"}, {"content"=>"RT @neverknownfacts: Please, don't text and drive http://t.co/g3lmCGrlj9", "contentid"=>"461701188799328256"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461701049531633664"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461704570276970497", "ldate"=>"Thu May 01 03:12:02 +0000 2014", "author"=>"Justin Monroe", "perferredUsername"=>"JustinMonroe17", "url"=>"http://twitter.com/JustinMonroe17/status/461704570276970497", "source"=>"Twitter"}, {"contentid"=>"461704222946246656", "ldate"=>"Thu May 01 03:10:39 +0000 2014", "author"=>"jurgs", "perferredUsername"=>"alijurgella", "url"=>"http://twitter.com/alijurgella/status/461704222946246656", "source"=>"Twitter"}, {"contentid"=>"461704179346849792", "ldate"=>"Thu May 01 03:10:29 +0000 2014", "author"=>"Shaela ReTweets", "perferredUsername"=>"wowwswaggin", "url"=>"http://twitter.com/wowwswaggin/status/461704179346849792", "source"=>"Twitter"}, {"contentid"=>"461703855449722880", "ldate"=>"Thu May 01 03:09:11 +0000 2014", "author"=>"ken seeme", "perferredUsername"=>"kentaekme", "url"=>"http://twitter.com/kentaekme/status/461703855449722880", "source"=>"Twitter"}, {"contentid"=>"461703837934706690", "ldate"=>"Thu May 01 03:09:07 +0000 2014", "author"=>"Sean Gilbertson", "perferredUsername"=>"YukioMX", "url"=>"http://twitter.com/YukioMX/status/461703837934706690", "source"=>"Twitter"}, {"contentid"=>"461703682921222144", "ldate"=>"Thu May 01 03:08:30 +0000 2014", "author"=>"Tina Osborne", "perferredUsername"=>"laruezmuey", "url"=>"http://twitter.com/laruezmuey/status/461703682921222144", "source"=>"Twitter"}, {"contentid"=>"461703574767280128", "ldate"=>"Thu May 01 03:08:04 +0000 2014", "author"=>"Erika", "perferredUsername"=>"Jezel41", "url"=>"http://twitter.com/Jezel41/status/461703574767280128", "source"=>"Twitter"}, {"contentid"=>"461703554386763776", "ldate"=>"Thu May 01 03:08:00 +0000 2014", "author"=>"Kennietha ", "perferredUsername"=>"brownbaddie", "url"=>"http://twitter.com/brownbaddie/status/461703554386763776", "source"=>"Twitter"}, {"contentid"=>"461703396765216768", "ldate"=>"Thu May 01 03:07:22 +0000 2014", "author"=>"✌K Zooyo", "perferredUsername"=>"KoolKlikKZOO", "url"=>"http://twitter.com/KoolKlikKZOO/status/461703396765216768", "source"=>"Twitter"}, {"contentid"=>"461703220994125825", "ldate"=>"Thu May 01 03:06:40 +0000 2014", "author"=>"eliany✨", "perferredUsername"=>"elliebear0423", "url"=>"http://twitter.com/elliebear0423/status/461703220994125825", "source"=>"Twitter"}, {"contentid"=>"461703169563561984", "ldate"=>"Thu May 01 03:06:28 +0000 2014", "author"=>"Centennial School", "perferredUsername"=>"Centennial43", "url"=>"http://twitter.com/Centennial43/status/461703169563561984", "source"=>"Twitter"}, {"contentid"=>"461703107420762113", "ldate"=>"Thu May 01 03:06:13 +0000 2014", "author"=>"Justin Monroe", "perferredUsername"=>"JustinMonroe17", "url"=>"http://twitter.com/JustinMonroe17/status/461703107420762113", "source"=>"Twitter"}, {"contentid"=>"461703075074674688", "ldate"=>"Thu May 01 03:06:05 +0000 2014", "author"=>"Daniela Maffei", "perferredUsername"=>"Bakedd_MUFFins", "url"=>"http://twitter.com/Bakedd_MUFFins/status/461703075074674688", "source"=>"Twitter"}, {"contentid"=>"461703056661696512", "ldate"=>"Thu May 01 03:06:01 +0000 2014", "author"=>"TsuNAYmi Yung", "perferredUsername"=>"WhoBuT_NAY", "url"=>"http://twitter.com/WhoBuT_NAY/status/461703056661696512", "source"=>"Twitter"}, {"contentid"=>"461703049564536833", "ldate"=>"Thu May 01 03:05:59 +0000 2014", "author"=>"OndreyTheGiant", "perferredUsername"=>"OndreyTheGiant", "url"=>"http://twitter.com/OndreyTheGiant/status/461703049564536833", "source"=>"Twitter"}, {"contentid"=>"461702973207232512", "ldate"=>"Thu May 01 03:05:41 +0000 2014", "author"=>"IG: i_live_4_ink ", "perferredUsername"=>"Hoop_fa_Life", "url"=>"http://twitter.com/Hoop_fa_Life/status/461702973207232512", "source"=>"Twitter"}, {"contentid"=>"461702961128042498", "ldate"=>"Thu May 01 03:05:38 +0000 2014", "author"=>"lex", "perferredUsername"=>"lexi2564", "url"=>"http://twitter.com/lexi2564/status/461702961128042498", "source"=>"Twitter"}, {"contentid"=>"461702812834201600", "ldate"=>"Thu May 01 03:05:03 +0000 2014", "author"=>"yng p from africa", "perferredUsername"=>"PeterOne_Two", "url"=>"http://twitter.com/PeterOne_Two/status/461702812834201600", "source"=>"Twitter"}, {"contentid"=>"461702798304747520", "ldate"=>"Thu May 01 03:04:59 +0000 2014", "author"=>"†♥O.V.O 10/23♬ ", "perferredUsername"=>"DopeAss_Ava", "url"=>"http://twitter.com/DopeAss_Ava/status/461702798304747520", "source"=>"Twitter"}, {"contentid"=>"461702744949399552", "ldate"=>"Thu May 01 03:04:47 +0000 2014", "author"=>"Justin Monroe", "perferredUsername"=>"JustinMonroe17", "url"=>"http://twitter.com/JustinMonroe17/status/461702744949399552", "source"=>"Twitter"}, {"contentid"=>"461702503977844737", "ldate"=>"Thu May 01 03:03:49 +0000 2014", "author"=>"Jorge", "perferredUsername"=>"JorgeMesa9", "url"=>"http://twitter.com/JorgeMesa9/status/461702503977844737", "source"=>"Twitter"}, {"contentid"=>"461702425343057920", "ldate"=>"Thu May 01 03:03:30 +0000 2014", "author"=>"BadLuckBrendan", "perferredUsername"=>"BadLuck_Brendan", "url"=>"http://twitter.com/BadLuck_Brendan/status/461702425343057920", "source"=>"Twitter"}, {"contentid"=>"461702331265191936", "ldate"=>"Thu May 01 03:03:08 +0000 2014", "author"=>"Ed", "perferredUsername"=>"loudpacks_only", "url"=>"http://twitter.com/loudpacks_only/status/461702331265191936", "source"=>"Twitter"}, {"contentid"=>"461702230559571968", "ldate"=>"Thu May 01 03:02:44 +0000 2014", "author"=>" AdamNear", "perferredUsername"=>"ANear18", "url"=>"http://twitter.com/ANear18/status/461702230559571968", "source"=>"Twitter"}, {"contentid"=>"461702201836990464", "ldate"=>"Thu May 01 03:02:37 +0000 2014", "author"=>"jhonna♦️", "perferredUsername"=>"jhnnajvr", "url"=>"http://twitter.com/jhnnajvr/status/461702201836990464", "source"=>"Twitter"}, {"contentid"=>"461702091811987456", "ldate"=>"Thu May 01 03:02:11 +0000 2014", "author"=>"Ab[dalla]", "perferredUsername"=>"_hennjunkie", "url"=>"http://twitter.com/_hennjunkie/status/461702091811987456", "source"=>"Twitter"}, {"contentid"=>"461702068466483200", "ldate"=>"Thu May 01 03:02:05 +0000 2014", "author"=>"jaymee candelaria", "perferredUsername"=>"jaymeelena01", "url"=>"http://twitter.com/jaymeelena01/status/461702068466483200", "source"=>"Twitter"}, {"contentid"=>"461702015454699522", "ldate"=>"Thu May 01 03:01:53 +0000 2014", "author"=>"Darius Lyons", "perferredUsername"=>"DariusLyons0", "url"=>"http://twitter.com/DariusLyons0/status/461702015454699522", "source"=>"Twitter"}, {"contentid"=>"461702009192579072", "ldate"=>"Thu May 01 03:01:51 +0000 2014", "author"=>"Ahbie Buza✨", "perferredUsername"=>"theahbiebuza", "url"=>"http://twitter.com/theahbiebuza/status/461702009192579072", "source"=>"Twitter"}, {"contentid"=>"461701762726916096", "ldate"=>"Thu May 01 03:00:52 +0000 2014", "author"=>"Granni", "perferredUsername"=>"MyGod_itsGranni", "url"=>"http://twitter.com/MyGod_itsGranni/status/461701762726916096", "source"=>"Twitter"}, {"contentid"=>"461701690236731393", "ldate"=>"Thu May 01 03:00:35 +0000 2014", "author"=>"Nemo Dough", "perferredUsername"=>"NoRUBBAimRAW", "url"=>"http://twitter.com/NoRUBBAimRAW/status/461701690236731393", "source"=>"Twitter"}, {"contentid"=>"461701637724057600", "ldate"=>"Thu May 01 03:00:23 +0000 2014", "author"=>"BlackQueen.", "perferredUsername"=>"trillmatter", "url"=>"http://twitter.com/trillmatter/status/461701637724057600", "source"=>"Twitter"}, {"contentid"=>"461701536863645697", "ldate"=>"Thu May 01 02:59:59 +0000 2014", "author"=>"bom", "perferredUsername"=>"laxyfunfan", "url"=>"http://twitter.com/laxyfunfan/status/461701536863645697", "source"=>"Twitter"}, {"contentid"=>"461701470178385920", "ldate"=>"Thu May 01 02:59:43 +0000 2014", "author"=>"ᎡᎰᏟᎻᎪᏒᎠ◈", "perferredUsername"=>"LOTT_about_it", "url"=>"http://twitter.com/LOTT_about_it/status/461701470178385920", "source"=>"Twitter"}, {"contentid"=>"461701271091548160", "ldate"=>"Thu May 01 02:58:55 +0000 2014", "author"=>"Bekk✨", "perferredUsername"=>"BekaahJanee", "url"=>"http://twitter.com/BekaahJanee/status/461701271091548160", "source"=>"Twitter"}, {"contentid"=>"461701188799328256", "ldate"=>"Thu May 01 02:58:36 +0000 2014", "author"=>"#636Affiliated #TBN", "perferredUsername"=>"DeathBeforeLyfe", "url"=>"http://twitter.com/DeathBeforeLyfe/status/461701188799328256", "source"=>"Twitter"}, {"contentid"=>"461701049531633664", "ldate"=>"Thu May 01 02:58:02 +0000 2014", "author"=>"Shane", "perferredUsername"=>"SEasy_416", "url"=>"http://twitter.com/SEasy_416/status/461701049531633664", "source"=>"Twitter"}]}, "requestid"=>"502f519b-c706-4a27-8a77-45cd95a3962f"}
|
274
|
+
I, [2014-04-30T23:13:02.675371 #32088] INFO -- : Prediction loader waiting for scores ...
|
275
|
+
D, [2014-04-30T23:13:02.675406 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
276
|
+
D, [2014-04-30T23:13:02.888418 #32088] DEBUG -- : Adding posts for scout_id: 27
|
277
|
+
D, [2014-04-30T23:13:02.889540 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Virginia Ramirez", body: "RT @RepTedDeutch: Graphic: Here's what #1010Means f...", url: "http://twitter.com/vlramirez12/status/4617032688888...", source: "Twitter", sentiment: #<BigDecimal:795c9a8,'0.0',9(36)>, leadprob: #<BigDecimal:795c778,'0.8275129795 447093E0',18(45)>, notleadprob: #<BigDecimal:795c548,'0.6267857952 108301E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461703268888875009", ldate: "2014-05-01 03:06:51", loadstamp: "2014-05-01 03:13:02", user_id: 7, scout_id: 27>
|
278
|
+
D, [2014-04-30T23:13:02.903131 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Julie A Woods", body: "RT @vlramirez12: RT @RepTedDeutch: Graphic: Here's ...", url: "http://twitter.com/julieswhimsies/status/4617038882...", source: "Twitter", sentiment: #<BigDecimal:79cc0a0,'0.0',9(36)>, leadprob: #<BigDecimal:79d3e18,'0.8416113026 956229E0',18(45)>, notleadprob: #<BigDecimal:79d3be8,'0.6542791501 825362E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461703888224006145", ldate: "2014-05-01 03:09:19", loadstamp: "2014-05-01 03:13:02", user_id: 7, scout_id: 27>
|
279
|
+
I, [2014-04-30T23:13:02.918833 #32088] INFO -- : Total Number of records: 2
|
280
|
+
I, [2014-04-30T23:13:02.918874 #32088] INFO -- : Total Number of records Not Loaded: 0
|
281
|
+
I, [2014-04-30T23:13:02.918903 #32088] INFO -- : Prediction loader waiting for scores ...
|
282
|
+
D, [2014-04-30T23:13:02.918931 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
283
|
+
W, [2014-04-30T23:28:03.040302 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"I don't like for people to text me while they're driving.", "contentid"=>"461708448481419265"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461708377563725825"}, {"content"=>"@taylorcaniff oh yea just kill yourself taylor.\n DONT TEXT AND DRIVE TAYLOR!", "contentid"=>"461708340192477184"}, {"content"=>"@taylorcaniff don't text and drive! I don't want you to get hurt", "contentid"=>"461708249578754048"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461708198710218752"}, {"content"=>"@taylorcaniff \nDon't text and drive\nDon't vine and drive\nSlow down\nDon't get pulled over\nDon't crash", "contentid"=>"461708169798893569"}, {"content"=>"@taylorcaniff with a broken arm, while tweeting. You're gonna get yourself killed, don't text while drive while speeding with a broken bone", "contentid"=>"461708166104117248"}, {"content"=>"@taylorcaniff Dont text and drive Taylorὠ2Ὁ5ὡ8", "contentid"=>"461708111498452993"}, {"content"=>"RT @queengilinsky: Taylor don't text and drive", "contentid"=>"461708077981777921"}, {"content"=>"“@taylorcaniff: Doing 147 right now into incoming traffic” dont text and drive taylor!!!", "contentid"=>"461708045412626432"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461708030615121921"}, {"content"=>"Taylor don't text and drive", "contentid"=>"461708008611782657"}, {"content"=>"@taylorcaniff its not good to text and drive taylor", "contentid"=>"461707986340040704"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/iSzDZ2TEaF Don't Text & Drive", "contentid"=>"461707981995122688"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461707981537562625"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461707960213721088"}, {"content"=>"#TXTL8RIN Tweet, tweet, tweet this message so people will not text and drive.", "contentid"=>"461707945667878912"}, {"content"=>"@taylorcaniff DONT TEXT AND DRIVE! stay safe!!!!", "contentid"=>"461707931793104896"}, {"content"=>"@taylorcaniff please don't text and drive", "contentid"=>"461707901657047041"}, {"content"=>"@taylorcaniff wtf don't text and drive ya idiot", "contentid"=>"461707874964484096"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461707798359719937"}, {"content"=>"Don't drive text me smh. Not tryna be in that commercial", "contentid"=>"461707789035786240"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461707543996149760"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/s15vX3L1qT Don't Text & Drive", "contentid"=>"461707332796559360"}, {"content"=>"@MyNameIsAbbyyy I'm trying to drive text race I don't gave time for all tht lmao", "contentid"=>"461707148909490176"}, {"content"=>"My arm hurts. This medicine wore off ὡ2 Pls help. Ugh. This is why people shouldn't text & drive ὡ2ὡ2.Causing us to get into a car accident", "contentid"=>"461707131604176896"}, {"content"=>"@Just_Sandytoes don't text & drive. xo", "contentid"=>"461707055339171840"}, {"content"=>"#TXTL8RIN Park then text, don’t do it while driving.", "contentid"=>"461707032543125504"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461707021352333312"}, {"content"=>"RT @USAA: It's the last day of #DistractedDriving Awareness Month – have you taken the pledge to never text and drive? http://t.co/quV3wceX…", "contentid"=>"461706977127563264"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461706971196846080"}, {"content"=>"I was driving while this group text was going on ...", "contentid"=>"461706887252029440"}, {"content"=>"#TXTL8RIN Be careful and don’t text and drive", "contentid"=>"461706877571588096"}, {"content"=>"RT @USAA: It's the last day of #DistractedDriving Awareness Month – have you taken the pledge to never text and drive? http://t.co/quV3wceX…", "contentid"=>"461706816645128193"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/UfDFLDU2a5 Don't Text & Drive", "contentid"=>"461706734374236161"}, {"content"=>"Please watch this, nobody's life is worth ending over trying to text/fb/tweet/etc while driving @mylifeasliz96 http://t.co/ihVR97v6bD", "contentid"=>"461706646041800704"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461706586223050752"}, {"content"=>"I fucking hate it when people text me while their driving. I am not about to be the reason you die.", "contentid"=>"461706526554873856"}, {"content"=>"#TXTL8RIN Drive now Text later, please!", "contentid"=>"461706435660091392"}, {"content"=>"@DeArica_ shit babyyyyyy & just FWM when you get in the house no you can't text & drive ὠ2ὢDὢDὢDὠ2", "contentid"=>"461706390365417472"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461706086857195521"}, {"content"=>"RT @SoCalLegalNews: #Texting increases your chance of getting into an #accident by 23% Don't text and drive! #ItsNotWorthIt ……http://t.c…", "contentid"=>"461706001943519233"}, {"content"=>"#Texting increases your chance of getting into an #accident by 23% Don't text and drive! #ItsNotWorthIt ……http://t.co/uPZsyEbSBA … …", "contentid"=>"461705740827103233"}, {"content"=>"Dont text and drive yall.....", "contentid"=>"461705708971388928"}, {"content"=>"RT @DannyLoso: ὠ2ὠ2ὠ2ὠ2RT @MinaWorldPeace See them textin commercials is the reason why iont text & drive. My last words ain’t bout to be “You …", "contentid"=>"461705480092811264"}, {"content"=>"RT @alijurgella: Saw an ambulance driver text and drive WTF BITCH GET OFF YOUR MOTHA FUCKING PHONE what this is why people call you!!!!!!", "contentid"=>"461705439353139200"}, {"content"=>"If i could text and drive without having to hide it it'd be safer", "contentid"=>"461705083819147264"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461705038499299328"}, {"content"=>"Not legal to text and drive but totally legal to eat an In & Out Burger and drive #justasdistracting #califood http://t.co/9XNSp0OQJS", "contentid"=>"461704873298247680"}, {"content"=>"#TXTL8RIN Think, don’t text and drive.", "contentid"=>"461704871964835840"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461708448481419265", "ldate"=>"Thu May 01 03:27:26 +0000 2014", "author"=>"☁️9⃣", "perferredUsername"=>"4foot9_", "url"=>"http://twitter.com/4foot9_/status/461708448481419265", "source"=>"Twitter"}, {"contentid"=>"461708377563725825", "ldate"=>"Thu May 01 03:27:10 +0000 2014", "author"=>"Believe", "perferredUsername"=>"boocallie1", "url"=>"http://twitter.com/boocallie1/status/461708377563725825", "source"=>"Twitter"}, {"contentid"=>"461708340192477184", "ldate"=>"Thu May 01 03:27:01 +0000 2014", "author"=>"Delia Bieber♡", "perferredUsername"=>"Dalia46_vicky", "url"=>"http://twitter.com/Dalia46_vicky/status/461708340192477184", "source"=>"Twitter"}, {"contentid"=>"461708249578754048", "ldate"=>"Thu May 01 03:26:39 +0000 2014", "author"=>"hailey summers", "perferredUsername"=>"hailey_swag99", "url"=>"http://twitter.com/hailey_swag99/status/461708249578754048", "source"=>"Twitter"}, {"contentid"=>"461708198710218752", "ldate"=>"Thu May 01 03:26:27 +0000 2014", "author"=>"♛", "perferredUsername"=>"thebiebsdiva", "url"=>"http://twitter.com/thebiebsdiva/status/461708198710218752", "source"=>"Twitter"}, {"contentid"=>"461708169798893569", "ldate"=>"Thu May 01 03:26:20 +0000 2014", "author"=>"Kayana Peterson", "perferredUsername"=>"itsjustkayana", "url"=>"http://twitter.com/itsjustkayana/status/461708169798893569", "source"=>"Twitter"}, {"contentid"=>"461708166104117248", "ldate"=>"Thu May 01 03:26:19 +0000 2014", "author"=>"THANK YOU NASH", "perferredUsername"=>"kiss_whitesides", "url"=>"http://twitter.com/kiss_whitesides/status/461708166104117248", "source"=>"Twitter"}, {"contentid"=>"461708111498452993", "ldate"=>"Thu May 01 03:26:06 +0000 2014", "author"=>"TYSM Jc plz Bethany♡", "perferredUsername"=>"TriniteeW", "url"=>"http://twitter.com/TriniteeW/status/461708111498452993", "source"=>"Twitter"}, {"contentid"=>"461708077981777921", "ldate"=>"Thu May 01 03:25:58 +0000 2014", "author"=>"NօҽӀӀҽ", "perferredUsername"=>"SoChillShawn", "url"=>"http://twitter.com/SoChillShawn/status/461708077981777921", "source"=>"Twitter"}, {"contentid"=>"461708045412626432", "ldate"=>"Thu May 01 03:25:50 +0000 2014", "author"=>"", "perferredUsername"=>"YoutuberTweets", "url"=>"http://twitter.com/YoutuberTweets/status/461708045412626432", "source"=>"Twitter"}, {"contentid"=>"461708030615121921", "ldate"=>"Thu May 01 03:25:47 +0000 2014", "author"=>"Lyshaaaa", "perferredUsername"=>"lalysha_", "url"=>"http://twitter.com/lalysha_/status/461708030615121921", "source"=>"Twitter"}, {"contentid"=>"461708008611782657", "ldate"=>"Thu May 01 03:25:42 +0000 2014", "author"=>"", "perferredUsername"=>"queengilinsky", "url"=>"http://twitter.com/queengilinsky/status/461708008611782657", "source"=>"Twitter"}, {"contentid"=>"461707986340040704", "ldate"=>"Thu May 01 03:25:36 +0000 2014", "author"=>"Nicole M", "perferredUsername"=>"nikkiwhut", "url"=>"http://twitter.com/nikkiwhut/status/461707986340040704", "source"=>"Twitter"}, {"contentid"=>"461707981995122688", "ldate"=>"Thu May 01 03:25:35 +0000 2014", "author"=>"direct.", "perferredUsername"=>"DlRECTING", "url"=>"http://twitter.com/DlRECTING/status/461707981995122688", "source"=>"Twitter"}, {"contentid"=>"461707981537562625", "ldate"=>"Thu May 01 03:25:35 +0000 2014", "author"=>"The Big Shimmy", "perferredUsername"=>"Akhilles_2", "url"=>"http://twitter.com/Akhilles_2/status/461707981537562625", "source"=>"Twitter"}, {"contentid"=>"461707960213721088", "ldate"=>"Thu May 01 03:25:30 +0000 2014", "author"=>"Standing Strong", "perferredUsername"=>"USAKidrauhlCrew", "url"=>"http://twitter.com/USAKidrauhlCrew/status/461707960213721088", "source"=>"Twitter"}, {"contentid"=>"461707945667878912", "ldate"=>"Thu May 01 03:25:27 +0000 2014", "author"=>"Justin Monroe", "perferredUsername"=>"JustinMonroe17", "url"=>"http://twitter.com/JustinMonroe17/status/461707945667878912", "source"=>"Twitter"}, {"contentid"=>"461707931793104896", "ldate"=>"Thu May 01 03:25:23 +0000 2014", "author"=>"protein", "perferredUsername"=>"NashtyEm", "url"=>"http://twitter.com/NashtyEm/status/461707931793104896", "source"=>"Twitter"}, {"contentid"=>"461707901657047041", "ldate"=>"Thu May 01 03:25:16 +0000 2014", "author"=>"Anna Tytus", "perferredUsername"=>"atytuss", "url"=>"http://twitter.com/atytuss/status/461707901657047041", "source"=>"Twitter"}, {"contentid"=>"461707874964484096", "ldate"=>"Thu May 01 03:25:10 +0000 2014", "author"=>"lauren", "perferredUsername"=>"tincancash", "url"=>"http://twitter.com/tincancash/status/461707874964484096", "source"=>"Twitter"}, {"contentid"=>"461707798359719937", "ldate"=>"Thu May 01 03:24:51 +0000 2014", "author"=>"LilShortyBaby ", "perferredUsername"=>"ImShortyYunno_", "url"=>"http://twitter.com/ImShortyYunno_/status/461707798359719937", "source"=>"Twitter"}, {"contentid"=>"461707789035786240", "ldate"=>"Thu May 01 03:24:49 +0000 2014", "author"=>"Skip Baeless", "perferredUsername"=>"leandr321", "url"=>"http://twitter.com/leandr321/status/461707789035786240", "source"=>"Twitter"}, {"contentid"=>"461707543996149760", "ldate"=>"Thu May 01 03:23:51 +0000 2014", "author"=>"Kameryn Farris", "perferredUsername"=>"kameyFbabyy", "url"=>"http://twitter.com/kameyFbabyy/status/461707543996149760", "source"=>"Twitter"}, {"contentid"=>"461707332796559360", "ldate"=>"Thu May 01 03:23:00 +0000 2014", "author"=>"DerppXD `(๑ △ ๑)`*", "perferredUsername"=>"DerppCx", "url"=>"http://twitter.com/DerppCx/status/461707332796559360", "source"=>"Twitter"}, {"contentid"=>"461707148909490176", "ldate"=>"Thu May 01 03:22:17 +0000 2014", "author"=>"Տĸყℓყɳɳ∞", "perferredUsername"=>"skylynnDaigle", "url"=>"http://twitter.com/skylynnDaigle/status/461707148909490176", "source"=>"Twitter"}, {"contentid"=>"461707131604176896", "ldate"=>"Thu May 01 03:22:12 +0000 2014", "author"=>"God's Daughter †", "perferredUsername"=>"iJetSet_Believe", "url"=>"http://twitter.com/iJetSet_Believe/status/461707131604176896", "source"=>"Twitter"}, {"contentid"=>"461707055339171840", "ldate"=>"Thu May 01 03:21:54 +0000 2014", "author"=>"vic", "perferredUsername"=>"vmonteeee", "url"=>"http://twitter.com/vmonteeee/status/461707055339171840", "source"=>"Twitter"}, {"contentid"=>"461707032543125504", "ldate"=>"Thu May 01 03:21:49 +0000 2014", "author"=>"Justin Monroe", "perferredUsername"=>"JustinMonroe17", "url"=>"http://twitter.com/JustinMonroe17/status/461707032543125504", "source"=>"Twitter"}, {"contentid"=>"461707021352333312", "ldate"=>"Thu May 01 03:21:46 +0000 2014", "author"=>"Karina M.A", "perferredUsername"=>"IamKarinaa_", "url"=>"http://twitter.com/IamKarinaa_/status/461707021352333312", "source"=>"Twitter"}, {"contentid"=>"461706977127563264", "ldate"=>"Thu May 01 03:21:36 +0000 2014", "author"=>"ExpressingMotherhood", "perferredUsername"=>"ExMoShow", "url"=>"http://twitter.com/ExMoShow/status/461706977127563264", "source"=>"Twitter"}, {"contentid"=>"461706971196846080", "ldate"=>"Thu May 01 03:21:34 +0000 2014", "author"=>"#NBoyzzDDavis‼️", "perferredUsername"=>"7DDAVIS_", "url"=>"http://twitter.com/7DDAVIS_/status/461706971196846080", "source"=>"Twitter"}, {"contentid"=>"461706887252029440", "ldate"=>"Thu May 01 03:21:14 +0000 2014", "author"=>"elinaaaaa :)", "perferredUsername"=>"elinibikini", "url"=>"http://twitter.com/elinibikini/status/461706887252029440", "source"=>"Twitter"}, {"contentid"=>"461706877571588096", "ldate"=>"Thu May 01 03:21:12 +0000 2014", "author"=>"Justin Monroe", "perferredUsername"=>"JustinMonroe17", "url"=>"http://twitter.com/JustinMonroe17/status/461706877571588096", "source"=>"Twitter"}, {"contentid"=>"461706816645128193", "ldate"=>"Thu May 01 03:20:57 +0000 2014", "author"=>"Fix The Toaster", "perferredUsername"=>"FixTheToaster", "url"=>"http://twitter.com/FixTheToaster/status/461706816645128193", "source"=>"Twitter"}, {"contentid"=>"461706734374236161", "ldate"=>"Thu May 01 03:20:38 +0000 2014", "author"=>"Auxi Team Capt.", "perferredUsername"=>"InFaAuxi", "url"=>"http://twitter.com/InFaAuxi/status/461706734374236161", "source"=>"Twitter"}, {"contentid"=>"461706646041800704", "ldate"=>"Thu May 01 03:20:17 +0000 2014", "author"=>"kathryn lawlor", "perferredUsername"=>"kalmecrazay", "url"=>"http://twitter.com/kalmecrazay/status/461706646041800704", "source"=>"Twitter"}, {"contentid"=>"461706586223050752", "ldate"=>"Thu May 01 03:20:02 +0000 2014", "author"=>"Maverick", "perferredUsername"=>"WalkTall20", "url"=>"http://twitter.com/WalkTall20/status/461706586223050752", "source"=>"Twitter"}, {"contentid"=>"461706526554873856", "ldate"=>"Thu May 01 03:19:48 +0000 2014", "author"=>"fuck.", "perferredUsername"=>"Hannah_Raeee", "url"=>"http://twitter.com/Hannah_Raeee/status/461706526554873856", "source"=>"Twitter"}, {"contentid"=>"461706435660091392", "ldate"=>"Thu May 01 03:19:27 +0000 2014", "author"=>"Justin Monroe", "perferredUsername"=>"JustinMonroe17", "url"=>"http://twitter.com/JustinMonroe17/status/461706435660091392", "source"=>"Twitter"}, {"contentid"=>"461706390365417472", "ldate"=>"Thu May 01 03:19:16 +0000 2014", "author"=>"Jaszzz✨❗", "perferredUsername"=>"Lil_jMARTIN", "url"=>"http://twitter.com/Lil_jMARTIN/status/461706390365417472", "source"=>"Twitter"}, {"contentid"=>"461706086857195521", "ldate"=>"Thu May 01 03:18:03 +0000 2014", "author"=>"Tedarrius Teasley", "perferredUsername"=>"TNT_DaBomb_rNah", "url"=>"http://twitter.com/TNT_DaBomb_rNah/status/461706086857195521", "source"=>"Twitter"}, {"contentid"=>"461706001943519233", "ldate"=>"Thu May 01 03:17:43 +0000 2014", "author"=>"Kathy Winfield ", "perferredUsername"=>"DisneyRoyLadies", "url"=>"http://twitter.com/DisneyRoyLadies/status/461706001943519233", "source"=>"Twitter"}, {"contentid"=>"461705740827103233", "ldate"=>"Thu May 01 03:16:41 +0000 2014", "author"=>"SoCal Legal News", "perferredUsername"=>"SoCalLegalNews", "url"=>"http://twitter.com/SoCalLegalNews/status/461705740827103233", "source"=>"Twitter"}, {"contentid"=>"461705708971388928", "ldate"=>"Thu May 01 03:16:33 +0000 2014", "author"=>"༄Chris༄", "perferredUsername"=>"ChrisAlexio", "url"=>"http://twitter.com/ChrisAlexio/status/461705708971388928", "source"=>"Twitter"}, {"contentid"=>"461705480092811264", "ldate"=>"Thu May 01 03:15:39 +0000 2014", "author"=>"sonia.", "perferredUsername"=>"CallMeSIA", "url"=>"http://twitter.com/CallMeSIA/status/461705480092811264", "source"=>"Twitter"}, {"contentid"=>"461705439353139200", "ldate"=>"Thu May 01 03:15:29 +0000 2014", "author"=>"brigette hurley", "perferredUsername"=>"brigettenicolee", "url"=>"http://twitter.com/brigettenicolee/status/461705439353139200", "source"=>"Twitter"}, {"contentid"=>"461705083819147264", "ldate"=>"Thu May 01 03:14:04 +0000 2014", "author"=>"XCIII", "perferredUsername"=>"worldmkakes", "url"=>"http://twitter.com/worldmkakes/status/461705083819147264", "source"=>"Twitter"}, {"contentid"=>"461705038499299328", "ldate"=>"Thu May 01 03:13:53 +0000 2014", "author"=>"diy •ㅅ•", "perferredUsername"=>"ephemeralxx", "url"=>"http://twitter.com/ephemeralxx/status/461705038499299328", "source"=>"Twitter"}, {"contentid"=>"461704873298247680", "ldate"=>"Thu May 01 03:13:14 +0000 2014", "author"=>"Nectar Clothing", "perferredUsername"=>"nectarclothing", "url"=>"http://twitter.com/nectarclothing/status/461704873298247680", "source"=>"Twitter"}, {"contentid"=>"461704871964835840", "ldate"=>"Thu May 01 03:13:14 +0000 2014", "author"=>"Justin Monroe", "perferredUsername"=>"JustinMonroe17", "url"=>"http://twitter.com/JustinMonroe17/status/461704871964835840", "source"=>"Twitter"}]}, "requestid"=>"2726844c-40d9-42aa-89c3-ace07988e3c1"}
|
284
|
+
I, [2014-04-30T23:28:03.040397 #32088] INFO -- : Prediction loader waiting for scores ...
|
285
|
+
D, [2014-04-30T23:28:03.040432 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
286
|
+
D, [2014-04-30T23:28:03.347065 #32088] DEBUG -- : Adding posts for scout_id: 27
|
287
|
+
D, [2014-04-30T23:28:03.347137 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
288
|
+
D, [2014-04-30T23:28:03.355033 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Florida Sheriffs ", body: "Starting today on Amazon, #Florida residents pay sa...", url: "http://twitter.com/FLSheriffs/status/46170685848331...", source: "Twitter", sentiment: #<BigDecimal:77aeac0,'0.0',9(36)>, leadprob: #<BigDecimal:77ae890,'0.9534022374 296887E0',18(45)>, notleadprob: #<BigDecimal:77ae660,'0.6043093087 94612E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461706858483310593", ldate: "2014-05-01 03:21:07", loadstamp: "2014-05-01 03:28:03", user_id: 7, scout_id: 27>
|
289
|
+
D, [2014-04-30T23:28:03.366896 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Working Trucker", body: "RT @vlramirez12: RT @RepTedDeutch: Graphic: Here's ...", url: "http://twitter.com/workingtrucker/status/4617073090...", source: "Twitter", sentiment: #<BigDecimal:78161c0,'0.0',9(36)>, leadprob: #<BigDecimal:7815f90,'0.8416113026 956229E0',18(45)>, notleadprob: #<BigDecimal:7815d60,'0.6542791501 825362E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461707309010677761", ldate: "2014-05-01 03:22:55", loadstamp: "2014-05-01 03:28:03", user_id: 7, scout_id: 27>
|
290
|
+
D, [2014-04-30T23:28:03.383682 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "SPike", body: "RT @FLORIDABEER: Senators not support Florida Craft...", url: "http://twitter.com/spike1972/status/461707503009816...", source: "Twitter", sentiment: #<BigDecimal:78858b8,'0.0',9(36)>, leadprob: #<BigDecimal:7885688,'0.8670857571 01888E0',18(45)>, notleadprob: #<BigDecimal:7885458,'0.7826696153 773156E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461707503009816576", ldate: "2014-05-01 03:23:41", loadstamp: "2014-05-01 03:28:03", user_id: 7, scout_id: 27>
|
291
|
+
D, [2014-04-30T23:28:03.400330 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Greg Newburn", body: "Awesome! I LOVE new taxes! RT @FLSheriffs: Starting...", url: "http://twitter.com/gnewburn/status/4617075166119239...", source: "Twitter", sentiment: #<BigDecimal:78f50c8,'0.0',9(36)>, leadprob: #<BigDecimal:78f4e98,'0.9211431336 182146E0',18(45)>, notleadprob: #<BigDecimal:78f4c68,'0.4691899582 874828E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461707516611923968", ldate: "2014-05-01 03:23:44", loadstamp: "2014-05-01 03:28:03", user_id: 7, scout_id: 27>
|
292
|
+
I, [2014-04-30T23:28:03.416115 #32088] INFO -- : Total Number of records: 4
|
293
|
+
I, [2014-04-30T23:28:03.416157 #32088] INFO -- : Total Number of records Not Loaded: 0
|
294
|
+
I, [2014-04-30T23:28:03.416186 #32088] INFO -- : Prediction loader waiting for scores ...
|
295
|
+
D, [2014-04-30T23:28:03.416215 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
296
|
+
W, [2014-04-30T23:43:03.088443 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461712297526710272"}, {"content"=>"@taylorcaniff don't text and drive", "contentid"=>"461712176353259520"}, {"content"=>"RT @_itsravennn: @Goola_4 Next Time Imma Drive &' Text You !!! ὤ8ὤA #Rebel", "contentid"=>"461711967275593729"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/piW0TUJYWj Don't Text & Drive", "contentid"=>"461711591667675136"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461711328391229440"}, {"content"=>"@randdybarrera29 can I b ur driving instructor? I promise I don't text and drive", "contentid"=>"461711314193117184"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/KHShfkc0Ry Don't Text & Drive", "contentid"=>"461711233293762560"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/ENFZd4iFBq", "contentid"=>"461711204097204224"}, {"content"=>"\"@loveIymendess: a close family friend of mine died because someone decided to text while driving so yes i'm pissed\" @taylorcaniff", "contentid"=>"461711140762841088"}, {"content"=>"RT @loveIymendess: a close family friend of mine died because someone decided to text while driving so yes i'm pissed", "contentid"=>"461711089223213056"}, {"content"=>"a close family friend of mine died because someone decided to text while driving so yes i'm pissed", "contentid"=>"461711002057195521"}, {"content"=>"I hate seeing people text & drive or on the phone and driving .. I honk my horn until they put the phone down ὠ2ὠ2ὠ2 bitch pay attention ‼️", "contentid"=>"461710883555930112"}, {"content"=>"RT @spookyjamie: Idk why people say no text and drive. Like. I text, eat, change music, paint my toenails, change shirts, etc all without m…", "contentid"=>"461710847468130304"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461710679213223936"}, {"content"=>"Idk why people say no text and drive. Like. I text, eat, change music, paint my toenails, change shirts, etc all without my glasses on ὠ2ὠ2", "contentid"=>"461710657113444353"}, {"content"=>"don't text me while your driving! I am not trying to be on those depressing ass commercials.", "contentid"=>"461710572942131200"}, {"content"=>"Text message marketing is an easy, cost-effective way to drive more business. Go to http://t.co/Rb0s3KIKxe to learn more.", "contentid"=>"461710514024771585"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461710286525710336"}, {"content"=>"RT @_eanom: @__justKiasia you could've text me this lol and if I drive..", "contentid"=>"461710277592219649"}, {"content"=>"“@_eanom: @__justKiasia you could've text me this lol and if I drive..”you're right lol sorry ὠ1 & yay if you do don't forget Ὁ8", "contentid"=>"461710264401137664"}, {"content"=>"#TXTL8RIN Don't worry, you can respond later. Don't text and drive.", "contentid"=>"461710262773354496"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461709980115021824"}, {"content"=>"Enjoy your life, don't text and drive", "contentid"=>"461709899240468480"}, {"content"=>"If we're together, i will text you \"i love you.\" before i drive anywhere incase anythin were to happen those would be my last words to you.", "contentid"=>"461709820584660993"}, {"content"=>"@Goola_4 Next Time Imma Drive &' Text You !!! ὤ8ὤA #Rebel", "contentid"=>"461709704553439232"}, {"content"=>"#TXTL8RIN \"I will not text and drive.\" We should all take this oath.", "contentid"=>"461709557501161472"}, {"content"=>"Woman started talking to me about a text, realized it was Nokia Lumia 1020. Much easier to respond while driving than other platforms", "contentid"=>"461709289564803072"}, {"content"=>"#TXTL8RIN \"You shouldn't text and drive Zack.\" John said to his friend.\n\"I know, thank you for reminding me.\" Zack replied.", "contentid"=>"461709188239212544"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461709088179503104"}, {"content"=>"Since when did the fast lane become the \"drive real slow so I can text\" lane?? *and no I'm not driving while I text this*. ὠ4 #speedup", "contentid"=>"461709046639099904"}, {"content"=>"RT @4foot9_: I don't like for people to text me while they're driving.", "contentid"=>"461708880112656384"}, {"content"=>"and don't text and drive", "contentid"=>"461708739087572992"}, {"content"=>"I drive so slow cuz im in no rush I can do everything driving my paste roll up text / tweet / vine and drink movie life speed #bo$$", "contentid"=>"461708573891100673"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461712297526710272", "ldate"=>"Thu May 01 03:42:44 +0000 2014", "author"=>" Yehet", "perferredUsername"=>"aileenaad", "url"=>"http://twitter.com/aileenaad/status/461712297526710272", "source"=>"Twitter"}, {"contentid"=>"461712176353259520", "ldate"=>"Thu May 01 03:42:15 +0000 2014", "author"=>"PLEASE CAM", "perferredUsername"=>"t0turntmatt", "url"=>"http://twitter.com/t0turntmatt/status/461712176353259520", "source"=>"Twitter"}, {"contentid"=>"461711967275593729", "ldate"=>"Thu May 01 03:41:25 +0000 2014", "author"=>"GOOLA #FREEHAMPT", "perferredUsername"=>"Goola_4", "url"=>"http://twitter.com/Goola_4/status/461711967275593729", "source"=>"Twitter"}, {"contentid"=>"461711591667675136", "ldate"=>"Thu May 01 03:39:56 +0000 2014", "author"=>"LovelyDayDylan ∞", "perferredUsername"=>"LovelyDayDylan", "url"=>"http://twitter.com/LovelyDayDylan/status/461711591667675136", "source"=>"Twitter"}, {"contentid"=>"461711328391229440", "ldate"=>"Thu May 01 03:38:53 +0000 2014", "author"=>"Krystal ", "perferredUsername"=>"Wilfordyzr", "url"=>"http://twitter.com/Wilfordyzr/status/461711328391229440", "source"=>"Twitter"}, {"contentid"=>"461711314193117184", "ldate"=>"Thu May 01 03:38:50 +0000 2014", "author"=>"Cristina", "perferredUsername"=>"10cristinaa", "url"=>"http://twitter.com/10cristinaa/status/461711314193117184", "source"=>"Twitter"}, {"contentid"=>"461711233293762560", "ldate"=>"Thu May 01 03:38:30 +0000 2014", "author"=>"hippoplaysvidoegames", "perferredUsername"=>"hippoplaysgames", "url"=>"http://twitter.com/hippoplaysgames/status/461711233293762560", "source"=>"Twitter"}, {"contentid"=>"461711204097204224", "ldate"=>"Thu May 01 03:38:23 +0000 2014", "author"=>"Jessica Arce", "perferredUsername"=>"QueenJurs", "url"=>"http://twitter.com/QueenJurs/status/461711204097204224", "source"=>"Twitter"}, {"contentid"=>"461711140762841088", "ldate"=>"Thu May 01 03:38:08 +0000 2014", "author"=>"Diana ", "perferredUsername"=>"wantingmendes_", "url"=>"http://twitter.com/wantingmendes_/status/461711140762841088", "source"=>"Twitter"}, {"contentid"=>"461711089223213056", "ldate"=>"Thu May 01 03:37:56 +0000 2014", "author"=>"Diana ", "perferredUsername"=>"wantingmendes_", "url"=>"http://twitter.com/wantingmendes_/status/461711089223213056", "source"=>"Twitter"}, {"contentid"=>"461711002057195521", "ldate"=>"Thu May 01 03:37:35 +0000 2014", "author"=>"em", "perferredUsername"=>"loveIymendess", "url"=>"http://twitter.com/loveIymendess/status/461711002057195521", "source"=>"Twitter"}, {"contentid"=>"461710883555930112", "ldate"=>"Thu May 01 03:37:07 +0000 2014", "author"=>"shanae williams", "perferredUsername"=>"mrs_shanae2u", "url"=>"http://twitter.com/mrs_shanae2u/status/461710883555930112", "source"=>"Twitter"}, {"contentid"=>"461710847468130304", "ldate"=>"Thu May 01 03:36:58 +0000 2014", "author"=>"mb", "perferredUsername"=>"mbwestcoast", "url"=>"http://twitter.com/mbwestcoast/status/461710847468130304", "source"=>"Twitter"}, {"contentid"=>"461710679213223936", "ldate"=>"Thu May 01 03:36:18 +0000 2014", "author"=>"YDB", "perferredUsername"=>"GODUCHIHA1995", "url"=>"http://twitter.com/GODUCHIHA1995/status/461710679213223936", "source"=>"Twitter"}, {"contentid"=>"461710657113444353", "ldate"=>"Thu May 01 03:36:13 +0000 2014", "author"=>"Jamie", "perferredUsername"=>"spookyjamie", "url"=>"http://twitter.com/spookyjamie/status/461710657113444353", "source"=>"Twitter"}, {"contentid"=>"461710572942131200", "ldate"=>"Thu May 01 03:35:53 +0000 2014", "author"=>"SH_INE", "perferredUsername"=>"Shi_BeChillin", "url"=>"http://twitter.com/Shi_BeChillin/status/461710572942131200", "source"=>"Twitter"}, {"contentid"=>"461710514024771585", "ldate"=>"Thu May 01 03:35:39 +0000 2014", "author"=>"Nessie ", "perferredUsername"=>"RealReader19", "url"=>"http://twitter.com/RealReader19/status/461710514024771585", "source"=>"Twitter"}, {"contentid"=>"461710286525710336", "ldate"=>"Thu May 01 03:34:45 +0000 2014", "author"=>"sobrina ivana", "perferredUsername"=>"lemmenssobrina", "url"=>"http://twitter.com/lemmenssobrina/status/461710286525710336", "source"=>"Twitter"}, {"contentid"=>"461710277592219649", "ldate"=>"Thu May 01 03:34:43 +0000 2014", "author"=>"Lonny B", "perferredUsername"=>"__justKiasia", "url"=>"http://twitter.com/__justKiasia/status/461710277592219649", "source"=>"Twitter"}, {"contentid"=>"461710264401137664", "ldate"=>"Thu May 01 03:34:39 +0000 2014", "author"=>"Lonny B", "perferredUsername"=>"__justKiasia", "url"=>"http://twitter.com/__justKiasia/status/461710264401137664", "source"=>"Twitter"}, {"contentid"=>"461710262773354496", "ldate"=>"Thu May 01 03:34:39 +0000 2014", "author"=>"Justin Monroe", "perferredUsername"=>"JustinMonroe17", "url"=>"http://twitter.com/JustinMonroe17/status/461710262773354496", "source"=>"Twitter"}, {"contentid"=>"461709980115021824", "ldate"=>"Thu May 01 03:33:32 +0000 2014", "author"=>"đяagšøиƼ", "perferredUsername"=>"Draggyness", "url"=>"http://twitter.com/Draggyness/status/461709980115021824", "source"=>"Twitter"}, {"contentid"=>"461709899240468480", "ldate"=>"Thu May 01 03:33:12 +0000 2014", "author"=>"beetlejuice", "perferredUsername"=>"Joshysaur", "url"=>"http://twitter.com/Joshysaur/status/461709899240468480", "source"=>"Twitter"}, {"contentid"=>"461709820584660993", "ldate"=>"Thu May 01 03:32:54 +0000 2014", "author"=>"Countrygirl at Heart", "perferredUsername"=>"countryhearted4", "url"=>"http://twitter.com/countryhearted4/status/461709820584660993", "source"=>"Twitter"}, {"contentid"=>"461709704553439232", "ldate"=>"Thu May 01 03:32:26 +0000 2014", "author"=>"ItsRavenNiggah", "perferredUsername"=>"_itsravennn", "url"=>"http://twitter.com/_itsravennn/status/461709704553439232", "source"=>"Twitter"}, {"contentid"=>"461709557501161472", "ldate"=>"Thu May 01 03:31:51 +0000 2014", "author"=>"Justin Monroe", "perferredUsername"=>"JustinMonroe17", "url"=>"http://twitter.com/JustinMonroe17/status/461709557501161472", "source"=>"Twitter"}, {"contentid"=>"461709289564803072", "ldate"=>"Thu May 01 03:30:47 +0000 2014", "author"=>"Jon Vales", "perferredUsername"=>"jonvales", "url"=>"http://twitter.com/jonvales/status/461709289564803072", "source"=>"Twitter"}, {"contentid"=>"461709188239212544", "ldate"=>"Thu May 01 03:30:23 +0000 2014", "author"=>"Justin Monroe", "perferredUsername"=>"JustinMonroe17", "url"=>"http://twitter.com/JustinMonroe17/status/461709188239212544", "source"=>"Twitter"}, {"contentid"=>"461709088179503104", "ldate"=>"Thu May 01 03:29:59 +0000 2014", "author"=>"april", "perferredUsername"=>"narryshawty", "url"=>"http://twitter.com/narryshawty/status/461709088179503104", "source"=>"Twitter"}, {"contentid"=>"461709046639099904", "ldate"=>"Thu May 01 03:29:49 +0000 2014", "author"=>"Desi Stout", "perferredUsername"=>"desistout", "url"=>"http://twitter.com/desistout/status/461709046639099904", "source"=>"Twitter"}, {"contentid"=>"461708880112656384", "ldate"=>"Thu May 01 03:29:09 +0000 2014", "author"=>"Desta", "perferredUsername"=>"kvngdesta", "url"=>"http://twitter.com/kvngdesta/status/461708880112656384", "source"=>"Twitter"}, {"contentid"=>"461708739087572992", "ldate"=>"Thu May 01 03:28:36 +0000 2014", "author"=>"canizzle", "perferredUsername"=>"snortcaniff", "url"=>"http://twitter.com/snortcaniff/status/461708739087572992", "source"=>"Twitter"}, {"contentid"=>"461708573891100673", "ldate"=>"Thu May 01 03:27:56 +0000 2014", "author"=>"❤️", "perferredUsername"=>"Coya_Benjamin", "url"=>"http://twitter.com/Coya_Benjamin/status/461708573891100673", "source"=>"Twitter"}]}, "requestid"=>"56287f2e-ad4e-4b47-88d5-0236702fc159"}
|
297
|
+
I, [2014-04-30T23:43:03.088536 #32088] INFO -- : Prediction loader waiting for scores ...
|
298
|
+
D, [2014-04-30T23:43:03.088571 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
299
|
+
D, [2014-04-30T23:43:03.436709 #32088] DEBUG -- : Adding posts for scout_id: 27
|
300
|
+
D, [2014-04-30T23:43:03.437843 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Jax Florida", body: "RT @ActionNewsJax: Sources tell Action News a local...", url: "http://twitter.com/jax_florida/status/4617086169875...", source: "Twitter", sentiment: #<BigDecimal:7a6c7d0,'0.0',9(36)>, leadprob: #<BigDecimal:7a6fe58,'0.3481537715 280796E0',18(45)>, notleadprob: #<BigDecimal:7a6fc28,'0.9726890839 532716E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461708616987582466", ldate: "2014-05-01 03:28:07", loadstamp: "2014-05-01 03:43:03", user_id: 7, scout_id: 27>
|
301
|
+
D, [2014-04-30T23:43:03.451831 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "SharePoint AMS", body: "Amazon Begins Collecting Florida Taxes for Internet...", url: "http://twitter.com/SharePointAMS/status/46170886719...", source: "Twitter", sentiment: #<BigDecimal:7adb680,'0.0',9(36)>, leadprob: #<BigDecimal:7adb450,'0.8858141585 90992E0',18(45)>, notleadprob: #<BigDecimal:7adb220,'0.6239374267 78747E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461708867198402560", ldate: "2014-05-01 03:29:06", loadstamp: "2014-05-01 03:43:03", user_id: 7, scout_id: 27>
|
302
|
+
D, [2014-04-30T23:43:03.468477 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Christine", body: "RT @vlramirez12: RT @RepTedDeutch: Graphic: Here's ...", url: "http://twitter.com/hellion1111/status/4617095134613...", source: "Twitter", sentiment: #<BigDecimal:7d56db0,'0.0',9(36)>, leadprob: #<BigDecimal:7d56b80,'0.8416113026 956229E0',18(45)>, notleadprob: #<BigDecimal:7d56950,'0.6542791501 825362E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461709513461334016", ldate: "2014-05-01 03:31:40", loadstamp: "2014-05-01 03:43:03", user_id: 7, scout_id: 27>
|
303
|
+
D, [2014-04-30T23:43:03.485092 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Usum", body: "#Amazon Begins Collecting #Florida Taxes for Intern...", url: "http://twitter.com/usumtwit/status/4617113864106270...", source: "Twitter", sentiment: #<BigDecimal:7cba488,'0.0',9(36)>, leadprob: #<BigDecimal:7cba258,'0.9317877601 079854E0',18(45)>, notleadprob: #<BigDecimal:7cba028,'0.6338048606 766785E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461711386410627073", ldate: "2014-05-01 03:39:07", loadstamp: "2014-05-01 03:43:03", user_id: 7, scout_id: 27>
|
304
|
+
I, [2014-04-30T23:43:03.500930 #32088] INFO -- : Total Number of records: 4
|
305
|
+
I, [2014-04-30T23:43:03.500972 #32088] INFO -- : Total Number of records Not Loaded: 0
|
306
|
+
I, [2014-04-30T23:43:03.501001 #32088] INFO -- : Prediction loader waiting for scores ...
|
307
|
+
D, [2014-04-30T23:43:03.501030 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
308
|
+
W, [2014-04-30T23:59:01.915667 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"ὠ2ὠ2 reasons to not drive and text you mess up too muchὢ9ὠ2 @AshlieNgreen http://t.co/esDin6E9Ls", "contentid"=>"461716036287340544"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/sPDssutmzx Don't Text & Drive", "contentid"=>"461715778006708225"}, {"content"=>"Hope all the people need to learn to stop text and attention to drive safety.", "contentid"=>"461715607851773952"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/WDW1JJq8B7 Don't Text & Drive", "contentid"=>"461715029155676160"}, {"content"=>"RT @coneyislandyayo: Thanks mom for encouraging me to text and drive (:", "contentid"=>"461714521032105985"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461714494289244162"}, {"content"=>"Thanks mom for encouraging me to text and drive (:", "contentid"=>"461714442544091136"}, {"content"=>"\"I'll text you back I'm driving\"", "contentid"=>"461714377142308864"}, {"content"=>"My daddy need to stop trying to text & drive ὢ1", "contentid"=>"461713833929617411"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461713757807190016"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461713507583422464"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461713368760336385"}, {"content"=>"@raegan_may text me back so we can schedule drive times", "contentid"=>"461713307271827457"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461713163281788929"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461713058172121088"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461713054078468096"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461712959308197888"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461712689564102656"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461712669536301056"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461712657007923202"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461712578528288769"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461716036287340544", "ldate"=>"Thu May 01 03:57:35 +0000 2014", "author"=>"Carly Alexander☯☮✝", "perferredUsername"=>"Alexander3Carly", "url"=>"http://twitter.com/Alexander3Carly/status/461716036287340544", "source"=>"Twitter"}, {"contentid"=>"461715778006708225", "ldate"=>"Thu May 01 03:56:34 +0000 2014", "author"=>"robert", "perferredUsername"=>"littlebigmansod", "url"=>"http://twitter.com/littlebigmansod/status/461715778006708225", "source"=>"Twitter"}, {"contentid"=>"461715607851773952", "ldate"=>"Thu May 01 03:55:53 +0000 2014", "author"=>":-) Jessica :-)", "perferredUsername"=>"rebelgirl42081", "url"=>"http://twitter.com/rebelgirl42081/status/461715607851773952", "source"=>"Twitter"}, {"contentid"=>"461715029155676160", "ldate"=>"Thu May 01 03:53:35 +0000 2014", "author"=>"David", "perferredUsername"=>"itsphantomzHD", "url"=>"http://twitter.com/itsphantomzHD/status/461715029155676160", "source"=>"Twitter"}, {"contentid"=>"461714521032105985", "ldate"=>"Thu May 01 03:51:34 +0000 2014", "author"=>"♡Lana Today♡", "perferredUsername"=>"alana1101", "url"=>"http://twitter.com/alana1101/status/461714521032105985", "source"=>"Twitter"}, {"contentid"=>"461714494289244162", "ldate"=>"Thu May 01 03:51:28 +0000 2014", "author"=>" ✨", "perferredUsername"=>"amant_blanc", "url"=>"http://twitter.com/amant_blanc/status/461714494289244162", "source"=>"Twitter"}, {"contentid"=>"461714442544091136", "ldate"=>"Thu May 01 03:51:16 +0000 2014", "author"=>"LDR", "perferredUsername"=>"coneyislandyayo", "url"=>"http://twitter.com/coneyislandyayo/status/461714442544091136", "source"=>"Twitter"}, {"contentid"=>"461714377142308864", "ldate"=>"Thu May 01 03:51:00 +0000 2014", "author"=>"E M I L Y", "perferredUsername"=>"bulIocks", "url"=>"http://twitter.com/bulIocks/status/461714377142308864", "source"=>"Twitter"}, {"contentid"=>"461713833929617411", "ldate"=>"Thu May 01 03:48:50 +0000 2014", "author"=>"Kaylan❤️", "perferredUsername"=>"Alwaysss_Kayyy", "url"=>"http://twitter.com/Alwaysss_Kayyy/status/461713833929617411", "source"=>"Twitter"}, {"contentid"=>"461713757807190016", "ldate"=>"Thu May 01 03:48:32 +0000 2014", "author"=>"Cortavius Tyree ", "perferredUsername"=>"Tavi_KingMe", "url"=>"http://twitter.com/Tavi_KingMe/status/461713757807190016", "source"=>"Twitter"}, {"contentid"=>"461713507583422464", "ldate"=>"Thu May 01 03:47:33 +0000 2014", "author"=>"Kerri Turman", "perferredUsername"=>"KerriJo2014", "url"=>"http://twitter.com/KerriJo2014/status/461713507583422464", "source"=>"Twitter"}, {"contentid"=>"461713368760336385", "ldate"=>"Thu May 01 03:47:00 +0000 2014", "author"=>"shauntaa", "perferredUsername"=>"FlawlessTaa__", "url"=>"http://twitter.com/FlawlessTaa__/status/461713368760336385", "source"=>"Twitter"}, {"contentid"=>"461713307271827457", "ldate"=>"Thu May 01 03:46:45 +0000 2014", "author"=>"erin flanigen", "perferredUsername"=>"ErinFlanigen_", "url"=>"http://twitter.com/ErinFlanigen_/status/461713307271827457", "source"=>"Twitter"}, {"contentid"=>"461713163281788929", "ldate"=>"Thu May 01 03:46:11 +0000 2014", "author"=>"Cereal Fanclub", "perferredUsername"=>"MeghanSheeran", "url"=>"http://twitter.com/MeghanSheeran/status/461713163281788929", "source"=>"Twitter"}, {"contentid"=>"461713058172121088", "ldate"=>"Thu May 01 03:45:45 +0000 2014", "author"=>"Llama", "perferredUsername"=>"freedsyd2016", "url"=>"http://twitter.com/freedsyd2016/status/461713058172121088", "source"=>"Twitter"}, {"contentid"=>"461713054078468096", "ldate"=>"Thu May 01 03:45:44 +0000 2014", "author"=>"X'O", "perferredUsername"=>"Shadariaxo", "url"=>"http://twitter.com/Shadariaxo/status/461713054078468096", "source"=>"Twitter"}, {"contentid"=>"461712959308197888", "ldate"=>"Thu May 01 03:45:22 +0000 2014", "author"=>"Demi", "perferredUsername"=>"DSS5SOS", "url"=>"http://twitter.com/DSS5SOS/status/461712959308197888", "source"=>"Twitter"}, {"contentid"=>"461712689564102656", "ldate"=>"Thu May 01 03:44:18 +0000 2014", "author"=>"May 3rd!!!!!!!", "perferredUsername"=>"JUMPMANDAVIS", "url"=>"http://twitter.com/JUMPMANDAVIS/status/461712689564102656", "source"=>"Twitter"}, {"contentid"=>"461712669536301056", "ldate"=>"Thu May 01 03:44:13 +0000 2014", "author"=>"GÖLDËN_ÇHIŁD", "perferredUsername"=>"4Cortezlevering", "url"=>"http://twitter.com/4Cortezlevering/status/461712669536301056", "source"=>"Twitter"}, {"contentid"=>"461712657007923202", "ldate"=>"Thu May 01 03:44:10 +0000 2014", "author"=>" ", "perferredUsername"=>"KhristophTravon", "url"=>"http://twitter.com/KhristophTravon/status/461712657007923202", "source"=>"Twitter"}, {"contentid"=>"461712578528288769", "ldate"=>"Thu May 01 03:43:51 +0000 2014", "author"=>"Rickay ", "perferredUsername"=>"QueenRickay", "url"=>"http://twitter.com/QueenRickay/status/461712578528288769", "source"=>"Twitter"}]}, "requestid"=>"faef80e5-d57d-4701-b300-1829189a1422"}
|
309
|
+
I, [2014-04-30T23:59:01.915746 #32088] INFO -- : Prediction loader waiting for scores ...
|
310
|
+
D, [2014-04-30T23:59:01.915780 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
311
|
+
D, [2014-04-30T23:59:02.157764 #32088] DEBUG -- : Adding posts for scout_id: 27
|
312
|
+
D, [2014-04-30T23:59:02.157837 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
313
|
+
D, [2014-04-30T23:59:02.165892 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Meaux", body: "Florida isn't that conservative.\n\nLet all the minor...", url: "http://twitter.com/MoniqueAHenry/status/46171249669...", source: "Twitter", sentiment: #<BigDecimal:7b1fbc8,'0.0',9(36)>, leadprob: #<BigDecimal:7b1f998,'0.8218599355 755783E0',18(45)>, notleadprob: #<BigDecimal:7b1f768,'0.8747993671 019394E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461712496693231616", ldate: "2014-05-01 03:43:32", loadstamp: "2014-05-01 03:59:02", user_id: 7, scout_id: 27>
|
314
|
+
D, [2014-04-30T23:59:02.182063 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Jay Reid", body: "RT @FLSheriffs: Starting today on Amazon, #Florida ...", url: "http://twitter.com/kg4ojj/status/461712729406205952...", source: "Twitter", sentiment: #<BigDecimal:7b86df0,'0.0',9(36)>, leadprob: #<BigDecimal:7b86b70,'0.8679444231 686726E0',18(45)>, notleadprob: #<BigDecimal:7b86940,'0.6694729129 239936E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461712729406205952", ldate: "2014-05-01 03:44:27", loadstamp: "2014-05-01 03:59:02", user_id: 7, scout_id: 27>
|
315
|
+
D, [2014-04-30T23:59:02.198698 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Marlins Wire", body: "#Marlins Wire: What a difference: Marlins showing g...", url: "http://twitter.com/marlinspress/status/461715146499...", source: "Twitter", sentiment: #<BigDecimal:7d69398,'0.0',9(36)>, leadprob: #<BigDecimal:7d69168,'0.8845964163 862032E0',18(45)>, notleadprob: #<BigDecimal:7d68f38,'0.7819891765 246139E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461715146499321856", ldate: "2014-05-01 03:54:03", loadstamp: "2014-05-01 03:59:02", user_id: 7, scout_id: 27>
|
316
|
+
D, [2014-04-30T23:59:02.215363 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "FOX Sports Florida", body: "What a difference a year makes. The #Marlins showin...", url: "http://twitter.com/SunSportsFOXFL/status/4617152165...", source: "Twitter", sentiment: #<BigDecimal:7708a80,'0.0',9(36)>, leadprob: #<BigDecimal:7708850,'0.8744119389 79755E0',18(45)>, notleadprob: #<BigDecimal:7708620,'0.7618549559 948705E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461715216519004160", ldate: "2014-05-01 03:54:20", loadstamp: "2014-05-01 03:59:02", user_id: 7, scout_id: 27>
|
317
|
+
D, [2014-04-30T23:59:02.232163 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Dori (Mrlns Spr Fan)", body: "RT @SunSportsFOXFL: What a difference a year makes....", url: "http://twitter.com/DoriMarlin/status/46171623279507...", source: "Twitter", sentiment: #<BigDecimal:7ee0258,'0.0',9(36)>, leadprob: #<BigDecimal:7ee0028,'0.7180095668 040893E0',18(45)>, notleadprob: #<BigDecimal:7ee7da0,'0.8521778392 287722E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461716232795074560", ldate: "2014-05-01 03:58:22", loadstamp: "2014-05-01 03:59:02", user_id: 7, scout_id: 27>
|
318
|
+
D, [2014-04-30T23:59:02.248731 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Krizzles", body: "RT @SunSportsFOXFL: What a difference a year makes....", url: "http://twitter.com/kriztweetsalot/status/4617162664...", source: "Twitter", sentiment: #<BigDecimal:7dfb928,'0.0',9(36)>, leadprob: #<BigDecimal:7dfb6f8,'0.7180095668 040893E0',18(45)>, notleadprob: #<BigDecimal:7dfb4c8,'0.8521778392 287722E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461716266429194240", ldate: "2014-05-01 03:58:30", loadstamp: "2014-05-01 03:59:02", user_id: 7, scout_id: 27>
|
319
|
+
I, [2014-04-30T23:59:02.264519 #32088] INFO -- : Total Number of records: 6
|
320
|
+
I, [2014-04-30T23:59:02.264561 #32088] INFO -- : Total Number of records Not Loaded: 0
|
321
|
+
I, [2014-04-30T23:59:02.264590 #32088] INFO -- : Prediction loader waiting for scores ...
|
322
|
+
D, [2014-04-30T23:59:02.264618 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
323
|
+
W, [2014-05-01T00:14:02.760544 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"I get scared to text my friends back or even snapchat them while they're driving. #notextinganddriving ", "contentid"=>"461719430188122112"}, {"content"=>"Text message marketing is an easy, cost-effective way to drive more business. Go to http://t.co/0P6gtH9dWe to learn more.", "contentid"=>"461719290048028672"}, {"content"=>"Every time I pick up my phone to text while I'm driving. I hear her voice and I put it down. . Smh", "contentid"=>"461718908496408576"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/C4T5JOKvJc Don't Text & Drive", "contentid"=>"461718097817513984"}, {"content"=>"Idk how people can drunk text their exs. Like I just can't do it. But I could do a drunken bus drive running a few of them over. Ἴ3ὨDἷBὈ3ὠ2", "contentid"=>"461717967265210368"}, {"content"=>"don't text and drive ὡ0", "contentid"=>"461717726088941568"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461717654995087362"}, {"content"=>"Jk I can't drive drunk. I can barely walk or text.", "contentid"=>"461717625018413056"}, {"content"=>"“@ChrisPc200: To all my friends who are driving tonight, be safe & don't text & drive it's raining cats & dogs in this bitchh”", "contentid"=>"461717406617198592"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461717381208084480"}, {"content"=>"@CholleySayWhaa good because I'm not trying to drive lol text me", "contentid"=>"461717239268253696"}, {"content"=>"To all my friends who are driving tonight, be safe & don't text & drive it's raining cats & dogs in this bitchh", "contentid"=>"461717237523836929"}, {"content"=>"There's nothing we can do about it either, you can say don't text and drive or don't do drugs. Don't do this or that. But if it's your time", "contentid"=>"461717141566152704"}, {"content"=>"My exhaust fell off my fuckin car good example of why you shouldn't text and drive kids", "contentid"=>"461716937295147008"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/yckxE7B41Y Don't Text & Drive", "contentid"=>"461716926021267456"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461716504942104576"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/g4UK2J2sgo Don't Text & Drive", "contentid"=>"461716468250734592"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461719430188122112", "ldate"=>"Thu May 01 04:11:05 +0000 2014", "author"=>"☮GLENNCOCO☮", "perferredUsername"=>"resilience_96", "url"=>"http://twitter.com/resilience_96/status/461719430188122112", "source"=>"Twitter"}, {"contentid"=>"461719290048028672", "ldate"=>"Thu May 01 04:10:31 +0000 2014", "author"=>"Tanisha Howard", "perferredUsername"=>"tanisha2909", "url"=>"http://twitter.com/tanisha2909/status/461719290048028672", "source"=>"Twitter"}, {"contentid"=>"461718908496408576", "ldate"=>"Thu May 01 04:09:00 +0000 2014", "author"=>"Gabby ", "perferredUsername"=>"Humbl3_Boss", "url"=>"http://twitter.com/Humbl3_Boss/status/461718908496408576", "source"=>"Twitter"}, {"contentid"=>"461718097817513984", "ldate"=>"Thu May 01 04:05:47 +0000 2014", "author"=>"thehenryroxmysox", "perferredUsername"=>"henryroxmysox", "url"=>"http://twitter.com/henryroxmysox/status/461718097817513984", "source"=>"Twitter"}, {"contentid"=>"461717967265210368", "ldate"=>"Thu May 01 04:05:16 +0000 2014", "author"=>"Krissy", "perferredUsername"=>"krissycross15", "url"=>"http://twitter.com/krissycross15/status/461717967265210368", "source"=>"Twitter"}, {"contentid"=>"461717726088941568", "ldate"=>"Thu May 01 04:04:18 +0000 2014", "author"=>"lana", "perferredUsername"=>"yourqueenalana", "url"=>"http://twitter.com/yourqueenalana/status/461717726088941568", "source"=>"Twitter"}, {"contentid"=>"461717654995087362", "ldate"=>"Thu May 01 04:04:01 +0000 2014", "author"=>"luis terrazas ", "perferredUsername"=>"Delossantosoxx", "url"=>"http://twitter.com/Delossantosoxx/status/461717654995087362", "source"=>"Twitter"}, {"contentid"=>"461717625018413056", "ldate"=>"Thu May 01 04:03:54 +0000 2014", "author"=>"keaten", "perferredUsername"=>"keatenw", "url"=>"http://twitter.com/keatenw/status/461717625018413056", "source"=>"Twitter"}, {"contentid"=>"461717406617198592", "ldate"=>"Thu May 01 04:03:02 +0000 2014", "author"=>"brittttt ❁", "perferredUsername"=>"_alluringbliss", "url"=>"http://twitter.com/_alluringbliss/status/461717406617198592", "source"=>"Twitter"}, {"contentid"=>"461717381208084480", "ldate"=>"Thu May 01 04:02:56 +0000 2014", "author"=>"Chuchie", "perferredUsername"=>"magpiex0", "url"=>"http://twitter.com/magpiex0/status/461717381208084480", "source"=>"Twitter"}, {"contentid"=>"461717239268253696", "ldate"=>"Thu May 01 04:02:22 +0000 2014", "author"=>"sauda__✨", "perferredUsername"=>"Sauda__", "url"=>"http://twitter.com/Sauda__/status/461717239268253696", "source"=>"Twitter"}, {"contentid"=>"461717237523836929", "ldate"=>"Thu May 01 04:02:22 +0000 2014", "author"=>"Perfect Connect", "perferredUsername"=>"ChrisPc200", "url"=>"http://twitter.com/ChrisPc200/status/461717237523836929", "source"=>"Twitter"}, {"contentid"=>"461717141566152704", "ldate"=>"Thu May 01 04:01:59 +0000 2014", "author"=>"Stephen Bauman", "perferredUsername"=>"Stephen_Bauman", "url"=>"http://twitter.com/Stephen_Bauman/status/461717141566152704", "source"=>"Twitter"}, {"contentid"=>"461716937295147008", "ldate"=>"Thu May 01 04:01:10 +0000 2014", "author"=>"car ruiner ", "perferredUsername"=>"eazymoneyEdd", "url"=>"http://twitter.com/eazymoneyEdd/status/461716937295147008", "source"=>"Twitter"}, {"contentid"=>"461716926021267456", "ldate"=>"Thu May 01 04:01:08 +0000 2014", "author"=>"Kyle(Thunda)", "perferredUsername"=>"FatThunda", "url"=>"http://twitter.com/FatThunda/status/461716926021267456", "source"=>"Twitter"}, {"contentid"=>"461716504942104576", "ldate"=>"Thu May 01 03:59:27 +0000 2014", "author"=>"Someone △", "perferredUsername"=>"mardhiah_ainur", "url"=>"http://twitter.com/mardhiah_ainur/status/461716504942104576", "source"=>"Twitter"}, {"contentid"=>"461716468250734592", "ldate"=>"Thu May 01 03:59:18 +0000 2014", "author"=>"Exclusive Emoji", "perferredUsername"=>"ExclusiveEmoji", "url"=>"http://twitter.com/ExclusiveEmoji/status/461716468250734592", "source"=>"Twitter"}]}, "requestid"=>"6923ebd7-8e6c-4432-a5bd-6b8304edc6f5"}
|
324
|
+
I, [2014-05-01T00:14:02.760628 #32088] INFO -- : Prediction loader waiting for scores ...
|
325
|
+
D, [2014-05-01T00:14:02.760662 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
326
|
+
D, [2014-05-01T00:14:03.221876 #32088] DEBUG -- : Adding posts for scout_id: 27
|
327
|
+
D, [2014-05-01T00:14:03.221947 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
328
|
+
D, [2014-05-01T00:14:03.268807 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "P I C U", body: "RT @FLSheriffs: Starting today on Amazon, #Florida ...", url: "http://twitter.com/JuanVega3000/status/461716596789...", source: "Twitter", sentiment: #<BigDecimal:7e9cee0,'0.0',9(36)>, leadprob: #<BigDecimal:7e9ccb0,'0.8679444231 686726E0',18(45)>, notleadprob: #<BigDecimal:7e9ca80,'0.6694729129 239936E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461716596789379072", ldate: "2014-05-01 03:59:49", loadstamp: "2014-05-01 04:14:03", user_id: 7, scout_id: 27>
|
329
|
+
D, [2014-05-01T00:14:03.280575 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Max Tsaparis", body: "RT @FLSheriffs: Starting today on Amazon, #Florida ...", url: "http://twitter.com/MaxTsaparis/status/4617180814261...", source: "Twitter", sentiment: #<BigDecimal:7e2ac78,'0.0',9(36)>, leadprob: #<BigDecimal:7e2aa48,'0.8679444231 686726E0',18(45)>, notleadprob: #<BigDecimal:7e2a818,'0.6694729129 239936E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461718081426186240", ldate: "2014-05-01 04:05:43", loadstamp: "2014-05-01 04:14:03", user_id: 7, scout_id: 27>
|
330
|
+
I, [2014-05-01T00:14:03.296470 #32088] INFO -- : Total Number of records: 2
|
331
|
+
I, [2014-05-01T00:14:03.296520 #32088] INFO -- : Total Number of records Not Loaded: 0
|
332
|
+
I, [2014-05-01T00:14:03.296549 #32088] INFO -- : Prediction loader waiting for scores ...
|
333
|
+
D, [2014-05-01T00:14:03.296580 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
334
|
+
W, [2014-05-01T00:29:03.664611 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"Baby text me said slow down in the rental but how can I drive slow with so much on my mental", "contentid"=>"461723370766475264"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/7VcmRZ9Qbi Don't Text & Drive", "contentid"=>"461723208597909504"}, {"content"=>"My dad tells me to not talk/text and drive but still calls me when I'm driving. ὤ9", "contentid"=>"461723173583466496"}, {"content"=>"@umBLOWINSTRONG : swear I was bout to dawg kc ass just text me lol if she try drive I'm down lol .", "contentid"=>"461723095192305664"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461722708581961729"}, {"content"=>"@tshain_12 you text, snapchat and tweet while driving ὄC", "contentid"=>"461722531829788672"}, {"content"=>"ya,accidents happen 4other reasons/distractions.Yet,plz.,plz. don't text & drive.May think won't happen.Well,it doesn't until...,it DOES.ὡE", "contentid"=>"461722454441070592"}, {"content"=>"CAN YOU NOT FUCKING TEXT AND DRIVE!! HOLY SHIT!!!!", "contentid"=>"461722292678959105"}, {"content"=>"RT @Luvvchloee: Don't text and drive \u1F4F1Ὡ8 My brother https://t.co/1AANWcnHIT", "contentid"=>"461722125486010369"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461722014932537344"}, {"content"=>"One thing I will NEVER do is text while driving on a bridge with a large body of water underneath.", "contentid"=>"461721988503834624"}, {"content"=>"RT @MikeSaenz_: I don't always text and drive but when I do I use Swype lol", "contentid"=>"461721885323972608"}, {"content"=>"Don't text and drive \u1F4F1Ὡ8 My brother https://t.co/1AANWcnHIT", "contentid"=>"461721801966379008"}, {"content"=>"“@deshanethought: @TooSmooth_ | i was too busy tryna text. ὡ5ὡ4” taking yo driving test ? ὣ3", "contentid"=>"461721542028566528"}, {"content"=>"Text Your Wife Into Bed: Presentation reveals a weird but effective method for waking up your wife's sex drive. http://t.co/PybsJztnVU", "contentid"=>"461721405021638656"}, {"content"=>"RT @TRV_Insurance: Research by @VTTInews reveals drivers who text increase their crash risk 23 times. Learn more: http://t.co/c8USsBUSL1 #D…", "contentid"=>"461721359421161473"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461721258892480512"}, {"content"=>"I wonderful if Mychal home yet. I don't wanna text him & he driving.", "contentid"=>"461721114566479872"}, {"content"=>"I'm so proud of that lady standing out in the street with a sign saying \"don't text and drive\":)", "contentid"=>"461721058127527937"}, {"content"=>"RT @Humbl3_Boss: Every time I pick up my phone to text while I'm driving. I hear her voice and I put it down. . Smh", "contentid"=>"461720750139797504"}, {"content"=>"RT @opinion: I don't text and drive because I'm afraid I might get in an accident and hurt my phone.", "contentid"=>"461720469083652097"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461723370766475264", "ldate"=>"Thu May 01 04:26:44 +0000 2014", "author"=>"Hu$tle Man Tuck", "perferredUsername"=>"NaughtyMyNature", "url"=>"http://twitter.com/NaughtyMyNature/status/461723370766475264", "source"=>"Twitter"}, {"contentid"=>"461723208597909504", "ldate"=>"Thu May 01 04:26:05 +0000 2014", "author"=>"TrippyGlitcherHD", "perferredUsername"=>"Trippy_Glitcher", "url"=>"http://twitter.com/Trippy_Glitcher/status/461723208597909504", "source"=>"Twitter"}, {"contentid"=>"461723173583466496", "ldate"=>"Thu May 01 04:25:57 +0000 2014", "author"=>"Joosh", "perferredUsername"=>"JoshSawdey", "url"=>"http://twitter.com/JoshSawdey/status/461723173583466496", "source"=>"Twitter"}, {"contentid"=>"461723095192305664", "ldate"=>"Thu May 01 04:25:38 +0000 2014", "author"=>"RespectTheCurve ↩", "perferredUsername"=>"__givemexo", "url"=>"http://twitter.com/__givemexo/status/461723095192305664", "source"=>"Twitter"}, {"contentid"=>"461722708581961729", "ldate"=>"Thu May 01 04:24:06 +0000 2014", "author"=>"SEASHELL & MONSTER", "perferredUsername"=>"AznLena", "url"=>"http://twitter.com/AznLena/status/461722708581961729", "source"=>"Twitter"}, {"contentid"=>"461722531829788672", "ldate"=>"Thu May 01 04:23:24 +0000 2014", "author"=>"Emily", "perferredUsername"=>"EmilyMayfield16", "url"=>"http://twitter.com/EmilyMayfield16/status/461722531829788672", "source"=>"Twitter"}, {"contentid"=>"461722454441070592", "ldate"=>"Thu May 01 04:23:06 +0000 2014", "author"=>"Ms.Paschen.", "perferredUsername"=>"Feral_LoneWolf", "url"=>"http://twitter.com/Feral_LoneWolf/status/461722454441070592", "source"=>"Twitter"}, {"contentid"=>"461722292678959105", "ldate"=>"Thu May 01 04:22:27 +0000 2014", "author"=>"Kara Lucille™", "perferredUsername"=>"1nonblond_", "url"=>"http://twitter.com/1nonblond_/status/461722292678959105", "source"=>"Twitter"}, {"contentid"=>"461722125486010369", "ldate"=>"Thu May 01 04:21:47 +0000 2014", "author"=>"Blunt ✌", "perferredUsername"=>"BriaPegasus", "url"=>"http://twitter.com/BriaPegasus/status/461722125486010369", "source"=>"Twitter"}, {"contentid"=>"461722014932537344", "ldate"=>"Thu May 01 04:21:21 +0000 2014", "author"=>"Thiago Vocal", "perferredUsername"=>"HeywardGoadhav", "url"=>"http://twitter.com/HeywardGoadhav/status/461722014932537344", "source"=>"Twitter"}, {"contentid"=>"461721988503834624", "ldate"=>"Thu May 01 04:21:15 +0000 2014", "author"=>"Josie Fraser", "perferredUsername"=>"Josie_Wales94", "url"=>"http://twitter.com/Josie_Wales94/status/461721988503834624", "source"=>"Twitter"}, {"contentid"=>"461721885323972608", "ldate"=>"Thu May 01 04:20:50 +0000 2014", "author"=>"Rachel Johnson", "perferredUsername"=>"xoxo_racheljay", "url"=>"http://twitter.com/xoxo_racheljay/status/461721885323972608", "source"=>"Twitter"}, {"contentid"=>"461721801966379008", "ldate"=>"Thu May 01 04:20:30 +0000 2014", "author"=>"csf", "perferredUsername"=>"Luvvchloee", "url"=>"http://twitter.com/Luvvchloee/status/461721801966379008", "source"=>"Twitter"}, {"contentid"=>"461721542028566528", "ldate"=>"Thu May 01 04:19:28 +0000 2014", "author"=>"ThaSmoothest", "perferredUsername"=>"TooSmooth_", "url"=>"http://twitter.com/TooSmooth_/status/461721542028566528", "source"=>"Twitter"}, {"contentid"=>"461721405021638656", "ldate"=>"Thu May 01 04:18:55 +0000 2014", "author"=>"John", "perferredUsername"=>"mahasaijetsakri", "url"=>"http://twitter.com/mahasaijetsakri/status/461721405021638656", "source"=>"Twitter"}, {"contentid"=>"461721359421161473", "ldate"=>"Thu May 01 04:18:45 +0000 2014", "author"=>"Greg Morrow Agency", "perferredUsername"=>"GregInsures", "url"=>"http://twitter.com/GregInsures/status/461721359421161473", "source"=>"Twitter"}, {"contentid"=>"461721258892480512", "ldate"=>"Thu May 01 04:18:21 +0000 2014", "author"=>" kamyla almeida ;", "perferredUsername"=>"BlowReypch", "url"=>"http://twitter.com/BlowReypch/status/461721258892480512", "source"=>"Twitter"}, {"contentid"=>"461721114566479872", "ldate"=>"Thu May 01 04:17:46 +0000 2014", "author"=>"ROYALTY ♚4|22", "perferredUsername"=>"JustCallMe_Mese", "url"=>"http://twitter.com/JustCallMe_Mese/status/461721114566479872", "source"=>"Twitter"}, {"contentid"=>"461721058127527937", "ldate"=>"Thu May 01 04:17:33 +0000 2014", "author"=>"Princess Day", "perferredUsername"=>"DMarriie", "url"=>"http://twitter.com/DMarriie/status/461721058127527937", "source"=>"Twitter"}, {"contentid"=>"461720750139797504", "ldate"=>"Thu May 01 04:16:19 +0000 2014", "author"=>"Monique", "perferredUsername"=>"LilMiz_Attitude", "url"=>"http://twitter.com/LilMiz_Attitude/status/461720750139797504", "source"=>"Twitter"}, {"contentid"=>"461720469083652097", "ldate"=>"Thu May 01 04:15:12 +0000 2014", "author"=>"Monet Mayol", "perferredUsername"=>"MonetMayol", "url"=>"http://twitter.com/MonetMayol/status/461720469083652097", "source"=>"Twitter"}]}, "requestid"=>"2447e311-9f77-4124-813f-41a6063d3ac1"}
|
335
|
+
I, [2014-05-01T00:29:03.664698 #32088] INFO -- : Prediction loader waiting for scores ...
|
336
|
+
D, [2014-05-01T00:29:03.664732 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
337
|
+
D, [2014-05-01T00:29:04.067335 #32088] DEBUG -- : Adding posts for scout_id: 27
|
338
|
+
D, [2014-05-01T00:29:04.067415 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
339
|
+
D, [2014-05-01T00:29:04.076824 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Get It", body: "RT @SunSportsFOXFL: What a difference a year makes....", url: "http://twitter.com/OurMarlins/status/46172368143019...", source: "Twitter", sentiment: #<BigDecimal:7f6b3d0,'0.0',9(36)>, leadprob: #<BigDecimal:7f6b1a0,'0.7180095668 040893E0',18(45)>, notleadprob: #<BigDecimal:7f6af70,'0.8521778392 287722E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461723681430196224", ldate: "2014-05-01 04:27:58", loadstamp: "2014-05-01 04:29:04", user_id: 7, scout_id: 27>
|
340
|
+
I, [2014-05-01T00:29:04.093540 #32088] INFO -- : Total Number of records: 1
|
341
|
+
I, [2014-05-01T00:29:04.093588 #32088] INFO -- : Total Number of records Not Loaded: 0
|
342
|
+
I, [2014-05-01T00:29:04.093619 #32088] INFO -- : Prediction loader waiting for scores ...
|
343
|
+
D, [2014-05-01T00:29:04.093649 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
344
|
+
W, [2014-05-01T00:44:02.982309 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/MTgqwUDKGm Don't Text & Drive", "contentid"=>"461727679457550336"}, {"content"=>"RT @alijurgella: Saw an ambulance driver text and drive WTF BITCH GET OFF YOUR MOTHA FUCKING PHONE what this is why people call you!!!!!!", "contentid"=>"461727461621764096"}, {"content"=>"Young crash survivor tells students not to drive distracted: Text messaging creates a crash risk 23... http://t.co/3jSGXucULY #baltimore", "contentid"=>"461727218561843200"}, {"content"=>"\"@Fact: Please, don't text and drive: http://t.co/SHSoHfioO0\"", "contentid"=>"461727218184359936"}, {"content"=>"RT @1080p_Tweeets: I rarely text and drive! Usually I'm too drunk to find my phone.", "contentid"=>"461727099796357120"}, {"content"=>"If Nathan doesn't contain his excitement in his text messages I'll gladly drive 3 hours to rip off his vocal cards & chop off his hands", "contentid"=>"461726796447092736"}, {"content"=>"I only use Siri so I can text and drive", "contentid"=>"461726562338222080"}, {"content"=>"@IsTheSickest dont text and drive", "contentid"=>"461726547582259201"}, {"content"=>"@lucyhalelovex don't text and drive", "contentid"=>"461725969602973696"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/n0gHUJPR8z", "contentid"=>"461725502030757888"}, {"content"=>"RT @Luvvchloee: Don't text and drive \u1F4F1Ὡ8 My brother https://t.co/1AANWcnHIT", "contentid"=>"461725430379057153"}, {"content"=>"I hate driving sticks it's harder to tweet text and snapchat", "contentid"=>"461725335877218304"}, {"content"=>"RT @EddieRegal: Don't text and drive, but what about tweet and drive bc that's what I'm doing ὡDὡDὡDὡDὡD", "contentid"=>"461724331291054080"}, {"content"=>"RT @CaltransHQ: Fines are doubled in highway work zones and can easily total $1,000 or more for drivers who speed, drive aggressively or te…", "contentid"=>"461724262106034176"}, {"content"=>"Don't text and drive, but what about tweet and drive bc that's what I'm doing ὡDὡDὡDὡDὡD", "contentid"=>"461724217826766848"}, {"content"=>"RT @LexaMarie_: Can someone call me while I drive to Columbus? Shit or even text me, IDGAF I just don't wanna be bored. ὡEὠ2", "contentid"=>"461724011299602433"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/BKPlhDojDG Don't Text & Drive", "contentid"=>"461723994513604608"}, {"content"=>"i don't know whats worse: someone responding to half of my text or not responding at all... both drive me crazy.", "contentid"=>"461723987140042752"}, {"content"=>"Can someone call me while I drive to Columbus? Shit or even text me, IDGAF I just don't wanna be bored. ὡEὠ2", "contentid"=>"461723916231520257"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461727679457550336", "ldate"=>"Thu May 01 04:43:51 +0000 2014", "author"=>"Joseph J. Malley III", "perferredUsername"=>"jbtom321", "url"=>"http://twitter.com/jbtom321/status/461727679457550336", "source"=>"Twitter"}, {"contentid"=>"461727461621764096", "ldate"=>"Thu May 01 04:43:00 +0000 2014", "author"=>"kayla", "perferredUsername"=>"kaylaaacoughlin", "url"=>"http://twitter.com/kaylaaacoughlin/status/461727461621764096", "source"=>"Twitter"}, {"contentid"=>"461727218561843200", "ldate"=>"Thu May 01 04:42:02 +0000 2014", "author"=>"Baltimore News", "perferredUsername"=>"NewsBaltimoreMD", "url"=>"http://twitter.com/NewsBaltimoreMD/status/461727218561843200", "source"=>"Twitter"}, {"contentid"=>"461727218184359936", "ldate"=>"Thu May 01 04:42:01 +0000 2014", "author"=>"oshy asshaderi", "perferredUsername"=>"chy_oshy", "url"=>"http://twitter.com/chy_oshy/status/461727218184359936", "source"=>"Twitter"}, {"contentid"=>"461727099796357120", "ldate"=>"Thu May 01 04:41:33 +0000 2014", "author"=>"Sour Mad ×_×", "perferredUsername"=>"AllOverLazyIem", "url"=>"http://twitter.com/AllOverLazyIem/status/461727099796357120", "source"=>"Twitter"}, {"contentid"=>"461726796447092736", "ldate"=>"Thu May 01 04:40:21 +0000 2014", "author"=>"Virg", "perferredUsername"=>"MarinaaaC_", "url"=>"http://twitter.com/MarinaaaC_/status/461726796447092736", "source"=>"Twitter"}, {"contentid"=>"461726562338222080", "ldate"=>"Thu May 01 04:39:25 +0000 2014", "author"=>"ARLee", "perferredUsername"=>"PastTheWater", "url"=>"http://twitter.com/PastTheWater/status/461726562338222080", "source"=>"Twitter"}, {"contentid"=>"461726547582259201", "ldate"=>"Thu May 01 04:39:22 +0000 2014", "author"=>"caat ♡", "perferredUsername"=>"xo_caat", "url"=>"http://twitter.com/xo_caat/status/461726547582259201", "source"=>"Twitter"}, {"contentid"=>"461725969602973696", "ldate"=>"Thu May 01 04:37:04 +0000 2014", "author"=>"em", "perferredUsername"=>"lucyyhalefan13", "url"=>"http://twitter.com/lucyyhalefan13/status/461725969602973696", "source"=>"Twitter"}, {"contentid"=>"461725502030757888", "ldate"=>"Thu May 01 04:35:12 +0000 2014", "author"=>"logan", "perferredUsername"=>"iamlogan", "url"=>"http://twitter.com/iamlogan/status/461725502030757888", "source"=>"Twitter"}, {"contentid"=>"461725430379057153", "ldate"=>"Thu May 01 04:34:55 +0000 2014", "author"=>"V.III.MCMXCVII", "perferredUsername"=>"_stevoooo", "url"=>"http://twitter.com/_stevoooo/status/461725430379057153", "source"=>"Twitter"}, {"contentid"=>"461725335877218304", "ldate"=>"Thu May 01 04:34:33 +0000 2014", "author"=>"Tyler Tobia", "perferredUsername"=>"TylerTobia10", "url"=>"http://twitter.com/TylerTobia10/status/461725335877218304", "source"=>"Twitter"}, {"contentid"=>"461724331291054080", "ldate"=>"Thu May 01 04:30:33 +0000 2014", "author"=>"HORAN ATE MY NAME", "perferredUsername"=>"praewphrao", "url"=>"http://twitter.com/praewphrao/status/461724331291054080", "source"=>"Twitter"}, {"contentid"=>"461724262106034176", "ldate"=>"Thu May 01 04:30:17 +0000 2014", "author"=>"Laurie Berman", "perferredUsername"=>"LBCTD11", "url"=>"http://twitter.com/LBCTD11/status/461724262106034176", "source"=>"Twitter"}, {"contentid"=>"461724217826766848", "ldate"=>"Thu May 01 04:30:06 +0000 2014", "author"=>"Eddie Regal", "perferredUsername"=>"EddieRegal", "url"=>"http://twitter.com/EddieRegal/status/461724217826766848", "source"=>"Twitter"}, {"contentid"=>"461724011299602433", "ldate"=>"Thu May 01 04:29:17 +0000 2014", "author"=>"KVNG WVN♏️", "perferredUsername"=>"TiwanLaMontize", "url"=>"http://twitter.com/TiwanLaMontize/status/461724011299602433", "source"=>"Twitter"}, {"contentid"=>"461723994513604608", "ldate"=>"Thu May 01 04:29:13 +0000 2014", "author"=>"Andy Lord", "perferredUsername"=>"andycjlord2508", "url"=>"http://twitter.com/andycjlord2508/status/461723994513604608", "source"=>"Twitter"}, {"contentid"=>"461723987140042752", "ldate"=>"Thu May 01 04:29:11 +0000 2014", "author"=>"DR", "perferredUsername"=>"D_Rashon", "url"=>"http://twitter.com/D_Rashon/status/461723987140042752", "source"=>"Twitter"}, {"contentid"=>"461723916231520257", "ldate"=>"Thu May 01 04:28:54 +0000 2014", "author"=>"Alexandra", "perferredUsername"=>"LexaMarie_", "url"=>"http://twitter.com/LexaMarie_/status/461723916231520257", "source"=>"Twitter"}]}, "requestid"=>"e4d781c4-05fe-4edd-999f-ae6759c6815b"}
|
345
|
+
I, [2014-05-01T00:44:02.982405 #32088] INFO -- : Prediction loader waiting for scores ...
|
346
|
+
D, [2014-05-01T00:44:02.982439 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
347
|
+
D, [2014-05-01T00:44:03.351941 #32088] DEBUG -- : Adding posts for scout_id: 27
|
348
|
+
D, [2014-05-01T00:44:03.353426 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Casandra Clayton", body: "RT @SunSportsFOXFL: What a difference a year makes....", url: "http://twitter.com/Casz2Clay/status/461726060955316...", source: "Twitter", sentiment: #<BigDecimal:7d91258,'0.0',9(36)>, leadprob: #<BigDecimal:7d91028,'0.7180095668 040893E0',18(45)>, notleadprob: #<BigDecimal:7d90df8,'0.8521778392 287722E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461726060955316224", ldate: "2014-05-01 04:37:26", loadstamp: "2014-05-01 04:44:03", user_id: 7, scout_id: 27>
|
349
|
+
D, [2014-05-01T00:44:03.366967 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Alfredo Gilham", body: "$AMZN Amazon Begins Collecting Florida Taxes for In...", url: "http://twitter.com/AlfredoGilham/status/46172659678...", source: "Twitter", sentiment: #<BigDecimal:7bb0a10,'0.0',9(36)>, leadprob: #<BigDecimal:7bb07e0,'0.8647825443 437055E0',18(45)>, notleadprob: #<BigDecimal:7bb05b0,'0.5526620808 771205E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461726596789837825", ldate: "2014-05-01 04:39:33", loadstamp: "2014-05-01 04:44:03", user_id: 7, scout_id: 27>
|
350
|
+
I, [2014-05-01T00:44:03.449106 #32088] INFO -- : Total Number of records: 2
|
351
|
+
I, [2014-05-01T00:44:03.449174 #32088] INFO -- : Total Number of records Not Loaded: 0
|
352
|
+
I, [2014-05-01T00:44:03.449204 #32088] INFO -- : Prediction loader waiting for scores ...
|
353
|
+
D, [2014-05-01T00:44:03.449235 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
354
|
+
W, [2014-05-01T00:59:03.254085 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"Happy Madaraka Day Guys- Dont drink and drive or text and drive..@Nellykinyanjui @vnaish @Shixpuppe", "contentid"=>"461730817975549952"}, {"content"=>"Do you realize that your kids will emulate you? They learn faster than you realize. Don't Drink and Drive or Text while Driving!", "contentid"=>"461730743383625729"}, {"content"=>"I drive w/ my knee so I can text & tweet so much it's ridiculous ὠ2", "contentid"=>"461730699876524032"}, {"content"=>"RT @_JujuBeee_: When I'm driving I can't text for the life of me, I can barely change the radio station aha it's so hard", "contentid"=>"461730616774385665"}, {"content"=>"RT @xoangelinaoxo: @dianamarieexo bc D made me promise not to text & drive ❤️ I love you http://t.co/rEheYpXjEs", "contentid"=>"461730581538406400"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461730308782837760"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461730227823972352"}, {"content"=>"RT @CaltransHQ: Fines are doubled in highway work zones and can easily total $1,000 or more for drivers who speed, drive aggressively or te…", "contentid"=>"461730130222518272"}, {"content"=>"RT @2_hoopalot: Police tell us not to text and drive but got A FULL COMPUTER in they front seat", "contentid"=>"461729792467808256"}, {"content"=>"RT @_JujuBeee_: When I'm driving I can't text for the life of me, I can barely change the radio station aha it's so hard", "contentid"=>"461729641087004672"}, {"content"=>"RT @apparentlysmart: I only text while I'm driving because trying to do smoke signals got me pulled over WAY faster.", "contentid"=>"461729421506797568"}, {"content"=>"i don't text n drive, but have occasionally changed the song on my ipod to the radio while driving, gotta stop n let it shuffle", "contentid"=>"461729408131166208"}, {"content"=>"When I'm driving I can't text for the life of me, I can barely change the radio station aha it's so hard", "contentid"=>"461729339482988544"}, {"content"=>"don't text n drive. my homies in jail now ὡ2", "contentid"=>"461729261381242880"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461729232805457921"}, {"content"=>"What is the most dangerous thing you have ever done? — idk, text and drive maybe http://t.co/hNNAZ3iVfv", "contentid"=>"461729108565962753"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461729078727680000"}, {"content"=>"Tryna text and drive I damn near just ran into da back of a 18 wheeler", "contentid"=>"461728643517919232"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/NLc7C7HKXn", "contentid"=>"461728382968164352"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461728197030064128"}, {"content"=>"Intellectually, todays teenagers are more aware than ever theyre not supposed to drink and drive, or text and drive.", "contentid"=>"461728168756264960"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461727714265681921"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461730817975549952", "ldate"=>"Thu May 01 04:56:20 +0000 2014", "author"=>"John Njoroge", "perferredUsername"=>"KevaNjoroge", "url"=>"http://twitter.com/KevaNjoroge/status/461730817975549952", "source"=>"Twitter"}, {"contentid"=>"461730743383625729", "ldate"=>"Thu May 01 04:56:02 +0000 2014", "author"=>"Public Safety East", "perferredUsername"=>"PublicSafetyEst", "url"=>"http://twitter.com/PublicSafetyEst/status/461730743383625729", "source"=>"Twitter"}, {"contentid"=>"461730699876524032", "ldate"=>"Thu May 01 04:55:52 +0000 2014", "author"=>"", "perferredUsername"=>"ImJust_Avery", "url"=>"http://twitter.com/ImJust_Avery/status/461730699876524032", "source"=>"Twitter"}, {"contentid"=>"461730616774385665", "ldate"=>"Thu May 01 04:55:32 +0000 2014", "author"=>"ny✨", "perferredUsername"=>"anyssa_kuba", "url"=>"http://twitter.com/anyssa_kuba/status/461730616774385665", "source"=>"Twitter"}, {"contentid"=>"461730581538406400", "ldate"=>"Thu May 01 04:55:23 +0000 2014", "author"=>"B.D. Anthony", "perferredUsername"=>"BrettDAnthony92", "url"=>"http://twitter.com/BrettDAnthony92/status/461730581538406400", "source"=>"Twitter"}, {"contentid"=>"461730308782837760", "ldate"=>"Thu May 01 04:54:18 +0000 2014", "author"=>"mary andrews ", "perferredUsername"=>"BorgesJetertsz", "url"=>"http://twitter.com/BorgesJetertsz/status/461730308782837760", "source"=>"Twitter"}, {"contentid"=>"461730227823972352", "ldate"=>"Thu May 01 04:53:59 +0000 2014", "author"=>"taylor☪williams", "perferredUsername"=>"taylorrr1123", "url"=>"http://twitter.com/taylorrr1123/status/461730227823972352", "source"=>"Twitter"}, {"contentid"=>"461730130222518272", "ldate"=>"Thu May 01 04:53:36 +0000 2014", "author"=>"Wendy g", "perferredUsername"=>"1WolfSpirit", "url"=>"http://twitter.com/1WolfSpirit/status/461730130222518272", "source"=>"Twitter"}, {"contentid"=>"461729792467808256", "ldate"=>"Thu May 01 04:52:15 +0000 2014", "author"=>"_One-of-a-kind_", "perferredUsername"=>"Nisha_Deshae", "url"=>"http://twitter.com/Nisha_Deshae/status/461729792467808256", "source"=>"Twitter"}, {"contentid"=>"461729641087004672", "ldate"=>"Thu May 01 04:51:39 +0000 2014", "author"=>"Noodles", "perferredUsername"=>"cieranudo", "url"=>"http://twitter.com/cieranudo/status/461729641087004672", "source"=>"Twitter"}, {"contentid"=>"461729421506797568", "ldate"=>"Thu May 01 04:50:47 +0000 2014", "author"=>"Cara Howard", "perferredUsername"=>"marvelousCara", "url"=>"http://twitter.com/marvelousCara/status/461729421506797568", "source"=>"Twitter"}, {"contentid"=>"461729408131166208", "ldate"=>"Thu May 01 04:50:44 +0000 2014", "author"=>"JoshM", "perferredUsername"=>"MexicanMetalhed", "url"=>"http://twitter.com/MexicanMetalhed/status/461729408131166208", "source"=>"Twitter"}, {"contentid"=>"461729339482988544", "ldate"=>"Thu May 01 04:50:27 +0000 2014", "author"=>"julianne", "perferredUsername"=>"_JujuBeee_", "url"=>"http://twitter.com/_JujuBeee_/status/461729339482988544", "source"=>"Twitter"}, {"contentid"=>"461729261381242880", "ldate"=>"Thu May 01 04:50:09 +0000 2014", "author"=>"Clay", "perferredUsername"=>"LastttKing", "url"=>"http://twitter.com/LastttKing/status/461729261381242880", "source"=>"Twitter"}, {"contentid"=>"461729232805457921", "ldate"=>"Thu May 01 04:50:02 +0000 2014", "author"=>"Christine C ", "perferredUsername"=>"DelaoAubinohx", "url"=>"http://twitter.com/DelaoAubinohx/status/461729232805457921", "source"=>"Twitter"}, {"contentid"=>"461729108565962753", "ldate"=>"Thu May 01 04:49:32 +0000 2014", "author"=>"extraterrestrial ", "perferredUsername"=>"fknzxck", "url"=>"http://twitter.com/fknzxck/status/461729108565962753", "source"=>"Twitter"}, {"contentid"=>"461729078727680000", "ldate"=>"Thu May 01 04:49:25 +0000 2014", "author"=>"Adrian Formstone", "perferredUsername"=>"adieformstone", "url"=>"http://twitter.com/adieformstone/status/461729078727680000", "source"=>"Twitter"}, {"contentid"=>"461728643517919232", "ldate"=>"Thu May 01 04:47:41 +0000 2014", "author"=>"O.G", "perferredUsername"=>"OGolden14", "url"=>"http://twitter.com/OGolden14/status/461728643517919232", "source"=>"Twitter"}, {"contentid"=>"461728382968164352", "ldate"=>"Thu May 01 04:46:39 +0000 2014", "author"=>"Mellon Muzzey", "perferredUsername"=>"mellon38", "url"=>"http://twitter.com/mellon38/status/461728382968164352", "source"=>"Twitter"}, {"contentid"=>"461728197030064128", "ldate"=>"Thu May 01 04:45:55 +0000 2014", "author"=>"Riley", "perferredUsername"=>"DeadmanRiley", "url"=>"http://twitter.com/DeadmanRiley/status/461728197030064128", "source"=>"Twitter"}, {"contentid"=>"461728168756264960", "ldate"=>"Thu May 01 04:45:48 +0000 2014", "author"=>"Champion ", "perferredUsername"=>"BZdragon30", "url"=>"http://twitter.com/BZdragon30/status/461728168756264960", "source"=>"Twitter"}, {"contentid"=>"461727714265681921", "ldate"=>"Thu May 01 04:44:00 +0000 2014", "author"=>"Rowan", "perferredUsername"=>"UnderEveryone", "url"=>"http://twitter.com/UnderEveryone/status/461727714265681921", "source"=>"Twitter"}]}, "requestid"=>"3b705c8e-99a0-4692-84be-02b2f7497c31"}
|
355
|
+
I, [2014-05-01T00:59:03.254170 #32088] INFO -- : Prediction loader waiting for scores ...
|
356
|
+
D, [2014-05-01T00:59:03.254205 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
357
|
+
D, [2014-05-01T00:59:03.592691 #32088] DEBUG -- : Adding posts for scout_id: 27
|
358
|
+
D, [2014-05-01T00:59:03.592771 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
359
|
+
D, [2014-05-01T00:59:03.601774 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Janis Rasor", body: "RT @SunSportsFOXFL: What a difference a year makes....", url: "http://twitter.com/KRBulldogMom/status/461728870635...", source: "Twitter", sentiment: #<BigDecimal:1832a10,'0.0',9(36)>, leadprob: #<BigDecimal:1832178,'0.7180095668 040893E0',18(45)>, notleadprob: #<BigDecimal:1831d18,'0.8521778392 287722E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461728870635667456", ldate: "2014-05-01 04:48:35", loadstamp: "2014-05-01 04:59:03", user_id: 7, scout_id: 27>
|
360
|
+
I, [2014-05-01T00:59:03.612807 #32088] INFO -- : Total Number of records: 1
|
361
|
+
I, [2014-05-01T00:59:03.612851 #32088] INFO -- : Total Number of records Not Loaded: 0
|
362
|
+
I, [2014-05-01T00:59:03.612879 #32088] INFO -- : Prediction loader waiting for scores ...
|
363
|
+
D, [2014-05-01T00:59:03.612908 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
364
|
+
W, [2014-05-01T01:14:03.489948 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/ksommwMZqe", "contentid"=>"461735169943412736"}, {"content"=>"RT @leenadelasoul: “@incindyous: I don't let bae text and drive cus bae can't be bae if bae is dead. #MIND2014”", "contentid"=>"461734043210362880"}, {"content"=>"Don't text and drive you can hurt someone..it's not cool or funny!!", "contentid"=>"461733685775978496"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461733425234202625"}, {"content"=>"RT @cqrcmp: Most have probably seen this video http://t.co/VJPib4gOSO - but it seems like many need a reminder. Don't text & drive. #LeaveT…", "contentid"=>"461733135831400448"}, {"content"=>"Someone text me. This drive is boring", "contentid"=>"461732920042856448"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461732658163507201"}, {"content"=>"'U Drive U Text U Pay' ads For Distracted Driving Commercial http://t.co/UH2m3p1TE8", "contentid"=>"461732261155467264"}, {"content"=>"Text Your Wife Into Bed: Presentation reveals a weird but effective method for waking up your wife's sex drive. http://t.co/e55UFm9Pp2", "contentid"=>"461732208349155328"}, {"content"=>"There's a special ring in hell for people who text and drive \u1F47F", "contentid"=>"461731914202632192"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461731497062313986"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461735169943412736", "ldate"=>"Thu May 01 05:13:37 +0000 2014", "author"=>"Mario Leal", "perferredUsername"=>"MarioPhantom", "url"=>"http://twitter.com/MarioPhantom/status/461735169943412736", "source"=>"Twitter"}, {"contentid"=>"461734043210362880", "ldate"=>"Thu May 01 05:09:09 +0000 2014", "author"=>"Cindy", "perferredUsername"=>"incindyous", "url"=>"http://twitter.com/incindyous/status/461734043210362880", "source"=>"Twitter"}, {"contentid"=>"461733685775978496", "ldate"=>"Thu May 01 05:07:43 +0000 2014", "author"=>"CynthïaMärïnaFlorĕs", "perferredUsername"=>"CynthiaMarinaFl", "url"=>"http://twitter.com/CynthiaMarinaFl/status/461733685775978496", "source"=>"Twitter"}, {"contentid"=>"461733425234202625", "ldate"=>"Thu May 01 05:06:41 +0000 2014", "author"=>"Septhiana Rusilawati", "perferredUsername"=>"Sapindmm", "url"=>"http://twitter.com/Sapindmm/status/461733425234202625", "source"=>"Twitter"}, {"contentid"=>"461733135831400448", "ldate"=>"Thu May 01 05:05:32 +0000 2014", "author"=>"Nicola", "perferredUsername"=>"NTH25realtor", "url"=>"http://twitter.com/NTH25realtor/status/461733135831400448", "source"=>"Twitter"}, {"contentid"=>"461732920042856448", "ldate"=>"Thu May 01 05:04:41 +0000 2014", "author"=>"Brett Guidroz", "perferredUsername"=>"BrettGuidroz", "url"=>"http://twitter.com/BrettGuidroz/status/461732920042856448", "source"=>"Twitter"}, {"contentid"=>"461732658163507201", "ldate"=>"Thu May 01 05:03:38 +0000 2014", "author"=>"Yolo.", "perferredUsername"=>"Harryftmarinela", "url"=>"http://twitter.com/Harryftmarinela/status/461732658163507201", "source"=>"Twitter"}, {"contentid"=>"461732261155467264", "ldate"=>"Thu May 01 05:02:04 +0000 2014", "author"=>"alberto estrada", "perferredUsername"=>"impremexu2", "url"=>"http://twitter.com/impremexu2/status/461732261155467264", "source"=>"Twitter"}, {"contentid"=>"461732208349155328", "ldate"=>"Thu May 01 05:01:51 +0000 2014", "author"=>"John", "perferredUsername"=>"mahasaijetsakri", "url"=>"http://twitter.com/mahasaijetsakri/status/461732208349155328", "source"=>"Twitter"}, {"contentid"=>"461731914202632192", "ldate"=>"Thu May 01 05:00:41 +0000 2014", "author"=>"Samantha Ennis", "perferredUsername"=>"samemaeday", "url"=>"http://twitter.com/samemaeday/status/461731914202632192", "source"=>"Twitter"}, {"contentid"=>"461731497062313986", "ldate"=>"Thu May 01 04:59:02 +0000 2014", "author"=>"HAPPY B'DAY DORITO", "perferredUsername"=>"CAUTIONZARRY", "url"=>"http://twitter.com/CAUTIONZARRY/status/461731497062313986", "source"=>"Twitter"}]}, "requestid"=>"fec114d0-f4e8-43fc-9259-c6fcc7826941"}
|
365
|
+
I, [2014-05-01T01:14:03.490020 #32088] INFO -- : Prediction loader waiting for scores ...
|
366
|
+
D, [2014-05-01T01:14:03.490057 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
367
|
+
W, [2014-05-01T01:29:03.638974 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"I be getting sooo pissed when my mom try to text and drive she be swerving in other peoples lane and shit trying to kill me", "contentid"=>"461738682584559616"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/HLywGE8KTH", "contentid"=>"461738598677893120"}, {"content"=>"\"Ashley never text and drive it's the most horrible thing you can do\" -my dad as he's texting and driving", "contentid"=>"461738397757759488"}, {"content"=>"RT @PressReader: One way to make the morning #commute fly by - listen to your newspaper through a text-to-speech engine while driving: http…", "contentid"=>"461737723951190017"}, {"content"=>"RT @FoodiePatutie: If I tell you I can't text you because I'm driving it's only because I'm also eating.....", "contentid"=>"461737279749226496"}, {"content"=>"For real people don't text &drive ... itz really not worth it #DriveSafe #Patience", "contentid"=>"461736875980365824"}, {"content"=>"If you text and drive or don't wear a seatbelt I will personally kick your ass.", "contentid"=>"461736813137100800"}, {"content"=>".rod hate wen I text & drive lols over protected ass.", "contentid"=>"461736420521304064"}, {"content"=>"they say don't text and drive, never said anything about tweeting and driving, get at me ya bish.", "contentid"=>"461735925727625216"}, {"content"=>"Someone text me saying \"Why do you bit your lip when driving?\"... Why are you creeping on me ὡ2❔❕❔", "contentid"=>"461735406392733697"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461738682584559616", "ldate"=>"Thu May 01 05:27:35 +0000 2014", "author"=>"A-Dizzle", "perferredUsername"=>"neeetttteee", "url"=>"http://twitter.com/neeetttteee/status/461738682584559616", "source"=>"Twitter"}, {"contentid"=>"461738598677893120", "ldate"=>"Thu May 01 05:27:15 +0000 2014", "author"=>"Laura", "perferredUsername"=>"imlaura98", "url"=>"http://twitter.com/imlaura98/status/461738598677893120", "source"=>"Twitter"}, {"contentid"=>"461738397757759488", "ldate"=>"Thu May 01 05:26:27 +0000 2014", "author"=>"ashwey", "perferredUsername"=>"ashleeyakhavann", "url"=>"http://twitter.com/ashleeyakhavann/status/461738397757759488", "source"=>"Twitter"}, {"contentid"=>"461737723951190017", "ldate"=>"Thu May 01 05:23:46 +0000 2014", "author"=>"Rachel Kwok", "perferredUsername"=>"RachelKwok_", "url"=>"http://twitter.com/RachelKwok_/status/461737723951190017", "source"=>"Twitter"}, {"contentid"=>"461737279749226496", "ldate"=>"Thu May 01 05:22:00 +0000 2014", "author"=>"Cajun TV Network", "perferredUsername"=>"CajunTVNetwork", "url"=>"http://twitter.com/CajunTVNetwork/status/461737279749226496", "source"=>"Twitter"}, {"contentid"=>"461736875980365824", "ldate"=>"Thu May 01 05:20:24 +0000 2014", "author"=>"Keith Zamora", "perferredUsername"=>"SpirantGull138", "url"=>"http://twitter.com/SpirantGull138/status/461736875980365824", "source"=>"Twitter"}, {"contentid"=>"461736813137100800", "ldate"=>"Thu May 01 05:20:09 +0000 2014", "author"=>"adrienne", "perferredUsername"=>"AdyCamp16", "url"=>"http://twitter.com/AdyCamp16/status/461736813137100800", "source"=>"Twitter"}, {"contentid"=>"461736420521304064", "ldate"=>"Thu May 01 05:18:35 +0000 2014", "author"=>".TRACKNATION", "perferredUsername"=>"TRUeeee_beAUTy", "url"=>"http://twitter.com/TRUeeee_beAUTy/status/461736420521304064", "source"=>"Twitter"}, {"contentid"=>"461735925727625216", "ldate"=>"Thu May 01 05:16:37 +0000 2014", "author"=>"Ed", "perferredUsername"=>"We_Clippy_Mane", "url"=>"http://twitter.com/We_Clippy_Mane/status/461735925727625216", "source"=>"Twitter"}, {"contentid"=>"461735406392733697", "ldate"=>"Thu May 01 05:14:34 +0000 2014", "author"=>"ميلاني أونتيفيروس", "perferredUsername"=>"aye_itsmellanie", "url"=>"http://twitter.com/aye_itsmellanie/status/461735406392733697", "source"=>"Twitter"}]}, "requestid"=>"db1dcd18-338d-46af-83ca-2c72a7771f10"}
|
368
|
+
I, [2014-05-01T01:29:03.639045 #32088] INFO -- : Prediction loader waiting for scores ...
|
369
|
+
D, [2014-05-01T01:29:03.639080 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
370
|
+
D, [2014-05-01T01:29:04.089419 #32088] DEBUG -- : Adding posts for scout_id: 27
|
371
|
+
D, [2014-05-01T01:29:04.089487 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
372
|
+
D, [2014-05-01T01:29:04.097705 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Kathleen Woolrich", body: "Fight back against the Florida Republican Party's r...", url: "http://twitter.com/kwoolrich/status/461737592447582...", source: "Twitter", sentiment: #<BigDecimal:1b28b98,'0.0',9(36)>, leadprob: #<BigDecimal:1b28760,'0.5293982549 580661E0',18(45)>, notleadprob: #<BigDecimal:1b283c8,'0.9320522755 531766E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461737592447582208", ldate: "2014-05-01 05:23:15", loadstamp: "2014-05-01 05:29:04", user_id: 7, scout_id: 27>
|
373
|
+
I, [2014-05-01T01:29:04.107167 #32088] INFO -- : Total Number of records: 1
|
374
|
+
I, [2014-05-01T01:29:04.107210 #32088] INFO -- : Total Number of records Not Loaded: 0
|
375
|
+
I, [2014-05-01T01:29:04.107245 #32088] INFO -- : Prediction loader waiting for scores ...
|
376
|
+
D, [2014-05-01T01:29:04.107276 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
377
|
+
W, [2014-05-01T01:44:02.870297 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"RT @cqrcmp: Most have probably seen this video http://t.co/VJPib4gOSO - but it seems like many need a reminder. Don't text & drive. #LeaveT…", "contentid"=>"461742382031990785"}, {"content"=>"Don't text & drive y'all.", "contentid"=>"461742361442516992"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461742108278521856"}, {"content"=>"RT @roadpol_east: A tragic example of what can happen when motorists \"text and drive\".\n\nDriver Dies After Posting Facebook Selfie http://t.…", "contentid"=>"461742057317728256"}, {"content"=>"What happened to being impressed that someone can text and drive?", "contentid"=>"461742012945793025"}, {"content"=>"Please don't text and drive anymore. We have all been guilty of multitasking while driving - but while we are... http://t.co/N5OVhqpuPS", "contentid"=>"461741788232159233"}, {"content"=>"Just say no. Don't drink and drive. Don't text or talk and drive. \n\nThese adds are perfect. You did all you could do, call it a day.", "contentid"=>"461741360064655360"}, {"content"=>"RT @DelaoAubinohx: I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461741013196091392"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461740840201621504"}, {"content"=>"@kimberlymorgann I thought about driving but Drummond parking at night is insane! But I'll text you next time I lose something aka soon", "contentid"=>"461740550903701504"}, {"content"=>"RT @roadpol_east: A tragic example of what can happen when motorists \"text and drive\".\n\nDriver Dies After Posting Facebook Selfie http://t.…", "contentid"=>"461740478950428672"}, {"content"=>"Please don't text and drive #thumbsup: http://t.co/C4C3laBxXJ via @YouTube", "contentid"=>"461740442376097793"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461739737066139648"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461742382031990785", "ldate"=>"Thu May 01 05:42:17 +0000 2014", "author"=>"Walton Sip N Savour", "perferredUsername"=>"SipNSavour", "url"=>"http://twitter.com/SipNSavour/status/461742382031990785", "source"=>"Twitter"}, {"contentid"=>"461742361442516992", "ldate"=>"Thu May 01 05:42:12 +0000 2014", "author"=>"Nobody", "perferredUsername"=>"TalkOfTheCityy", "url"=>"http://twitter.com/TalkOfTheCityy/status/461742361442516992", "source"=>"Twitter"}, {"contentid"=>"461742108278521856", "ldate"=>"Thu May 01 05:41:12 +0000 2014", "author"=>"pls Niall♡", "perferredUsername"=>"FxboZouis", "url"=>"http://twitter.com/FxboZouis/status/461742108278521856", "source"=>"Twitter"}, {"contentid"=>"461742057317728256", "ldate"=>"Thu May 01 05:40:59 +0000 2014", "author"=>"Nimbus Fire", "perferredUsername"=>"NIMBUS_Fire1", "url"=>"http://twitter.com/NIMBUS_Fire1/status/461742057317728256", "source"=>"Twitter"}, {"contentid"=>"461742012945793025", "ldate"=>"Thu May 01 05:40:49 +0000 2014", "author"=>"internal celebrity", "perferredUsername"=>"killfukmary", "url"=>"http://twitter.com/killfukmary/status/461742012945793025", "source"=>"Twitter"}, {"contentid"=>"461741788232159233", "ldate"=>"Thu May 01 05:39:55 +0000 2014", "author"=>"Donna George", "perferredUsername"=>"donnageorge1234", "url"=>"http://twitter.com/donnageorge1234/status/461741788232159233", "source"=>"Twitter"}, {"contentid"=>"461741360064655360", "ldate"=>"Thu May 01 05:38:13 +0000 2014", "author"=>"PB Chili", "perferredUsername"=>"DJamrog", "url"=>"http://twitter.com/DJamrog/status/461741360064655360", "source"=>"Twitter"}, {"contentid"=>"461741013196091392", "ldate"=>"Thu May 01 05:36:50 +0000 2014", "author"=>"PitchBlack", "perferredUsername"=>"Beejay_JR", "url"=>"http://twitter.com/Beejay_JR/status/461741013196091392", "source"=>"Twitter"}, {"contentid"=>"461740840201621504", "ldate"=>"Thu May 01 05:36:09 +0000 2014", "author"=>"Rizelle", "perferredUsername"=>"BheaLaudit", "url"=>"http://twitter.com/BheaLaudit/status/461740840201621504", "source"=>"Twitter"}, {"contentid"=>"461740550903701504", "ldate"=>"Thu May 01 05:35:00 +0000 2014", "author"=>"Emily Williams", "perferredUsername"=>"emilykathryn24", "url"=>"http://twitter.com/emilykathryn24/status/461740550903701504", "source"=>"Twitter"}, {"contentid"=>"461740478950428672", "ldate"=>"Thu May 01 05:34:43 +0000 2014", "author"=>"Debbie Beck", "perferredUsername"=>"DebbieBeck0410", "url"=>"http://twitter.com/DebbieBeck0410/status/461740478950428672", "source"=>"Twitter"}, {"contentid"=>"461740442376097793", "ldate"=>"Thu May 01 05:34:34 +0000 2014", "author"=>"Randall Perkinson", "perferredUsername"=>"RMPerkinson", "url"=>"http://twitter.com/RMPerkinson/status/461740442376097793", "source"=>"Twitter"}, {"contentid"=>"461739737066139648", "ldate"=>"Thu May 01 05:31:46 +0000 2014", "author"=>"avy too turnt", "perferredUsername"=>"fxckkyeahharry", "url"=>"http://twitter.com/fxckkyeahharry/status/461739737066139648", "source"=>"Twitter"}]}, "requestid"=>"3200124a-b762-447f-a3be-3b3b3a60bb19"}
|
378
|
+
I, [2014-05-01T01:44:02.870373 #32088] INFO -- : Prediction loader waiting for scores ...
|
379
|
+
D, [2014-05-01T01:44:02.870408 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
380
|
+
D, [2014-05-01T01:44:03.321349 #32088] DEBUG -- : Adding posts for scout_id: 27
|
381
|
+
D, [2014-05-01T01:44:03.322491 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Pirate News", body: "FL Governor Poll: Crist 48, Scott 38 - A new poll ...", url: "http://twitter.com/Pirate_News_/status/461739930150...", source: "Twitter", sentiment: #<BigDecimal:3d93098,'0.0',9(36)>, leadprob: #<BigDecimal:3d92558,'0.8258000889 839934E0',18(45)>, notleadprob: #<BigDecimal:3d91220,'0.8730444479 488177E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461739930150916096", ldate: "2014-05-01 05:32:32", loadstamp: "2014-05-01 05:44:03", user_id: 7, scout_id: 27>
|
382
|
+
I, [2014-05-01T01:44:03.337572 #32088] INFO -- : Total Number of records: 1
|
383
|
+
I, [2014-05-01T01:44:03.337614 #32088] INFO -- : Total Number of records Not Loaded: 0
|
384
|
+
I, [2014-05-01T01:44:03.337643 #32088] INFO -- : Prediction loader waiting for scores ...
|
385
|
+
D, [2014-05-01T01:44:03.337671 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
386
|
+
W, [2014-05-01T01:59:04.780404 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"RT @Ratchet2English: DO NOT text me while you`re driving cause im not trying to be the last unfinished message they find when your ass is w…", "contentid"=>"461746400061972481"}, {"content"=>"So lesson of the day don't text and drive at night therefore whiskers the cat has sadly passed awayὡ4", "contentid"=>"461746378071224320"}, {"content"=>"I will never text and drive ✋ὠ9 @DonJahl", "contentid"=>"461745355835854848"}, {"content"=>"I try not to text people when I know they are driving because if they die from looking at their phone and replying that's on my soul.", "contentid"=>"461745073256808448"}, {"content"=>"#trending I don't like LA drivers they freakin SUCK!! don't freakin drive and text mofos!!! ok I feel better now, night!", "contentid"=>"461744574566649856"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/lShwzYoLKj Don't Text & Drive", "contentid"=>"461743911669493760"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461743521494736896"}, {"content"=>"Just saw the craziest don't text and drive commercial. Felt so real", "contentid"=>"461743476506255361"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461743309216841728"}, {"content"=>"\"U Drive U Text U Pay\" Click it or ticket #putthephonedown #safety #nhtsa #savealife #chicago #udriveutextupay #CTA http://t.co/23YPNi0EnF", "contentid"=>"461742990130548736"}, {"content"=>"I got a ticket and I don't believe the cop... I speed, text, drive like a douche.. But I don't run red lights?!????!!!!", "contentid"=>"461742887349137408"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461746400061972481", "ldate"=>"Thu May 01 05:58:15 +0000 2014", "author"=>"Daaissy❤", "perferredUsername"=>"Daaissy_Corpuss", "url"=>"http://twitter.com/Daaissy_Corpuss/status/461746400061972481", "source"=>"Twitter"}, {"contentid"=>"461746378071224320", "ldate"=>"Thu May 01 05:58:10 +0000 2014", "author"=>"Kylie Mcquivey", "perferredUsername"=>"Knigga15", "url"=>"http://twitter.com/Knigga15/status/461746378071224320", "source"=>"Twitter"}, {"contentid"=>"461745355835854848", "ldate"=>"Thu May 01 05:54:06 +0000 2014", "author"=>"Matty Ice", "perferredUsername"=>"mattschlangen", "url"=>"http://twitter.com/mattschlangen/status/461745355835854848", "source"=>"Twitter"}, {"contentid"=>"461745073256808448", "ldate"=>"Thu May 01 05:52:58 +0000 2014", "author"=>"KPRETTY™", "perferredUsername"=>"Prettyman_Kyle", "url"=>"http://twitter.com/Prettyman_Kyle/status/461745073256808448", "source"=>"Twitter"}, {"contentid"=>"461744574566649856", "ldate"=>"Thu May 01 05:51:00 +0000 2014", "author"=>"Thorn Creative Srvs ", "perferredUsername"=>"Thorndame", "url"=>"http://twitter.com/Thorndame/status/461744574566649856", "source"=>"Twitter"}, {"contentid"=>"461743911669493760", "ldate"=>"Thu May 01 05:48:21 +0000 2014", "author"=>"JBE BLZ", "perferredUsername"=>"KingRapUSA", "url"=>"http://twitter.com/KingRapUSA/status/461743911669493760", "source"=>"Twitter"}, {"contentid"=>"461743521494736896", "ldate"=>"Thu May 01 05:46:48 +0000 2014", "author"=>"Sydony Carney ", "perferredUsername"=>"Peakgdc", "url"=>"http://twitter.com/Peakgdc/status/461743521494736896", "source"=>"Twitter"}, {"contentid"=>"461743476506255361", "ldate"=>"Thu May 01 05:46:38 +0000 2014", "author"=>"Jean ", "perferredUsername"=>"panacheimaseg", "url"=>"http://twitter.com/panacheimaseg/status/461743476506255361", "source"=>"Twitter"}, {"contentid"=>"461743309216841728", "ldate"=>"Thu May 01 05:45:58 +0000 2014", "author"=>"Julia Weber ", "perferredUsername"=>"EmiliaLoyskk", "url"=>"http://twitter.com/EmiliaLoyskk/status/461743309216841728", "source"=>"Twitter"}, {"contentid"=>"461742990130548736", "ldate"=>"Thu May 01 05:44:42 +0000 2014", "author"=>"Nick Damptz", "perferredUsername"=>"GlenviewBroker", "url"=>"http://twitter.com/GlenviewBroker/status/461742990130548736", "source"=>"Twitter"}, {"contentid"=>"461742887349137408", "ldate"=>"Thu May 01 05:44:17 +0000 2014", "author"=>"Laura Murphy", "perferredUsername"=>"LauraMeowww", "url"=>"http://twitter.com/LauraMeowww/status/461742887349137408", "source"=>"Twitter"}]}, "requestid"=>"c99da702-9edd-40cf-af7c-b8ee6dc79099"}
|
387
|
+
I, [2014-05-01T01:59:04.780477 #32088] INFO -- : Prediction loader waiting for scores ...
|
388
|
+
D, [2014-05-01T01:59:04.780515 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
389
|
+
D, [2014-05-01T02:14:04.312006 #32088] DEBUG -- : Adding posts for scout_id: 27
|
390
|
+
D, [2014-05-01T02:14:04.312080 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
391
|
+
D, [2014-05-01T02:14:04.320155 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Amazon News", body: "Amazon Begins Collecting Florida Taxes for Internet...", url: "http://twitter.com/AmazonAllNews/status/46174665879...", source: "Twitter", sentiment: #<BigDecimal:3fdb800,'0.0',9(36)>, leadprob: #<BigDecimal:3fdb3a0,'0.8647825443 437055E0',18(45)>, notleadprob: #<BigDecimal:3fdb0f8,'0.5526620808 771205E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461746658796392448", ldate: "2014-05-01 05:59:16", loadstamp: "2014-05-01 06:14:04", user_id: 7, scout_id: 27>
|
392
|
+
D, [2014-05-01T02:14:04.332787 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "David Matza", body: "RT @JebBush: Proud to endorse @NeelKashkari, a bold...", url: "http://twitter.com/DavidJMatza/status/4617468881824...", source: "Twitter", sentiment: #<BigDecimal:403f080,'0.0',9(36)>, leadprob: #<BigDecimal:403ee28,'0.4061882149 303099E0',18(45)>, notleadprob: #<BigDecimal:403ebf8,'0.9660896780 658177E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461746888182480896", ldate: "2014-05-01 06:00:11", loadstamp: "2014-05-01 06:14:04", user_id: 7, scout_id: 27>
|
393
|
+
D, [2014-05-01T02:14:04.349386 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Pricezon", body: "RT @AmazonAllNews: Amazon Begins Collecting Florida...", url: "http://twitter.com/Pricezon/status/4617469804281896...", source: "Twitter", sentiment: #<BigDecimal:408b228,'0.0',9(36)>, leadprob: #<BigDecimal:408af80,'0.6710250962 110118E0',18(45)>, notleadprob: #<BigDecimal:408ad28,'0.7007697266 869465E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461746980428189696", ldate: "2014-05-01 06:00:33", loadstamp: "2014-05-01 06:14:04", user_id: 7, scout_id: 27>
|
394
|
+
I, [2014-05-01T02:14:04.365245 #32088] INFO -- : Total Number of records: 3
|
395
|
+
I, [2014-05-01T02:14:04.365287 #32088] INFO -- : Total Number of records Not Loaded: 0
|
396
|
+
I, [2014-05-01T02:14:04.365315 #32088] INFO -- : Prediction loader waiting for scores ...
|
397
|
+
D, [2014-05-01T02:14:04.365344 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
398
|
+
W, [2014-05-01T02:14:04.859464 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461750287196098561"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461749415795884032"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461749098186809344"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461748124390682624"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. That shit's dangerous.", "contentid"=>"461747971395026944"}, {"content"=>"#TrendingTopic Please don't text and drive!!! u could injure yourself & others!! freakin dangerous!! pay freakin attention. thanks!", "contentid"=>"461747432401809408"}, {"content"=>"RT @Brianna_MUHree: When @deffpoetry pisses me off through text, makes me wanna drive to belmont & punch him in the face .", "contentid"=>"461747339800354816"}, {"content"=>"RT @AdyCamp16: If you text and drive or don't wear a seatbelt I will personally kick your ass.", "contentid"=>"461747279364251649"}, {"content"=>"When @deffpoetry pisses me off through text, makes me wanna drive to belmont & punch him in the face .", "contentid"=>"461747101144481792"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461747089748549632"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461750287196098561", "ldate"=>"Thu May 01 06:13:42 +0000 2014", "author"=>"Thiru", "perferredUsername"=>"gtkumaran6", "url"=>"http://twitter.com/gtkumaran6/status/461750287196098561", "source"=>"Twitter"}, {"contentid"=>"461749415795884032", "ldate"=>"Thu May 01 06:10:14 +0000 2014", "author"=>"Tysm adidas NEO!!", "perferredUsername"=>"swaggykat2", "url"=>"http://twitter.com/swaggykat2/status/461749415795884032", "source"=>"Twitter"}, {"contentid"=>"461749098186809344", "ldate"=>"Thu May 01 06:08:58 +0000 2014", "author"=>"Seb.", "perferredUsername"=>"SebcsticnStcn", "url"=>"http://twitter.com/SebcsticnStcn/status/461749098186809344", "source"=>"Twitter"}, {"contentid"=>"461748124390682624", "ldate"=>"Thu May 01 06:05:06 +0000 2014", "author"=>"Mai • Liam pls ♥", "perferredUsername"=>"mairalacatango", "url"=>"http://twitter.com/mairalacatango/status/461748124390682624", "source"=>"Twitter"}, {"contentid"=>"461747971395026944", "ldate"=>"Thu May 01 06:04:29 +0000 2014", "author"=>"Lulu McCarra", "perferredUsername"=>"LuluMcCarra", "url"=>"http://twitter.com/LuluMcCarra/status/461747971395026944", "source"=>"Twitter"}, {"contentid"=>"461747432401809408", "ldate"=>"Thu May 01 06:02:21 +0000 2014", "author"=>"Thorn Creative Srvs ", "perferredUsername"=>"Thorndame", "url"=>"http://twitter.com/Thorndame/status/461747432401809408", "source"=>"Twitter"}, {"contentid"=>"461747339800354816", "ldate"=>"Thu May 01 06:01:59 +0000 2014", "author"=>"Explicit®", "perferredUsername"=>"deffpoetry", "url"=>"http://twitter.com/deffpoetry/status/461747339800354816", "source"=>"Twitter"}, {"contentid"=>"461747279364251649", "ldate"=>"Thu May 01 06:01:44 +0000 2014", "author"=>"Brenna Hollis", "perferredUsername"=>"BrennaHollis", "url"=>"http://twitter.com/BrennaHollis/status/461747279364251649", "source"=>"Twitter"}, {"contentid"=>"461747101144481792", "ldate"=>"Thu May 01 06:01:02 +0000 2014", "author"=>"Brianna Marie", "perferredUsername"=>"Brianna_MUHree", "url"=>"http://twitter.com/Brianna_MUHree/status/461747101144481792", "source"=>"Twitter"}, {"contentid"=>"461747089748549632", "ldate"=>"Thu May 01 06:00:59 +0000 2014", "author"=>"Jason MCcann", "perferredUsername"=>"laughingjdb", "url"=>"http://twitter.com/laughingjdb/status/461747089748549632", "source"=>"Twitter"}]}, "requestid"=>"58dd8ac7-8edd-42d9-a3d5-c43f8a0f66c1"}
|
399
|
+
I, [2014-05-01T02:14:04.859528 #32088] INFO -- : Prediction loader waiting for scores ...
|
400
|
+
D, [2014-05-01T02:14:04.859563 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
401
|
+
D, [2014-05-01T02:30:03.610559 #32088] DEBUG -- : Adding posts for scout_id: 27
|
402
|
+
D, [2014-05-01T02:30:03.610631 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
403
|
+
D, [2014-05-01T02:30:03.618971 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Rob Maysey", body: "Text of the proposed rewritten MMA and boxing regul...", url: "http://twitter.com/MMAFA/status/461750918736654336", source: "Twitter", sentiment: #<BigDecimal:4106630,'0.0',9(36)>, leadprob: #<BigDecimal:41063d8,'0.8786553085 961936E0',18(45)>, notleadprob: #<BigDecimal:41060b8,'0.8050057901 186778E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461750918736654336", ldate: "2014-05-01 06:16:12", loadstamp: "2014-05-01 06:30:03", user_id: 7, scout_id: 27>
|
404
|
+
D, [2014-05-01T02:30:03.629823 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "U.S. Radio News", body: "Former Florida. Gov. Claude Kirk Dies at 85 - TALL...", url: "http://twitter.com/USRadioNews/status/4617539973893...", source: "Twitter", sentiment: #<BigDecimal:414bca8,'0.0',9(36)>, leadprob: #<BigDecimal:414b9d8,'0.7805401555 735235E0',18(45)>, notleadprob: #<BigDecimal:414b780,'0.8964914320 783213E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461753997389361152", ldate: "2014-05-01 06:28:26", loadstamp: "2014-05-01 06:30:03", user_id: 7, scout_id: 27>
|
405
|
+
I, [2014-05-01T02:30:03.645625 #32088] INFO -- : Total Number of records: 2
|
406
|
+
I, [2014-05-01T02:30:03.645670 #32088] INFO -- : Total Number of records Not Loaded: 0
|
407
|
+
I, [2014-05-01T02:30:03.645699 #32088] INFO -- : Prediction loader waiting for scores ...
|
408
|
+
D, [2014-05-01T02:30:03.645728 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
409
|
+
W, [2014-05-01T02:30:04.410236 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"RT @merisacastro: Waiting for you to text back will drive me insaneὡ4", "contentid"=>"461754151945240576"}, {"content"=>"RT @merisacastro: Waiting for you to text back will drive me insaneὡ4", "contentid"=>"461753944046194688"}, {"content"=>"@MichaelVartan don't text and drive. You are putting us all in danger.", "contentid"=>"461753751020126208"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461753620275286016"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/J4zLaXOiN4 Don't Text & Drive", "contentid"=>"461753549287075840"}, {"content"=>"Do you realize that your kids will emulate you? They learn faster than you realize. Don't Drink and Drive or Text while Driving!", "contentid"=>"461753485185150976"}, {"content"=>"RT @merisacastro: Waiting for you to text back will drive me insaneὡ4", "contentid"=>"461753392277102592"}, {"content"=>"They didn't have to make that text and drive commercial with the truck feel so real ... I felt that impact just by watching lol", "contentid"=>"461753229064171520"}, {"content"=>"RT @merisacastro: Waiting for you to text back will drive me insaneὡ4", "contentid"=>"461753012961026048"}, {"content"=>"Someone text me to keep me up driving home.", "contentid"=>"461753012772290560"}, {"content"=>"RT @merisacastro: Waiting for you to text back will drive me insaneὡ4", "contentid"=>"461752983630262272"}, {"content"=>"Waiting for you to text back will drive me insaneὡ4", "contentid"=>"461752677882277889"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461752657980694528"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461752029912637440"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461751750148784128"}, {"content"=>"@Bout_ThatTime oh no ὢ9 I can't drive that far lol but ima come see you while I'm home so text me", "contentid"=>"461751659589160960"}, {"content"=>"Penalties for texting while driving take effect: Motorists caught sending a text message or email while drivin... http://t.co/t1X7yPYuht", "contentid"=>"461751617448988672"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461751545697427456"}, {"content"=>"RT @SteveStfler: I have no problem texting while driving, but I won't text while going down stairs. That shits dangerous.", "contentid"=>"461750966568910848"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461750752462258176"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461754151945240576", "ldate"=>"Thu May 01 06:29:03 +0000 2014", "author"=>"Liz Soto ❤", "perferredUsername"=>"lizzaarddd", "url"=>"http://twitter.com/lizzaarddd/status/461754151945240576", "source"=>"Twitter"}, {"contentid"=>"461753944046194688", "ldate"=>"Thu May 01 06:28:13 +0000 2014", "author"=>"♡aryana", "perferredUsername"=>"HeartAryana", "url"=>"http://twitter.com/HeartAryana/status/461753944046194688", "source"=>"Twitter"}, {"contentid"=>"461753751020126208", "ldate"=>"Thu May 01 06:27:27 +0000 2014", "author"=>"Heidi Rene", "perferredUsername"=>"heidi_rene", "url"=>"http://twitter.com/heidi_rene/status/461753751020126208", "source"=>"Twitter"}, {"contentid"=>"461753620275286016", "ldate"=>"Thu May 01 06:26:56 +0000 2014", "author"=>"Isaac Garstecki", "perferredUsername"=>"garsexy88", "url"=>"http://twitter.com/garsexy88/status/461753620275286016", "source"=>"Twitter"}, {"contentid"=>"461753549287075840", "ldate"=>"Thu May 01 06:26:39 +0000 2014", "author"=>"CameronW97", "perferredUsername"=>"CameronW970", "url"=>"http://twitter.com/CameronW970/status/461753549287075840", "source"=>"Twitter"}, {"contentid"=>"461753485185150976", "ldate"=>"Thu May 01 06:26:24 +0000 2014", "author"=>"Public Safety East", "perferredUsername"=>"PublicSafetyEst", "url"=>"http://twitter.com/PublicSafetyEst/status/461753485185150976", "source"=>"Twitter"}, {"contentid"=>"461753392277102592", "ldate"=>"Thu May 01 06:26:02 +0000 2014", "author"=>"Jazmine❣", "perferredUsername"=>"__jcampos", "url"=>"http://twitter.com/__jcampos/status/461753392277102592", "source"=>"Twitter"}, {"contentid"=>"461753229064171520", "ldate"=>"Thu May 01 06:25:23 +0000 2014", "author"=>"Ron Darbouze", "perferredUsername"=>"rdarbueoz", "url"=>"http://twitter.com/rdarbueoz/status/461753229064171520", "source"=>"Twitter"}, {"contentid"=>"461753012961026048", "ldate"=>"Thu May 01 06:24:31 +0000 2014", "author"=>"marisela", "perferredUsername"=>"Cutie_Love28", "url"=>"http://twitter.com/Cutie_Love28/status/461753012961026048", "source"=>"Twitter"}, {"contentid"=>"461753012772290560", "ldate"=>"Thu May 01 06:24:31 +0000 2014", "author"=>"Sammie Bauer", "perferredUsername"=>"SamBauer3", "url"=>"http://twitter.com/SamBauer3/status/461753012772290560", "source"=>"Twitter"}, {"contentid"=>"461752983630262272", "ldate"=>"Thu May 01 06:24:24 +0000 2014", "author"=>"Jessss.♡", "perferredUsername"=>"jesssslopez18", "url"=>"http://twitter.com/jesssslopez18/status/461752983630262272", "source"=>"Twitter"}, {"contentid"=>"461752677882277889", "ldate"=>"Thu May 01 06:23:12 +0000 2014", "author"=>"merisa castro♡", "perferredUsername"=>"merisacastro", "url"=>"http://twitter.com/merisacastro/status/461752677882277889", "source"=>"Twitter"}, {"contentid"=>"461752657980694528", "ldate"=>"Thu May 01 06:23:07 +0000 2014", "author"=>"48 days till R5", "perferredUsername"=>"olivia9399", "url"=>"http://twitter.com/olivia9399/status/461752657980694528", "source"=>"Twitter"}, {"contentid"=>"461752029912637440", "ldate"=>"Thu May 01 06:20:37 +0000 2014", "author"=>" ♡ intan ♡ ", "perferredUsername"=>"mxstlyross", "url"=>"http://twitter.com/mxstlyross/status/461752029912637440", "source"=>"Twitter"}, {"contentid"=>"461751750148784128", "ldate"=>"Thu May 01 06:19:30 +0000 2014", "author"=>"Chez", "perferredUsername"=>"ChezisMe", "url"=>"http://twitter.com/ChezisMe/status/461751750148784128", "source"=>"Twitter"}, {"contentid"=>"461751659589160960", "ldate"=>"Thu May 01 06:19:09 +0000 2014", "author"=>".", "perferredUsername"=>"yeaSHESinnocent", "url"=>"http://twitter.com/yeaSHESinnocent/status/461751659589160960", "source"=>"Twitter"}, {"contentid"=>"461751617448988672", "ldate"=>"Thu May 01 06:18:59 +0000 2014", "author"=>"News 24h Ireland", "perferredUsername"=>"news24hirl", "url"=>"http://twitter.com/news24hirl/status/461751617448988672", "source"=>"Twitter"}, {"contentid"=>"461751545697427456", "ldate"=>"Thu May 01 06:18:42 +0000 2014", "author"=>"not 'THE' LES GREEN", "perferredUsername"=>"lesgreen66", "url"=>"http://twitter.com/lesgreen66/status/461751545697427456", "source"=>"Twitter"}, {"contentid"=>"461750966568910848", "ldate"=>"Thu May 01 06:16:24 +0000 2014", "author"=>"Jenna ", "perferredUsername"=>"morrisjenna", "url"=>"http://twitter.com/morrisjenna/status/461750966568910848", "source"=>"Twitter"}, {"contentid"=>"461750752462258176", "ldate"=>"Thu May 01 06:15:32 +0000 2014", "author"=>"Shirley Saker", "perferredUsername"=>"shirleyr5louder", "url"=>"http://twitter.com/shirleyr5louder/status/461750752462258176", "source"=>"Twitter"}]}, "requestid"=>"4c432ec2-beb9-473d-ad2d-1ca4b9ea360c"}
|
410
|
+
I, [2014-05-01T02:30:04.410313 #32088] INFO -- : Prediction loader waiting for scores ...
|
411
|
+
D, [2014-05-01T02:30:04.410347 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
412
|
+
D, [2014-05-01T02:45:02.904236 #32088] DEBUG -- : Adding posts for scout_id: 27
|
413
|
+
D, [2014-05-01T02:45:02.905363 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Ra hor akhti", body: "http://t.co/PGOgu76GDY What a difference: Marlins.....", url: "http://twitter.com/ra_hor_akhti/status/461756385655...", source: "Twitter", sentiment: #<BigDecimal:6289488,'0.0',9(36)>, leadprob: #<BigDecimal:62891b8,'0.4595194080 427659E0',18(45)>, notleadprob: #<BigDecimal:6288e20,'0.7030432626 713323E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461756385655812096", ldate: "2014-05-01 06:37:56", loadstamp: "2014-05-01 06:45:02", user_id: 7, scout_id: 27>
|
414
|
+
D, [2014-05-01T02:45:02.918602 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Thomas Goodwin", body: "RT @allvoices: Single mother in Florida dies as sta...", url: "http://twitter.com/RockDocInLV/status/4617564467538...", source: "Twitter", sentiment: #<BigDecimal:66f0b70,'0.0',9(36)>, leadprob: #<BigDecimal:66f0940,'0.6956651820 302771E0',18(45)>, notleadprob: #<BigDecimal:66f0698,'0.8583001108 260321E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461756446753828864", ldate: "2014-05-01 06:38:10", loadstamp: "2014-05-01 06:45:02", user_id: 7, scout_id: 27>
|
415
|
+
I, [2014-05-01T02:45:02.934343 #32088] INFO -- : Total Number of records: 2
|
416
|
+
I, [2014-05-01T02:45:02.934385 #32088] INFO -- : Total Number of records Not Loaded: 0
|
417
|
+
I, [2014-05-01T02:45:02.934415 #32088] INFO -- : Prediction loader waiting for scores ...
|
418
|
+
D, [2014-05-01T02:45:02.934444 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
419
|
+
W, [2014-05-01T02:45:03.424637 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"Nigga tryna glide and drive like boy just text me ὠ2ὢ9", "contentid"=>"461758081060200448"}, {"content"=>"Since he want take forever to text backὡ2bouta drive him", "contentid"=>"461758052778389504"}, {"content"=>"RT @Nshahaha: @Hasifah___ @KidiWiddy @Trahaha15 Drive safe. Text me bijes. Love u danny!", "contentid"=>"461757965997834240"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/12kQykyosg", "contentid"=>"461757959052488704"}, {"content"=>"@Hasifah___ @KidiWiddy @Trahaha15 Drive safe. Text me bijes. Love u danny!", "contentid"=>"461757464573001728"}, {"content"=>"@Gutta_Melo my friend is driving me so text me and we will talk", "contentid"=>"461756942864887808"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461756883368304640"}, {"content"=>"RT @arinaaghaffar: “@Fact: Please, don't text and drive: http://t.co/k45HmfaAWl” and take selfie too ὡD @youareherllich", "contentid"=>"461756688337350656"}, {"content"=>"\"I drive you crazy when I text back.. I drive you cray cray when I dont text back.\" My life.", "contentid"=>"461756610990579712"}, {"content"=>"@doeboy_111 I ain't shit bro. This nigga sleep and the road mad open so I got bored and refused to drive. I'd rather text.", "contentid"=>"461756491394191360"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461755152505245697"}, {"content"=>"“@SamBauer3: Someone text me to keep me up driving home.” That doesn't sound very safe Sammie. Lol ὠ2", "contentid"=>"461754686152785920"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461754585325920256"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461754572025761792"}, {"content"=>"I'm not gonna text you but I get out of work at 3 am taking Jen to lunch then you can drive me to work \nSo you text me", "contentid"=>"461754371106037760"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461758081060200448", "ldate"=>"Thu May 01 06:44:40 +0000 2014", "author"=>"PMB", "perferredUsername"=>"PrettyRem_", "url"=>"http://twitter.com/PrettyRem_/status/461758081060200448", "source"=>"Twitter"}, {"contentid"=>"461758052778389504", "ldate"=>"Thu May 01 06:44:33 +0000 2014", "author"=>"♍️®eion", "perferredUsername"=>"DrakeRealWife_", "url"=>"http://twitter.com/DrakeRealWife_/status/461758052778389504", "source"=>"Twitter"}, {"contentid"=>"461757965997834240", "ldate"=>"Thu May 01 06:44:12 +0000 2014", "author"=>"athirah huzaisham", "perferredUsername"=>"Trahaha15", "url"=>"http://twitter.com/Trahaha15/status/461757965997834240", "source"=>"Twitter"}, {"contentid"=>"461757959052488704", "ldate"=>"Thu May 01 06:44:11 +0000 2014", "author"=>"Lil Miss Fiasco", "perferredUsername"=>"LilMissFiasco", "url"=>"http://twitter.com/LilMissFiasco/status/461757959052488704", "source"=>"Twitter"}, {"contentid"=>"461757464573001728", "ldate"=>"Thu May 01 06:42:13 +0000 2014", "author"=>"Nursyazwan", "perferredUsername"=>"Nshahaha", "url"=>"http://twitter.com/Nshahaha/status/461757464573001728", "source"=>"Twitter"}, {"contentid"=>"461756942864887808", "ldate"=>"Thu May 01 06:40:08 +0000 2014", "author"=>"The REAL GUTTA Meg", "perferredUsername"=>"GuttaMeg", "url"=>"http://twitter.com/GuttaMeg/status/461756942864887808", "source"=>"Twitter"}, {"contentid"=>"461756883368304640", "ldate"=>"Thu May 01 06:39:54 +0000 2014", "author"=>"Little Missy", "perferredUsername"=>"LazarusTrailniw", "url"=>"http://twitter.com/LazarusTrailniw/status/461756883368304640", "source"=>"Twitter"}, {"contentid"=>"461756688337350656", "ldate"=>"Thu May 01 06:39:08 +0000 2014", "author"=>" fi", "perferredUsername"=>"Syahfinoo", "url"=>"http://twitter.com/Syahfinoo/status/461756688337350656", "source"=>"Twitter"}, {"contentid"=>"461756610990579712", "ldate"=>"Thu May 01 06:38:49 +0000 2014", "author"=>"Sabrina Smith", "perferredUsername"=>"Brielerina", "url"=>"http://twitter.com/Brielerina/status/461756610990579712", "source"=>"Twitter"}, {"contentid"=>"461756491394191360", "ldate"=>"Thu May 01 06:38:21 +0000 2014", "author"=>"REALA THAN MOST", "perferredUsername"=>"Reala_than_most", "url"=>"http://twitter.com/Reala_than_most/status/461756491394191360", "source"=>"Twitter"}, {"contentid"=>"461755152505245697", "ldate"=>"Thu May 01 06:33:02 +0000 2014", "author"=>"(:", "perferredUsername"=>"Seifertdom", "url"=>"http://twitter.com/Seifertdom/status/461755152505245697", "source"=>"Twitter"}, {"contentid"=>"461754686152785920", "ldate"=>"Thu May 01 06:31:10 +0000 2014", "author"=>"Erin Collier", "perferredUsername"=>"erincollier10", "url"=>"http://twitter.com/erincollier10/status/461754686152785920", "source"=>"Twitter"}, {"contentid"=>"461754585325920256", "ldate"=>"Thu May 01 06:30:46 +0000 2014", "author"=>"Meghan Golden ", "perferredUsername"=>"PiferHobbyglb", "url"=>"http://twitter.com/PiferHobbyglb/status/461754585325920256", "source"=>"Twitter"}, {"contentid"=>"461754572025761792", "ldate"=>"Thu May 01 06:30:43 +0000 2014", "author"=>"Valerie.", "perferredUsername"=>"Vroseperez", "url"=>"http://twitter.com/Vroseperez/status/461754572025761792", "source"=>"Twitter"}, {"contentid"=>"461754371106037760", "ldate"=>"Thu May 01 06:29:55 +0000 2014", "author"=>"YourFriendDillon", "perferredUsername"=>"Dillonlaw23", "url"=>"http://twitter.com/Dillonlaw23/status/461754371106037760", "source"=>"Twitter"}]}, "requestid"=>"cf5f60f5-80b8-445d-a12b-440886b6ecee"}
|
420
|
+
I, [2014-05-01T02:45:03.424706 #32088] INFO -- : Prediction loader waiting for scores ...
|
421
|
+
D, [2014-05-01T02:45:03.424739 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
422
|
+
D, [2014-05-01T03:00:04.230264 #32088] DEBUG -- : Adding posts for scout_id: 27
|
423
|
+
D, [2014-05-01T03:00:04.230335 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
424
|
+
D, [2014-05-01T03:00:04.238348 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Amazon", body: "Amazon Begins Collecting Florida Taxes for Internet...", url: "http://twitter.com/amazontwittnews/status/461761000...", source: "Twitter", sentiment: #<BigDecimal:6b2fd08,'0.0',9(36)>, leadprob: #<BigDecimal:6b2fab0,'0.8647825443 437055E0',18(45)>, notleadprob: #<BigDecimal:6b2f808,'0.5526620808 771205E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461761000572989440", ldate: "2014-05-01 06:56:16", loadstamp: "2014-05-01 07:00:04", user_id: 7, scout_id: 27>
|
425
|
+
I, [2014-05-01T03:00:04.248167 #32088] INFO -- : Total Number of records: 1
|
426
|
+
I, [2014-05-01T03:00:04.248210 #32088] INFO -- : Total Number of records Not Loaded: 0
|
427
|
+
I, [2014-05-01T03:00:04.248240 #32088] INFO -- : Prediction loader waiting for scores ...
|
428
|
+
D, [2014-05-01T03:00:04.248269 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
429
|
+
W, [2014-05-01T03:00:05.091115 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"No text or email when driving is the mantra from @BreakfastNT this morning. Twitter, Facebook etc all fine. It's 2004..", "contentid"=>"461761798371557376"}, {"content"=>"RT @Louis_Tomlinson: Help spread the word that no text is worth a life. Take a pledge & join the movement at http://t.co/7t42vv5Tc6. Textin…", "contentid"=>"461761419923689472"}, {"content"=>"DO NOT TEXT ME WHILE YOU'RE DRIVING I'm not trying to be the last unfinished message they find when your ass is wrapped around a tree.", "contentid"=>"461761310074875904"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461761241321848832"}, {"content"=>"RT @_ElyseCee: I do not text people while they driving I be so scared for they life", "contentid"=>"461761221562101760"}, {"content"=>"I do not text people while they driving I be so scared for they life", "contentid"=>"461760895597957120"}, {"content"=>"@MichaelVeggies I drive my car for bae and only text bae but she's still like nah", "contentid"=>"461760758670323712"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/zbuxCXHcPZ", "contentid"=>"461760622099984384"}, {"content"=>"RT @OTS_CA: Texting increases your chance of getting into an accident by 23%. Don't vtext and drive, it's not worth it. #DistractedDriving", "contentid"=>"461760304355872768"}, {"content"=>"@youknowitsjocko I don't even know what driving is. I'm expecting in n out on my doorstep soon, I'll text you my order", "contentid"=>"461760195878592512"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/9sXzbGAs6H Don't Text & Drive", "contentid"=>"461760164358397953"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461759788775657472"}, {"content"=>"RT @ImThe_NextTONY: Come text drive my new car @HeEatingMe_", "contentid"=>"461759650384187393"}, {"content"=>"Come text drive my new car @HeEatingMe_", "contentid"=>"461759618499104769"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461759577760235520"}, {"content"=>"@SamBauer3 you shouldn't text and drive!", "contentid"=>"461759457643343872"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461759218580979712"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461759108245635072"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461758898173509632"}, {"content"=>"DO NOT TEXT ME WHILE YOU’RE\nDRIVING I’m not trying to be the last\nunfinished message they find when\nyour ass is wrapped around a tree.", "contentid"=>"461758280503939072"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461761798371557376", "ldate"=>"Thu May 01 06:59:26 +0000 2014", "author"=>"ivansantry", "perferredUsername"=>"ivansantry", "url"=>"http://twitter.com/ivansantry/status/461761798371557376", "source"=>"Twitter"}, {"contentid"=>"461761419923689472", "ldate"=>"Thu May 01 06:57:56 +0000 2014", "author"=>"il cambiamento", "perferredUsername"=>"AlessiaHoxha", "url"=>"http://twitter.com/AlessiaHoxha/status/461761419923689472", "source"=>"Twitter"}, {"contentid"=>"461761310074875904", "ldate"=>"Thu May 01 06:57:30 +0000 2014", "author"=>"Ilana the Crazy!", "perferredUsername"=>"__epidemic_", "url"=>"http://twitter.com/__epidemic_/status/461761310074875904", "source"=>"Twitter"}, {"contentid"=>"461761241321848832", "ldate"=>"Thu May 01 06:57:13 +0000 2014", "author"=>"Jonathan Rees", "perferredUsername"=>"reesdumpling", "url"=>"http://twitter.com/reesdumpling/status/461761241321848832", "source"=>"Twitter"}, {"contentid"=>"461761221562101760", "ldate"=>"Thu May 01 06:57:09 +0000 2014", "author"=>"Tone.", "perferredUsername"=>"h8tone", "url"=>"http://twitter.com/h8tone/status/461761221562101760", "source"=>"Twitter"}, {"contentid"=>"461760895597957120", "ldate"=>"Thu May 01 06:55:51 +0000 2014", "author"=>"$.", "perferredUsername"=>"_ElyseCee", "url"=>"http://twitter.com/_ElyseCee/status/461760895597957120", "source"=>"Twitter"}, {"contentid"=>"461760758670323712", "ldate"=>"Thu May 01 06:55:18 +0000 2014", "author"=>"Fuckboy Chris", "perferredUsername"=>"swaggy_c01", "url"=>"http://twitter.com/swaggy_c01/status/461760758670323712", "source"=>"Twitter"}, {"contentid"=>"461760622099984384", "ldate"=>"Thu May 01 06:54:46 +0000 2014", "author"=>"Kelsey Miller", "perferredUsername"=>"KelseyM60898599", "url"=>"http://twitter.com/KelseyM60898599/status/461760622099984384", "source"=>"Twitter"}, {"contentid"=>"461760304355872768", "ldate"=>"Thu May 01 06:53:30 +0000 2014", "author"=>"LAPD Mission", "perferredUsername"=>"LAPDMission", "url"=>"http://twitter.com/LAPDMission/status/461760304355872768", "source"=>"Twitter"}, {"contentid"=>"461760195878592512", "ldate"=>"Thu May 01 06:53:04 +0000 2014", "author"=>"• Makenna Green •", "perferredUsername"=>"Makenna_LeeAnn", "url"=>"http://twitter.com/Makenna_LeeAnn/status/461760195878592512", "source"=>"Twitter"}, {"contentid"=>"461760164358397953", "ldate"=>"Thu May 01 06:52:56 +0000 2014", "author"=>"mr joe", "perferredUsername"=>"joeyy770", "url"=>"http://twitter.com/joeyy770/status/461760164358397953", "source"=>"Twitter"}, {"contentid"=>"461759788775657472", "ldate"=>"Thu May 01 06:51:27 +0000 2014", "author"=>"Maddison Emma ", "perferredUsername"=>"Riordanmvg", "url"=>"http://twitter.com/Riordanmvg/status/461759788775657472", "source"=>"Twitter"}, {"contentid"=>"461759650384187393", "ldate"=>"Thu May 01 06:50:54 +0000 2014", "author"=>"Jazmine", "perferredUsername"=>"HeEatingMe_", "url"=>"http://twitter.com/HeEatingMe_/status/461759650384187393", "source"=>"Twitter"}, {"contentid"=>"461759618499104769", "ldate"=>"Thu May 01 06:50:46 +0000 2014", "author"=>"Tony", "perferredUsername"=>"ImThe_NextTONY", "url"=>"http://twitter.com/ImThe_NextTONY/status/461759618499104769", "source"=>"Twitter"}, {"contentid"=>"461759577760235520", "ldate"=>"Thu May 01 06:50:37 +0000 2014", "author"=>"Stu", "perferredUsername"=>"ArkadenSniper", "url"=>"http://twitter.com/ArkadenSniper/status/461759577760235520", "source"=>"Twitter"}, {"contentid"=>"461759457643343872", "ldate"=>"Thu May 01 06:50:08 +0000 2014", "author"=>"Brent Hartman", "perferredUsername"=>"MrBangBangg", "url"=>"http://twitter.com/MrBangBangg/status/461759457643343872", "source"=>"Twitter"}, {"contentid"=>"461759218580979712", "ldate"=>"Thu May 01 06:49:11 +0000 2014", "author"=>"BethanyErin ", "perferredUsername"=>"Whetstonexgq", "url"=>"http://twitter.com/Whetstonexgq/status/461759218580979712", "source"=>"Twitter"}, {"contentid"=>"461759108245635072", "ldate"=>"Thu May 01 06:48:45 +0000 2014", "author"=>"Peter", "perferredUsername"=>"SkinnyPete14", "url"=>"http://twitter.com/SkinnyPete14/status/461759108245635072", "source"=>"Twitter"}, {"contentid"=>"461758898173509632", "ldate"=>"Thu May 01 06:47:55 +0000 2014", "author"=>"l°lly", "perferredUsername"=>"fuckshitwhore_", "url"=>"http://twitter.com/fuckshitwhore_/status/461758898173509632", "source"=>"Twitter"}, {"contentid"=>"461758280503939072", "ldate"=>"Thu May 01 06:45:27 +0000 2014", "author"=>"#The_Wolf_Of_Stoners", "perferredUsername"=>"StoanDuma", "url"=>"http://twitter.com/StoanDuma/status/461758280503939072", "source"=>"Twitter"}]}, "requestid"=>"57bae818-7e1b-4789-a04a-132433174e4c"}
|
430
|
+
I, [2014-05-01T03:00:05.091197 #32088] INFO -- : Prediction loader waiting for scores ...
|
431
|
+
D, [2014-05-01T03:00:05.091231 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
432
|
+
W, [2014-05-01T03:15:05.040502 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"RT @OTS_CA: Texting increases your chance of getting into an accident by 23%. Don't text and drive, it's not worth it. #DistractedDriving", "contentid"=>"461765673648021504"}, {"content"=>"Texting increases your chance of getting into an accident by 23%. Don't text and drive, it's not worth it. #DistractedDriving”", "contentid"=>"461765667507552257"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461765638751404032"}, {"content"=>"RT @Prettyman_Kyle: I try not to text people when I know they are driving because if they die from looking at their phone and replying that…", "contentid"=>"461765091197591553"}, {"content"=>"RT @OTS_CA: Texting increases your chance of getting into an accident by 23%. Don't text and drive, it's not worth it. #DistractedDriving", "contentid"=>"461764543274680320"}, {"content"=>"RT @LASDQuiana: U Drive, U text, U Pay! #LASD Crackdown on Texting & Cell Use While Driving. April: Nat'l Distracted Driving Month.\nhttp://…", "contentid"=>"461763775012413440"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461762738415763456"}, {"content"=>"Don't Text 'n Drive! Now officially and specifically banned in Ireland - http://t.co/oOYY3j7lln (pdf)", "contentid"=>"461762547503595520"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461762180057014272"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461765673648021504", "ldate"=>"Thu May 01 07:14:50 +0000 2014", "author"=>"#PrayForTyler", "perferredUsername"=>"KyleMason943", "url"=>"http://twitter.com/KyleMason943/status/461765673648021504", "source"=>"Twitter"}, {"contentid"=>"461765667507552257", "ldate"=>"Thu May 01 07:14:48 +0000 2014", "author"=>"#PrayForTyler", "perferredUsername"=>"KyleMason943", "url"=>"http://twitter.com/KyleMason943/status/461765667507552257", "source"=>"Twitter"}, {"contentid"=>"461765638751404032", "ldate"=>"Thu May 01 07:14:42 +0000 2014", "author"=>"WOODSON LIKE", "perferredUsername"=>"PROLIKEWOODSON", "url"=>"http://twitter.com/PROLIKEWOODSON/status/461765638751404032", "source"=>"Twitter"}, {"contentid"=>"461765091197591553", "ldate"=>"Thu May 01 07:12:31 +0000 2014", "author"=>"kaysie culbertson", "perferredUsername"=>"kaysielynn13", "url"=>"http://twitter.com/kaysielynn13/status/461765091197591553", "source"=>"Twitter"}, {"contentid"=>"461764543274680320", "ldate"=>"Thu May 01 07:10:20 +0000 2014", "author"=>"Chief Zipperman", "perferredUsername"=>"LASchoolPolice", "url"=>"http://twitter.com/LASchoolPolice/status/461764543274680320", "source"=>"Twitter"}, {"contentid"=>"461763775012413440", "ldate"=>"Thu May 01 07:07:17 +0000 2014", "author"=>"Gustavo Gutierrez™", "perferredUsername"=>"gusjournalist", "url"=>"http://twitter.com/gusjournalist/status/461763775012413440", "source"=>"Twitter"}, {"contentid"=>"461762738415763456", "ldate"=>"Thu May 01 07:03:10 +0000 2014", "author"=>"Mallory Danna ", "perferredUsername"=>"FreeseLeazep", "url"=>"http://twitter.com/FreeseLeazep/status/461762738415763456", "source"=>"Twitter"}, {"contentid"=>"461762547503595520", "ldate"=>"Thu May 01 07:02:25 +0000 2014", "author"=>"Sven van der Meer", "perferredUsername"=>"vdmeersven", "url"=>"http://twitter.com/vdmeersven/status/461762547503595520", "source"=>"Twitter"}, {"contentid"=>"461762180057014272", "ldate"=>"Thu May 01 07:00:57 +0000 2014", "author"=>"Ben Smail", "perferredUsername"=>"bennysmail18", "url"=>"http://twitter.com/bennysmail18/status/461762180057014272", "source"=>"Twitter"}]}, "requestid"=>"bf251141-f7cd-409c-b54b-fe2a5af076da"}
|
433
|
+
I, [2014-05-01T03:15:05.040571 #32088] INFO -- : Prediction loader waiting for scores ...
|
434
|
+
D, [2014-05-01T03:15:05.040605 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
435
|
+
D, [2014-05-01T03:30:03.734373 #32088] DEBUG -- : Adding posts for scout_id: 27
|
436
|
+
D, [2014-05-01T03:30:03.734444 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
437
|
+
D, [2014-05-01T03:30:03.742119 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Streaming TV", body: "#Amazon Amazon Begins Collecting Florida Taxes for ...", url: "http://twitter.com/astreamingbox/status/46176679947...", source: "Twitter", sentiment: #<BigDecimal:6c0a840,'0.0',9(36)>, leadprob: #<BigDecimal:6c0a610,'0.8858141585 90992E0',18(45)>, notleadprob: #<BigDecimal:6c0a390,'0.6239374267 78747E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461766799470497792", ldate: "2014-05-01 07:19:18", loadstamp: "2014-05-01 07:30:03", user_id: 7, scout_id: 27>
|
438
|
+
I, [2014-05-01T03:30:03.750809 #32088] INFO -- : Total Number of records: 1
|
439
|
+
I, [2014-05-01T03:30:03.750850 #32088] INFO -- : Total Number of records Not Loaded: 0
|
440
|
+
I, [2014-05-01T03:30:03.750879 #32088] INFO -- : Prediction loader waiting for scores ...
|
441
|
+
D, [2014-05-01T03:30:03.750906 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
442
|
+
W, [2014-05-01T03:30:04.357419 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"DO NOT TEXT ME WHILE YOU'RE DRIVING I'm not trying to be the last unfinished message they find when your ass is wrapped around a tree.", "contentid"=>"461768496264011776"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461768189379354624"}, {"content"=>"RT @NewstalkFM: This morning: Adams under arrest; Airrage incident at Ennis court and new penaltiies for drive-text or emailing http://t.co…", "contentid"=>"461767490079821824"}, {"content"=>"Penalties for texting while driving take effect: Motorists caught sending a text message or email while drivin... http://t.co/t1X7yPYuht", "contentid"=>"461767232909881344"}, {"content"=>"Penalties for texting while driving take effect: Motorists caught sending a text message or email while drivin... http://t.co/eJLXDbPt1V", "contentid"=>"461767232117174272"}, {"content"=>"This morning: Adams under arrest; Airrage incident at Ennis court and new penaltiies for drive-text or emailing http://t.co/ZnkagvYTO9 #ntfm", "contentid"=>"461766958875418624"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461766950340018176"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461766337216675840"}, {"content"=>"@KiminalKiminax alright, take care bro, drive safe. Dont text and drive nigg", "contentid"=>"461766025327808512"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461765871153594368"}, {"content"=>"So many incorrect headlines on radio about text driving ban. \"Bans accessing info on your phone\", wrong. \"Even using handsfree\", wrong.", "contentid"=>"461765856788492288"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461768496264011776", "ldate"=>"Thu May 01 07:26:03 +0000 2014", "author"=>"Daniella SkiLLet", "perferredUsername"=>"nucIeates", "url"=>"http://twitter.com/nucIeates/status/461768496264011776", "source"=>"Twitter"}, {"contentid"=>"461768189379354624", "ldate"=>"Thu May 01 07:24:50 +0000 2014", "author"=>"RaChelle", "perferredUsername"=>"Prietose", "url"=>"http://twitter.com/Prietose/status/461768189379354624", "source"=>"Twitter"}, {"contentid"=>"461767490079821824", "ldate"=>"Thu May 01 07:22:03 +0000 2014", "author"=>"Karol Jackson OShea ", "perferredUsername"=>"menapiaproperti", "url"=>"http://twitter.com/menapiaproperti/status/461767490079821824", "source"=>"Twitter"}, {"contentid"=>"461767232909881344", "ldate"=>"Thu May 01 07:21:02 +0000 2014", "author"=>"News 24h Ireland", "perferredUsername"=>"news24hirl", "url"=>"http://twitter.com/news24hirl/status/461767232909881344", "source"=>"Twitter"}, {"contentid"=>"461767232117174272", "ldate"=>"Thu May 01 07:21:02 +0000 2014", "author"=>"Directories", "perferredUsername"=>"DirectoriesIRL", "url"=>"http://twitter.com/DirectoriesIRL/status/461767232117174272", "source"=>"Twitter"}, {"contentid"=>"461766958875418624", "ldate"=>"Thu May 01 07:19:56 +0000 2014", "author"=>"Newstalk 106-108fm", "perferredUsername"=>"NewstalkFM", "url"=>"http://twitter.com/NewstalkFM/status/461766958875418624", "source"=>"Twitter"}, {"contentid"=>"461766950340018176", "ldate"=>"Thu May 01 07:19:54 +0000 2014", "author"=>"Mitch Tomkins ", "perferredUsername"=>"Hazeluuq", "url"=>"http://twitter.com/Hazeluuq/status/461766950340018176", "source"=>"Twitter"}, {"contentid"=>"461766337216675840", "ldate"=>"Thu May 01 07:17:28 +0000 2014", "author"=>"Kelly", "perferredUsername"=>"exenders", "url"=>"http://twitter.com/exenders/status/461766337216675840", "source"=>"Twitter"}, {"contentid"=>"461766025327808512", "ldate"=>"Thu May 01 07:16:14 +0000 2014", "author"=>"", "perferredUsername"=>"FaliqNazari", "url"=>"http://twitter.com/FaliqNazari/status/461766025327808512", "source"=>"Twitter"}, {"contentid"=>"461765871153594368", "ldate"=>"Thu May 01 07:15:37 +0000 2014", "author"=>"Ivonne ", "perferredUsername"=>"Machadoyhg", "url"=>"http://twitter.com/Machadoyhg/status/461765871153594368", "source"=>"Twitter"}, {"contentid"=>"461765856788492288", "ldate"=>"Thu May 01 07:15:34 +0000 2014", "author"=>"Rossa McMahon", "perferredUsername"=>"rossamcmahon", "url"=>"http://twitter.com/rossamcmahon/status/461765856788492288", "source"=>"Twitter"}]}, "requestid"=>"f5d78d68-471b-4917-b1df-b5b4cbe1fe07"}
|
443
|
+
I, [2014-05-01T03:30:04.357487 #32088] INFO -- : Prediction loader waiting for scores ...
|
444
|
+
D, [2014-05-01T03:30:04.357520 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
445
|
+
W, [2014-05-01T03:45:04.392442 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"RT @VuReichertzva: I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461772588306268160"}, {"content"=>"Cop Rarri's ion text drive em! Ὡ7", "contentid"=>"461771635532374016"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461770974019743744"}, {"content"=>"Even though that driving instructor text clearly isn't real, it made me laugh so much", "contentid"=>"461770745052688384"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461770557747240960"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/QyR6MraF4M", "contentid"=>"461770271184023552"}, {"content"=>"Lol @inigoroda_ we can really jus have this convo thru text. Drive safe tomorrow!!! And bring a ready liver!!!", "contentid"=>"461770191467069440"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461770069102432257"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461769712683450368"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461772588306268160", "ldate"=>"Thu May 01 07:42:19 +0000 2014", "author"=>"Fatihah♕", "perferredUsername"=>"_Imnotfabz_", "url"=>"http://twitter.com/_Imnotfabz_/status/461772588306268160", "source"=>"Twitter"}, {"contentid"=>"461771635532374016", "ldate"=>"Thu May 01 07:38:31 +0000 2014", "author"=>"Kayshon Carter", "perferredUsername"=>"labelmefresh_", "url"=>"http://twitter.com/labelmefresh_/status/461771635532374016", "source"=>"Twitter"}, {"contentid"=>"461770974019743744", "ldate"=>"Thu May 01 07:35:54 +0000 2014", "author"=>"Dany Jijon", "perferredUsername"=>"VuReichertzva", "url"=>"http://twitter.com/VuReichertzva/status/461770974019743744", "source"=>"Twitter"}, {"contentid"=>"461770745052688384", "ldate"=>"Thu May 01 07:34:59 +0000 2014", "author"=>"JadeEvangeline", "perferredUsername"=>"JadeEvangeline", "url"=>"http://twitter.com/JadeEvangeline/status/461770745052688384", "source"=>"Twitter"}, {"contentid"=>"461770557747240960", "ldate"=>"Thu May 01 07:34:14 +0000 2014", "author"=>"[maleficent]", "perferredUsername"=>"scarletjinx14", "url"=>"http://twitter.com/scarletjinx14/status/461770557747240960", "source"=>"Twitter"}, {"contentid"=>"461770271184023552", "ldate"=>"Thu May 01 07:33:06 +0000 2014", "author"=>"Billy Wijaya", "perferredUsername"=>"BillyW_SC", "url"=>"http://twitter.com/BillyW_SC/status/461770271184023552", "source"=>"Twitter"}, {"contentid"=>"461770191467069440", "ldate"=>"Thu May 01 07:32:47 +0000 2014", "author"=>"CT", "perferredUsername"=>"chuckT523", "url"=>"http://twitter.com/chuckT523/status/461770191467069440", "source"=>"Twitter"}, {"contentid"=>"461770069102432257", "ldate"=>"Thu May 01 07:32:18 +0000 2014", "author"=>"Billy Wijaya", "perferredUsername"=>"BillyW_SC", "url"=>"http://twitter.com/BillyW_SC/status/461770069102432257", "source"=>"Twitter"}, {"contentid"=>"461769712683450368", "ldate"=>"Thu May 01 07:30:53 +0000 2014", "author"=>"Symm", "perferredUsername"=>"NorsyamimiMNsr", "url"=>"http://twitter.com/NorsyamimiMNsr/status/461769712683450368", "source"=>"Twitter"}]}, "requestid"=>"c530ddbc-2f7b-4688-9cf3-306bca459886"}
|
446
|
+
I, [2014-05-01T03:45:04.392510 #32088] INFO -- : Prediction loader waiting for scores ...
|
447
|
+
D, [2014-05-01T03:45:04.392544 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
448
|
+
D, [2014-05-01T04:00:05.296698 #32088] DEBUG -- : Adding posts for scout_id: 27
|
449
|
+
D, [2014-05-01T04:00:05.296771 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
450
|
+
D, [2014-05-01T04:00:05.304470 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Melody A. Heilmann", body: "Group Bashing Charlie Crist Vows It's Not A Conserv...", url: "http://twitter.com/25CARIBBEANSOUL/status/461774245...", source: "Twitter", sentiment: #<BigDecimal:6cd3ec0,'0.0',9(36)>, leadprob: #<BigDecimal:6cd3c90,'0.7596934426 445241E0',18(45)>, notleadprob: #<BigDecimal:6cd3a60,'0.8383262387 030064E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461774245454807040", ldate: "2014-05-01 07:48:54", loadstamp: "2014-05-01 08:00:05", user_id: 7, scout_id: 27>
|
451
|
+
D, [2014-05-01T04:00:05.320924 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Streaming TV", body: "#Amazon Amazon Begins Collecting Florida Taxes for ...", url: "http://twitter.com/astreamingbox/status/46177457452...", source: "Twitter", sentiment: #<BigDecimal:6d3f990,'0.0',9(36)>, leadprob: #<BigDecimal:6d3f760,'0.8858141585 90992E0',18(45)>, notleadprob: #<BigDecimal:6d3f508,'0.6239374267 78747E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461774574527328257", ldate: "2014-05-01 07:50:12", loadstamp: "2014-05-01 08:00:05", user_id: 7, scout_id: 27>
|
452
|
+
D, [2014-05-01T04:00:05.337596 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Alessandro Gelke", body: "RT @MMAFA: Text of the proposed rewritten MMA and b...", url: "http://twitter.com/AlessandroGelke/status/461775651...", source: "Twitter", sentiment: #<BigDecimal:6da6ed8,'0.0',9(36)>, leadprob: #<BigDecimal:6da6c80,'0.7236561127 96687E0',18(45)>, notleadprob: #<BigDecimal:6da6a50,'0.8828714636 943371E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461775651104489473", ldate: "2014-05-01 07:54:29", loadstamp: "2014-05-01 08:00:05", user_id: 7, scout_id: 27>
|
453
|
+
I, [2014-05-01T04:00:05.353375 #32088] INFO -- : Total Number of records: 3
|
454
|
+
I, [2014-05-01T04:00:05.353419 #32088] INFO -- : Total Number of records Not Loaded: 0
|
455
|
+
I, [2014-05-01T04:00:05.353448 #32088] INFO -- : Prediction loader waiting for scores ...
|
456
|
+
D, [2014-05-01T04:00:05.353477 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
457
|
+
W, [2014-05-01T04:00:05.906749 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"@ChallyMoo 5 min sitting and no text received drive me crazy..hha", "contentid"=>"461776508453806081"}, {"content"=>"Text Your Wife Into Bed: Presentation reveals a weird but effective method for waking up your wife's sex drive. http://t.co/dONWDT5qVt", "contentid"=>"461775597287383042"}, {"content"=>"No Call, Text, Tweet or email can ever be too important when you're DRIVING. Don't trade ur #SAFETY and #LIFE for them. Its not worth it #TB", "contentid"=>"461775443121934338"}, {"content"=>"DO NOT TEXT ME WHILE YOU'RE DRIVING I'm not trying to be the last unfinished message they find when your ass is wrapped around a tree.", "contentid"=>"461775290075983873"}, {"content"=>"DO NOT TEXT ME WHILE YOU'RE DRIVING I'm not trying to be the last unfinished message they find when your ass is wrapped around a tree.", "contentid"=>"461775274515120128"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461774524212469760"}, {"content"=>"Do you realize that your kids will emulate you? They learn faster than you realize. Don't Drink and Drive or Text while Driving!", "contentid"=>"461774409095606272"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461773913295683585"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461773245033631744"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461776508453806081", "ldate"=>"Thu May 01 07:57:53 +0000 2014", "author"=>"Finn", "perferredUsername"=>"mynameisaeris", "url"=>"http://twitter.com/mynameisaeris/status/461776508453806081", "source"=>"Twitter"}, {"contentid"=>"461775597287383042", "ldate"=>"Thu May 01 07:54:16 +0000 2014", "author"=>"John", "perferredUsername"=>"mahasaijetsakri", "url"=>"http://twitter.com/mahasaijetsakri/status/461775597287383042", "source"=>"Twitter"}, {"contentid"=>"461775443121934338", "ldate"=>"Thu May 01 07:53:39 +0000 2014", "author"=>"TRAFFICBUTTER APP", "perferredUsername"=>"trafficbutter", "url"=>"http://twitter.com/trafficbutter/status/461775443121934338", "source"=>"Twitter"}, {"contentid"=>"461775290075983873", "ldate"=>"Thu May 01 07:53:03 +0000 2014", "author"=>"Sarah Murphy", "perferredUsername"=>"utiIitarian", "url"=>"http://twitter.com/utiIitarian/status/461775290075983873", "source"=>"Twitter"}, {"contentid"=>"461775274515120128", "ldate"=>"Thu May 01 07:52:59 +0000 2014", "author"=>"Elissa WreckS", "perferredUsername"=>"regard___lol", "url"=>"http://twitter.com/regard___lol/status/461775274515120128", "source"=>"Twitter"}, {"contentid"=>"461774524212469760", "ldate"=>"Thu May 01 07:50:00 +0000 2014", "author"=>"Allie", "perferredUsername"=>"alessandreaaa", "url"=>"http://twitter.com/alessandreaaa/status/461774524212469760", "source"=>"Twitter"}, {"contentid"=>"461774409095606272", "ldate"=>"Thu May 01 07:49:33 +0000 2014", "author"=>"Public Safety East", "perferredUsername"=>"PublicSafetyEst", "url"=>"http://twitter.com/PublicSafetyEst/status/461774409095606272", "source"=>"Twitter"}, {"contentid"=>"461773913295683585", "ldate"=>"Thu May 01 07:47:34 +0000 2014", "author"=>"", "perferredUsername"=>"asyrffdl", "url"=>"http://twitter.com/asyrffdl/status/461773913295683585", "source"=>"Twitter"}, {"contentid"=>"461773245033631744", "ldate"=>"Thu May 01 07:44:55 +0000 2014", "author"=>"Ishi ♡♡", "perferredUsername"=>"zouis1D__", "url"=>"http://twitter.com/zouis1D__/status/461773245033631744", "source"=>"Twitter"}]}, "requestid"=>"62b43288-c7fa-4e43-8929-425bc56ad742"}
|
458
|
+
I, [2014-05-01T04:00:05.906818 #32088] INFO -- : Prediction loader waiting for scores ...
|
459
|
+
D, [2014-05-01T04:00:05.906852 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
460
|
+
W, [2014-05-01T04:15:06.209879 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"Text message marketing is an easy, cost-effective way to drive more business. Go to http://t.co/Rb0s3KIKxe to learn more.", "contentid"=>"461780386570190848"}, {"content"=>"@Felicetta7 oh so cute..Feli,i hope it didnt drink text n drive..hahaha", "contentid"=>"461780119317540864"}, {"content"=>"Please remember...not to text & drive, to buckle up and make it a safe one!", "contentid"=>"461779615993049088"}, {"content"=>"Frm 2day u can bankrupt the country and & do community service or u can text while driving and get 3months in #jail & 1k fine #Ireland #wtf", "contentid"=>"461779501056544768"}, {"content"=>"RT @trafficbutter: No Call, Text, Tweet or email can ever be too important when you're DRIVING. Don't trade ur #SAFETY and #LIFE for them. …", "contentid"=>"461778852092846080"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. That shits dangerous.", "contentid"=>"461778272259698688"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461778039626416128"}, {"content"=>"@JoseWithAnF don't text and drive", "contentid"=>"461777625682563072"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461780386570190848", "ldate"=>"Thu May 01 08:13:18 +0000 2014", "author"=>"Nessie ", "perferredUsername"=>"RealReader19", "url"=>"http://twitter.com/RealReader19/status/461780386570190848", "source"=>"Twitter"}, {"contentid"=>"461780119317540864", "ldate"=>"Thu May 01 08:12:14 +0000 2014", "author"=>"khaira najwa", "perferredUsername"=>"NajwaMariami", "url"=>"http://twitter.com/NajwaMariami/status/461780119317540864", "source"=>"Twitter"}, {"contentid"=>"461779615993049088", "ldate"=>"Thu May 01 08:10:14 +0000 2014", "author"=>"CBS46", "perferredUsername"=>"CBS46Traffic", "url"=>"http://twitter.com/CBS46Traffic/status/461779615993049088", "source"=>"Twitter"}, {"contentid"=>"461779501056544768", "ldate"=>"Thu May 01 08:09:47 +0000 2014", "author"=>"Damien Conway", "perferredUsername"=>"DamienConway", "url"=>"http://twitter.com/DamienConway/status/461779501056544768", "source"=>"Twitter"}, {"contentid"=>"461778852092846080", "ldate"=>"Thu May 01 08:07:12 +0000 2014", "author"=>"Arowolo Jelil O.", "perferredUsername"=>"zukky04", "url"=>"http://twitter.com/zukky04/status/461778852092846080", "source"=>"Twitter"}, {"contentid"=>"461778272259698688", "ldate"=>"Thu May 01 08:04:54 +0000 2014", "author"=>"Aubrey", "perferredUsername"=>"oconnoraubrey", "url"=>"http://twitter.com/oconnoraubrey/status/461778272259698688", "source"=>"Twitter"}, {"contentid"=>"461778039626416128", "ldate"=>"Thu May 01 08:03:58 +0000 2014", "author"=>"fey", "perferredUsername"=>"iknowyoufey", "url"=>"http://twitter.com/iknowyoufey/status/461778039626416128", "source"=>"Twitter"}, {"contentid"=>"461777625682563072", "ldate"=>"Thu May 01 08:02:20 +0000 2014", "author"=>"Lucas Pareto", "perferredUsername"=>"lucas_954", "url"=>"http://twitter.com/lucas_954/status/461777625682563072", "source"=>"Twitter"}]}, "requestid"=>"660c18cb-8600-4c3d-ac79-a9acf132612b"}
|
461
|
+
I, [2014-05-01T04:15:06.209948 #32088] INFO -- : Prediction loader waiting for scores ...
|
462
|
+
D, [2014-05-01T04:15:06.209982 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
463
|
+
D, [2014-05-01T04:30:05.780421 #32088] DEBUG -- : Adding posts for scout_id: 27
|
464
|
+
D, [2014-05-01T04:30:05.780494 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
465
|
+
D, [2014-05-01T04:30:05.788541 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "New Current News", body: "Republican David Jolly Defeats Democrat Alex Sink I...", url: "http://twitter.com/NewCurrentNews/status/4617807999...", source: "Twitter", sentiment: #<BigDecimal:6e76318,'0.0',9(36)>, leadprob: #<BigDecimal:6e760e8,'0.6730169016 655186E0',18(45)>, notleadprob: #<BigDecimal:6e75eb8,'0.9267394750 759193E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461780799902081024", ldate: "2014-05-01 08:14:56", loadstamp: "2014-05-01 08:30:05", user_id: 7, scout_id: 27>
|
466
|
+
D, [2014-05-01T04:30:05.798651 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Streaming TV", body: "#Amazon Amazon Begins Collecting Florida Taxes for ...", url: "http://twitter.com/astreamingbox/status/46178249939...", source: "Twitter", sentiment: #<BigDecimal:6eddb30,'0.0',9(36)>, leadprob: #<BigDecimal:6edd900,'0.8858141585 90992E0',18(45)>, notleadprob: #<BigDecimal:6edd6a8,'0.6239374267 78747E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461782499392114688", ldate: "2014-05-01 08:21:42", loadstamp: "2014-05-01 08:30:05", user_id: 7, scout_id: 27>
|
467
|
+
I, [2014-05-01T04:30:05.814315 #32088] INFO -- : Total Number of records: 2
|
468
|
+
I, [2014-05-01T04:30:05.814367 #32088] INFO -- : Total Number of records Not Loaded: 0
|
469
|
+
I, [2014-05-01T04:30:05.814397 #32088] INFO -- : Prediction loader waiting for scores ...
|
470
|
+
D, [2014-05-01T04:30:05.814425 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
471
|
+
W, [2014-05-01T04:30:06.374114 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461784107656048640"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461784088773279744"}, {"content"=>"RT @Nshahaha: @Hasifah___ @KidiWiddy @Trahaha15 Drive safe. Text me bijes. Love u danny!", "contentid"=>"461784056175153152"}, {"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461783479005769728"}, {"content"=>"Texting-while-driving $50-fine in tentatice budget deal - http://t.co/CHREKaY052", "contentid"=>"461782603692257280"}, {"content"=>"This is what happens when you text (or post updates) and drive! So don't! It's not entertaining, it's stupid! https://t.co/41afuwJnwN", "contentid"=>"461782299953332225"}, {"content"=>"They say you shouldn't text and drive, but don't even think of texting while walking because I will bump you!", "contentid"=>"461781765531922432"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461781698934738944"}, {"content"=>"The worst part about working this early is not having anyone to text while I drive to work ὠ2", "contentid"=>"461781611873587200"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461784107656048640", "ldate"=>"Thu May 01 08:28:05 +0000 2014", "author"=>"PAPIOLAZIR", "perferredUsername"=>"zalzalzal_zal", "url"=>"http://twitter.com/zalzalzal_zal/status/461784107656048640", "source"=>"Twitter"}, {"contentid"=>"461784088773279744", "ldate"=>"Thu May 01 08:28:00 +0000 2014", "author"=>"Lauryn Chayce ", "perferredUsername"=>"SouthClantonlfn", "url"=>"http://twitter.com/SouthClantonlfn/status/461784088773279744", "source"=>"Twitter"}, {"contentid"=>"461784056175153152", "ldate"=>"Thu May 01 08:27:53 +0000 2014", "author"=>"NurHasifah", "perferredUsername"=>"Hasifah___", "url"=>"http://twitter.com/Hasifah___/status/461784056175153152", "source"=>"Twitter"}, {"contentid"=>"461783479005769728", "ldate"=>"Thu May 01 08:25:35 +0000 2014", "author"=>"4HUNNID", "perferredUsername"=>"CameOutDaWater", "url"=>"http://twitter.com/CameOutDaWater/status/461783479005769728", "source"=>"Twitter"}, {"contentid"=>"461782603692257280", "ldate"=>"Thu May 01 08:22:06 +0000 2014", "author"=>"Text Me Now", "perferredUsername"=>"Text_Me_Now", "url"=>"http://twitter.com/Text_Me_Now/status/461782603692257280", "source"=>"Twitter"}, {"contentid"=>"461782299953332225", "ldate"=>"Thu May 01 08:20:54 +0000 2014", "author"=>"Tania Pires", "perferredUsername"=>"TaniaCPires", "url"=>"http://twitter.com/TaniaCPires/status/461782299953332225", "source"=>"Twitter"}, {"contentid"=>"461781765531922432", "ldate"=>"Thu May 01 08:18:47 +0000 2014", "author"=>"∞ηåbεεlåњ∞", "perferredUsername"=>"shehnaz_sahib", "url"=>"http://twitter.com/shehnaz_sahib/status/461781765531922432", "source"=>"Twitter"}, {"contentid"=>"461781698934738944", "ldate"=>"Thu May 01 08:18:31 +0000 2014", "author"=>"@truckmanphil", "perferredUsername"=>"truckmanphil", "url"=>"http://twitter.com/truckmanphil/status/461781698934738944", "source"=>"Twitter"}, {"contentid"=>"461781611873587200", "ldate"=>"Thu May 01 08:18:10 +0000 2014", "author"=>"Steven Conley", "perferredUsername"=>"SteveConley35", "url"=>"http://twitter.com/SteveConley35/status/461781611873587200", "source"=>"Twitter"}]}, "requestid"=>"871680a1-5207-484e-aa81-209dc39d077c"}
|
472
|
+
I, [2014-05-01T04:30:06.374175 #32088] INFO -- : Prediction loader waiting for scores ...
|
473
|
+
D, [2014-05-01T04:30:06.374209 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
474
|
+
W, [2014-05-01T04:45:06.758714 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"RT @GrownAssMidget: DO NOT TEXT\u1F4F2 ME WHILE YOU'RE DRIVINGὩ8!I'm not trying to be the last unfinished message they find when your ass wrappeda…", "contentid"=>"461787568833851392"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461787264318574592"}, {"content"=>"You are two times more likely to crash if you text while you're driving. Don't text & drive! @ http://t.co/YonVQxOcsu #HondaSafety", "contentid"=>"461785834073886720"}, {"content"=>"Me : don't text and drive bitch.\nBro : shut the fuck up.", "contentid"=>"461784577992716288"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461787568833851392", "ldate"=>"Thu May 01 08:41:50 +0000 2014", "author"=>"Siza zondi", "perferredUsername"=>"sizakele_zondi", "url"=>"http://twitter.com/sizakele_zondi/status/461787568833851392", "source"=>"Twitter"}, {"contentid"=>"461787264318574592", "ldate"=>"Thu May 01 08:40:38 +0000 2014", "author"=>"Lexi Jonas ", "perferredUsername"=>"Dennardnnx", "url"=>"http://twitter.com/Dennardnnx/status/461787264318574592", "source"=>"Twitter"}, {"contentid"=>"461785834073886720", "ldate"=>"Thu May 01 08:34:57 +0000 2014", "author"=>"Doyle Motors", "perferredUsername"=>"DoyleMotors", "url"=>"http://twitter.com/DoyleMotors/status/461785834073886720", "source"=>"Twitter"}, {"contentid"=>"461784577992716288", "ldate"=>"Thu May 01 08:29:57 +0000 2014", "author"=>"pibz", "perferredUsername"=>"pinn_pibz", "url"=>"http://twitter.com/pinn_pibz/status/461784577992716288", "source"=>"Twitter"}]}, "requestid"=>"4405f64e-b350-494e-a527-d9171a38dd91"}
|
475
|
+
I, [2014-05-01T04:45:06.758770 #32088] INFO -- : Prediction loader waiting for scores ...
|
476
|
+
D, [2014-05-01T04:45:06.758803 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
477
|
+
D, [2014-05-01T05:00:06.250168 #32088] DEBUG -- : Adding posts for scout_id: 27
|
478
|
+
D, [2014-05-01T05:00:06.250241 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
479
|
+
D, [2014-05-01T05:00:06.258253 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Streaming TV", body: "#Amazon Amazon Begins Collecting Florida Taxes for ...", url: "http://twitter.com/astreamingbox/status/46179010067...", source: "Twitter", sentiment: #<BigDecimal:6fa7318,'0.0',9(36)>, leadprob: #<BigDecimal:6fa70e8,'0.8858141585 90992E0',18(45)>, notleadprob: #<BigDecimal:6fa6eb8,'0.6239374267 78747E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461790100670517248", ldate: "2014-05-01 08:51:54", loadstamp: "2014-05-01 09:00:06", user_id: 7, scout_id: 27>
|
480
|
+
I, [2014-05-01T05:00:06.266918 #32088] INFO -- : Total Number of records: 1
|
481
|
+
I, [2014-05-01T05:00:06.266960 #32088] INFO -- : Total Number of records Not Loaded: 0
|
482
|
+
I, [2014-05-01T05:00:06.266989 #32088] INFO -- : Prediction loader waiting for scores ...
|
483
|
+
D, [2014-05-01T05:00:06.267018 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
484
|
+
W, [2014-05-01T05:00:06.568071 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"Friends and fam on here! Please don't text and drive! You'll never know what will happen!! Please....", "contentid"=>"461791942959837185"}, {"content"=>"RT @Lale_Ora: Please, don't text and drive http://t.co/KmT1scFTiR", "contentid"=>"461791679444316160"}, {"content"=>"Text message marketing is an easy, cost-effective way to drive more business. Go to http://t.co/wrnYntEB1D to learn more.", "contentid"=>"461791365589127168"}, {"content"=>"DO NOT TEXT ME WHILE YOU'RE DRIVING I'm not trying to be the last unfinished message they find when your ass is wrapped around a tree.", "contentid"=>"461791061204295680"}, {"content"=>"One way around these new text n' drive laws ? Learn to text with your feet. Or nose. Or tongue. Or...", "contentid"=>"461790453818753024"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461789250774925312"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461791942959837185", "ldate"=>"Thu May 01 08:59:13 +0000 2014", "author"=>"Lynduh Le", "perferredUsername"=>"LynduhLe", "url"=>"http://twitter.com/LynduhLe/status/461791942959837185", "source"=>"Twitter"}, {"contentid"=>"461791679444316160", "ldate"=>"Thu May 01 08:58:10 +0000 2014", "author"=>"Bubblyarianator", "perferredUsername"=>"ShayHattie", "url"=>"http://twitter.com/ShayHattie/status/461791679444316160", "source"=>"Twitter"}, {"contentid"=>"461791365589127168", "ldate"=>"Thu May 01 08:56:55 +0000 2014", "author"=>"Daria A.", "perferredUsername"=>"2cuteDollRoll", "url"=>"http://twitter.com/2cuteDollRoll/status/461791365589127168", "source"=>"Twitter"}, {"contentid"=>"461791061204295680", "ldate"=>"Thu May 01 08:55:43 +0000 2014", "author"=>"Ari Follows You", "perferredUsername"=>"youN3W_", "url"=>"http://twitter.com/youN3W_/status/461791061204295680", "source"=>"Twitter"}, {"contentid"=>"461790453818753024", "ldate"=>"Thu May 01 08:53:18 +0000 2014", "author"=>"Will Leahy", "perferredUsername"=>"willleahy", "url"=>"http://twitter.com/willleahy/status/461790453818753024", "source"=>"Twitter"}, {"contentid"=>"461789250774925312", "ldate"=>"Thu May 01 08:48:31 +0000 2014", "author"=>"Whitney ♡ ∞ ", "perferredUsername"=>"WillisRogersbtq", "url"=>"http://twitter.com/WillisRogersbtq/status/461789250774925312", "source"=>"Twitter"}]}, "requestid"=>"d6057494-ac87-41e2-94c6-87f127e21255"}
|
485
|
+
I, [2014-05-01T05:00:06.568136 #32088] INFO -- : Prediction loader waiting for scores ...
|
486
|
+
D, [2014-05-01T05:00:06.568170 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
487
|
+
D, [2014-05-01T05:15:05.681054 #32088] DEBUG -- : Adding posts for scout_id: 27
|
488
|
+
D, [2014-05-01T05:15:05.682173 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Richard Earl", body: "Amazon Begins Collecting Florida Taxes for Internet...", url: "http://twitter.com/RichardGEarl/status/461792206551...", source: "Twitter", sentiment: #<BigDecimal:70267a8,'0.0',9(36)>, leadprob: #<BigDecimal:7026528,'0.8758318797 586186E0',18(45)>, notleadprob: #<BigDecimal:70262f8,'0.5901270018 784091E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461792206551257088", ldate: "2014-05-01 09:00:16", loadstamp: "2014-05-01 09:15:05", user_id: 7, scout_id: 27>
|
489
|
+
D, [2014-05-01T05:15:05.698424 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "ricardo pato ", body: "Republican David Jolly Wins Florida Congressional R...", url: "http://twitter.com/prhmq9834/status/461792506837872...", source: "Twitter", sentiment: #<BigDecimal:7091cd8,'0.0',9(36)>, leadprob: #<BigDecimal:7091aa8,'0.7527739204 055074E0',18(45)>, notleadprob: #<BigDecimal:7091828,'0.8584910319 319755E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461792506837872640", ldate: "2014-05-01 09:01:27", loadstamp: "2014-05-01 09:15:05", user_id: 7, scout_id: 27>
|
490
|
+
D, [2014-05-01T05:15:05.715004 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Jax Florida", body: "RT @CRWNofSJC: St. Johns County Republican Assembly...", url: "http://twitter.com/jax_florida/status/4617948075650...", source: "Twitter", sentiment: #<BigDecimal:70fd438,'0.0',9(36)>, leadprob: #<BigDecimal:70fd208,'0.5656044374 524974E0',18(45)>, notleadprob: #<BigDecimal:70fcfd8,'0.9210747732 843286E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461794807565012992", ldate: "2014-05-01 09:10:36", loadstamp: "2014-05-01 09:15:05", user_id: 7, scout_id: 27>
|
491
|
+
I, [2014-05-01T05:15:05.730762 #32088] INFO -- : Total Number of records: 3
|
492
|
+
I, [2014-05-01T05:15:05.730813 #32088] INFO -- : Total Number of records Not Loaded: 0
|
493
|
+
I, [2014-05-01T05:15:05.730842 #32088] INFO -- : Prediction loader waiting for scores ...
|
494
|
+
D, [2014-05-01T05:15:05.730871 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
495
|
+
W, [2014-05-01T05:15:06.430136 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"RT @FineGael: New road safety regulations: From today, it is illegal to SMS text or access information while driving: http://t.co/dBlepHzb0…", "contentid"=>"461795537000595456"}, {"content"=>"RT @FineGael: New road safety regulations: From today, it is illegal to SMS text or access information while driving: http://t.co/dBlepHzb0…", "contentid"=>"461795099543093248"}, {"content"=>"@fergtheiceburg I can't drive and I can barely text. I should be given a €1,000 reward if I somehow manage both simultaneously.", "contentid"=>"461794229443121152"}, {"content"=>"RT @FineGael: New road safety regulations: From today, it is illegal to SMS text or access information while driving: http://t.co/dBlepHzb0…", "contentid"=>"461794085070991360"}, {"content"=>"RT @UPROXX: Watch This Intense, Brutal ‘Don’t Text And Drive’ Ad And Then Show It To Every Dumbass Teenager You Know http://t.co/Xa6x86YcfU", "contentid"=>"461794064568832003"}, {"content"=>"New road safety regulations: From today, it is illegal to SMS text or access information while driving: http://t.co/dBlepHzb0V #RoadSafety", "contentid"=>"461794007975493632"}, {"content"=>"RT @PlusDaddy_wL: PLEASE DONT TEXT AND DRIVE. It doesn't just affect you. A message from Stephen Spikes http://t.co/3EcF48ZnzA", "contentid"=>"461793987502686208"}, {"content"=>"RT @MlynneBiddle: \"A TEXT MESSAGE IS NOT WORTH LOSING YOUR LIFE. DONT TEXT AND DRIVE\" \n\nOhὠ5", "contentid"=>"461793942820753408"}, {"content"=>"RT @melanieedufour: please please please dont text and drive, for your own sake and everyone else on the road http://t.co/NfRgIAWHlH", "contentid"=>"461793909966786560"}, {"content"=>"RT @NashtyEm: @taylorcaniff DONT TEXT AND DRIVE! stay safe!!!!", "contentid"=>"461793704198422528"}, {"content"=>"My heart went out to Barb Dunn the moment her 16-year-old son Daniel answered my question about whether he would text and drive", "contentid"=>"461793689346379776"}, {"content"=>"RT @ChrisAlexio: Dont text and drive yall.....", "contentid"=>"461793653040484352"}, {"content"=>"so driving back from the city yesterday, i get a random text from what appears to be a middle school boy... http://t.co/OEZugjT0jM", "contentid"=>"461793631477968897"}, {"content"=>"I'm just glad I'm not coordinated enough to text and drive at the same time (not that I would, even if I could). #aca9 Don't do it peeps.", "contentid"=>"461793626972889088"}, {"content"=>"Last time people die because of Text Driving now it's because of Tweet Driving. #IT", "contentid"=>"461793616017358849"}, {"content"=>"RT @lauren_dakotaa: BE WISE DONT TEXT AND DRIVE #itcanwait", "contentid"=>"461793598803959808"}, {"content"=>"RT @TopNotchSaditty: please dont text and drive", "contentid"=>"461793570823745536"}, {"content"=>"RT @youN3W_: DO NOT TEXT ME WHILE YOU'RE DRIVING I'm not trying to be the last unfinished message they find when your ass is wrapped around…", "contentid"=>"461793092920545280"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461795537000595456", "ldate"=>"Thu May 01 09:13:30 +0000 2014", "author"=>"Regina Doherty TD", "perferredUsername"=>"ReginaDo", "url"=>"http://twitter.com/ReginaDo/status/461795537000595456", "source"=>"Twitter"}, {"contentid"=>"461795099543093248", "ldate"=>"Thu May 01 09:11:46 +0000 2014", "author"=>"Eileen Mannion", "perferredUsername"=>"EileenMannion1", "url"=>"http://twitter.com/EileenMannion1/status/461795099543093248", "source"=>"Twitter"}, {"contentid"=>"461794229443121152", "ldate"=>"Thu May 01 09:08:18 +0000 2014", "author"=>"JJ Saddington", "perferredUsername"=>"JJSADDINGTON", "url"=>"http://twitter.com/JJSADDINGTON/status/461794229443121152", "source"=>"Twitter"}, {"contentid"=>"461794085070991360", "ldate"=>"Thu May 01 09:07:44 +0000 2014", "author"=>"WaterfordCityCouncil", "perferredUsername"=>"WaterfordCityCo", "url"=>"http://twitter.com/WaterfordCityCo/status/461794085070991360", "source"=>"Twitter"}, {"contentid"=>"461794064568832003", "ldate"=>"Thu May 01 09:07:39 +0000 2014", "author"=>"KM Waugh", "perferredUsername"=>"PsychicWaugh", "url"=>"http://twitter.com/PsychicWaugh/status/461794064568832003", "source"=>"Twitter"}, {"contentid"=>"461794007975493632", "ldate"=>"Thu May 01 09:07:25 +0000 2014", "author"=>"Fine Gael", "perferredUsername"=>"FineGael", "url"=>"http://twitter.com/FineGael/status/461794007975493632", "source"=>"Twitter"}, {"contentid"=>"461793987502686208", "ldate"=>"Thu May 01 09:07:21 +0000 2014", "author"=>"KM Waugh", "perferredUsername"=>"PsychicWaugh", "url"=>"http://twitter.com/PsychicWaugh/status/461793987502686208", "source"=>"Twitter"}, {"contentid"=>"461793942820753408", "ldate"=>"Thu May 01 09:07:10 +0000 2014", "author"=>"KM Waugh", "perferredUsername"=>"PsychicWaugh", "url"=>"http://twitter.com/PsychicWaugh/status/461793942820753408", "source"=>"Twitter"}, {"contentid"=>"461793909966786560", "ldate"=>"Thu May 01 09:07:02 +0000 2014", "author"=>"KM Waugh", "perferredUsername"=>"PsychicWaugh", "url"=>"http://twitter.com/PsychicWaugh/status/461793909966786560", "source"=>"Twitter"}, {"contentid"=>"461793704198422528", "ldate"=>"Thu May 01 09:06:13 +0000 2014", "author"=>"KM Waugh", "perferredUsername"=>"PsychicWaugh", "url"=>"http://twitter.com/PsychicWaugh/status/461793704198422528", "source"=>"Twitter"}, {"contentid"=>"461793689346379776", "ldate"=>"Thu May 01 09:06:09 +0000 2014", "author"=>"David Michael Rudd", "perferredUsername"=>"DMR1985t", "url"=>"http://twitter.com/DMR1985t/status/461793689346379776", "source"=>"Twitter"}, {"contentid"=>"461793653040484352", "ldate"=>"Thu May 01 09:06:01 +0000 2014", "author"=>"KM Waugh", "perferredUsername"=>"PsychicWaugh", "url"=>"http://twitter.com/PsychicWaugh/status/461793653040484352", "source"=>"Twitter"}, {"contentid"=>"461793631477968897", "ldate"=>"Thu May 01 09:05:56 +0000 2014", "author"=>"Yuki-chan", "perferredUsername"=>"Yuki949", "url"=>"http://twitter.com/Yuki949/status/461793631477968897", "source"=>"Twitter"}, {"contentid"=>"461793626972889088", "ldate"=>"Thu May 01 09:05:55 +0000 2014", "author"=>"Amanda Bown", "perferredUsername"=>"AmandaBown77", "url"=>"http://twitter.com/AmandaBown77/status/461793626972889088", "source"=>"Twitter"}, {"contentid"=>"461793616017358849", "ldate"=>"Thu May 01 09:05:52 +0000 2014", "author"=>"JuliaXSyaz ™", "perferredUsername"=>"JuliaFadz", "url"=>"http://twitter.com/JuliaFadz/status/461793616017358849", "source"=>"Twitter"}, {"contentid"=>"461793598803959808", "ldate"=>"Thu May 01 09:05:48 +0000 2014", "author"=>"KM Waugh", "perferredUsername"=>"PsychicWaugh", "url"=>"http://twitter.com/PsychicWaugh/status/461793598803959808", "source"=>"Twitter"}, {"contentid"=>"461793570823745536", "ldate"=>"Thu May 01 09:05:41 +0000 2014", "author"=>"KM Waugh", "perferredUsername"=>"PsychicWaugh", "url"=>"http://twitter.com/PsychicWaugh/status/461793570823745536", "source"=>"Twitter"}, {"contentid"=>"461793092920545280", "ldate"=>"Thu May 01 09:03:47 +0000 2014", "author"=>"Esther Nyamema", "perferredUsername"=>"NyamemaEsther", "url"=>"http://twitter.com/NyamemaEsther/status/461793092920545280", "source"=>"Twitter"}]}, "requestid"=>"dc2a7a54-ba78-4d30-9eab-75e3ab1c9cd9"}
|
496
|
+
I, [2014-05-01T05:15:06.430207 #32088] INFO -- : Prediction loader waiting for scores ...
|
497
|
+
D, [2014-05-01T05:15:06.430241 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
498
|
+
D, [2014-05-01T05:30:06.953263 #32088] DEBUG -- : Adding posts for scout_id: 27
|
499
|
+
D, [2014-05-01T05:30:06.953334 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
500
|
+
D, [2014-05-01T05:30:06.961441 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Streaming TV", body: "#Amazon Amazon Begins Collecting Florida Taxes for ...", url: "http://twitter.com/astreamingbox/status/46179791230...", source: "Twitter", sentiment: #<BigDecimal:71c7058,'0.0',9(36)>, leadprob: #<BigDecimal:71c6e28,'0.8858141585 90992E0',18(45)>, notleadprob: #<BigDecimal:71c6bf8,'0.6239374267 78747E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461797912301682688", ldate: "2014-05-01 09:22:56", loadstamp: "2014-05-01 09:30:06", user_id: 7, scout_id: 27>
|
501
|
+
I, [2014-05-01T05:30:06.969752 #32088] INFO -- : Total Number of records: 1
|
502
|
+
I, [2014-05-01T05:30:06.969795 #32088] INFO -- : Total Number of records Not Loaded: 0
|
503
|
+
I, [2014-05-01T05:30:06.969823 #32088] INFO -- : Prediction loader waiting for scores ...
|
504
|
+
D, [2014-05-01T05:30:06.969851 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
505
|
+
W, [2014-05-01T05:30:07.428089 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"Don't ever fuckn text me!! \nYou wanna talk! You know where I live grow some balls get over your shit and drive your piece of shit self here!", "contentid"=>"461799395504054272"}, {"content"=>"RT @BiancaLeungx: Dont know how people can put up with \"xxxxxxxxxx\" at the end of every text, would drive me insane!", "contentid"=>"461798429422018560"}, {"content"=>"Do you realize that your kids will emulate you? They learn faster than you realize. Don't Drink and Drive or Text while Driving!", "contentid"=>"461798265780850688"}, {"content"=>"I've no problem texting while driving but i won't text while going down stairs, that shit's dangerous. .__.", "contentid"=>"461798048008781824"}, {"content"=>"@fiachkelly your texting while driving article is still WRONG,written before text was available read the regulation http://t.co/pRM9jL9ern", "contentid"=>"461797668264894464"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461797408863952896"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461799395504054272", "ldate"=>"Thu May 01 09:28:50 +0000 2014", "author"=>"TuMadre", "perferredUsername"=>"lovelywendy23", "url"=>"http://twitter.com/lovelywendy23/status/461799395504054272", "source"=>"Twitter"}, {"contentid"=>"461798429422018560", "ldate"=>"Thu May 01 09:25:00 +0000 2014", "author"=>"Beetlejuice", "perferredUsername"=>"VictoriaaLawlor", "url"=>"http://twitter.com/VictoriaaLawlor/status/461798429422018560", "source"=>"Twitter"}, {"contentid"=>"461798265780850688", "ldate"=>"Thu May 01 09:24:21 +0000 2014", "author"=>"Public Safety East", "perferredUsername"=>"PublicSafetyEst", "url"=>"http://twitter.com/PublicSafetyEst/status/461798265780850688", "source"=>"Twitter"}, {"contentid"=>"461798048008781824", "ldate"=>"Thu May 01 09:23:29 +0000 2014", "author"=>"Sahar", "perferredUsername"=>"saharshahzad2", "url"=>"http://twitter.com/saharshahzad2/status/461798048008781824", "source"=>"Twitter"}, {"contentid"=>"461797668264894464", "ldate"=>"Thu May 01 09:21:58 +0000 2014", "author"=>"steve white", "perferredUsername"=>"lostexpectation", "url"=>"http://twitter.com/lostexpectation/status/461797668264894464", "source"=>"Twitter"}, {"contentid"=>"461797408863952896", "ldate"=>"Thu May 01 09:20:56 +0000 2014", "author"=>"Ilene Nasseri ", "perferredUsername"=>"Nilssonwdk", "url"=>"http://twitter.com/Nilssonwdk/status/461797408863952896", "source"=>"Twitter"}]}, "requestid"=>"f4c671d5-97dc-4d22-a201-ad69bd2a368c"}
|
506
|
+
I, [2014-05-01T05:30:07.428145 #32088] INFO -- : Prediction loader waiting for scores ...
|
507
|
+
D, [2014-05-01T05:30:07.428177 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
508
|
+
W, [2014-05-01T05:45:07.788315 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461802725752070144"}, {"content"=>"RT @rugby_is_best: “@HilariousSigns: http://t.co/nMtgWR7qoU” FACT! Don't ever text & drive peeps. It's not worth it.", "contentid"=>"461801397122789376"}, {"content"=>"Driving while in-text-icated\u1F4F1 #lolpun", "contentid"=>"461800321287585792"}, {"content"=>"Driving in-text-icated", "contentid"=>"461800232154447873"}, {"content"=>"I text him too just go by the road because I'm too tired to keep looking and driving around for it. Tells me hell just get a ride.", "contentid"=>"461800087807488000"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461802725752070144", "ldate"=>"Thu May 01 09:42:04 +0000 2014", "author"=>"shahira anas", "perferredUsername"=>"shahira_anas", "url"=>"http://twitter.com/shahira_anas/status/461802725752070144", "source"=>"Twitter"}, {"contentid"=>"461801397122789376", "ldate"=>"Thu May 01 09:36:47 +0000 2014", "author"=>"arona harris", "perferredUsername"=>"AronaHarris", "url"=>"http://twitter.com/AronaHarris/status/461801397122789376", "source"=>"Twitter"}, {"contentid"=>"461800321287585792", "ldate"=>"Thu May 01 09:32:31 +0000 2014", "author"=>"e m i l y", "perferredUsername"=>"Emily_Birch101", "url"=>"http://twitter.com/Emily_Birch101/status/461800321287585792", "source"=>"Twitter"}, {"contentid"=>"461800232154447873", "ldate"=>"Thu May 01 09:32:09 +0000 2014", "author"=>"heysham", "perferredUsername"=>"hishameljourdi", "url"=>"http://twitter.com/hishameljourdi/status/461800232154447873", "source"=>"Twitter"}, {"contentid"=>"461800087807488000", "ldate"=>"Thu May 01 09:31:35 +0000 2014", "author"=>"Austin Ortiz", "perferredUsername"=>"ShADoWxNoBODy", "url"=>"http://twitter.com/ShADoWxNoBODy/status/461800087807488000", "source"=>"Twitter"}]}, "requestid"=>"93dd190e-666c-44eb-acd9-f00123f4579f"}
|
509
|
+
I, [2014-05-01T05:45:07.788380 #32088] INFO -- : Prediction loader waiting for scores ...
|
510
|
+
D, [2014-05-01T05:45:07.788413 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
511
|
+
D, [2014-05-01T06:00:07.430740 #32088] DEBUG -- : Adding posts for scout_id: 27
|
512
|
+
D, [2014-05-01T06:00:07.430812 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
513
|
+
D, [2014-05-01T06:00:07.438623 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Streaming TV", body: "#Amazon Amazon Begins Collecting Florida Taxes for ...", url: "http://twitter.com/astreamingbox/status/46180590927...", source: "Twitter", sentiment: #<BigDecimal:725d710,'0.0',9(36)>, leadprob: #<BigDecimal:725d4e0,'0.8858141585 90992E0',18(45)>, notleadprob: #<BigDecimal:725d2b0,'0.6239374267 78747E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461805909274923009", ldate: "2014-05-01 09:54:43", loadstamp: "2014-05-01 10:00:07", user_id: 7, scout_id: 27>
|
514
|
+
I, [2014-05-01T06:00:07.447190 #32088] INFO -- : Total Number of records: 1
|
515
|
+
I, [2014-05-01T06:00:07.447234 #32088] INFO -- : Total Number of records Not Loaded: 0
|
516
|
+
I, [2014-05-01T06:00:07.447271 #32088] INFO -- : Prediction loader waiting for scores ...
|
517
|
+
D, [2014-05-01T06:00:07.447300 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
518
|
+
W, [2014-05-01T06:00:07.897422 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"RT @PerignonPapi: If you can text and walk you can drink and drive #Science", "contentid"=>"461805568827473922"}, {"content"=>"\" I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.\"", "contentid"=>"461805249490341888"}, {"content"=>"If you can text and walk you can drink and drive #Science", "contentid"=>"461804742214037504"}, {"content"=>"Text message marketing is an easy, cost-effective way to drive more business. Go to http://t.co/qLJplhVzvL to learn more.", "contentid"=>"461804421265891328"}, {"content"=>"May is Motorcycle Awareness Month! Pay Attention while Driving and Please Talk and Text later.", "contentid"=>"461804080898113537"}, {"content"=>"@EmmyElizabeth20 you shouldnt text and drive. Its illegal in my state. It should be in every state.", "contentid"=>"461803472057147392"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461805568827473922", "ldate"=>"Thu May 01 09:53:22 +0000 2014", "author"=>"Mia Garcia", "perferredUsername"=>"MiaAneii", "url"=>"http://twitter.com/MiaAneii/status/461805568827473922", "source"=>"Twitter"}, {"contentid"=>"461805249490341888", "ldate"=>"Thu May 01 09:52:06 +0000 2014", "author"=>"Kelvin BMG", "perferredUsername"=>"KelvinBMG", "url"=>"http://twitter.com/KelvinBMG/status/461805249490341888", "source"=>"Twitter"}, {"contentid"=>"461804742214037504", "ldate"=>"Thu May 01 09:50:05 +0000 2014", "author"=>"Pat", "perferredUsername"=>"PerignonPapi", "url"=>"http://twitter.com/PerignonPapi/status/461804742214037504", "source"=>"Twitter"}, {"contentid"=>"461804421265891328", "ldate"=>"Thu May 01 09:48:48 +0000 2014", "author"=>"Woody Martin", "perferredUsername"=>"iamwjent", "url"=>"http://twitter.com/iamwjent/status/461804421265891328", "source"=>"Twitter"}, {"contentid"=>"461804080898113537", "ldate"=>"Thu May 01 09:47:27 +0000 2014", "author"=>"kevin jones", "perferredUsername"=>"sfjkevin", "url"=>"http://twitter.com/sfjkevin/status/461804080898113537", "source"=>"Twitter"}, {"contentid"=>"461803472057147392", "ldate"=>"Thu May 01 09:45:02 +0000 2014", "author"=>"Crystal Bax", "perferredUsername"=>"CrystalBax", "url"=>"http://twitter.com/CrystalBax/status/461803472057147392", "source"=>"Twitter"}]}, "requestid"=>"d62841f8-5036-432f-9d4f-c8cbf06f08a5"}
|
519
|
+
I, [2014-05-01T06:00:07.897489 #32088] INFO -- : Prediction loader waiting for scores ...
|
520
|
+
D, [2014-05-01T06:00:07.897523 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
521
|
+
D, [2014-05-01T06:15:06.659260 #32088] DEBUG -- : Adding posts for scout_id: 27
|
522
|
+
D, [2014-05-01T06:15:06.660437 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Kevin Derby", body: "Jeb Bush bests Rand Paul and Marco Rubio in Florida...", url: "http://twitter.com/KevinDerbySSN/status/46180945219...", source: "Twitter", sentiment: #<BigDecimal:72dd528,'0.0',9(36)>, leadprob: #<BigDecimal:72dd2f8,'0.9275687719 373498E0',18(45)>, notleadprob: #<BigDecimal:72dd0c8,'0.8084561211 248938E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461809452195135489", ldate: "2014-05-01 10:08:48", loadstamp: "2014-05-01 10:15:06", user_id: 7, scout_id: 27>
|
523
|
+
I, [2014-05-01T06:15:06.694314 #32088] INFO -- : Total Number of records: 1
|
524
|
+
I, [2014-05-01T06:15:06.694357 #32088] INFO -- : Total Number of records Not Loaded: 0
|
525
|
+
I, [2014-05-01T06:15:06.694386 #32088] INFO -- : Prediction loader waiting for scores ...
|
526
|
+
D, [2014-05-01T06:15:06.694414 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
527
|
+
W, [2014-05-01T06:15:06.973928 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"Updated my text driving blog post with thanks to @lostexpectation for link to confusing DTTAS note on the new law. http://t.co/X9NO1816j1", "contentid"=>"461810795035525120"}, {"content"=>"RT @themikeinator: @caBAEo congrats be responsible and careful behind the wheel. DONT TEXT AND DRIVE.", "contentid"=>"461810602822737921"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461808848891031553"}, {"content"=>"“@NaillSibai: Driving instructor just text me this... Still debating if it was meant for me http://t.co/jyuivW5N8t” amazing", "contentid"=>"461807931621928960"}, {"content"=>"RT @FineGael: New road safety regulations: From today, it is illegal to SMS text or access information while driving: http://t.co/dBlepHzb0…", "contentid"=>"461807333036032000"}, {"content"=>"RT @CHPCentralLA: Texting increases your chance of getting into an accident by 23%. Don't text and drive, it's not worth it. #DistractedDri…", "contentid"=>"461807234033262593"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461810795035525120", "ldate"=>"Thu May 01 10:14:08 +0000 2014", "author"=>"Rossa McMahon", "perferredUsername"=>"rossamcmahon", "url"=>"http://twitter.com/rossamcmahon/status/461810795035525120", "source"=>"Twitter"}, {"contentid"=>"461810602822737921", "ldate"=>"Thu May 01 10:13:22 +0000 2014", "author"=>"MLippmeier", "perferredUsername"=>"MLippmeier", "url"=>"http://twitter.com/MLippmeier/status/461810602822737921", "source"=>"Twitter"}, {"contentid"=>"461808848891031553", "ldate"=>"Thu May 01 10:06:24 +0000 2014", "author"=>"M Givs", "perferredUsername"=>"GivsMarcus", "url"=>"http://twitter.com/GivsMarcus/status/461808848891031553", "source"=>"Twitter"}, {"contentid"=>"461807931621928960", "ldate"=>"Thu May 01 10:02:45 +0000 2014", "author"=>"hxc", "perferredUsername"=>"fxcktamsyn", "url"=>"http://twitter.com/fxcktamsyn/status/461807931621928960", "source"=>"Twitter"}, {"contentid"=>"461807333036032000", "ldate"=>"Thu May 01 10:00:22 +0000 2014", "author"=>"Barry Ward", "perferredUsername"=>"cllrbarryward", "url"=>"http://twitter.com/cllrbarryward/status/461807333036032000", "source"=>"Twitter"}, {"contentid"=>"461807234033262593", "ldate"=>"Thu May 01 09:59:59 +0000 2014", "author"=>"Tiffany T. Wong", "perferredUsername"=>"lonegamer78", "url"=>"http://twitter.com/lonegamer78/status/461807234033262593", "source"=>"Twitter"}]}, "requestid"=>"5de63576-672d-4d1b-b95c-0ba94c9b7f88"}
|
528
|
+
I, [2014-05-01T06:15:06.973995 #32088] INFO -- : Prediction loader waiting for scores ...
|
529
|
+
D, [2014-05-01T06:15:06.974028 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
530
|
+
D, [2014-05-01T06:30:07.382449 #32088] DEBUG -- : Adding posts for scout_id: 27
|
531
|
+
D, [2014-05-01T06:30:07.382550 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
532
|
+
D, [2014-05-01T06:30:07.390636 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Brevard Online", body: "Letter: Higher county taxes for roads draw oppositi...", url: "http://twitter.com/BrevardOnline/status/46181156612...", source: "Twitter", sentiment: #<BigDecimal:73a3d90,'0.0',9(36)>, leadprob: #<BigDecimal:73a3b60,'0.9615303174 288985E0',18(45)>, notleadprob: #<BigDecimal:73a3930,'0.4479897021 464925E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461811566128529408", ldate: "2014-05-01 10:17:12", loadstamp: "2014-05-01 10:30:07", user_id: 7, scout_id: 27>
|
533
|
+
D, [2014-05-01T06:30:07.400812 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Streaming TV", body: "#Amazon Amazon Begins Collecting Florida Taxes for ...", url: "http://twitter.com/astreamingbox/status/46181344810...", source: "Twitter", sentiment: #<BigDecimal:740b5f8,'0.0',9(36)>, leadprob: #<BigDecimal:740b3c8,'0.8858141585 90992E0',18(45)>, notleadprob: #<BigDecimal:740b198,'0.6239374267 78747E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461813448108552192", ldate: "2014-05-01 10:24:40", loadstamp: "2014-05-01 10:30:07", user_id: 7, scout_id: 27>
|
534
|
+
I, [2014-05-01T06:30:07.416621 #32088] INFO -- : Total Number of records: 2
|
535
|
+
I, [2014-05-01T06:30:07.416663 #32088] INFO -- : Total Number of records Not Loaded: 0
|
536
|
+
I, [2014-05-01T06:30:07.416692 #32088] INFO -- : Prediction loader waiting for scores ...
|
537
|
+
D, [2014-05-01T06:30:07.416721 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
538
|
+
W, [2014-05-01T06:30:07.939825 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"DO NOT TEXT ME WHILE YOU'RE DRIVING I'm not trying to be the last unfinished message they find when your ass is wrapped around a tree.", "contentid"=>"461814723500310529"}, {"content"=>"You need another reason why you should not text and drive? http://t.co/pId6SEpo58 http://t.co/yZgarnq6tY", "contentid"=>"461814517086048256"}, {"content"=>"@janeruffino No, I was going off on one about the text driving ban. But I read that article too.", "contentid"=>"461814169281765376"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/Q7QVZCN5RM Don't Text & Drive", "contentid"=>"461813901240184832"}, {"content"=>"Do you realize that your kids will emulate you? They learn faster than you realize. Don't Drink and Drive or Text while Driving!", "contentid"=>"461813337907421184"}, {"content"=>"@SteveRichardsUK thanks for following the movie thriller TEXT ME hit home to millions entertain make people afraid do distracted driving", "contentid"=>"461812434358272001"}, {"content"=>"@MathewCalvey ill give you a text mate, if anyone wants to come with ill just drive save me standing on my jack if not ill come with ya yeah", "contentid"=>"461812173539667968"}, {"content"=>"RT @tweetinassneek: “@Fact: Please, don't text and drive: http://t.co/xIgJ2o2rIs”", "contentid"=>"461811838679003136"}, {"content"=>"“@Fact: Please, don't text and drive: http://t.co/xIgJ2o2rIs”", "contentid"=>"461811646185603073"}, {"content"=>"For those that text and drive. http://t.co/JxgHgTXsVi", "contentid"=>"461811198280101888"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461814723500310529", "ldate"=>"Thu May 01 10:29:44 +0000 2014", "author"=>"Marbella LoveU", "perferredUsername"=>"scandal_____Zz", "url"=>"http://twitter.com/scandal_____Zz/status/461814723500310529", "source"=>"Twitter"}, {"contentid"=>"461814517086048256", "ldate"=>"Thu May 01 10:28:55 +0000 2014", "author"=>"onlystronger", "perferredUsername"=>"onlystronger", "url"=>"http://twitter.com/onlystronger/status/461814517086048256", "source"=>"Twitter"}, {"contentid"=>"461814169281765376", "ldate"=>"Thu May 01 10:27:32 +0000 2014", "author"=>"Rossa McMahon", "perferredUsername"=>"rossamcmahon", "url"=>"http://twitter.com/rossamcmahon/status/461814169281765376", "source"=>"Twitter"}, {"contentid"=>"461813901240184832", "ldate"=>"Thu May 01 10:26:28 +0000 2014", "author"=>"Tubby", "perferredUsername"=>"Tubbyliscious", "url"=>"http://twitter.com/Tubbyliscious/status/461813901240184832", "source"=>"Twitter"}, {"contentid"=>"461813337907421184", "ldate"=>"Thu May 01 10:24:14 +0000 2014", "author"=>"Public Safety USA", "perferredUsername"=>"PublicSafetyUSA", "url"=>"http://twitter.com/PublicSafetyUSA/status/461813337907421184", "source"=>"Twitter"}, {"contentid"=>"461812434358272001", "ldate"=>"Thu May 01 10:20:39 +0000 2014", "author"=>"Randy Lacey", "perferredUsername"=>"themovieTxtMe", "url"=>"http://twitter.com/themovieTxtMe/status/461812434358272001", "source"=>"Twitter"}, {"contentid"=>"461812173539667968", "ldate"=>"Thu May 01 10:19:36 +0000 2014", "author"=>"Zak Elkarhat †", "perferredUsername"=>"Zakelkarhat", "url"=>"http://twitter.com/Zakelkarhat/status/461812173539667968", "source"=>"Twitter"}, {"contentid"=>"461811838679003136", "ldate"=>"Thu May 01 10:18:17 +0000 2014", "author"=>"ME ", "perferredUsername"=>"RealContagious", "url"=>"http://twitter.com/RealContagious/status/461811838679003136", "source"=>"Twitter"}, {"contentid"=>"461811646185603073", "ldate"=>"Thu May 01 10:17:31 +0000 2014", "author"=>"♎ Nicholas", "perferredUsername"=>"tweetinassneek", "url"=>"http://twitter.com/tweetinassneek/status/461811646185603073", "source"=>"Twitter"}, {"contentid"=>"461811198280101888", "ldate"=>"Thu May 01 10:15:44 +0000 2014", "author"=>"Mark Levine", "perferredUsername"=>"marklevine510", "url"=>"http://twitter.com/marklevine510/status/461811198280101888", "source"=>"Twitter"}]}, "requestid"=>"bbdb02df-2b89-43d7-b4e3-52a98310023e"}
|
539
|
+
I, [2014-05-01T06:30:07.939894 #32088] INFO -- : Prediction loader waiting for scores ...
|
540
|
+
D, [2014-05-01T06:30:07.939928 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
541
|
+
W, [2014-05-01T06:45:07.784723 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"Waking up to a text saying your favorite noodles is cooked for you and @LloydPfc has made me want to drive home quicker #MyMumIsAQt ☺️ἵC", "contentid"=>"461818248988991488"}, {"content"=>"RT @pinn_pibz: Me : don't text and drive bitch.\nBro : shut the fuck up.", "contentid"=>"461816126154866688"}, {"content"=>"RT @kevinheart4reaI: DO NOT TEXT ME WHILE YOU'RE DRIVING Im not trying to be the last unfinished message they find when your ass is wrapped…", "contentid"=>"461815238418255872"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461818248988991488", "ldate"=>"Thu May 01 10:43:45 +0000 2014", "author"=>"Charmaine De'el True", "perferredUsername"=>"CharmaineTrue", "url"=>"http://twitter.com/CharmaineTrue/status/461818248988991488", "source"=>"Twitter"}, {"contentid"=>"461816126154866688", "ldate"=>"Thu May 01 10:35:19 +0000 2014", "author"=>"cheng", "perferredUsername"=>"shuyicheng", "url"=>"http://twitter.com/shuyicheng/status/461816126154866688", "source"=>"Twitter"}, {"contentid"=>"461815238418255872", "ldate"=>"Thu May 01 10:31:47 +0000 2014", "author"=>"Jordan Taylor", "perferredUsername"=>"That__Guy__02", "url"=>"http://twitter.com/That__Guy__02/status/461815238418255872", "source"=>"Twitter"}]}, "requestid"=>"9d481a30-d0be-4db4-9d29-823be837851f"}
|
542
|
+
I, [2014-05-01T06:45:07.784785 #32088] INFO -- : Prediction loader waiting for scores ...
|
543
|
+
D, [2014-05-01T06:45:07.784819 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
544
|
+
D, [2014-05-01T07:00:07.517392 #32088] DEBUG -- : Adding posts for scout_id: 27
|
545
|
+
D, [2014-05-01T07:00:07.517464 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
546
|
+
D, [2014-05-01T07:00:07.525402 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "GOP", body: "GOP stepping up Hispanic outreach in Florida - Wink...", url: "http://twitter.com/republican_rp/status/46181891359...", source: "Twitter", sentiment: #<BigDecimal:74cc730,'0.0',9(36)>, leadprob: #<BigDecimal:74cc500,'0.7762643994 859042E0',18(45)>, notleadprob: #<BigDecimal:74cc2d0,'0.8077996625 164019E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461818913593229312", ldate: "2014-05-01 10:46:23", loadstamp: "2014-05-01 11:00:07", user_id: 7, scout_id: 27>
|
547
|
+
D, [2014-05-01T07:00:07.536618 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Streaming TV", body: "#Amazon Amazon Begins Collecting Florida Taxes for ...", url: "http://twitter.com/astreamingbox/status/46182137896...", source: "Twitter", sentiment: #<BigDecimal:7547f98,'0.0',9(36)>, leadprob: #<BigDecimal:7547d68,'0.8858141585 90992E0',18(45)>, notleadprob: #<BigDecimal:7547b38,'0.6239374267 78747E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461821378966990848", ldate: "2014-05-01 10:56:11", loadstamp: "2014-05-01 11:00:07", user_id: 7, scout_id: 27>
|
548
|
+
I, [2014-05-01T07:00:07.552414 #32088] INFO -- : Total Number of records: 2
|
549
|
+
I, [2014-05-01T07:00:07.552456 #32088] INFO -- : Total Number of records Not Loaded: 0
|
550
|
+
I, [2014-05-01T07:00:07.552485 #32088] INFO -- : Prediction loader waiting for scores ...
|
551
|
+
D, [2014-05-01T07:00:07.552514 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
552
|
+
W, [2014-05-01T07:00:08.025552 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"Up and at em this morning! Text me and snap me, I've got a 9 hour drive ahead of me...", "contentid"=>"461822118271791104"}, {"content"=>"From one second to the next. Will you ever text and drive again? http://t.co/OSEYVmGwhp", "contentid"=>"461821950248361984"}, {"content"=>"Just saw the craziest don't text and drive commercial. Felt so real", "contentid"=>"461821155196665856"}, {"content"=>"When my dad's coworkers text me to tell me be careful driving this morning because of the fog and wet roads. \u1F46EὉA #love", "contentid"=>"461820506371809280"}, {"content"=>"RT @rossamcmahon: Updated my text driving blog post with thanks to @lostexpectation for link to confusing DTTAS note on the new law. http:/…", "contentid"=>"461820196886700032"}, {"content"=>"2014 Volkswagen Tiguan is AWESOME and SUPER COOL - Put a Bird on it! http://t.co/ZfSOHF033t Dont Text and Drive!", "contentid"=>"461820090384936960"}, {"content"=>"@PhilMauer ohhh now I see what you meant in your text haha. I was driving past...but I assure it wasn't me ὣ3haha x", "contentid"=>"461819719381975040"}, {"content"=>"RT @Fact: Please, don't text and drive: http://t.co/DnXvY2RQpX", "contentid"=>"461818952692535296"}, {"content"=>"Hanging on the telephone – has anyone got it right on the new ban on text driving? | A Clatter of the Law http://t.co/KHzyxErHOI", "contentid"=>"461818952197218304"}, {"content"=>"I HATE when ppl text me while they drivingὡ1", "contentid"=>"461818590723702784"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461822118271791104", "ldate"=>"Thu May 01 10:59:07 +0000 2014", "author"=>"Rachael Purgerson", "perferredUsername"=>"rachpurg", "url"=>"http://twitter.com/rachpurg/status/461822118271791104", "source"=>"Twitter"}, {"contentid"=>"461821950248361984", "ldate"=>"Thu May 01 10:58:27 +0000 2014", "author"=>"Volcano Group", "perferredUsername"=>"VolcanoGroup", "url"=>"http://twitter.com/VolcanoGroup/status/461821950248361984", "source"=>"Twitter"}, {"contentid"=>"461821155196665856", "ldate"=>"Thu May 01 10:55:18 +0000 2014", "author"=>"Eileen ", "perferredUsername"=>"westofwhisym", "url"=>"http://twitter.com/westofwhisym/status/461821155196665856", "source"=>"Twitter"}, {"contentid"=>"461820506371809280", "ldate"=>"Thu May 01 10:52:43 +0000 2014", "author"=>"Savannah Dooley", "perferredUsername"=>"Savannahh_Rosee", "url"=>"http://twitter.com/Savannahh_Rosee/status/461820506371809280", "source"=>"Twitter"}, {"contentid"=>"461820196886700032", "ldate"=>"Thu May 01 10:51:29 +0000 2014", "author"=>"Darius Whelan", "perferredUsername"=>"dariuswirl", "url"=>"http://twitter.com/dariuswirl/status/461820196886700032", "source"=>"Twitter"}, {"contentid"=>"461820090384936960", "ldate"=>"Thu May 01 10:51:04 +0000 2014", "author"=>"goodboy186", "perferredUsername"=>"goodboy186", "url"=>"http://twitter.com/goodboy186/status/461820090384936960", "source"=>"Twitter"}, {"contentid"=>"461819719381975040", "ldate"=>"Thu May 01 10:49:35 +0000 2014", "author"=>"Christine Richmond", "perferredUsername"=>"MissRichmond83", "url"=>"http://twitter.com/MissRichmond83/status/461819719381975040", "source"=>"Twitter"}, {"contentid"=>"461818952692535296", "ldate"=>"Thu May 01 10:46:33 +0000 2014", "author"=>"☯ karma ☯", "perferredUsername"=>"AlanaSofiaFizzy", "url"=>"http://twitter.com/AlanaSofiaFizzy/status/461818952692535296", "source"=>"Twitter"}, {"contentid"=>"461818952197218304", "ldate"=>"Thu May 01 10:46:33 +0000 2014", "author"=>"Tom", "perferredUsername"=>"tggleeson", "url"=>"http://twitter.com/tggleeson/status/461818952197218304", "source"=>"Twitter"}, {"contentid"=>"461818590723702784", "ldate"=>"Thu May 01 10:45:06 +0000 2014", "author"=>"الجمال✨", "perferredUsername"=>"phillygirl_jada", "url"=>"http://twitter.com/phillygirl_jada/status/461818590723702784", "source"=>"Twitter"}]}, "requestid"=>"0423348a-b6f5-4348-bd62-ee9be98ae966"}
|
553
|
+
I, [2014-05-01T07:00:08.025622 #32088] INFO -- : Prediction loader waiting for scores ...
|
554
|
+
D, [2014-05-01T07:00:08.025656 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
555
|
+
D, [2014-05-01T07:15:06.816828 #32088] DEBUG -- : Adding posts for scout_id: 27
|
556
|
+
D, [2014-05-01T07:15:06.817966 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Blue Alert", body: "RT @FLSheriffs: Starting today on Amazon, #Florida ...", url: "http://twitter.com/BlueAlertUs/status/4618233764753...", source: "Twitter", sentiment: #<BigDecimal:75c8df0,'0.0',9(36)>, leadprob: #<BigDecimal:75c8bc0,'0.8679444231 686726E0',18(45)>, notleadprob: #<BigDecimal:75c8990,'0.6694729129 239936E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461823376475312128", ldate: "2014-05-01 11:04:07", loadstamp: "2014-05-01 11:15:06", user_id: 7, scout_id: 27>
|
557
|
+
D, [2014-05-01T07:15:06.833884 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Gator Sports Now", body: "What a difference: Marlins showing growth in season...", url: "http://twitter.com/GatorSportsNow/status/4618234974...", source: "Twitter", sentiment: #<BigDecimal:75fc4e8,'0.0',9(36)>, leadprob: #<BigDecimal:75fc290,'0.8204035007 445764E0',18(45)>, notleadprob: #<BigDecimal:75fc060,'0.6530382518 64121E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461823497400881154", ldate: "2014-05-01 11:04:36", loadstamp: "2014-05-01 11:15:06", user_id: 7, scout_id: 27>
|
558
|
+
D, [2014-05-01T07:15:06.842262 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Bag on Nuts", body: "Marlins: What a difference: Marlins showing growth ...", url: "http://twitter.com/BagOfPeanuts/status/461823982694...", source: "Twitter", sentiment: #<BigDecimal:766fbc8,'0.0',9(36)>, leadprob: #<BigDecimal:766f998,'0.9108416453 868838E0',18(45)>, notleadprob: #<BigDecimal:766f768,'0.7111097992 356545E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461823982694445057", ldate: "2014-05-01 11:06:32", loadstamp: "2014-05-01 11:15:06", user_id: 7, scout_id: 27>
|
559
|
+
D, [2014-05-01T07:15:06.858959 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "New Current News", body: "Republican David Jolly Defeats Democrat Alex Sink I...", url: "http://twitter.com/NewCurrentNews/status/4618251362...", source: "Twitter", sentiment: #<BigDecimal:79574d0,'0.0',9(36)>, leadprob: #<BigDecimal:7957278,'0.6730169016 655186E0',18(45)>, notleadprob: #<BigDecimal:7956f58,'0.9267394750 759193E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461825136228720640", ldate: "2014-05-01 11:11:07", loadstamp: "2014-05-01 11:15:06", user_id: 7, scout_id: 27>
|
560
|
+
I, [2014-05-01T07:15:06.874701 #32088] INFO -- : Total Number of records: 4
|
561
|
+
I, [2014-05-01T07:15:06.874743 #32088] INFO -- : Total Number of records Not Loaded: 0
|
562
|
+
I, [2014-05-01T07:15:06.874771 #32088] INFO -- : Prediction loader waiting for scores ...
|
563
|
+
D, [2014-05-01T07:15:06.874800 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
564
|
+
W, [2014-05-01T07:15:07.371805 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"@biigmike82 No I appreciate the heads up. I didn't take it as rude at all. Shouldn't text and drive but thanks again.", "contentid"=>"461825842633379840"}, {"content"=>"JOB IAM LOOKING FOR CDL A DUMP TRUCK DRIVING JOB NOW 15 YEARS EXPERIENCE CALL CELL OR TEXT 312-731-7337 HAVE ALL ENDORSEMENTS CLEAN MVR", "contentid"=>"461825786182258688"}, {"content"=>"@soshi9 did u text n drive ?", "contentid"=>"461825426759757825"}, {"content"=>"“@Fact: Please, don't text and drive: http://t.co/A0ygzSOm0R”", "contentid"=>"461825105283534848"}, {"content"=>"Please! Don't text and drive !!!", "contentid"=>"461825012467392512"}, {"content"=>"I probably shouldn't text and drive, I've almost hit 2 people within 2 days ὠ2 #myb", "contentid"=>"461824083362320384"}, {"content"=>"If you know someone is driving.. DONT TEXT THEM. Same as the driver DONT TEXT AND DRIVE . Especially with me in the car!!", "contentid"=>"461822691779952640"}, {"content"=>"RT @MelanieShebel: It's not safe to text and drive! Drive Now. TXT L8R. #TXTL8RIN http://t.co/82iSEm28h3", "contentid"=>"461822469855510528"}, {"content"=>"11th gr: Here's the text for today's short story. Questions are due tomorrow. Harrison Bergeron.pdf - https://t.co/HOdqkO3hlU", "contentid"=>"461822368420081665"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461825842633379840", "ldate"=>"Thu May 01 11:13:55 +0000 2014", "author"=>"Jake Gutierrez", "perferredUsername"=>"JakeGuti", "url"=>"http://twitter.com/JakeGuti/status/461825842633379840", "source"=>"Twitter"}, {"contentid"=>"461825786182258688", "ldate"=>"Thu May 01 11:13:42 +0000 2014", "author"=>"donald hubal", "perferredUsername"=>"donaldhubalSTS", "url"=>"http://twitter.com/donaldhubalSTS/status/461825786182258688", "source"=>"Twitter"}, {"contentid"=>"461825426759757825", "ldate"=>"Thu May 01 11:12:16 +0000 2014", "author"=>"제시카's Awesome Puppy", "perferredUsername"=>"vcAcivon", "url"=>"http://twitter.com/vcAcivon/status/461825426759757825", "source"=>"Twitter"}, {"contentid"=>"461825105283534848", "ldate"=>"Thu May 01 11:11:00 +0000 2014", "author"=>"the food eater", "perferredUsername"=>"jessie_flow", "url"=>"http://twitter.com/jessie_flow/status/461825105283534848", "source"=>"Twitter"}, {"contentid"=>"461825012467392512", "ldate"=>"Thu May 01 11:10:37 +0000 2014", "author"=>"dorthy moss", "perferredUsername"=>"mossdorthy12", "url"=>"http://twitter.com/mossdorthy12/status/461825012467392512", "source"=>"Twitter"}, {"contentid"=>"461824083362320384", "ldate"=>"Thu May 01 11:06:56 +0000 2014", "author"=>"Katy Gee", "perferredUsername"=>"katyjade123", "url"=>"http://twitter.com/katyjade123/status/461824083362320384", "source"=>"Twitter"}, {"contentid"=>"461822691779952640", "ldate"=>"Thu May 01 11:01:24 +0000 2014", "author"=>"Shaylaa", "perferredUsername"=>"shayjayyyyy", "url"=>"http://twitter.com/shayjayyyyy/status/461822691779952640", "source"=>"Twitter"}, {"contentid"=>"461822469855510528", "ldate"=>"Thu May 01 11:00:31 +0000 2014", "author"=>"BogDan Wrzesinski", "perferredUsername"=>"godsent247", "url"=>"http://twitter.com/godsent247/status/461822469855510528", "source"=>"Twitter"}, {"contentid"=>"461822368420081665", "ldate"=>"Thu May 01 11:00:07 +0000 2014", "author"=>"Michael Shuptar", "perferredUsername"=>"MrShupELA", "url"=>"http://twitter.com/MrShupELA/status/461822368420081665", "source"=>"Twitter"}]}, "requestid"=>"2219456d-613d-4803-98d5-aaa560e5f014"}
|
565
|
+
I, [2014-05-01T07:15:07.371869 #32088] INFO -- : Prediction loader waiting for scores ...
|
566
|
+
D, [2014-05-01T07:15:07.371902 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
567
|
+
D, [2014-05-01T07:30:08.203966 #32088] DEBUG -- : Adding posts for scout_id: 27
|
568
|
+
D, [2014-05-01T07:30:08.204041 #32088] DEBUG -- : Refreshing users for enterprise: 5
|
569
|
+
D, [2014-05-01T07:30:08.211934 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "SharePoint AMS", body: "Amazon Begins Collecting Florida Sales Taxes for In...", url: "http://twitter.com/SharePointAMS/status/46182774947...", source: "Twitter", sentiment: #<BigDecimal:7a0cc40,'0.0',9(36)>, leadprob: #<BigDecimal:7a0ca10,'0.8758318797 586186E0',18(45)>, notleadprob: #<BigDecimal:7a0c7e0,'0.5901270018 784091E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461827749477232640", ldate: "2014-05-01 11:21:30", loadstamp: "2014-05-01 11:30:08", user_id: 7, scout_id: 27>
|
570
|
+
D, [2014-05-01T07:30:08.231257 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Miami FL News", body: "Shopping on http://t.co/sDCoEUezfM in Florida? Expe...", url: "http://twitter.com/Miami_FLNews/status/461827894419...", source: "Twitter", sentiment: #<BigDecimal:777c160,'0.0',9(36)>, leadprob: #<BigDecimal:77829e8,'0.9265155552 677558E0',18(45)>, notleadprob: #<BigDecimal:7783e60,'0.6043093087 946119E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461827894419795968", ldate: "2014-05-01 11:22:05", loadstamp: "2014-05-01 11:30:08", user_id: 7, scout_id: 27>
|
571
|
+
D, [2014-05-01T07:30:08.247889 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Miami Herald", body: "STARTING TODAY: Shopping on #Amazon.com in Florida?...", url: "http://twitter.com/MiamiHerald/status/4618281469130...", source: "Twitter", sentiment: #<BigDecimal:77ef5e8,'0.0',9(36)>, leadprob: #<BigDecimal:77ef3b8,'0.9081095067 495231E0',18(45)>, notleadprob: #<BigDecimal:77ef188,'0.4995114227 712701E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461828146913083392", ldate: "2014-05-01 11:23:05", loadstamp: "2014-05-01 11:30:08", user_id: 7, scout_id: 27>
|
572
|
+
D, [2014-05-01T07:30:08.264605 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "LIL Ni99@", body: "RT @MiamiHerald: STARTING TODAY: Shopping on #Amazo...", url: "http://twitter.com/Dadeni99a/status/461828611465834...", source: "Twitter", sentiment: #<BigDecimal:7856ba8,'0.0',9(36)>, leadprob: #<BigDecimal:7856978,'0.7435876122 832953E0',18(45)>, notleadprob: #<BigDecimal:7856748,'0.6469466346 518242E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461828611465834496", ldate: "2014-05-01 11:24:56", loadstamp: "2014-05-01 11:30:08", user_id: 7, scout_id: 27>
|
573
|
+
D, [2014-05-01T07:30:08.281038 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Joseph Ramirez", body: "RT @MiamiHerald: STARTING TODAY: Shopping on #Amazo...", url: "http://twitter.com/joeramirezmiami/status/461828857...", source: "Twitter", sentiment: #<BigDecimal:78ba180,'0.0',9(36)>, leadprob: #<BigDecimal:78b9f50,'0.7435876122 832953E0',18(45)>, notleadprob: #<BigDecimal:78b9d20,'0.6469466346 518242E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461828857168138240", ldate: "2014-05-01 11:25:54", loadstamp: "2014-05-01 11:30:08", user_id: 7, scout_id: 27>
|
574
|
+
D, [2014-05-01T07:30:08.297852 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Jennifer Harris", body: "RT @MiamiHerald: STARTING TODAY: Shopping on #Amazo...", url: "http://twitter.com/TxLnghrnJen/status/4618290406433...", source: "Twitter", sentiment: #<BigDecimal:79257c8,'0.0',9(36)>, leadprob: #<BigDecimal:7925598,'0.7435876122 832953E0',18(45)>, notleadprob: #<BigDecimal:7925368,'0.6469466346 518242E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461829040643383296", ldate: "2014-05-01 11:26:38", loadstamp: "2014-05-01 11:30:08", user_id: 7, scout_id: 27>
|
575
|
+
D, [2014-05-01T07:30:08.314521 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Breaking Miami News", body: "Fla. GOP voters prefer Jeb Bush by wide margins: Fo...", url: "http://twitter.com/breakingnewsmia/status/461829103...", source: "Twitter", sentiment: #<BigDecimal:7a6ce10,'0.0',9(36)>, leadprob: #<BigDecimal:7a6cbe0,'0.8075200834 213381E0',18(45)>, notleadprob: #<BigDecimal:7a6c9b0,'0.9226336172 931312E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461829103704735744", ldate: "2014-05-01 11:26:53", loadstamp: "2014-05-01 11:30:08", user_id: 7, scout_id: 27>
|
576
|
+
D, [2014-05-01T07:30:08.331288 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Streaming TV", body: "#Amazon Amazon Begins Collecting Florida Sales Taxe...", url: "http://twitter.com/astreamingbox/status/46182933523...", source: "Twitter", sentiment: #<BigDecimal:7ad8458,'0.0',9(36)>, leadprob: #<BigDecimal:7ad8228,'0.8758318797 586186E0',18(45)>, notleadprob: #<BigDecimal:76f5ae8,'0.5901270018 784091E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461829335230320640", ldate: "2014-05-01 11:27:48", loadstamp: "2014-05-01 11:30:08", user_id: 7, scout_id: 27>
|
577
|
+
D, [2014-05-01T07:30:08.347896 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Shinelle", body: "RT @MiamiHerald: STARTING TODAY: Shopping on #Amazo...", url: "http://twitter.com/shins_0/status/46182963509828812...", source: "Twitter", sentiment: #<BigDecimal:6a37b58,'0.0',9(36)>, leadprob: #<BigDecimal:6a37928,'0.7435876122 832953E0',18(45)>, notleadprob: #<BigDecimal:6a376f8,'0.6469466346 518242E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461829635098288128", ldate: "2014-05-01 11:29:00", loadstamp: "2014-05-01 11:30:08", user_id: 7, scout_id: 27>
|
578
|
+
D, [2014-05-01T07:30:08.364501 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Dovie Nkata", body: "Shopping on http://t.co/8jCjvsEUP0 in Florida? Expe...", url: "http://twitter.com/DovieNkata/status/46182966195821...", source: "Twitter", sentiment: #<BigDecimal:7cc32b8,'0.0',9(36)>, leadprob: #<BigDecimal:7cc3060,'0.8936143850 948659E0',18(45)>, notleadprob: #<BigDecimal:7cc2e30,'0.4137718931 143053E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461829661958217730", ldate: "2014-05-01 11:29:06", loadstamp: "2014-05-01 11:30:08", user_id: 7, scout_id: 27>
|
579
|
+
D, [2014-05-01T07:30:08.381129 #32088] DEBUG -- : #<Post id: nil, enterprise_id: 5, author: "Julie Anne Garcia", body: "RT @MiamiHerald: STARTING TODAY: Shopping on #Amazo...", url: "http://twitter.com/JulieAG/status/46182977533063987...", source: "Twitter", sentiment: #<BigDecimal:7c1ac30,'0.0',9(36)>, leadprob: #<BigDecimal:7c1aa00,'0.7435876122 832953E0',18(45)>, notleadprob: #<BigDecimal:7c1a7d0,'0.6469466346 518242E0',18(45)>, created_at: nil, updated_at: nil, state: "NO_OFFER", label: "LEAD", lid: "461829775330639872", ldate: "2014-05-01 11:29:33", loadstamp: "2014-05-01 11:30:08", user_id: 7, scout_id: 27>
|
580
|
+
I, [2014-05-01T07:30:08.397028 #32088] INFO -- : Total Number of records: 11
|
581
|
+
I, [2014-05-01T07:30:08.397070 #32088] INFO -- : Total Number of records Not Loaded: 0
|
582
|
+
I, [2014-05-01T07:30:08.397099 #32088] INFO -- : Prediction loader waiting for scores ...
|
583
|
+
D, [2014-05-01T07:30:08.397127 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
584
|
+
W, [2014-05-01T07:30:14.780885 #32088] WARN -- : Non OK Status from AI Core: {"errorlist"=>["Could not find model:Texting1"], "message"=>nil, "errorcode"=>nil, "status"=>"error", "contentlist"=>[{"content"=>"RT @UPROXX: Watch This Intense, Brutal ‘Don’t Text And Drive’ Ad And Then Show It To Every Dumbass Teenager You Know http://t.co/Xa6x86YcfU", "contentid"=>"461829743164542976"}, {"content"=>"Just saw a cop texting and driving. That means it's okay for me to text and drive too right?", "contentid"=>"461829429153366016"}, {"content"=>"I liked a @YouTube video from @lauknessmonster http://t.co/yjZdeMlBTc Don't Text & Drive", "contentid"=>"461828536693981184"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461827596636798976"}, {"content"=>"I have no problem texting while driving, but I won't text while going down stairs. Hell naw. . That shit dangerous.", "contentid"=>"461826986957340672"}, {"content"=>"Do not text me and drive. I ain't gonna be on the commercial for \"this is the last text he sent...\" ὡ2", "contentid"=>"461826868971204608"}, {"content"=>"Cops handing out \"Stay Alive! Don't text and drive\" magnets when you pull in hahaha", "contentid"=>"461826574858190848"}, {"content"=>"@KenzieCurless @elijahelliott34 don't you know it's bad to text an drive. Elijah. Lol", "contentid"=>"461826562807959552"}], "context"=>{"eid"=>"6", "uid"=>"Texting1", "post_details"=>[{"contentid"=>"461829743164542976", "ldate"=>"Thu May 01 11:29:25 +0000 2014", "author"=>"Letting Go", "perferredUsername"=>"LettingGoBook2", "url"=>"http://twitter.com/LettingGoBook2/status/461829743164542976", "source"=>"Twitter"}, {"contentid"=>"461829429153366016", "ldate"=>"Thu May 01 11:28:10 +0000 2014", "author"=>"Kirk Gothard", "perferredUsername"=>"KirkGothard", "url"=>"http://twitter.com/KirkGothard/status/461829429153366016", "source"=>"Twitter"}, {"contentid"=>"461828536693981184", "ldate"=>"Thu May 01 11:24:38 +0000 2014", "author"=>"FaZe Zubc", "perferredUsername"=>"turtlesareswag", "url"=>"http://twitter.com/turtlesareswag/status/461828536693981184", "source"=>"Twitter"}, {"contentid"=>"461827596636798976", "ldate"=>"Thu May 01 11:20:54 +0000 2014", "author"=>"✨Jordan White.✨ ", "perferredUsername"=>"KlingPintobmj", "url"=>"http://twitter.com/KlingPintobmj/status/461827596636798976", "source"=>"Twitter"}, {"contentid"=>"461826986957340672", "ldate"=>"Thu May 01 11:18:28 +0000 2014", "author"=>"Alice Durning ", "perferredUsername"=>"Jaysonivd", "url"=>"http://twitter.com/Jaysonivd/status/461826986957340672", "source"=>"Twitter"}, {"contentid"=>"461826868971204608", "ldate"=>"Thu May 01 11:18:00 +0000 2014", "author"=>"Alana", "perferredUsername"=>"goffalana", "url"=>"http://twitter.com/goffalana/status/461826868971204608", "source"=>"Twitter"}, {"contentid"=>"461826574858190848", "ldate"=>"Thu May 01 11:16:50 +0000 2014", "author"=>"Brandon Downing", "perferredUsername"=>"Downing_2014", "url"=>"http://twitter.com/Downing_2014/status/461826574858190848", "source"=>"Twitter"}, {"contentid"=>"461826562807959552", "ldate"=>"Thu May 01 11:16:47 +0000 2014", "author"=>"justin dancy", "perferredUsername"=>"jdancy84", "url"=>"http://twitter.com/jdancy84/status/461826562807959552", "source"=>"Twitter"}]}, "requestid"=>"f1d37a08-c7f3-4b2d-9731-6dde053fcc53"}
|
585
|
+
I, [2014-05-01T07:30:14.780952 #32088] INFO -- : Prediction loader waiting for scores ...
|
586
|
+
D, [2014-05-01T07:30:14.780985 #32088] DEBUG -- : Reading from queue: scores:/queue/scores
|
587
|
+
I, [2014-05-01T17:48:17.532019 #13186] INFO -- : Total Number of records received: 3
|
588
|
+
W, [2014-05-01T17:48:17.584228 #13186] WARN -- : Failed to bulk load 3 records
|
589
|
+
W, [2014-05-01T17:48:17.584287 #13186] WARN -- : PG::NotNullViolation: ERROR: null value in column "scout_id" violates not-null constraint
|
590
|
+
: INSERT INTO "posts" ("author", "body", "created_at", "enterprise_id", "label", "ldate", "leadprob", "lid", "loadstamp", "notleadprob", "scout_id", "sentiment", "source", "state", "updated_at", "url", "user_id") VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17) RETURNING "id"
|
591
|
+
W, [2014-05-01T17:48:17.584322 #13186] WARN -- : ["/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/connection_adapters/postgresql_adapter.rb:786:in `get_last_result'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/connection_adapters/postgresql_adapter.rb:786:in `exec_cache'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/connection_adapters/postgresql/database_statements.rb:139:in `block in exec_query'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/connection_adapters/abstract_adapter.rb:435:in `block in log'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activesupport-4.0.3/lib/active_support/notifications/instrumenter.rb:20:in `instrument'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/connection_adapters/abstract_adapter.rb:430:in `log'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/connection_adapters/postgresql/database_statements.rb:137:in `exec_query'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/connection_adapters/postgresql/database_statements.rb:184:in `exec_insert'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/connection_adapters/abstract/database_statements.rb:96:in `insert'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/connection_adapters/abstract/query_cache.rb:14:in `insert'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/relation.rb:76:in `insert'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/persistence.rb:509:in `create_record'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/attribute_methods/dirty.rb:78:in `create_record'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/callbacks.rb:306:in `block in create_record'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activesupport-4.0.3/lib/active_support/callbacks.rb:373:in `_run__1901135813518085503__create__callbacks'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activesupport-4.0.3/lib/active_support/callbacks.rb:80:in `run_callbacks'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/callbacks.rb:306:in `create_record'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/timestamp.rb:57:in `create_record'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/persistence.rb:477:in `create_or_update'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/callbacks.rb:302:in `block in create_or_update'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activesupport-4.0.3/lib/active_support/callbacks.rb:413:in `_run__1901135813518085503__save__callbacks'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activesupport-4.0.3/lib/active_support/callbacks.rb:80:in `run_callbacks'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/callbacks.rb:302:in `create_or_update'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/persistence.rb:106:in `save'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/validations.rb:51:in `save'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/attribute_methods/dirty.rb:32:in `save'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/transactions.rb:270:in `block (2 levels) in save'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/transactions.rb:326:in `block in with_transaction_returning_status'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/connection_adapters/abstract/database_statements.rb:202:in `block in transaction'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/connection_adapters/abstract/database_statements.rb:210:in `within_new_transaction'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/connection_adapters/abstract/database_statements.rb:202:in `transaction'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/transactions.rb:209:in `transaction'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/transactions.rb:323:in `with_transaction_returning_status'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/transactions.rb:270:in `block in save'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/transactions.rb:281:in `rollback_active_record_state!'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/transactions.rb:269:in `save'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/persistence.rb:37:in `create'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/persistence.rb:34:in `block in create'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/persistence.rb:34:in `collect'", "/usr/local/rvm/gems/ruby-2.0.0-p195@sociallens/gems/activerecord-4.0.3/lib/active_record/persistence.rb:34:in `create'", "/home/noxaos/pipeline/lib/pipeline/prediction_loader.rb:187:in `bulk_load'", "/home/noxaos/pipeline/lib/pipeline/prediction_loader.rb:299:in `run'", "/home/noxaos/pipeline/bin/prediction_loader_server:55:in `<main>'"]
|
592
|
+
I, [2014-05-01T17:48:17.585436 #13186] INFO -- : Prediction loader waiting for scores ...
|
593
|
+
D, [2014-05-01T17:48:17.585480 #13186] DEBUG -- : Reading from queue: scores:/queue/scores
|