vestorly_api 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.rspec +2 -0
- data/Gemfile +5 -0
- data/LICENSE.txt +22 -0
- data/README.md +151 -0
- data/Rakefile +1 -0
- data/lib/vestorly_api.rb +30 -0
- data/lib/vestorly_api/advisor_base.rb +74 -0
- data/lib/vestorly_api/default_endpoint.rb +18 -0
- data/lib/vestorly_api/exceptions.rb +10 -0
- data/lib/vestorly_api/member.rb +20 -0
- data/lib/vestorly_api/response_utils.rb +19 -0
- data/lib/vestorly_api/sign_in.rb +56 -0
- data/lib/vestorly_api/sign_out.rb +49 -0
- data/lib/vestorly_api/version.rb +3 -0
- data/spec/fixtures/vestorly_api_cassettes/advisor_posts.yml +321 -0
- data/spec/fixtures/vestorly_api_cassettes/advisor_user_entries.yml +48 -0
- data/spec/fixtures/vestorly_api_cassettes/fetch_members.yml +292 -0
- data/spec/fixtures/vestorly_api_cassettes/invalid_fetch_members.yml +48 -0
- data/spec/fixtures/vestorly_api_cassettes/invalid_sign_in.yml +59 -0
- data/spec/fixtures/vestorly_api_cassettes/invalid_sign_out.yml +59 -0
- data/spec/fixtures/vestorly_api_cassettes/sign_in.yml +109 -0
- data/spec/fixtures/vestorly_api_cassettes/sign_out.yml +59 -0
- data/spec/spec_helper.rb +44 -0
- data/spec/vestorly_api/advisor_base_spec.rb +112 -0
- data/spec/vestorly_api/default_endpiont_spec.rb +20 -0
- data/spec/vestorly_api/member_spec.rb +92 -0
- data/spec/vestorly_api/sign_in_spec.rb +108 -0
- data/spec/vestorly_api/sign_out_spec.rb +98 -0
- data/vestorly_api.gemspec +32 -0
- metadata +178 -0
@@ -0,0 +1,49 @@
|
|
1
|
+
module VestorlyApi
|
2
|
+
class SignOut
|
3
|
+
|
4
|
+
include HTTParty
|
5
|
+
extend DefaultEndpoint
|
6
|
+
|
7
|
+
def initialize(authentication_token)
|
8
|
+
@authentication_token = authentication_token
|
9
|
+
@sign_out_response = nil
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.sign_out_api_endpoint
|
13
|
+
"#{SignOut.default_api_endpoint}/session_management/sign_out?version=#{SignOut.api_version}"
|
14
|
+
end
|
15
|
+
|
16
|
+
def self.sign_out(authentication_token)
|
17
|
+
new(authentication_token).sign_out
|
18
|
+
end
|
19
|
+
|
20
|
+
def sign_out
|
21
|
+
@sign_out_response = SignOut.post( SignOut.sign_out_api_endpoint, query: default_query_params )
|
22
|
+
sign_out_response
|
23
|
+
end
|
24
|
+
|
25
|
+
private
|
26
|
+
|
27
|
+
def default_query_params
|
28
|
+
{
|
29
|
+
"vestorly-auth" => @authentication_token
|
30
|
+
}
|
31
|
+
end
|
32
|
+
|
33
|
+
def sign_out_response
|
34
|
+
{
|
35
|
+
code: response_status_code,
|
36
|
+
message: response_message
|
37
|
+
}
|
38
|
+
end
|
39
|
+
|
40
|
+
def response_status_code
|
41
|
+
@sign_out_response.code
|
42
|
+
end
|
43
|
+
|
44
|
+
def response_message
|
45
|
+
@sign_out_response["message"]
|
46
|
+
end
|
47
|
+
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,321 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://vestorly-dev.herokuapp.com/api/v1/advisors/rodas/posts.json?vestorly-auth=eyJwYXlsb2FkIjoiNGY2NTQyYzBjZmI0OTMwMDAxMDAwMDEzIiwiY3JlYXRlZF9vbiI6MTM5NjQ2MTg2MCwic2lnbmF0dXJlIjoiUzdYV1h6d2VaNk5vZWZialoxeGFrQmNlQjM0VktEb0s1bytRTGZOckZyST0ifQ
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: OK
|
14
|
+
headers:
|
15
|
+
Server:
|
16
|
+
- Cowboy
|
17
|
+
Connection:
|
18
|
+
- close
|
19
|
+
Date:
|
20
|
+
- Thu, 18 Sep 2014 23:44:07 GMT
|
21
|
+
Status:
|
22
|
+
- 200 OK
|
23
|
+
Access-Control-Expose-Headers:
|
24
|
+
- api_version
|
25
|
+
Api-Version:
|
26
|
+
- 1.0.0
|
27
|
+
Access-Control-Allow-Origin:
|
28
|
+
- "*"
|
29
|
+
Access-Control-Max-Age:
|
30
|
+
- '1728000'
|
31
|
+
Access-Control-Allow-Methods:
|
32
|
+
- POST, GET, OPTIONS, PUT, DELETE
|
33
|
+
Access-Control-Allow-Headers:
|
34
|
+
- x-vestorly-auth, Origin, X-Requested-With, Content-Type, Accept, Authorization
|
35
|
+
Content-Type:
|
36
|
+
- application/json; charset=utf-8
|
37
|
+
X-Ua-Compatible:
|
38
|
+
- IE=Edge,chrome=1
|
39
|
+
Etag:
|
40
|
+
- '"3ed96b56832906375c27a089ea0ad0ff"'
|
41
|
+
Cache-Control:
|
42
|
+
- max-age=0, private, must-revalidate
|
43
|
+
X-Request-Id:
|
44
|
+
- 6dc3b8be-56d9-40b4-8f56-890565daab02
|
45
|
+
X-Runtime:
|
46
|
+
- '0.269888'
|
47
|
+
X-Rack-Cache:
|
48
|
+
- miss
|
49
|
+
Vary:
|
50
|
+
- Accept-Encoding
|
51
|
+
Via:
|
52
|
+
- 1.1 vegur
|
53
|
+
body:
|
54
|
+
encoding: UTF-8
|
55
|
+
string: '{"posts":[{"_id":"537581b90f45530002000220","_slugs":["the-worlds-most-powerful-female-entrepreneurs"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":"","autopublished":false,"body":"16
|
56
|
+
women on the 2013 Forbes Most Powerful Women list took the biggest career
|
57
|
+
leap of all--striking out on their own to build companies around the world.","client_only":false,"comment":null,"created_at":"2014-05-16T03:10:49Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53753f814a8d96000200020a","external_url":"http://www.forbes.com/pictures/flji45hlh/the-worlds-most-powerful-female-entrepreneurs/","external_url_source":"http://www.forbes.com/entrepreneurs/index.xml","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":null,"image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753f814a8d96000200020b/small.jpg","image_url":"https://s3.amazonaws.com/s3-dev.vestorly.com/534d9ebfb034d500020004fd/1400215533/SSJgoku-dragon-ball-z-23053907-1920-1080.png","img":"post_images/537598013b6a5a0002000004/original.jpg","img_changed":true,"img_compressed":true,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":true,"is_published":true,"is_published_view":false,"is_responsive":true,"link":"http://www.forbes.com/pictures/flji45hlh/the-worlds-most-powerful-female-entrepreneurs/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/forbes_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-16T03:10:49+00:00","post_images":[{"_id":"537597f23b6a5a0002000002","image_content_type":"application/octet-stream","image_file_name":"SSJgoku-dragon-ball-z-23053907-1920-1080.png","image_file_size":390700,"image_fingerprint":"e2a32301f7b4780ae81d81827c4edaea","image_updated_at":"2014-05-16T04:45:39+00:00"},{"_id":"537598013b6a5a0002000004","image_content_type":"application/octet-stream","image_file_name":"SSJgoku-dragon-ball-z-23053907-1920-1080.png","image_file_size":390700,"image_fingerprint":"e2a32301f7b4780ae81d81827c4edaea","image_updated_at":"2014-05-16T04:45:53+00:00"}],"prospect_only":false,"publish_to_social":null,"published_at":"2014-05-16T04:45:51+00:00","published_post_cacheid":"537581b90f45530002000220","random":0.7845168923597503,"rss_feed_url":"http://www.forbes.com/entrepreneurs/index.xml","send_on_publish":false,"sent_newsletter_ids":[],"slug":"the-worlds-most-powerful-female-entrepreneurs","slug_history":[],"suitability_score":0.0,"title":"The
|
58
|
+
World''s Most Powerful Female Entrepreneurs","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-07-23T04:27:33Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"537581b90f45530002000224","_slugs":["gold-is-not-stable-after-all"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"I
|
59
|
+
like gold. My wedding ring is simple but classy. My crowns in my mouth are
|
60
|
+
so good that I forget they are there. The electronic contacts in my computer
|
61
|
+
work just fine. Gold is great. But not as a steady measure of purchasing power,
|
62
|
+
nor as a guaranteed investment.","client_only":false,"comment":null,"created_at":"2014-05-16T03:10:49Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53757b9ca2e9d00002000052","external_url":"http://www.forbes.com/sites/billconerly/2014/05/15/gold-is-not-stable-after-all/","external_url_source":"http://www.forbes.com/markets/feed","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53757b9fa2e9d00002000053/large.jpg","image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53757b9fa2e9d00002000053/small.jpg","image_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53757b9fa2e9d00002000053/large.jpg","img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":true,"is_published":true,"is_published_view":false,"is_responsive":true,"link":"http://www.forbes.com/sites/billconerly/2014/05/15/gold-is-not-stable-after-all/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/forbes_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-16T03:10:49+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-05-16T04:36:34+00:00","published_post_cacheid":"537581b90f45530002000224","random":0.4463400065288671,"rss_feed_url":"http://www.forbes.com/markets/feed","send_on_publish":false,"sent_newsletter_ids":[],"slug":"gold-is-not-stable-after-all","slug_history":[],"suitability_score":0.0,"title":"Gold
|
63
|
+
Is Not Stable After All","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-16T04:36:34Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":"53758f720f455300020006e0","pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"537581c70f45530002000233","_slugs":["why-people-incorrectly-think-they-are-not-creative-2"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"Earlier
|
64
|
+
this week, one of my readers,\u00a0Meshack Vallesillas, sent me a link to
|
65
|
+
an article he posted on his own blog. It took my breath away.","client_only":false,"comment":null,"created_at":"2014-05-16T03:11:03Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53753fbe4a8d960002000221","external_url":"http://www.forbes.com/sites/brucekasanoff/2014/05/15/why-people-think-they-are-not-creative/","external_url_source":"http://www.forbes.com/leadership/index.xml","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753fbf4a8d960002000222/large.jpg","image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753fbf4a8d960002000222/small.jpg","image_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753fbf4a8d960002000222/large.jpg","img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":true,"is_published":true,"is_published_view":false,"is_responsive":true,"link":"http://www.forbes.com/sites/brucekasanoff/2014/05/15/why-people-think-they-are-not-creative/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/forbes_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-16T03:11:03+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-05-16T04:42:41+00:00","published_post_cacheid":"537581c70f45530002000233","random":0.6093003738629744,"rss_feed_url":"http://www.forbes.com/leadership/index.xml","send_on_publish":false,"sent_newsletter_ids":[],"slug":"why-people-incorrectly-think-they-are-not-creative-2","slug_history":[],"suitability_score":0.0,"title":"Why
|
66
|
+
People (Incorrectly) Think They Are Not Creative","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-16T04:42:41Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"537581c70f45530002000236","_slugs":["new-york-times-the-movie-2"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"Who
|
67
|
+
should portray Jill Abramson, Dean Baquet and other Gray Lady characters in
|
68
|
+
the Hollywood version.","client_only":false,"comment":null,"created_at":"2014-05-16T03:11:03Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53757bc9a2e9d00002000063","external_url":"http://www.forbes.com/pictures/gdlg45fe/outgoing-new-york-times-executive-editor-jill-abramson-allison-janney/","external_url_source":"http://www.forbes.com/business/feed/","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":null,"image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53757bcba2e9d00002000064/small.jpg","image_url":"https://s3.amazonaws.com/s3-dev.vestorly.com//post_images/53757bcba2e9d00002000064/large.jpg","img":"/post_images/53757bcba2e9d00002000064/large.jpg","img_changed":true,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":true,"is_published":true,"is_published_view":false,"is_responsive":true,"link":"http://www.forbes.com/pictures/gdlg45fe/outgoing-new-york-times-executive-editor-jill-abramson-allison-janney/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/forbes_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-16T03:11:03+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-05-16T04:23:36+00:00","published_post_cacheid":"537581c70f45530002000236","random":0.4096404929374522,"rss_feed_url":"http://www.forbes.com/business/feed/","send_on_publish":false,"sent_newsletter_ids":[],"slug":"new-york-times-the-movie-2","slug_history":[],"suitability_score":0.0,"title":"New
|
69
|
+
York Times: The Movie","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-16T04:23:37Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"537581c70f45530002000237","_slugs":["embattled-los-angeles-clippers-owner-donald-sterling-threatens-to-sue-nba-over-sanctions-2"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"Los
|
70
|
+
Angeles Clippers owner Donald Sterling isn''t giving up his beloved franchise
|
71
|
+
without a fight. According to reports, Sterling has sought the counsel of
|
72
|
+
famed antitrust lawyer Maxwell Blecher to represent him in a fight against
|
73
|
+
the NBA''s attempt to remove his franchise ownership rights for controversial
|
74
|
+
comments made last month. A letter drafted by Blecher was sent to the league''s
|
75
|
+
legal counsel outlining Sterling''s refusal to pay the $2.5 million fine imposed
|
76
|
+
by Commissioner Adam Silver and that litigation over the matter was imminent.","client_only":false,"comment":null,"created_at":"2014-05-16T03:11:03Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53757ba4a2e9d00002000056","external_url":"http://www.forbes.com/sites/jasonbelzer/2014/05/15/embattled-los-angeles-clippers-owner-donald-sterling-threatens-to-sue-nba-over-sanctions/","external_url_source":"http://www.forbes.com/sportsmoney/index.xml","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":null,"image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53757ba6a2e9d00002000057/small.jpg","image_url":"https://s3.amazonaws.com/s3-dev.vestorly.com/post_images/53757ba6a2e9d00002000057/large.jpg","img":"post_images/53757ba6a2e9d00002000057/large.jpg","img_changed":true,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":true,"is_published":true,"is_published_view":false,"is_responsive":true,"link":"http://www.forbes.com/sites/jasonbelzer/2014/05/15/embattled-los-angeles-clippers-owner-donald-sterling-threatens-to-sue-nba-over-sanctions/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/forbes_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-16T03:11:03+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-05-16T04:25:46+00:00","published_post_cacheid":"537581c70f45530002000237","random":0.09012978513888803,"rss_feed_url":"http://www.forbes.com/sportsmoney/index.xml","send_on_publish":false,"sent_newsletter_ids":[],"slug":"embattled-los-angeles-clippers-owner-donald-sterling-threatens-to-sue-nba-over-sanctions-2","slug_history":[],"suitability_score":0.0,"title":"Embattled
|
77
|
+
Los Angeles Clippers Owner Donald Sterling Threatens To Sue NBA Over Sanctions","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-16T04:25:46Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"537581c70f4553000200023a","_slugs":["alimony-tax-gap-is-1-dollars-7-cents-billion-3"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"Did
|
78
|
+
you remember to report alimony payments on your 1040?","client_only":false,"comment":null,"created_at":"2014-05-16T03:11:03Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53753e404a8d96000200018f","external_url":"http://www.forbes.com/sites/ashleaebeling/2014/05/15/alimony-tax-gap-is-1-7-billion/?ss=personalfinance","external_url_source":"http://www.forbes.com/finance/feed","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":null,"image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753e434a8d960002000190/small.jpg","image_url":"https://s3.amazonaws.com/s3-dev.vestorly.com///s3.amazonaws.com/s3-data.vestorly.com/post_images/53753e434a8d960002000190/large.jpg","img":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753e434a8d960002000190/large.jpg","img_changed":true,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":true,"is_published":true,"is_published_view":false,"is_responsive":true,"link":"http://www.forbes.com/sites/ashleaebeling/2014/05/15/alimony-tax-gap-is-1-7-billion/?ss=personalfinance","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/forbes_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-16T03:11:03+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-05-16T03:11:17+00:00","published_post_cacheid":"537581c70f4553000200023a","random":0.43682165705884846,"rss_feed_url":"http://www.forbes.com/finance/feed","send_on_publish":false,"sent_newsletter_ids":[],"slug":"alimony-tax-gap-is-1-dollars-7-cents-billion-3","slug_history":[],"suitability_score":0.0,"title":"Alimony
|
79
|
+
Tax Gap Is $1.7 Billion","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-16T03:11:18Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"5375825a0f45530002000259","_slugs":["is-this-the-beginning-of-cloud-consolidation-rackspace-looks-at-exit-options-2"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"The
|
80
|
+
news today at Bloomberg\u00a0is that Rackspace has hired Morgan Stanley to
|
81
|
+
look at \u201cstrategic options\u201d for the future. Rackspace has long been
|
82
|
+
something of a bridesmaid in the cloud infrastructure space. Previously dwarfed
|
83
|
+
by the number one player, Amazon Web Services, the San Antonio-based company
|
84
|
+
now has to contend with some very strong cloud infrastructure plays from others
|
85
|
+
including Microsoft, Google and IBM\u00a0\u2013 all companies with far bigger
|
86
|
+
footprints, and deeper pockets than it has.","client_only":false,"comment":null,"created_at":"2014-05-16T03:13:30Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53757bb0a2e9d0000200005e","external_url":"http://www.forbes.com/sites/benkepes/2014/05/15/is-this-the-beginning-of-cloud-consolidation-rackspace-looks-at-exit-options/","external_url_source":"http://www.forbes.com/technology/feed/","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":null,"image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53757bb9a2e9d0000200005f/small.jpg","image_url":"https://s3.amazonaws.com/s3-dev.vestorly.com///s3.amazonaws.com/s3-data.vestorly.com/post_images/53757bb9a2e9d0000200005f/large.jpg","img":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53757bb9a2e9d0000200005f/large.jpg","img_changed":true,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":true,"is_published":true,"is_published_view":false,"is_responsive":true,"link":"http://www.forbes.com/sites/benkepes/2014/05/15/is-this-the-beginning-of-cloud-consolidation-rackspace-looks-at-exit-options/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/forbes_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-16T03:13:30+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-05-16T04:21:36+00:00","published_post_cacheid":"5375825a0f45530002000259","random":0.4891205170029589,"rss_feed_url":"http://www.forbes.com/technology/feed/","send_on_publish":false,"sent_newsletter_ids":[],"slug":"is-this-the-beginning-of-cloud-consolidation-rackspace-looks-at-exit-options-2","slug_history":[],"suitability_score":0.0,"title":"Is
|
87
|
+
This The Beginning Of Cloud Consolidation? Rackspace Looks At Exit Options","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-16T04:21:37Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"5375825a0f4553000200025a","_slugs":["bmws-electric-brand-will-lower-co2-cost-a-lot-and-pay-off-big-long-term-2"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"Germany''s
|
88
|
+
BMW is turning a costly necessity to reduce fuel consumption into a profit
|
89
|
+
generating virtue.","client_only":false,"comment":null,"created_at":"2014-05-16T03:13:30Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53753ef74a8d9600020001d5","external_url":"http://www.forbes.com/sites/neilwinton/2014/05/15/bmws-electric-brand-will-lower-co2-cost-a-lot-and-pay-off-big-long-term/","external_url_source":"http://www.forbes.com/autos/index.xml","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":null,"image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753efb4a8d9600020001d6/small.jpg","image_url":"https://s3.amazonaws.com/s3-dev.vestorly.com///s3.amazonaws.com/s3-data.vestorly.com/post_images/53753efb4a8d9600020001d6/large.jpg","img":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753efb4a8d9600020001d6/large.jpg","img_changed":true,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":true,"is_published":true,"is_published_view":false,"is_responsive":true,"link":"http://www.forbes.com/sites/neilwinton/2014/05/15/bmws-electric-brand-will-lower-co2-cost-a-lot-and-pay-off-big-long-term/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/forbes_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-16T03:13:30+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-05-16T04:12:39+00:00","published_post_cacheid":"5375825a0f4553000200025a","random":0.6819240064513113,"rss_feed_url":"http://www.forbes.com/autos/index.xml","send_on_publish":false,"sent_newsletter_ids":[],"slug":"bmws-electric-brand-will-lower-co2-cost-a-lot-and-pay-off-big-long-term-2","slug_history":[],"suitability_score":0.0,"title":"BMW''s
|
90
|
+
Electric Brand Will Lower CO2, Cost A Lot, And Pay Off Big Long-Term","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-16T04:12:40Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"5375825a0f4553000200025b","_slugs":["media-apprenticeships-why-theyre-vital-how-they-work-how-to-run-a-scheme-that-delivers-2"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"Karen
|
91
|
+
Blackett, CEO of MediaCom UK, explains why the communications industry needs
|
92
|
+
to widen its talent pool \u2013 and how an effective apprenticeship scheme
|
93
|
+
can help","client_only":false,"comment":null,"created_at":"2014-05-16T03:13:30Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53753eac4a8d9600020001b6","external_url":"http://www.forbes.com/sites/hesterlacey/2014/05/15/media-apprenticeships-why-theyre-vital-how-they-work-7-tips-on-running-a-scheme-that-delivers/","external_url_source":"http://www.forbes.com/education/feed/","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":null,"image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753eac4a8d9600020001b7/small.jpg","image_url":"https://s3.amazonaws.com/s3-dev.vestorly.com///s3.amazonaws.com/s3-data.vestorly.com/post_images/53753eac4a8d9600020001b7/large.jpg","img":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753eac4a8d9600020001b7/large.jpg","img_changed":true,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":true,"is_published":true,"is_published_view":false,"is_responsive":true,"link":"http://www.forbes.com/sites/hesterlacey/2014/05/15/media-apprenticeships-why-theyre-vital-how-they-work-7-tips-on-running-a-scheme-that-delivers/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/forbes_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-16T03:13:30+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-05-16T04:07:34+00:00","published_post_cacheid":"5375825a0f4553000200025b","random":0.15277010039929717,"rss_feed_url":"http://www.forbes.com/education/feed/","send_on_publish":false,"sent_newsletter_ids":[],"slug":"media-apprenticeships-why-theyre-vital-how-they-work-how-to-run-a-scheme-that-delivers-2","slug_history":[],"suitability_score":0.0,"title":"Media
|
94
|
+
Apprenticeships: Why They''re Vital, How They Work, How To Run A Scheme That
|
95
|
+
Delivers","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-16T04:07:34Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"537583db0f455300020002eb","_slugs":["mario-kart-8-proves-nintendo-is-the-game-maker-for-grown-ups-2"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"I
|
96
|
+
think Mario Kart 8 is just about the most mature game I\u2019ve played this
|
97
|
+
year. I know readers won\u2019t like this article. They\u2019ll disagree.
|
98
|
+
For some reason it seems to have become cool to hate Nintendo. I\u2019m alone
|
99
|
+
in my adoration and it is mostly because I write from a father\u2019s perspective.
|
100
|
+
I\u2019m sure my premise will seem absurd to most readers. How could I call
|
101
|
+
the game maker that makes \u2018kiddie\u2019 games mature? I\u2019ll explain.\r\nA
|
102
|
+
blister has almost formed on my thumb from pressing down the accelerator button.
|
103
|
+
My kids and I have been giggling and playing together nonstop. Mario Kart
|
104
|
+
8 is intergenerational bliss. Parents and kids should all play this game together.\r\nOrdinarily,
|
105
|
+
I\u2019d cite some research. I\u2019ve written many posts (like this one)
|
106
|
+
explaining the benefits that come from parents and kids playing video games
|
107
|
+
together. But I\u2019m not writing that this time. This is not about research.","client_only":false,"comment":null,"created_at":"2014-05-16T03:19:55Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53753eb34a8d9600020001b8","external_url":"http://www.forbes.com/sites/jordanshapiro/2014/05/15/mario-kart-8-proves-nintendo-is-the-game-maker-for-grown-ups/","external_url_source":"http://www.forbes.com/education/feed/","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":null,"image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753eb54a8d9600020001b9/small.jpg","image_url":"https://s3.amazonaws.com/s3-dev.vestorly.com///s3.amazonaws.com/s3-data.vestorly.com/post_images/53753eb54a8d9600020001b9/large.jpg","img":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753eb54a8d9600020001b9/large.jpg","img_changed":true,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":true,"is_published":true,"is_published_view":false,"is_responsive":true,"link":"http://www.forbes.com/sites/jordanshapiro/2014/05/15/mario-kart-8-proves-nintendo-is-the-game-maker-for-grown-ups/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/forbes_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-16T03:19:55+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-05-16T03:27:52+00:00","published_post_cacheid":"537583db0f455300020002eb","random":0.8556105805822807,"rss_feed_url":"http://www.forbes.com/education/feed/","send_on_publish":false,"sent_newsletter_ids":["537d32a5e2359c0002000011","534f665f9460a71472000221","537d32a5e2359c0002000014"],"slug":"mario-kart-8-proves-nintendo-is-the-game-maker-for-grown-ups-2","slug_history":[],"suitability_score":0.0,"title":"Mario
|
108
|
+
Kart 8 Proves Nintendo Is The Game Maker For Grown-Ups","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-09-08T16:09:57Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":"537585b40f4553000200035f","pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"537583db0f455300020002ec","_slugs":["breaking-myths-vs-breaking-the-truth-of-entrepreneurship-ecosystems-2"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":"","autopublished":false,"body":"By
|
109
|
+
Dane Stangler, Yasuyuki Motoyama, Jordan Bell-Masterson\r\nEwing Marion Kauffman
|
110
|
+
Foundation","client_only":false,"comment":null,"created_at":"2014-05-16T03:19:55Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53753f904a8d96000200020f","external_url":"http://www.forbes.com/sites/kauffman/2014/05/15/breaking-myths-vs-breaking-the-truth-of-entrepreneurship-ecosystems/","external_url_source":"http://www.forbes.com/entrepreneurs/index.xml","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2"],"has_sent":false,"image_big_url":null,"image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753f924a8d960002000210/small.jpg","image_url":"http://s3-dev.vestorly.com.s3.amazonaws.com/post_images/53758a940f455300020004ee/large.jpg","img":"post_images/53758a940f455300020004ee/original.jpg","img_changed":false,"img_compressed":true,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":true,"is_published":true,"is_published_view":false,"is_responsive":true,"link":"http://www.forbes.com/sites/kauffman/2014/05/15/breaking-myths-vs-breaking-the-truth-of-entrepreneurship-ecosystems/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/forbes_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-16T03:19:55+00:00","post_images":[{"_id":"53758a8f0f455300020004ed","image_content_type":"application/octet-stream","image_file_name":"business-success1.jpg","image_file_size":171352,"image_fingerprint":"f6be0edb177067794db26a16682d82d4","image_updated_at":"2014-05-16T03:48:31+00:00"},{"_id":"53758a940f455300020004ee","image_content_type":"application/octet-stream","image_file_name":"business-success1.jpg","image_file_size":171352,"image_fingerprint":"f6be0edb177067794db26a16682d82d4","image_updated_at":"2014-05-16T03:48:36+00:00"}],"prospect_only":false,"publish_to_social":null,"published_at":"2014-05-16T03:48:33+00:00","published_post_cacheid":"537583db0f455300020002ec","random":0.7388762777502661,"rss_feed_url":"http://www.forbes.com/entrepreneurs/index.xml","send_on_publish":false,"sent_newsletter_ids":[],"slug":"breaking-myths-vs-breaking-the-truth-of-entrepreneurship-ecosystems-2","slug_history":[],"suitability_score":0.0,"title":"Breaking
|
111
|
+
Myths vs. Breaking the Truth of Entrepreneurship Ecosystems","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-16T04:01:59Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"537583db0f455300020002ee","_slugs":["as-gm-safety-recalls-pile-up-so-do-the-costs-2"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"Intense
|
112
|
+
focus on safety turns up new potential problems","client_only":false,"comment":null,"created_at":"2014-05-16T03:19:55Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53753f014a8d9600020001d7","external_url":"http://www.forbes.com/sites/joannmuller/2014/05/15/gm-safety-recalls-pile-up-and-so-do-the-costs/","external_url_source":"http://www.forbes.com/autos/index.xml","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":null,"image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753f024a8d9600020001d8/small.jpg","image_url":"https://s3.amazonaws.com/s3-dev.vestorly.com///s3.amazonaws.com/s3-data.vestorly.com/post_images/53753f024a8d9600020001d8/large.jpg","img":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753f024a8d9600020001d8/large.jpg","img_changed":true,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":true,"is_published":true,"is_published_view":false,"is_responsive":true,"link":"http://www.forbes.com/sites/joannmuller/2014/05/15/gm-safety-recalls-pile-up-and-so-do-the-costs/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/forbes_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-16T03:19:55+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-05-16T03:31:37+00:00","published_post_cacheid":"537583db0f455300020002ee","random":0.3492181663462861,"rss_feed_url":"http://www.forbes.com/autos/index.xml","send_on_publish":false,"sent_newsletter_ids":[],"slug":"as-gm-safety-recalls-pile-up-so-do-the-costs-2","slug_history":[],"suitability_score":0.0,"title":"As
|
113
|
+
GM Safety Recalls Pile Up, So Do the Costs","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-16T03:31:37Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":"537586700f455300020003b1","pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"537583db0f455300020002f0","_slugs":["the-xbox-one-could-rise-to-the-top-if-microsoft-does-one-thing-2"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"Microsoft
|
114
|
+
is a company famous for big successes and big mistakes. Windows ME and to
|
115
|
+
some extent Vista are cases in point. Some of Microsoft''s mistakes have been
|
116
|
+
releasing products that aren''t very good - again, Windows ME - and some of
|
117
|
+
those mistakes have come from listening to the public.","client_only":false,"comment":null,"created_at":"2014-05-16T03:19:55Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53757b90a2e9d0000200004f","external_url":"http://www.forbes.com/sites/ianmorris/2014/05/15/the-xbox-one-could-rise-to-the-top-if-microsoft-does-one-thing/","external_url_source":"http://www.forbes.com/technology/feed/","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2"],"has_sent":false,"image_big_url":null,"image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53757bc4a2e9d00002000060/small.jpg","image_url":"https://s3.amazonaws.com/s3-dev.vestorly.com///s3.amazonaws.com/s3-data.vestorly.com/post_images/53757bc4a2e9d00002000060/large.jpg","img":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53757bc4a2e9d00002000060/large.jpg","img_changed":true,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":true,"is_published":true,"is_published_view":false,"is_responsive":true,"link":"http://www.forbes.com/sites/ianmorris/2014/05/15/the-xbox-one-could-rise-to-the-top-if-microsoft-does-one-thing/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/forbes_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-16T03:19:55+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-05-16T03:54:37+00:00","published_post_cacheid":"537583db0f455300020002f0","random":0.9774222206591939,"rss_feed_url":"http://www.forbes.com/technology/feed/","send_on_publish":false,"sent_newsletter_ids":[],"slug":"the-xbox-one-could-rise-to-the-top-if-microsoft-does-one-thing-2","slug_history":[],"suitability_score":0.0,"title":"The
|
118
|
+
Xbox One Could Rise To The Top, If Microsoft Does One Thing","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-16T03:54:38Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":"537580070f4553000200010d","pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"537583db0f455300020002f1","_slugs":["how-to-protect-yourself-in-a-divorce-using-a-domestic-asset-protection-trust-2"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"There
|
119
|
+
is a word in a relationship that sparks more fear than even the dreaded words,
|
120
|
+
\u201cWe need to talk.\u201d That word is prenup. Successful and confident
|
121
|
+
grown men and women shutter at having to breach this subject with their soon-to-be
|
122
|
+
spouse. It\u2019s a painful conversation that all want to avoid \u2013 and
|
123
|
+
many do after they decide it would be too uncomfortable and too awkward. The
|
124
|
+
result? They leave their assets unprotected and subject to division in a divorce.
|
125
|
+
But even those who had the prenup conversation and subsequently got divorced
|
126
|
+
will tell you, a prenup is not bullet-proof and can \u2013 and usually are
|
127
|
+
\u2013 contested. Even if the prenup is ultimately deemed legitimate, it can
|
128
|
+
still cost you thousands (if not hundreds of thousands) in legal fees proving
|
129
|
+
this.","client_only":false,"comment":null,"created_at":"2014-05-16T03:19:55Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53753e484a8d960002000192","external_url":"http://www.forbes.com/sites/robertpagliarini/2014/05/15/how-to-protect-yourself-in-a-divorce-using-a-domestic-asset-protection-trust/?ss=personalfinance","external_url_source":"http://www.forbes.com/finance/feed","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":null,"image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753e4a4a8d960002000193/small.jpg","image_url":"https://s3.amazonaws.com/s3-dev.vestorly.com///s3.amazonaws.com/s3-data.vestorly.com/post_images/53753e4a4a8d960002000193/large.jpg","img":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753e4a4a8d960002000193/large.jpg","img_changed":true,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":true,"is_published":true,"is_published_view":false,"is_responsive":true,"link":"http://www.forbes.com/sites/robertpagliarini/2014/05/15/how-to-protect-yourself-in-a-divorce-using-a-domestic-asset-protection-trust/?ss=personalfinance","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/forbes_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-16T03:19:55+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-05-16T04:10:18+00:00","published_post_cacheid":"537583db0f455300020002f1","random":0.240298265649033,"rss_feed_url":"http://www.forbes.com/finance/feed","send_on_publish":false,"sent_newsletter_ids":[],"slug":"how-to-protect-yourself-in-a-divorce-using-a-domestic-asset-protection-trust-2","slug_history":[],"suitability_score":0.0,"title":"How
|
130
|
+
To Protect Yourself In A Divorce Using A Domestic Asset Protection Trust","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-16T04:10:18Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"537583db0f455300020002f4","_slugs":["nba-playoffs-blake-griffin-by-the-numbers-2"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"Griffin
|
131
|
+
is one of the NBA''s most marketable players and earns an estimated $6.5 million
|
132
|
+
from endorsements with Nike, Subway, Powerbar, Kia and Vizio.","client_only":false,"comment":null,"created_at":"2014-05-16T03:19:55Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53753eb94a8d9600020001bb","external_url":"http://www.forbes.com/sites/kurtbadenhausen/2014/05/15/nba-playoffs-blake-griffin-by-the-numbers/","external_url_source":"http://www.forbes.com/sportsmoney/index.xml","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753ebb4a8d9600020001bc/large.jpg","image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753ebb4a8d9600020001bc/small.jpg","image_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753ebb4a8d9600020001bc/large.jpg","img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":true,"is_published":true,"is_published_view":false,"is_responsive":true,"link":"http://www.forbes.com/sites/kurtbadenhausen/2014/05/15/nba-playoffs-blake-griffin-by-the-numbers/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/forbes_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-16T03:19:55+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-05-16T04:35:59+00:00","published_post_cacheid":"537583db0f455300020002f4","random":0.07653661149220825,"rss_feed_url":"http://www.forbes.com/sportsmoney/index.xml","send_on_publish":false,"sent_newsletter_ids":[],"slug":"nba-playoffs-blake-griffin-by-the-numbers-2","slug_history":[],"suitability_score":0.0,"title":"NBA
|
133
|
+
Playoffs: Blake Griffin By The Numbers","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-16T04:35:59Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"537586080f45530002000390","_slugs":["21-things-i-learned-about-bitcoin-living-on-it-a-second-time-2"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"Lesson
|
134
|
+
1: It is easier to live on Bitcoin in San Francisco this year than it was
|
135
|
+
last year.","client_only":false,"comment":null,"created_at":"2014-05-16T03:29:13Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53753f0f4a8d9600020001dc","external_url":"http://www.forbes.com/sites/kashmirhill/2014/05/15/21-things-i-learned-about-bitcoin-living-on-it-a-second-time/","external_url_source":"http://www.forbes.com/technology/feed/","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":null,"image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753f174a8d9600020001dd/small.jpg","image_url":"https://s3.amazonaws.com/s3-dev.vestorly.com///s3.amazonaws.com/s3-data.vestorly.com/post_images/53753f174a8d9600020001dd/large.jpg","img":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753f174a8d9600020001dd/large.jpg","img_changed":true,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":true,"is_published":true,"is_published_view":false,"is_responsive":true,"link":"http://www.forbes.com/sites/kashmirhill/2014/05/15/21-things-i-learned-about-bitcoin-living-on-it-a-second-time/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/forbes_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-16T03:29:13+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-05-16T03:46:58+00:00","published_post_cacheid":"537586080f45530002000390","random":0.07770609751952307,"rss_feed_url":"http://www.forbes.com/technology/feed/","send_on_publish":false,"sent_newsletter_ids":[],"slug":"21-things-i-learned-about-bitcoin-living-on-it-a-second-time-2","slug_history":[],"suitability_score":0.0,"title":"21
|
136
|
+
Things I Learned About Bitcoin Living On It A Second Time","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-16T03:46:58Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"537586090f45530002000393","_slugs":["harry-winston-renames-worlds-largest-flawless-vivid-blue-diamond-the-winston-blue-2"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"The
|
137
|
+
brand paid nearly $23.8 million for the 13.22-carat flawless blue diamond
|
138
|
+
at Christie\u2019s Geneva jewelry auction Wednesday.","client_only":false,"comment":null,"created_at":"2014-05-16T03:29:13Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53757bd1a2e9d00002000067","external_url":"http://www.forbes.com/sites/anthonydemarco/2014/05/15/harry-winston-renames-worlds-largest-flawless-vivid-blue-diamond-the-winston-blue/","external_url_source":"http://www.forbes.com/business/feed/","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":null,"image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53757bd1a2e9d00002000068/small.jpg","image_url":"https://s3.amazonaws.com/s3-dev.vestorly.com///s3.amazonaws.com/s3-data.vestorly.com/post_images/53757bd1a2e9d00002000068/large.jpg","img":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53757bd1a2e9d00002000068/large.jpg","img_changed":true,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":true,"is_published":true,"is_published_view":false,"is_responsive":true,"link":"http://www.forbes.com/sites/anthonydemarco/2014/05/15/harry-winston-renames-worlds-largest-flawless-vivid-blue-diamond-the-winston-blue/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/forbes_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-16T03:29:13+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-05-16T03:33:43+00:00","published_post_cacheid":"537586090f45530002000393","random":0.7882032550219005,"rss_feed_url":"http://www.forbes.com/business/feed/","send_on_publish":false,"sent_newsletter_ids":[],"slug":"harry-winston-renames-worlds-largest-flawless-vivid-blue-diamond-the-winston-blue-2","slug_history":[],"suitability_score":0.0,"title":"Harry
|
139
|
+
Winston Renames World''s Largest Flawless Vivid Blue Diamond, ''The Winston
|
140
|
+
Blue''","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-16T03:33:45Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"537586090f45530002000397","_slugs":["how-gm-ford-flipped-positions-in-less-than-5-months-5"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":"","autopublished":false,"body":"Here''s
|
141
|
+
why the auto industry never gets boring.","client_only":false,"comment":null,"created_at":"2014-05-16T03:29:13Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"5374b70078a4000002000098","external_url":"http://www.forbes.com/sites/billkoenig/2014/05/15/how-gm-ford-flipped-positions-in-less-than-5-months/","external_url_source":"http://www.forbes.com/autos/index.xml","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2"],"has_sent":false,"image_big_url":null,"image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53753f0a4a8d9600020001d9/small.jpg","image_url":"https://s3.amazonaws.com/s3-dev.vestorly.com/534d9ebfb034d500020004fd/1400215402/rtxkz0h.jpg","img":"534d9ebfb034d500020004fd/1400215402/rtxkz0h.jpg","img_changed":true,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":true,"is_published":true,"is_published_view":false,"is_responsive":true,"link":"http://www.forbes.com/sites/billkoenig/2014/05/15/how-gm-ford-flipped-positions-in-less-than-5-months/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/forbes_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-16T03:29:13+00:00","post_images":[{"_id":"5375976e0f455300020009f7","image_content_type":"application/octet-stream","image_file_name":"rtxkz0h.jpg","image_file_size":123160,"image_fingerprint":"1468034fd9bf9325db476de332372a7e","image_updated_at":"2014-05-16T04:43:26+00:00"}],"prospect_only":false,"publish_to_social":null,"published_at":"2014-05-16T03:49:32+00:00","published_post_cacheid":"537586090f45530002000397","random":0.5635114378345428,"rss_feed_url":"http://www.forbes.com/autos/index.xml","send_on_publish":false,"sent_newsletter_ids":[],"slug":"how-gm-ford-flipped-positions-in-less-than-5-months-5","slug_history":[],"suitability_score":0.0,"title":"How
|
142
|
+
GM, Ford Flipped Positions In Less Than 5 Months","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-16T04:43:36Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":"53758aa30f455300020004ef","pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"537581b90f4553000200021e","_slugs":["tesla-continues-to-roll-out-tax-strategies-for-consumers"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"A
|
143
|
+
short while ago, a driver blew through a stop sign and into my husband''s
|
144
|
+
car. My husband was fine but his car was not: it was totaled. Since then,
|
145
|
+
he''s been on a mission to buy a new car.","client_only":false,"comment":null,"created_at":"2014-05-16T03:10:49Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53757ba7a2e9d00002000058","external_url":"http://www.forbes.com/sites/kellyphillipserb/2014/05/15/tesla-continues-to-roll-out-tax-strategies-for-consumers/","external_url_source":"http://www.forbes.com/autos/index.xml","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53757baaa2e9d00002000059/large.jpg","image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53757baaa2e9d00002000059/small.jpg","image_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53757baaa2e9d00002000059/large.jpg","img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":true,"is_published":true,"is_published_view":false,"is_responsive":true,"link":"http://www.forbes.com/sites/kellyphillipserb/2014/05/15/tesla-continues-to-roll-out-tax-strategies-for-consumers/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/forbes_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-16T04:45:46+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-05-16T04:46:17+00:00","published_post_cacheid":"537581b90f4553000200021e","random":0.24083066694300892,"rss_feed_url":"http://www.forbes.com/autos/index.xml","send_on_publish":false,"sent_newsletter_ids":[],"slug":"tesla-continues-to-roll-out-tax-strategies-for-consumers","slug_history":[],"suitability_score":0.0,"title":"Tesla
|
146
|
+
Continues To Roll Out Tax Strategies For Consumers","topic":null,"topic_ids":[],"unpublished_at":"2014-05-16T04:46:09+00:00","up_votes":0,"updated_at":"2014-05-16T04:46:17Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":"537597f83b6a5a0002000003","pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53793d9ef6918600020002ae","_slugs":["post-with-pdf-1"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":"534d9ebfb034d500020004fd/1400454556/RandomNumberGeneration.pdf","autopublished":false,"body":"<p>create</p>","client_only":false,"comment":null,"created_at":"2014-05-18T23:09:19Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":null,"external_url":"http:////d3kmf17y82r5m3.cloudfront.net/534d9ebfb034d500020004fd/1400454556/RandomNumberGeneration.pdf","external_url_source":"custom-content","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":null,"image_small_url":null,"image_url":null,"img":"post_images/53793da2408ab40002000e15/original.jpg","img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":null,"logo_url":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"pdf_attachment_url":null,"post_date":"2014-05-18T23:08:59+00:00","post_images":[{"_id":"53793da2408ab40002000e15","image_content_type":"image/jpeg","image_file_name":"20140518-190919-957571967-out.jpg","image_file_size":355787,"image_fingerprint":"ad12376ad44a3509463bf89c626f97a6","image_updated_at":"2014-05-18T23:09:23+00:00"}],"prospect_only":false,"publish_to_social":null,"published_at":"2014-05-18T23:09:18+00:00","published_post_cacheid":"53793d9ef6918600020002ae","random":0.09868147342607303,"rss_feed_url":null,"send_on_publish":false,"sent_newsletter_ids":[],"slug":"post-with-pdf-1","slug_history":[],"suitability_score":0.0,"title":"post
|
147
|
+
with pdf","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-18T23:09:25Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"create","attachment_url":"//d3kmf17y82r5m3.cloudfront.net/534d9ebfb034d500020004fd/1400454556/RandomNumberGeneration.pdf","video_id":"","is_all_view":false,"is_published_view":true,"is_newsletter_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53793e547407e0000200029a","_slugs":["pdf"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":"534d9ebfb034d500020004fd/1400454737/RandomNumberGeneration.pdf","autopublished":false,"body":null,"client_only":false,"comment":null,"created_at":"2014-05-18T23:12:20Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":null,"external_url":"http:////d3kmf17y82r5m3.cloudfront.net/534d9ebfb034d500020004fd/1400454737/RandomNumberGeneration.pdf","external_url_source":"custom-content","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":null,"image_small_url":null,"image_url":null,"img":"post_images/53793e58408ab40002000e17/original.jpg","img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":null,"logo_url":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"pdf_attachment_url":null,"post_date":"2014-05-18T23:12:02+00:00","post_images":[{"_id":"53793e58408ab40002000e17","image_content_type":"image/jpeg","image_file_name":"20140518-191222-328679636-out.jpg","image_file_size":355787,"image_fingerprint":"ad12376ad44a3509463bf89c626f97a6","image_updated_at":"2014-05-18T23:12:25+00:00"}],"prospect_only":false,"publish_to_social":null,"published_at":"2014-05-18T23:12:20+00:00","published_post_cacheid":"53793e547407e0000200029a","random":0.531421257574296,"rss_feed_url":null,"send_on_publish":false,"sent_newsletter_ids":[],"slug":"pdf","slug_history":[],"suitability_score":0.0,"title":"PDF","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-18T23:12:35Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","attachment_url":"//d3kmf17y82r5m3.cloudfront.net/534d9ebfb034d500020004fd/1400454737/RandomNumberGeneration.pdf","video_id":"","is_all_view":false,"is_published_view":true,"is_newsletter_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53793e5596b6eb00020002a2","_slugs":["pdf-1"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":"534d9ebfb034d500020004fd/1400454737/RandomNumberGeneration.pdf","autopublished":false,"body":null,"client_only":false,"comment":null,"created_at":"2014-05-18T23:12:21Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":null,"external_url":"http:////d3kmf17y82r5m3.cloudfront.net/534d9ebfb034d500020004fd/1400454737/RandomNumberGeneration.pdf","external_url_source":"custom-content","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":null,"image_small_url":null,"image_url":null,"img":"post_images/53793e58408ab40002000e16/original.jpg","img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":null,"logo_url":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"pdf_attachment_url":null,"post_date":"2014-05-18T23:12:02+00:00","post_images":[{"_id":"53793e58408ab40002000e16","image_content_type":"image/jpeg","image_file_name":"20140518-191221-327478282-out.jpg","image_file_size":355787,"image_fingerprint":"ad12376ad44a3509463bf89c626f97a6","image_updated_at":"2014-05-18T23:12:25+00:00"}],"prospect_only":false,"publish_to_social":null,"published_at":"2014-05-18T23:12:21+00:00","published_post_cacheid":"53793e5596b6eb00020002a2","random":0.5113829010242109,"rss_feed_url":null,"send_on_publish":false,"sent_newsletter_ids":[],"slug":"pdf-1","slug_history":[],"suitability_score":0.0,"title":"PDF","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-18T23:12:35Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","attachment_url":"//d3kmf17y82r5m3.cloudfront.net/534d9ebfb034d500020004fd/1400454737/RandomNumberGeneration.pdf","video_id":"","is_all_view":false,"is_published_view":true,"is_newsletter_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53793f1b96b6eb00020002bc","_slugs":["pdf-2"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":"534d9ebfb034d500020004fd/1400454935/RandomNumberGeneration.pdf","autopublished":false,"body":null,"client_only":false,"comment":null,"created_at":"2014-05-18T23:15:40Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":null,"external_url":"http:////d3kmf17y82r5m3.cloudfront.net/534d9ebfb034d500020004fd/1400454935/RandomNumberGeneration.pdf","external_url_source":"custom-content","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":null,"image_small_url":null,"image_url":null,"img":"post_images/53793f1e408ab40002000e18/original.jpg","img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":null,"logo_url":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"pdf_attachment_url":null,"post_date":"2014-05-18T23:15:19+00:00","post_images":[{"_id":"53793f1e408ab40002000e18","image_content_type":"image/jpeg","image_file_name":"20140518-191540-1315776290-out.jpg","image_file_size":355787,"image_fingerprint":"ad12376ad44a3509463bf89c626f97a6","image_updated_at":"2014-05-18T23:15:43+00:00"}],"prospect_only":false,"publish_to_social":null,"published_at":"2014-05-18T23:15:39+00:00","published_post_cacheid":"53793f1b96b6eb00020002bc","random":0.8672789062297409,"rss_feed_url":null,"send_on_publish":false,"sent_newsletter_ids":[],"slug":"pdf-2","slug_history":[],"suitability_score":0.0,"title":"PDF","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-18T23:15:46Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","attachment_url":"//d3kmf17y82r5m3.cloudfront.net/534d9ebfb034d500020004fd/1400454935/RandomNumberGeneration.pdf","video_id":"","is_all_view":false,"is_published_view":true,"is_newsletter_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"537b818f4b4840000200055e","_slugs":["godzillas-godzilla-problem-its-not-the-screen-time-its-the-focus-1"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"Should
|
148
|
+
Gareth Edwards have shown more of his titular monster? Not necessarily. But
|
149
|
+
he shouldn\u2019t have made him a narrative afterthought in his own reboot.","client_only":false,"comment":null,"created_at":"2014-05-20T16:23:43Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"537a7f146acadd0002000011","external_url":"http://feedproxy.google.com/~r/AtlanticCulture/~3/XOPmu53myNk/story01.htm","external_url_source":"http://feeds.feedburner.com/AtlanticCulture?format=xml","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":null,"image_small_url":null,"image_url":null,"img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_published_view":false,"is_responsive":true,"link":"http://feedproxy.google.com/~r/AtlanticCulture/~3/XOPmu53myNk/story01.htm","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/the_atlantic_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-20T16:23:43+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-05-20T16:23:55+00:00","published_post_cacheid":"537b818f4b4840000200055e","random":0.34874085067619365,"rss_feed_url":"http://feeds.feedburner.com/AtlanticCulture?format=xml","send_on_publish":false,"sent_newsletter_ids":[],"slug":"godzillas-godzilla-problem-its-not-the-screen-time-its-the-focus-1","slug_history":[],"suitability_score":0.0,"title":"Godzilla''s
|
150
|
+
Godzilla Problem: It\u2019s Not the Screen Time, It\u2019s the Focus","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-20T16:23:55Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"Should
|
151
|
+
Gareth Edwards have shown more of his titular monster? Not necessarily. But
|
152
|
+
he shouldn\u2019t have made him a narrative afterthought in his own reboot.","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"537b81964b48400002000590","_slugs":["editors-style-natalie-matthews-kim-kardashian-skirt-1"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"She''d
|
153
|
+
totally wear it, and to me, that''s a good thing.","client_only":false,"comment":null,"created_at":"2014-05-20T16:23:50Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"5372d8263412880002000054","external_url":"http://www.elle.com/news/street-chic-daily/spring-editor-street-style-nyc-white-skirt-natalie-matthews?src=rss","external_url_source":"http://www.elle.com/rss/street-chic-daily/","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["5372e1b1f79a9600020000b2","534f665f9460a71472000220"],"has_sent":false,"image_big_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/5372d8273412880002000055/large.jpg","image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/5372d8273412880002000055/small.jpg","image_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/5372d8273412880002000055/large.jpg","img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_published_view":false,"is_responsive":true,"link":"http://www.elle.com/news/street-chic-daily/spring-editor-street-style-nyc-white-skirt-natalie-matthews?src=rss","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/elle_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-20T16:23:50+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-05-20T16:52:57+00:00","published_post_cacheid":"537b81964b48400002000590","random":0.03437495706807969,"rss_feed_url":"http://www.elle.com/rss/street-chic-daily/","send_on_publish":false,"sent_newsletter_ids":[],"slug":"editors-style-natalie-matthews-kim-kardashian-skirt-1","slug_history":[],"suitability_score":0.0,"title":"Editor''s
|
154
|
+
Style: Natalie Matthews'' Kim Kardashian Skirt","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-07-02T20:50:24Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":"53b470901414454dd6000e0a","pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"537f56c34623660002001cda","_slugs":["dude-pdf-post"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"<p>http://techcrunch.com/2014/05/23/google-close-to-snapping-up-satellite-startup-skybox-imaging-for-1b-say-sources/</p>","client_only":false,"comment":null,"created_at":"2014-05-23T14:10:11Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":null,"external_url":"http://techcrunch.com/2014/05/23/google-close-to-snapping-up-satellite-startup-skybox-imaging-for-1b-say-sources/","external_url_source":"custom-content","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["537d32a5e2359c0002000010","5372e1b1f79a9600020000b2","534f665f9460a71472000220","537d32a5e2359c0002000013"],"has_sent":false,"image_big_url":null,"image_small_url":null,"image_url":null,"img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":null,"logo_url":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-23T14:09:32+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-05-23T14:10:11+00:00","published_post_cacheid":"537f56c34623660002001cda","random":0.3097945758171827,"rss_feed_url":null,"send_on_publish":false,"sent_newsletter_ids":[],"slug":"dude-pdf-post","slug_history":[],"suitability_score":0.0,"title":"Dude
|
155
|
+
PDF Post","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-23T14:10:11Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"http://techcrunch.com/2014/05/23/google-close-to-snapping-up-satellite-startup-skybox-imaging-for-1b-say-sources/","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_published_view":true,"is_newsletter_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"537f57764623660002001ce4","_slugs":["some-pdf-creation-tile"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":"","autopublished":false,"body":"<p>Test
|
156
|
+
this now</p>","client_only":false,"comment":null,"created_at":"2014-05-23T14:13:10Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":null,"external_url":null,"external_url_source":"custom-content","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["537d32a5e2359c0002000010","5372e1b1f79a9600020000b2","534f665f9460a71472000220","537d32a5e2359c0002000013"],"has_sent":false,"image_big_url":null,"image_small_url":null,"image_url":"https://s3.amazonaws.com/s3-dev.vestorly.com/534d9ebfb034d500020004fd/1400854388/world_up.jpeg","img":"post_images/537f577624c4d80002002672/original.jpg","img_changed":true,"img_compressed":true,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":null,"logo_url":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-05-23T14:12:49+00:00","post_images":[{"_id":"537f577624c4d80002002672","image_content_type":"application/octet-stream","image_file_name":"world_up.jpeg","image_file_size":7464,"image_fingerprint":"c89d271e207f1b03c7c726db66d4a857","image_updated_at":"2014-05-23T14:13:10+00:00"}],"prospect_only":false,"publish_to_social":null,"published_at":"2014-05-23T14:13:10+00:00","published_post_cacheid":"537f57764623660002001ce4","random":0.5283212935126249,"rss_feed_url":null,"send_on_publish":false,"sent_newsletter_ids":[],"slug":"some-pdf-creation-tile","slug_history":[],"suitability_score":0.0,"title":"Some
|
157
|
+
pdf creation tile","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-23T14:13:13Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_published_view":true,"is_newsletter_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"537ff5dc004c550002000019","_slugs":["ales-du"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"<p>Aber
|
158
|
+
immer!</p>","client_only":false,"comment":null,"created_at":"2014-05-24T01:29:00Z","display_tag":null,"down_votes":0,"draft_post_id":null,"email_link":null,"external_id":null,"external_url":"http://codeinthehole.com/writing/pull-requests-and-other-good-practices-for-teams-using-github/","external_url_source":"custom-content","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["537d32a5e2359c0002000010","5372e1b1f79a9600020000b2","534f665f9460a71472000220","537d32a5e2359c0002000013"],"has_sent":false,"image_big_url":null,"image_small_url":null,"image_url":null,"image_width":null,"img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":null,"logo_url":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"pdf_attachment_url":null,"post_date":"2014-05-24T01:28:34+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-05-24T01:29:00+00:00","published_post_cacheid":"537ff5dc004c550002000019","random":0.5536997122072216,"rss_feed_url":null,"send_on_publish":false,"sent_newsletter_ids":[],"slug":"ales-du","slug_history":[],"suitability_score":0.0,"summary":null,"title":"Ales
|
159
|
+
du","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-05-24T01:29:23Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":"537ff5e111539e0002000016","pre_approval_status":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_published_view":true,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"537ff5594f2e5d0002000025","_slugs":["a-new-testing-post-created-1"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":"","autopublished":false,"body":"<p>Here
|
160
|
+
it''s the post!</p><p></p><p>Siracha!</p>","client_only":false,"comment":null,"created_at":"2014-05-24T01:26:49Z","display_tag":null,"down_votes":0,"draft_post_id":null,"email_link":null,"external_id":null,"external_url":null,"external_url_source":"custom-content","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["537d32a5e2359c0002000010","5372e1b1f79a9600020000b2","534f665f9460a71472000220","537d32a5e2359c0002000013"],"has_sent":false,"image_big_url":null,"image_small_url":null,"image_url":null,"image_width":null,"img":"post_images/538dd7044110ff00020010af/original.jpg","img_changed":true,"img_compressed":true,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":null,"logo_url":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"pdf_attachment_url":null,"post_date":"2014-05-24T05:26:14+00:00","post_images":[{"_id":"537ff55911539e0002000015","image_content_type":"application/octet-stream","image_file_name":"ap99581709316.jpg","image_file_size":128838,"image_fingerprint":"ce8c38131567ec219d928516a67c6858","image_updated_at":"2014-05-24T01:26:49+00:00"},{"_id":"538dd7044110ff00020010af","image_content_type":"application/octet-stream","image_file_name":"wall010-1920x1200.jpg","image_file_size":1085239,"image_fingerprint":"21d3ea8f0e77882b484e89e8befe49e0","image_updated_at":"2014-06-03T14:09:08+00:00"}],"prospect_only":false,"publish_to_social":null,"published_at":"2014-05-24T01:26:49+00:00","published_post_cacheid":"537ff5594f2e5d0002000025","random":0.16564029579820527,"rss_feed_url":null,"send_on_publish":false,"sent_newsletter_ids":["537d32a5e2359c0002000011"],"slug":"a-new-testing-post-created-1","slug_history":[],"suitability_score":0.0,"summary":null,"title":"A
|
161
|
+
new testing post created - 1","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-09-08T16:09:55Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_published_view":true,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53849fa9453a1b00020018da","_slugs":["no-protocol-external-url-post"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":"","autopublished":false,"body":"<p>http://techcrunch.com/2014/05/27/twitter-user-growth-will-come-from-asia-pacific/</p>","client_only":false,"comment":"Comment
|
162
|
+
agains su","created_at":"2014-05-27T14:22:33Z","display_tag":null,"down_votes":0,"draft_post_id":null,"email_link":null,"external_id":null,"external_url":"http://techcrunch.com/2014/05/27/twitter-user-growth-will-come-from-asia-pacific/","external_url_source":"custom-content","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["537d32a5e2359c0002000010","5372e1b1f79a9600020000b2","534f665f9460a71472000220","537d32a5e2359c0002000013"],"has_sent":false,"image_big_url":null,"image_small_url":null,"image_url":null,"image_width":null,"img":"post_images/538e0a5116777e0002000e72/original.jpg","img_changed":true,"img_compressed":true,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":null,"logo_url":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"pdf_attachment_url":null,"post_date":"2014-05-31T02:22:16+00:00","post_images":[{"_id":"538de4624110ff000200276a","image_content_type":"application/octet-stream","image_file_name":"wall037-2048x1536-ipad.jpg","image_file_size":474471,"image_fingerprint":"53f946fda0892ab6b570cda957bf92d7","image_updated_at":"2014-06-03T15:06:10+00:00"},{"_id":"538de4804110ff00020027f4","image_content_type":"application/octet-stream","image_file_name":"wall005-1920x1200.jpg","image_file_size":595859,"image_fingerprint":"f6592ff9ba4970ca0517e48ebcb7d0c2","image_updated_at":"2014-06-03T15:06:41+00:00"},{"_id":"538e0a5116777e0002000e72","image_content_type":"application/octet-stream","image_file_name":"ap99581709316.jpg","image_file_size":128838,"image_fingerprint":"ce8c38131567ec219d928516a67c6858","image_updated_at":"2014-06-03T17:48:01+00:00"}],"prospect_only":false,"publish_to_social":null,"published_at":"2014-05-27T14:22:33+00:00","published_post_cacheid":"53849fa9453a1b00020018da","random":0.6508414893101903,"rss_feed_url":null,"send_on_publish":false,"sent_newsletter_ids":[],"slug":"no-protocol-external-url-post","slug_history":[],"suitability_score":0.0,"title":"No
|
163
|
+
protocol external_url post","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-06-03T17:48:04Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":"53849fb5533451000200004e","pre_approval_status":null,"summary":"http://techcrunch.com/2014/05/27/twitter-user-growth-will-come-from-asia-pacific/","attachment_url":null,"video_id":"","is_all_view":false,"is_published_view":true,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53a0abbf6b72dfc44900722c","_slugs":["video-americans-should-worry-about-iraq-1"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"Retired
|
164
|
+
General Wesley Clark tells the BBC gains by ISIS in Iraq creates the possibility
|
165
|
+
of a \"terrorist-based government at the very heart of this region\".","client_only":false,"comment":null,"created_at":"2014-06-17T20:57:35Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"539fa9346370d30002000007","external_url":"http://www.bbc.co.uk/news/world-us-canada-27878912#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","external_url_source":"http://feeds.bbci.co.uk/news/world/us_and_canada/rss.xml","external_url_type":"basic","for_approval":false,"from_newscred":true,"group_ids":["539a92d8de6219571e0000e6","5372e1b1f79a9600020000b2","537d32a5e2359c0002000010","537d32a5e2359c0002000013","534f665f9460a71472000220"],"has_sent":false,"image_big_url":null,"image_small_url":null,"image_url":null,"img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":"http://www.bbc.co.uk/news/world-us-canada-27878912#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/bbc_news_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-06-17T20:57:35+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-06-17T23:30:53+00:00","published_post_cacheid":"53a0abbf6b72dfc44900722c","random":28.842147604480164,"rss_feed_url":"http://feeds.bbci.co.uk/news/world/us_and_canada/rss.xml","send_on_publish":false,"sent_newsletter_ids":[],"slug":"video-americans-should-worry-about-iraq-1","suitability_score":0.0,"title":"VIDEO:
|
166
|
+
Americans ''should worry about Iraq''","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-06-17T23:30:53Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"Retired
|
167
|
+
General Wesley Clark tells the BBC gains by ISIS in Iraq creates the possibility
|
168
|
+
of a \"terrorist-based government at the very heart of this region\".","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_published_view":true,"is_newsletter_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53a0abbf6b72dfc44900722d","_slugs":["chinese-premier-li-meets-the-queen-1"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"Chinese
|
169
|
+
Premier Li Keqiang meets the Queen at Windsor Castle on the first full day
|
170
|
+
of his visit to the UK.","client_only":false,"comment":null,"created_at":"2014-06-17T20:57:35Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53a0361471214f0002000010","external_url":"http://www.bbc.co.uk/news/uk-politics-27879021#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","external_url_source":"http://feeds.bbci.co.uk/news/rss.xml","external_url_type":"basic","for_approval":false,"from_newscred":true,"group_ids":["539a92d8de6219571e0000e6","5372e1b1f79a9600020000b2","537d32a5e2359c0002000010","537d32a5e2359c0002000013","534f665f9460a71472000220"],"has_sent":false,"image_big_url":null,"image_small_url":null,"image_url":null,"img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":"http://www.bbc.co.uk/news/uk-politics-27879021#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/bbc_news_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-06-17T20:57:35+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-06-17T23:30:53+00:00","published_post_cacheid":"53a0abbf6b72dfc44900722d","random":27.01697360643367,"rss_feed_url":"http://feeds.bbci.co.uk/news/rss.xml","send_on_publish":false,"sent_newsletter_ids":[],"slug":"chinese-premier-li-meets-the-queen-1","suitability_score":0.0,"title":"Chinese
|
171
|
+
Premier Li meets the Queen","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-06-17T23:30:53Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"Chinese
|
172
|
+
Premier Li Keqiang meets the Queen at Windsor Castle on the first full day
|
173
|
+
of his visit to the UK.","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_published_view":true,"is_newsletter_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53a0abbf6b72dfc44900722e","_slugs":["extremist-ruled-mosul-why-some-iraqis-are-returning-1"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"\n A
|
174
|
+
week after ISIS conquered Mosul, some Iraqi Sunnis choose to return even as
|
175
|
+
Shiites flee\n ","client_only":false,"comment":null,"created_at":"2014-06-17T20:57:35Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"539f6ab81c0b070002000042","external_url":"http://www.businessweek.com/articles/2014-06-16/why-some-iraqis-are-returning-to-mosul#r=rss","external_url_source":"http://www.businessweek.com/feeds/most-popular.rss","external_url_type":"basic","for_approval":false,"from_newscred":true,"group_ids":["539a92d8de6219571e0000e6","5372e1b1f79a9600020000b2","537d32a5e2359c0002000010","537d32a5e2359c0002000013","534f665f9460a71472000220"],"has_sent":false,"image_big_url":null,"image_small_url":null,"image_url":null,"img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":"http://www.businessweek.com/articles/2014-06-16/why-some-iraqis-are-returning-to-mosul#r=rss","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/bloomberg_businessweek_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":true,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-06-17T20:57:35+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-06-17T23:30:53+00:00","published_post_cacheid":"53a0abbf6b72dfc44900722e","random":26.306216892172866,"rss_feed_url":"http://www.businessweek.com/feeds/most-popular.rss","send_on_publish":false,"sent_newsletter_ids":[],"slug":"extremist-ruled-mosul-why-some-iraqis-are-returning-1","suitability_score":0.0,"title":"Extremist-Ruled
|
176
|
+
Mosul: Why Some Iraqis Are Returning","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-06-24T16:05:39Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":"53a9a1d209acf7b8a5000abb","pre_approval_status":null,"summary":"
|
177
|
+
A week after ISIS conquered Mosul, some Iraqi Sunnis choose to return even
|
178
|
+
as Shiites flee","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_published_view":true,"is_newsletter_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53a0c5a96b72df1b39009706","_slugs":["recovery-look-at-income"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"Hold
|
179
|
+
off on the victory dance. The 2014 \u201cEconomic Report of the President\u201d
|
180
|
+
and many media reports indicate that the U.S. economy has finally recovered.
|
181
|
+
But has it? Not if you look at one measure of economic health: household income.\nHistorically,
|
182
|
+
America has prospered, as each generation typically earned more inflation-adjusted
|
183
|
+
income than the generation that preceded it. The American Dream is not just
|
184
|
+
to succeed yourself; it\u2019s to provide your children with a better life.\nA
|
185
|
+
better life means more than money, of course, but money enables the next generation
|
186
|
+
to do more, live more comfortably and worry less about making the mortgage
|
187
|
+
payments. Materialistic though it may be, it\u2019s part of the American Dream.\nSo
|
188
|
+
it\u2019s alarming to see the drop in income that has taken place since 2007,
|
189
|
+
when the financial crisis began. Census data (adjusted for inflation) show
|
190
|
+
that median household income dropped from $56,000 to $51,017, which is a dip
|
191
|
+
of nearly 10%.\nWe\u2019ve had dips before, as the chart below shows, particularly
|
192
|
+
during the \u201cstagflation\u201d years of the late 1970s and early 1980s.
|
193
|
+
Yet this has been the most dramatic drop in income in recent history.\n\n\u00a0\nWhen
|
194
|
+
household income shrinks, some in the middle class risk sinking down to the
|
195
|
+
lower class and those on the cusp of becoming middle class can no longer achieve
|
196
|
+
that status. As the lower class grows, government expenditures grow, resulting
|
197
|
+
in higher taxes and even further erosion of discretionary income for those
|
198
|
+
in the middle class.\nWhen income decreases, consumers have less money to
|
199
|
+
spend, so the economy stagnates and businesses grow at a slower rate.\nThe
|
200
|
+
chart and the U.S. Census Bureau\u2019s records do not yet go beyond 2012,
|
201
|
+
so hopefully some of the lost income is now returning, but we won\u2019t know
|
202
|
+
for sure until new numbers are available.\nOn a positive note, though, the
|
203
|
+
chart shows that income levels may have stopped plummeting. According to the
|
204
|
+
U.S. Census Bureau, \u201cReal median household income in the United States
|
205
|
+
showed no statistically significant change between the 2011 ACS (American
|
206
|
+
Community Survey) and the 2012 ACS. The ACS 2011 U.S. median household income
|
207
|
+
was $51,324 and the ACS 2012 U.S. median household income was $51,371.\u201d\nStaying
|
208
|
+
even is what passes for progress these days.\nNot every American has suffered
|
209
|
+
a decrease in income. In fact, not every state experienced an income drop.
|
210
|
+
Among those that did, however, the drop was huge in some cases.\nDelaware
|
211
|
+
finished with the highest income reduction of any state \u2013 a 27% plunge,
|
212
|
+
which brought its average household income down to $48,972. Mississippi\u2019s
|
213
|
+
19.9% slide may not sound as bad, but Mississippi has the lowest income of
|
214
|
+
any state at $36,641.\nMassachusetts, where I live, fared comparatively well.
|
215
|
+
Our 6.1% drop, bringing average household income down to $63,656, ranks the
|
216
|
+
commonwealth as having the ninth smallest drop in income.\nWhich state fared
|
217
|
+
best? Maryland, which has the highest income of any state at $71,836, had
|
218
|
+
a 1.2% drop. At the very top of the list, though, is Washington, D.C., which
|
219
|
+
enjoyed its highest level of income ever in 2012 at $65,246.\nSo is this what
|
220
|
+
President Barack Obama and members of Congress mean when they talk about income
|
221
|
+
inequality? Maybe lawmakers should send part of their pay to Mississippi.\nOne
|
222
|
+
reason household income is down, of course, is that a record number of Americans
|
223
|
+
are out of work \u2013 more than 100 million.\nThat jobless total appears
|
224
|
+
to be growing, even as the unemployment rate falls, as the number of Americans
|
225
|
+
seeking unemployment benefits jumped to 317,000 recently. If enough people
|
226
|
+
stop working, someday we can achieve full employment.\nThe economy gained
|
227
|
+
217,000 jobs in May, which is one of the largest gains in two-and-a-half years,
|
228
|
+
but do the math \u2013 317,000 minus 217,000 is a net job loss.\nWhat\u2019s
|
229
|
+
really dismaying is that the unemployment rate has dropped from 6.7% to 6.3%,
|
230
|
+
because more people stopped looking for work.\nFollow AdviceIQ on Twitter
|
231
|
+
at\u00a0@adviceiq.\nBrenda P. Wenning is president of\u00a0Wenning Investments
|
232
|
+
LLC\u00a0in Newton, Mass.\u00a0\nAdviceIQ delivers quality personal finance
|
233
|
+
articles by both financial advisors and AdviceIQ editors. It ranks advisors
|
234
|
+
in your area by specialty,\u00a0including small businesses, doctors and clients
|
235
|
+
of modest means, for example. Those with the biggest number of clients in
|
236
|
+
a given specialty\u00a0rank the highest. AdviceIQ also vets ranked advisors
|
237
|
+
so only those with pristine regulatory histories can participate. AdviceIQ
|
238
|
+
was launched Jan. 9, 2012, by veteran Wall Street executives, editors and
|
239
|
+
technologists. Right now, investors may see many advisor rankings, although
|
240
|
+
in some areas only a few are ranked. Check back often as thousands of advisors
|
241
|
+
are undergoing AdviceIQ screening. New advisors appear in rankings daily.\n\u00a0\nTopic:\u00a0Salaries
|
242
|
+
and BenefitsEconomyTaxes","client_only":false,"comment":null,"created_at":"2014-06-17T22:48:09Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53a0bb5d8519a80002000003","external_url":"http://adviceiq.com/articles/brenda-p-wenning-recovery-look-income","external_url_source":"http://adviceiq.com/taxonomy/term/32/feed","external_url_type":"basic","for_approval":false,"from_newscred":true,"group_ids":["539a92d8de6219571e0000e6","5372e1b1f79a9600020000b2","537d32a5e2359c0002000010","537d32a5e2359c0002000013","534f665f9460a71472000220"],"has_sent":false,"image_big_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53a0bb5f8519a80002000004/large.jpg","image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53a0bb5f8519a80002000004/small.jpg","image_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53a0bb5f8519a80002000004/large.jpg","img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":"http://adviceiq.com/articles/brenda-p-wenning-recovery-look-income","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/adviceiq_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-06-17T22:48:09+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-06-17T23:30:52+00:00","published_post_cacheid":"53a0c5a96b72df1b39009706","random":10017.169042875488,"rss_feed_url":"http://adviceiq.com/taxonomy/term/32/feed","send_on_publish":false,"sent_newsletter_ids":["539fe8b5f7de0bafbb000001","5372f8c1cccec3000200009a","537d32a5e2359c0002000011","534f665f9460a71472000221","537d32a5e2359c0002000014"],"slug":"recovery-look-at-income","suitability_score":0.0,"title":"Recovery?
|
243
|
+
Look at Income","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-09-08T16:09:57Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":"53ac2a18dc5454cf0a0000ba","pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_published_view":true,"is_newsletter_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53a0d99adb47610961000104","_slugs":["bla-bla-bla"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"<p>Youtube
|
244
|
+
test</p>","client_only":false,"comment":null,"created_at":"2014-06-18T00:13:17Z","display_tag":null,"down_votes":0,"draft_post_id":null,"email_link":null,"external_id":null,"external_url":"https://www.youtube.com/watch?v=44H76HK6XqI","external_url_source":"custom-content","external_url_type":"youtube","for_approval":false,"from_newscred":false,"group_ids":["537d32a5e2359c0002000010","5372e1b1f79a9600020000b2","539a92d8de6219571e0000e6","534f665f9460a71472000220","537d32a5e2359c0002000013"],"has_sent":false,"image_big_url":null,"image_small_url":null,"image_url":"http://s3-dev.vestorly.com.s3.amazonaws.com/post_images/53a0d99f689f885981000cf3/large.jpg","image_width":null,"img":"post_images/53a0d99f689f885981000cf3/original.jpg","img_changed":false,"img_compressed":true,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":null,"logo_url":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"pdf_attachment_url":null,"post_date":"2014-06-18T00:12:43+00:00","post_images":[{"_id":"53a0d99ddb47610961000105","image_content_type":"image/jpeg","image_file_name":"hqdefault.jpg","image_file_size":18696,"image_fingerprint":"9b14b3b89cd111750201ee6d57ebec8e","image_updated_at":"2014-06-18T00:13:14+00:00"},{"_id":"53a0d99f689f885981000cf3","image_content_type":"image/jpeg","image_file_name":"original.jpg","image_file_size":18687,"image_fingerprint":"977324ce104aed631b965ddbab06088d","image_updated_at":"2014-06-18T00:13:17+00:00"}],"prospect_only":false,"publish_to_social":null,"published_at":"2014-06-18T00:13:17+00:00","published_post_cacheid":"53a0d99adb47610961000104","random":0.948231546802675,"rss_feed_url":null,"send_on_publish":false,"sent_newsletter_ids":["534f665f9460a71472000221","537d32a5e2359c0002000014"],"slug":"bla-bla-bla","suitability_score":0.0,"title":"bla
|
245
|
+
bla bla","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-09-08T16:09:57Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":"53a0d9ae689f885981000cf4","pre_approval_status":null,"summary":"","attachment_url":null,"video_id":"44H76HK6XqI","is_all_view":false,"is_published_view":true,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53a104d60dbcb6f412000197","_slugs":["sdf-1"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"<p>dfa</p>","client_only":false,"comment":null,"created_at":"2014-06-18T03:17:43Z","display_tag":null,"down_votes":0,"draft_post_id":null,"email_link":null,"external_id":null,"external_url":"https://www.youtube.com/watch?v=c_ZW0Y_jdGU","external_url_source":"custom-content","external_url_type":"youtube","for_approval":false,"from_newscred":false,"group_ids":["537d32a5e2359c0002000010","5372e1b1f79a9600020000b2","539a92d8de6219571e0000e6","534f665f9460a71472000220","537d32a5e2359c0002000013"],"has_sent":false,"image_big_url":null,"image_small_url":null,"image_url":"http://s3-dev.vestorly.com.s3.amazonaws.com/post_images/53a104d9e98c8d0d0e001825/large.jpg","image_width":null,"img":"post_images/53a104d9e98c8d0d0e001825/original.jpg","img_changed":false,"img_compressed":true,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":null,"logo_url":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"pdf_attachment_url":null,"post_date":"2014-06-18T03:17:36+00:00","post_images":[{"_id":"53a104d70dbcb6f412000198","image_content_type":"image/jpeg","image_file_name":"hqdefault.jpg","image_file_size":72971,"image_fingerprint":"5d17a5c6d2280ab8f8bad6bd82a7e6af","image_updated_at":"2014-06-18T03:17:42+00:00"},{"_id":"53a104d9e98c8d0d0e001825","image_content_type":"image/jpeg","image_file_name":"original.jpg","image_file_size":72925,"image_fingerprint":"c3d09c1187aeeaac56f6da726e56fad0","image_updated_at":"2014-06-18T03:17:43+00:00"}],"prospect_only":false,"publish_to_social":null,"published_at":"2014-06-18T03:17:43+00:00","published_post_cacheid":"53a104d60dbcb6f412000197","random":0.8562026289396745,"rss_feed_url":null,"send_on_publish":false,"sent_newsletter_ids":["53a9232a20925cd81a000001","534f665f9460a71472000221"],"slug":"sdf-1","suitability_score":0.0,"title":"sdf","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-09-08T16:09:56Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":"53a104e7e98c8d0d0e001826","pre_approval_status":null,"summary":"","attachment_url":null,"video_id":"c_ZW0Y_jdGU","is_all_view":false,"is_published_view":true,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53a4b716fc46747d6b00000d","_slugs":["pagani-zonda-cinque"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"<p>https://www.youtube.com/watch?v=ulsKbvLm2c0</p>","client_only":false,"comment":null,"created_at":"2014-06-20T22:35:04Z","display_tag":null,"down_votes":0,"draft_post_id":null,"email_link":null,"external_id":null,"external_url":"https://www.youtube.com/watch?v=ulsKbvLm2c0","external_url_source":"custom-content","external_url_type":"youtube","for_approval":false,"from_newscred":false,"group_ids":["537d32a5e2359c0002000010","5372e1b1f79a9600020000b2","539a92d8de6219571e0000e6","534f665f9460a71472000220","537d32a5e2359c0002000013"],"has_sent":false,"image_big_url":null,"image_small_url":null,"image_url":"http://s3-dev.vestorly.com.s3.amazonaws.com/post_images/53a4b71b67c2ac68ee0000ed/large.jpg","image_width":null,"img":"post_images/53a4b71b67c2ac68ee0000ed/original.jpg","img_changed":false,"img_compressed":true,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":null,"logo_url":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"pdf_attachment_url":null,"post_date":"2014-06-20T22:34:29+00:00","post_images":[{"_id":"53a4b718fc46747d6b00000e","image_content_type":"image/jpeg","image_file_name":"hqdefault.jpg","image_file_size":26969,"image_fingerprint":"d2bc89c0ecaa26f4ebb5234102273c8f","image_updated_at":"2014-06-20T22:35:02+00:00"},{"_id":"53a4b71b67c2ac68ee0000ed","image_content_type":"image/jpeg","image_file_name":"original.jpg","image_file_size":27052,"image_fingerprint":"82c7d242070a9fc46d0af9b90a9f0644","image_updated_at":"2014-06-20T22:35:05+00:00"}],"prospect_only":false,"publish_to_social":null,"published_at":"2014-06-20T22:35:04+00:00","published_post_cacheid":"53a4b716fc46747d6b00000d","random":0.09653458220004296,"rss_feed_url":null,"send_on_publish":false,"sent_newsletter_ids":["537d32a5e2359c0002000014"],"slug":"pagani-zonda-cinque","suitability_score":0.0,"title":"Pagani
|
246
|
+
Zonda Cinque","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-09-08T16:09:57Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":"53a9a5e409acf77ac7000b3d","pre_approval_status":null,"summary":"","attachment_url":null,"video_id":"ulsKbvLm2c0","is_all_view":false,"is_published_view":true,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53b1a45947674329b2000bce","_slugs":["a-matter-of-time-and-distance-1"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"@TBPInvictus
|
247
|
+
here: \u00a0 \u201cHave you ever noticed that anybody driving slower than
|
248
|
+
you is an idiot, and anyone going faster than you is a maniac?\u201d \u2013
|
249
|
+
George Carlin A quick note on where I think technology might take us in the
|
250
|
+
very near future. We\u2019re well into the age of electronic toll collection
|
251
|
+
systems (E-ZPass,...Read More","client_only":false,"comment":null,"created_at":"2014-06-30T17:54:33Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53b08d97e44d48000200001f","external_url":"http://feedproxy.google.com/~r/TheBigPicture/~3/Vy-fQ-7X1Yk/","external_url_source":"http://feeds.feedburner.com/TheBigPicture","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["537d32a5e2359c0002000010","5372e1b1f79a9600020000b2","539a92d8de6219571e0000e6","534f665f9460a71472000220","537d32a5e2359c0002000013"],"has_sent":false,"image_big_url":null,"image_small_url":null,"image_url":null,"img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":"http://feedproxy.google.com/~r/TheBigPicture/~3/Vy-fQ-7X1Yk/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/the_big_picture_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-06-30T17:54:33+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-07-01T03:56:29+00:00","published_post_cacheid":"53b1a45947674329b2000bce","random":0.914560852654936,"rss_feed_url":"http://feeds.feedburner.com/TheBigPicture","send_on_publish":false,"sent_newsletter_ids":[],"slug":"a-matter-of-time-and-distance-1","suitability_score":0.0,"title":"A
|
252
|
+
Matter of Time (and Distance)","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-07-01T03:56:29Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"@TBPInvictus
|
253
|
+
here: \u201cHave you ever noticed that anybody driving slower than you is
|
254
|
+
an idiot, and anyone going faster than you is a maniac?\u201d \u2013 George
|
255
|
+
Carlin A quick note on where I think technology might take us in the very
|
256
|
+
near future. We\u2019re well into the","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_published_view":true,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53b1a46047674329b2000be9","_slugs":["pisco-punch-2"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"The
|
257
|
+
post Pisco Punch appeared first on Bon App\u00e9tit.\n","client_only":false,"comment":null,"created_at":"2014-06-30T17:54:40Z","display_tag":"work","down_votes":0,"draft_post_id":null,"external_id":"53b0091c637df5000200009c","external_url":"http://www.bonappetit.com/uncategorized/article/pisco-punch","external_url_source":"http://www.bonappetit.com/rss2","external_url_type":"basic","for_approval":false,"from_newscred":null,"group_ids":["537d32a5e2359c0002000010","5372e1b1f79a9600020000b2","539a92d8de6219571e0000e6","534f665f9460a71472000220","537d32a5e2359c0002000013"],"has_sent":false,"image_big_url":null,"image_small_url":null,"image_url":null,"img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":null,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_published_view":true,"is_recommend_view":false,"is_responsive":false,"is_top6":false,"link":"http://www.bonappetit.com/uncategorized/article/pisco-punch","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/bon_appetit_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-06-30T17:54:40+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-07-01T03:56:31+00:00","published_post_cacheid":"53b1a46047674329b2000be9","random":0.6139394346753883,"rss_feed_url":"http://www.bonappetit.com/rss2","send_on_publish":false,"sent_newsletter_ids":[],"slug":"pisco-punch-2","suitability_score":0.0,"title":"Pisco
|
258
|
+
Punch","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-07-21T17:55:54Z","video":null,"video_id":"","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"The
|
259
|
+
post Pisco Punch appeared first on Bon App\u00e9tit.","pdf_attachment_url":null,"attachment_url":null,"is_all_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53b1a46047674329b2000bec","_slugs":["10-sunday-reads-79"],"advisor_id":"534d9ebfb034d500020004fd","article_id":null,"attachment":null,"autopublished":false,"body":"Pour
|
260
|
+
a cup of coffee, butter that bagel, and cozy up with my Sunday morning reads:
|
261
|
+
\u2022 For Stocks, Good News Beyond GDP (Barron\u2019s)\u00a0 see also Broad
|
262
|
+
Market Gains Power Historic Rally (WSJ) \u2022\u00a0From Alpha to Beta: A
|
263
|
+
Long/Short Story (Pension Partners) \u2022 Housel: Unfortunate Realities You
|
264
|
+
Should Get Used To (Fool) \u2022 Time to...Read More","client_only":false,"comment":null,"created_at":"2014-06-30T17:54:40Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53b08d97e44d480002000020","external_url":"http://feedproxy.google.com/~r/TheBigPicture/~3/76sHpvfnrYc/","external_url_source":"http://feeds.feedburner.com/TheBigPicture","external_url_type":"basic","for_approval":false,"from_newscred":false,"group_ids":["537d32a5e2359c0002000010","5372e1b1f79a9600020000b2","539a92d8de6219571e0000e6","534f665f9460a71472000220","537d32a5e2359c0002000013"],"has_sent":false,"image_big_url":null,"image_small_url":null,"image_url":null,"img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_newsletter_view":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":"http://feedproxy.google.com/~r/TheBigPicture/~3/76sHpvfnrYc/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/the_big_picture_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-06-30T17:54:40+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-07-01T03:56:26+00:00","published_post_cacheid":"53b1a46047674329b2000bec","random":0.3225549777254383,"rss_feed_url":"http://feeds.feedburner.com/TheBigPicture","send_on_publish":false,"sent_newsletter_ids":[],"slug":"10-sunday-reads-79","suitability_score":0.0,"title":"10
|
265
|
+
Sunday Reads","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-07-01T03:56:26Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"Pour
|
266
|
+
a cup of coffee, butter that bagel, and cozy up with my Sunday morning reads:
|
267
|
+
\u2022 For Stocks, Good News Beyond GDP (Barron\u2019s) see also Broad Market
|
268
|
+
Gains Power Historic Rally (WSJ) \u2022From Alpha to Beta: A Long/Short Story
|
269
|
+
(Pension Partners) \u2022 Housel:","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_published_view":true,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53cd188d5162686c060005aa","_slugs":["digital-slimming-graduation-photos-1"],"advisor_id":"534d9ebfb034d500020004fd","article_id":"53c89a8a84d12f000200000b","attachment":null,"autopublished":false,"body":"Graduation
|
270
|
+
ceremony photographers are offering to digitally alter pictures to make students
|
271
|
+
look slimmer and have whiter teeth.","client_only":false,"comment":null,"created_at":"2014-07-21T13:41:33Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53c89a8a84d12f000200000b","external_url":"http://www.bbc.co.uk/news/education-28345612#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","external_url_source":"http://feeds.bbci.co.uk/news/education/rss.xml","external_url_type":"basic","for_approval":false,"from_newscred":true,"group_ids":["539a92d8de6219571e0000e6","5372e1b1f79a9600020000b2","537d32a5e2359c0002000010","537d32a5e2359c0002000013","534f665f9460a71472000220"],"has_sent":false,"image_big_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53c89a8b84d12f000200000c/large.jpg","image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53c89a8b84d12f000200000c/small.jpg","image_url":"https://d3i4lqsaxjar6n.cloudfront.net/post_images/53c89a8b84d12f000200000c/large.jpg","img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":"http://www.bbc.co.uk/news/education-28345612#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/bbc_news_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-07-21T13:41:33+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-07-29T03:10:29+00:00","published_post_cacheid":"53cd188d5162686c060005aa","random":10009.473733633424,"rss_feed_url":"http://feeds.bbci.co.uk/news/education/rss.xml","send_on_publish":false,"sent_newsletter_ids":["53d70761c3b5a0e351000017","53ce0d54ed763fc8fc000003"],"slug":"digital-slimming-graduation-photos-1","suitability_score":0.0,"title":"''Digital
|
272
|
+
slimming'' graduation photos","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-07-29T06:07:07Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_published_view":true,"is_newsletter_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53cd188d5162686c060005ab","_slugs":["ofsted-biased-on-teaching-methods-42"],"advisor_id":"534d9ebfb034d500020004fd","article_id":"53c9eb2c20c9430002000025","attachment":null,"autopublished":false,"body":"A
|
273
|
+
think tank says teachers are being marked down by Ofsted for using traditional
|
274
|
+
\"chalk and talk\" teaching methods.","client_only":false,"comment":null,"created_at":"2014-07-21T13:41:33Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53c9eb2c20c9430002000025","external_url":"http://www.bbc.co.uk/news/education-28365652#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","external_url_source":"http://feeds.bbci.co.uk/news/education/rss.xml","external_url_type":"basic","for_approval":false,"from_newscred":true,"group_ids":["539a92d8de6219571e0000e6","5372e1b1f79a9600020000b2","537d32a5e2359c0002000010","537d32a5e2359c0002000013","534f665f9460a71472000220"],"has_sent":false,"image_big_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53c9eb2e20c9430002000026/large.jpg","image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53c9eb2e20c9430002000026/small.jpg","image_url":"https://d3i4lqsaxjar6n.cloudfront.net/post_images/53c9eb2e20c9430002000026/large.jpg","img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":"http://www.bbc.co.uk/news/education-28365652#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/bbc_news_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-07-21T13:41:33+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-07-29T03:05:01+00:00","published_post_cacheid":"53cd188d5162686c060005ab","random":10008.597478216341,"rss_feed_url":"http://feeds.bbci.co.uk/news/education/rss.xml","send_on_publish":false,"sent_newsletter_ids":["53d70761c3b5a0e351000017","53ce0d54ed763fc8fc000003"],"slug":"ofsted-biased-on-teaching-methods-42","suitability_score":0.0,"title":"Ofsted
|
275
|
+
''biased on teaching methods''","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-07-29T06:07:07Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_published_view":true,"is_newsletter_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53cd188d5162686c060005ac","_slugs":["school-meals-may-face-difficulties-1"],"advisor_id":"534d9ebfb034d500020004fd","article_id":"53c748435a0361000200003d","attachment":null,"autopublished":false,"body":"Nick
|
276
|
+
Clegg admits primary schools may have \"difficulties\" in providing free meals
|
277
|
+
for under-sevens, as councils and schools complain about the impact on their
|
278
|
+
budgets.","client_only":false,"comment":null,"created_at":"2014-07-21T13:41:33Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53c748435a0361000200003d","external_url":"http://www.bbc.co.uk/news/education-28336041#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","external_url_source":"http://feeds.bbci.co.uk/news/education/rss.xml","external_url_type":"basic","for_approval":false,"from_newscred":true,"group_ids":["539a92d8de6219571e0000e6","5372e1b1f79a9600020000b2","537d32a5e2359c0002000010","537d32a5e2359c0002000013","534f665f9460a71472000220"],"has_sent":false,"image_big_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53c748445a0361000200003e/large.jpg","image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53c748445a0361000200003e/small.jpg","image_url":"https://d3i4lqsaxjar6n.cloudfront.net/post_images/53c748445a0361000200003e/large.jpg","img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":"http://www.bbc.co.uk/news/education-28336041#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/bbc_news_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-07-21T13:41:33+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-07-29T03:05:01+00:00","published_post_cacheid":"53cd188d5162686c060005ac","random":10007.664595774666,"rss_feed_url":"http://feeds.bbci.co.uk/news/education/rss.xml","send_on_publish":false,"sent_newsletter_ids":[],"slug":"school-meals-may-face-difficulties-1","suitability_score":0.0,"title":"School
|
279
|
+
meals may face ''difficulties''","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-07-29T03:05:01Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_published_view":true,"is_newsletter_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53cd188d5162686c060005ad","_slugs":["rise-in-uni-spend-to-attract-poorer-37"],"advisor_id":"534d9ebfb034d500020004fd","article_id":"53c7cbf0c485290002000051","attachment":null,"autopublished":false,"body":"Universities
|
280
|
+
in the UK spent nearly \u00a3140m more on attracting poor students in the
|
281
|
+
first year of fees, a report says.","client_only":false,"comment":null,"created_at":"2014-07-21T13:41:34Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53c7cbf0c485290002000051","external_url":"http://www.bbc.co.uk/news/education-28329398#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","external_url_source":"http://feeds.bbci.co.uk/news/education/rss.xml","external_url_type":"basic","for_approval":false,"from_newscred":true,"group_ids":["539a92d8de6219571e0000e6","5372e1b1f79a9600020000b2","537d32a5e2359c0002000010","537d32a5e2359c0002000013","534f665f9460a71472000220"],"has_sent":false,"image_big_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53c7cbf2c485290002000052/large.jpg","image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53c7cbf2c485290002000052/small.jpg","image_url":"https://d3i4lqsaxjar6n.cloudfront.net/post_images/53c7cbf2c485290002000052/large.jpg","img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":"http://www.bbc.co.uk/news/education-28329398#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/bbc_news_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-07-21T13:41:33+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-07-29T03:05:01+00:00","published_post_cacheid":"53cd188d5162686c060005ad","random":10006.048935205255,"rss_feed_url":"http://feeds.bbci.co.uk/news/education/rss.xml","send_on_publish":false,"sent_newsletter_ids":[],"slug":"rise-in-uni-spend-to-attract-poorer-37","suitability_score":0.0,"title":"Rise
|
282
|
+
in uni spend to attract poorer","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-07-29T03:05:01Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_published_view":true,"is_newsletter_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53cea16e6432ac714c0019cb","_slugs":["graduate-jobs-in-the-uk-grow-17-percent-1"],"advisor_id":"534d9ebfb034d500020004fd","article_id":"53ce1158d3ff9658f7000035","attachment":null,"autopublished":false,"body":"A
|
283
|
+
survey suggests graduate jobs in the UK have recovered but many employers
|
284
|
+
are struggling to fill skilled posts.","client_only":false,"comment":null,"created_at":"2014-07-22T17:37:50Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53ce1158d3ff9658f7000035","external_url":"http://www.bbc.co.uk/news/education-28403706#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","external_url_source":"http://feeds.bbci.co.uk/news/education/rss.xml","external_url_type":"basic","for_approval":false,"from_newscred":true,"group_ids":["539a92d8de6219571e0000e6","5372e1b1f79a9600020000b2","537d32a5e2359c0002000010","537d32a5e2359c0002000013","534f665f9460a71472000220"],"has_sent":false,"image_big_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53ce88c3234382041e000034/large.jpg","image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53ce88c3234382041e000034/small.jpg","image_url":"https://d3i4lqsaxjar6n.cloudfront.net/post_images/53ce88c3234382041e000034/large.jpg","img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":"http://www.bbc.co.uk/news/education-28403706#sa-ns_mchannel=rss&ns_source=PublicRSS20-sa","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/bbc_news_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":false,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-07-22T17:37:50+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-07-29T03:05:02+00:00","published_post_cacheid":"53cea16e6432ac714c0019cb","random":10004.52470166301,"rss_feed_url":"http://feeds.bbci.co.uk/news/education/rss.xml","send_on_publish":false,"sent_newsletter_ids":[],"slug":"graduate-jobs-in-the-uk-grow-17-percent-1","suitability_score":0.0,"title":"Graduate
|
285
|
+
jobs in the UK ''grow 17%''","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-07-29T03:05:02Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_published_view":true,"is_newsletter_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53d70760c3b5a0e35100000e","_slugs":["pay-up-the-companies-charging-you-more"],"advisor_id":"534d9ebfb034d500020004fd","article_id":"53d65c2daa7b6226000002a5","attachment":null,"autopublished":false,"body":"Some
|
286
|
+
companies are talking about something they haven''t a awhile: higher prices\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\n","client_only":false,"comment":null,"created_at":"2014-07-29T02:30:56Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53d65c2daa7b6226000002a5","external_url":"http://rssfeeds.usatoday.com/~/70362639/0/usatodaycommoney-topstories~Pay-up-The-companies-charging-you-more/","external_url_source":"http://rssfeeds.usatoday.com/UsatodaycomMoney-TopStories","external_url_type":"basic","for_approval":false,"from_newscred":true,"group_ids":["539a92d8de6219571e0000e6","5372e1b1f79a9600020000b2","537d32a5e2359c0002000010","537d32a5e2359c0002000013","534f665f9460a71472000220"],"has_sent":false,"image_big_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53d65c2faa7b6226000002a6/large.jpg","image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53d65c2faa7b6226000002a6/small.jpg","image_url":"https://d3i4lqsaxjar6n.cloudfront.net/post_images/53d65c2faa7b6226000002a6/large.jpg","img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":"http://rssfeeds.usatoday.com/~/70362639/0/usatodaycommoney-topstories~Pay-up-The-companies-charging-you-more/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/usa_today_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":true,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-07-29T02:30:56+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-07-29T02:30:58+00:00","published_post_cacheid":"53d70760c3b5a0e35100000e","random":10008.799113003273,"rss_feed_url":"http://rssfeeds.usatoday.com/UsatodaycomMoney-TopStories","send_on_publish":false,"sent_newsletter_ids":["53d70761c3b5a0e351000017","53ce0d54ed763fc8fc000003"],"slug":"pay-up-the-companies-charging-you-more","suitability_score":0.0,"title":"Pay
|
287
|
+
up! The companies charging you more","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-07-29T06:07:07Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_published_view":true,"is_newsletter_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53d70760c3b5a0e35100000f","_slugs":["nightengale-hall-of-fame-adds-touch-of-class"],"advisor_id":"534d9ebfb034d500020004fd","article_id":"53d5d59fa4d7f6fce70002d4","attachment":null,"autopublished":false,"body":"After
|
288
|
+
a dark 2013, baseball''s shrine shines again\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\n","client_only":false,"comment":null,"created_at":"2014-07-29T02:30:56Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53d5d59fa4d7f6fce70002d4","external_url":"http://rssfeeds.usatoday.com/~/70325111/0/usatodaycomsports-topstories~Nightengale-Hall-of-Fame-adds-touch-of-class/","external_url_source":"http://rssfeeds.usatoday.com/UsatodaycomSports-TopStories","external_url_type":"basic","for_approval":false,"from_newscred":true,"group_ids":["539a92d8de6219571e0000e6","5372e1b1f79a9600020000b2","537d32a5e2359c0002000010","537d32a5e2359c0002000013","534f665f9460a71472000220"],"has_sent":false,"image_big_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53d5d5a2a4d7f6fce70002d5/large.jpg","image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53d5d5a2a4d7f6fce70002d5/small.jpg","image_url":"https://d3i4lqsaxjar6n.cloudfront.net/post_images/53d5d5a2a4d7f6fce70002d5/large.jpg","img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":"http://rssfeeds.usatoday.com/~/70325111/0/usatodaycomsports-topstories~Nightengale-Hall-of-Fame-adds-touch-of-class/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/usa_today_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":true,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-07-29T02:30:56+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-07-29T02:30:58+00:00","published_post_cacheid":"53d70760c3b5a0e35100000f","random":10007.917514506813,"rss_feed_url":"http://rssfeeds.usatoday.com/UsatodaycomSports-TopStories","send_on_publish":false,"sent_newsletter_ids":[],"slug":"nightengale-hall-of-fame-adds-touch-of-class","suitability_score":0.0,"title":"Nightengale:
|
289
|
+
Hall of Fame adds touch of class","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-07-29T02:30:58Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_published_view":true,"is_newsletter_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53d70760c3b5a0e351000010","_slugs":["states-with-the-highest-gas-prices"],"advisor_id":"534d9ebfb034d500020004fd","article_id":"53d5025073d3b9990d0000e6","attachment":null,"autopublished":false,"body":"Gas
|
290
|
+
runs an average of $4.35 a gallon in the Aloha State.\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\n","client_only":false,"comment":null,"created_at":"2014-07-29T02:30:56Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53d5025073d3b9990d0000e6","external_url":"http://rssfeeds.usatoday.com/~/70272675/0/usatodaycommoney-topstories~States-with-the-highest-gas-prices/","external_url_source":"http://rssfeeds.usatoday.com/UsatodaycomMoney-TopStories","external_url_type":"basic","for_approval":false,"from_newscred":true,"group_ids":["539a92d8de6219571e0000e6","5372e1b1f79a9600020000b2","537d32a5e2359c0002000010","537d32a5e2359c0002000013","534f665f9460a71472000220"],"has_sent":false,"image_big_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53d5025573d3b9990d0000e7/large.jpg","image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53d5025573d3b9990d0000e7/small.jpg","image_url":"https://d3i4lqsaxjar6n.cloudfront.net/post_images/53d5025573d3b9990d0000e7/large.jpg","img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":"http://rssfeeds.usatoday.com/~/70272675/0/usatodaycommoney-topstories~States-with-the-highest-gas-prices/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/usa_today_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":true,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-07-29T02:30:56+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-07-29T02:30:59+00:00","published_post_cacheid":"53d70760c3b5a0e351000010","random":10006.121175946239,"rss_feed_url":"http://rssfeeds.usatoday.com/UsatodaycomMoney-TopStories","send_on_publish":false,"sent_newsletter_ids":[],"slug":"states-with-the-highest-gas-prices","suitability_score":0.0,"title":"States
|
291
|
+
with the highest gas prices","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-07-29T02:30:59Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_published_view":true,"is_newsletter_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53d70760c3b5a0e351000011","_slugs":["finding-high-probability-entry-levels-1"],"advisor_id":"534d9ebfb034d500020004fd","article_id":"53d4fce573d3b9990d000049","attachment":null,"autopublished":false,"body":"Picking
|
292
|
+
tops or bottoms is generally quite difficult as one often does not have clear
|
293
|
+
technical divergences that can give them enough conviction and discipline
|
294
|
+
to take a position. Oftentimes traders will convince themselves that a market
|
295
|
+
can\u2019t go any higher or lower and keep fighting the trend as they are
|
296
|
+
repeatedly stopped out.\r\n\r\nSuccessful trading or investing is dependent
|
297
|
+
on trying to put the odds in your favor and then having a clear exit strategy
|
298
|
+
for when you are wrong. The S&P 500 had several wide swings in 2012, which
|
299
|
+
made it a difficult year for many traders and investors. Buy and hold was
|
300
|
+
only possible for those who were totally oblivious to current events.\r\n\r\nDespite
|
301
|
+
the powerful performance of the stock market in 2013 there were several classic
|
302
|
+
corrections that allowed both traders and investors to buy. Clearly, 2014
|
303
|
+
has been even a more difficult year. To successfully trade retracements, you
|
304
|
+
need to have patience and there are several technical tools that can help
|
305
|
+
you identify in advance potential buying or selling zones.\r\n\r\nTypically,
|
306
|
+
when a retracement is ending, it will be a difficult time for the investor
|
307
|
+
or trader as the market momentum and the sentiment is at a level that causes
|
308
|
+
many to question their analysis making it more difficult to act.\r\n\r\nI
|
309
|
+
realized early in my career that most retracements take longer than one expects
|
310
|
+
as one must consider how long the prior rally or decline has lasted. For example,
|
311
|
+
if a rally last three or four months then a three-four week correction would
|
312
|
+
not be surprising. On the other hand, if the breakout rally last just three
|
313
|
+
weeks, a five- or six-day correction is often enough.","client_only":false,"comment":null,"created_at":"2014-07-29T02:30:56Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53d4fce573d3b9990d000049","external_url":"http://www.forbes.com/sites/tomaspray/2014/07/27/finding-high-probability-entry-levels-2/","external_url_source":"http://www.forbes.com/markets/feed","external_url_type":"basic","for_approval":false,"from_newscred":true,"group_ids":["539a92d8de6219571e0000e6","5372e1b1f79a9600020000b2","537d32a5e2359c0002000010","537d32a5e2359c0002000013","534f665f9460a71472000220"],"has_sent":false,"image_big_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53d4fcec73d3b9990d00004a/large.jpg","image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53d4fcec73d3b9990d00004a/small.jpg","image_url":"https://d3i4lqsaxjar6n.cloudfront.net/post_images/53d4fcec73d3b9990d00004a/large.jpg","img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_pre_approved":false,"is_proxy_needed":true,"is_published":true,"is_responsive":true,"link":"http://www.forbes.com/sites/tomaspray/2014/07/27/finding-high-probability-entry-levels-2/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/forbes_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":true,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-07-29T02:30:56+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-07-29T02:30:59+00:00","published_post_cacheid":"53d70760c3b5a0e351000011","random":10005.179409313329,"rss_feed_url":"http://www.forbes.com/markets/feed","send_on_publish":false,"sent_newsletter_ids":[],"slug":"finding-high-probability-entry-levels-1","suitability_score":0.0,"title":"Finding
|
314
|
+
High-Probability Entry Levels","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-07-29T02:30:59Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_published_view":true,"is_newsletter_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"},{"_id":"53d70760c3b5a0e351000012","_slugs":["frank-thomas-had-biggest-voice-against-steroids"],"advisor_id":"534d9ebfb034d500020004fd","article_id":"53d48279acd8652cef000276","attachment":null,"autopublished":false,"body":"Hall
|
315
|
+
of Fame inductee Frank Thomas was one of the leading voices against steroid
|
316
|
+
use in MLB.\n\n\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\n","client_only":false,"comment":null,"created_at":"2014-07-29T02:30:56Z","display_tag":null,"down_votes":0,"draft_post_id":null,"external_id":"53d48279acd8652cef000276","external_url":"http://rssfeeds.usatoday.com/~/70226837/0/usatodaycomsports-topstories~Frank-Thomas-had-biggest-voice-against-steroids/","external_url_source":"http://rssfeeds.usatoday.com/UsatodaycomSports-TopStories","external_url_type":"basic","for_approval":false,"from_newscred":true,"group_ids":["539a92d8de6219571e0000e6","5372e1b1f79a9600020000b2","537d32a5e2359c0002000010","537d32a5e2359c0002000013","534f665f9460a71472000220"],"has_sent":false,"image_big_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53d4827bacd8652cef000277/large.jpg","image_small_url":"//s3.amazonaws.com/s3-data.vestorly.com/post_images/53d4827bacd8652cef000277/small.jpg","image_url":"https://d3i4lqsaxjar6n.cloudfront.net/post_images/53d4827bacd8652cef000277/large.jpg","img":null,"img_changed":false,"img_compressed":false,"impressions_count":null,"is_added_to_newsletter":false,"is_clone":false,"is_curate":false,"is_draft":false,"is_featured":false,"is_pre_approved":false,"is_proxy_needed":false,"is_published":true,"is_responsive":true,"link":"http://rssfeeds.usatoday.com/~/70226837/0/usatodaycomsports-topstories~Frank-Thomas-had-biggest-voice-against-steroids/","logo_url":"//s3.amazonaws.com/assets-vestorly/logos/usa_today_logo.png","message_clicks":0,"message_sign_ups":0,"messages":0,"needs_sanitize":true,"newsletter_ids":[],"newsletter_sent_at":null,"number_of_views":0,"parent_post_id":null,"post_date":"2014-07-29T02:30:56+00:00","prospect_only":false,"publish_to_social":null,"published_at":"2014-07-29T02:31:00+00:00","published_post_cacheid":"53d70760c3b5a0e351000012","random":10004.605556583587,"rss_feed_url":"http://rssfeeds.usatoday.com/UsatodaycomSports-TopStories","send_on_publish":false,"sent_newsletter_ids":[],"slug":"frank-thomas-had-biggest-voice-against-steroids","suitability_score":0.0,"title":"Frank
|
317
|
+
Thomas had ''biggest voice against steroids''","topic":null,"topic_ids":[],"unpublished_at":null,"up_votes":0,"updated_at":"2014-07-29T02:31:00Z","video":null,"wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"webpage_image_id":null,"pre_approval_status":null,"summary":"","pdf_attachment_url":null,"attachment_url":null,"video_id":"","is_all_view":false,"is_published_view":true,"is_newsletter_view":false,"is_recommend_view":false,"proxy_url":"http://prxme-staging.herokuapp.com"}],"meta":{"message":"Returns
|
318
|
+
a set of social posts/articles associated with an advisor.","sort_order":"asc","sorted_by":"post_date","filter_by":"published","filter_by_group_id":"5372e1b1f79a9600020000b2","filter_by_newsletter_id":""}}'
|
319
|
+
http_version:
|
320
|
+
recorded_at: Thu, 18 Sep 2014 23:44:07 GMT
|
321
|
+
recorded_with: VCR 2.9.0
|
@@ -0,0 +1,48 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://vestorly-dev.herokuapp.com/api/v1/advisors/rodas/advisor_user_entries.json?filter_by=prospects&vestorly-auth=eyJwYXlsb2FkIjoiNGY2NTQyYzBjZmI0OTMwMDAxMDAwMDEzIiwiY3JlYXRlZF9vbiI6MTM5NjQ2MTg2MCwic2lnbmF0dXJlIjoiUzdYV1h6d2VaNk5vZWZialoxeGFrQmNlQjM0VktEb0s1bytRTGZOckZyST0ifQ
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 403
|
13
|
+
message: Forbidden
|
14
|
+
headers:
|
15
|
+
Server:
|
16
|
+
- Cowboy
|
17
|
+
Connection:
|
18
|
+
- close
|
19
|
+
Date:
|
20
|
+
- Thu, 18 Sep 2014 23:44:07 GMT
|
21
|
+
Status:
|
22
|
+
- 403 Forbidden
|
23
|
+
Access-Control-Expose-Headers:
|
24
|
+
- api_version
|
25
|
+
Api-Version:
|
26
|
+
- 1.0.0
|
27
|
+
Content-Type:
|
28
|
+
- text/html; charset=utf-8
|
29
|
+
X-Ua-Compatible:
|
30
|
+
- IE=Edge,chrome=1
|
31
|
+
Cache-Control:
|
32
|
+
- no-cache
|
33
|
+
X-Request-Id:
|
34
|
+
- f5488259-0a67-4ea5-a264-2c25b71d95f2
|
35
|
+
X-Runtime:
|
36
|
+
- '0.045761'
|
37
|
+
X-Rack-Cache:
|
38
|
+
- miss
|
39
|
+
Vary:
|
40
|
+
- Accept-Encoding
|
41
|
+
Via:
|
42
|
+
- 1.1 vegur
|
43
|
+
body:
|
44
|
+
encoding: UTF-8
|
45
|
+
string: " "
|
46
|
+
http_version:
|
47
|
+
recorded_at: Thu, 18 Sep 2014 23:44:06 GMT
|
48
|
+
recorded_with: VCR 2.9.0
|
@@ -0,0 +1,292 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://vestorly-dev.herokuapp.com/api/v1/advisors/rodas/advisor_user_entries.json?filter_by=prospects&vestorly-auth=eyJwYXlsb2FkIjoiNTM0ZDllYmZiMDM0ZDUwMDAyMDAwNGZkIiwiY3JlYXRlZF9vbiI6MTQxMTA3OTcxMywic2lnbmF0dXJlIjoiWTdxTmpjemZkelZDV2t4bEt6djVwWlZzand1eGx0NE1DREYwODNjR2FpQT0ifQ
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: OK
|
14
|
+
headers:
|
15
|
+
Server:
|
16
|
+
- Cowboy
|
17
|
+
Connection:
|
18
|
+
- close
|
19
|
+
Date:
|
20
|
+
- Thu, 18 Sep 2014 23:44:06 GMT
|
21
|
+
Status:
|
22
|
+
- 200 OK
|
23
|
+
Access-Control-Expose-Headers:
|
24
|
+
- api_version
|
25
|
+
Api-Version:
|
26
|
+
- 1.0.0
|
27
|
+
Access-Control-Allow-Origin:
|
28
|
+
- "*"
|
29
|
+
Access-Control-Max-Age:
|
30
|
+
- '1728000'
|
31
|
+
Access-Control-Allow-Methods:
|
32
|
+
- POST, GET, OPTIONS, PUT, DELETE
|
33
|
+
Access-Control-Allow-Headers:
|
34
|
+
- x-vestorly-auth, Origin, X-Requested-With, Content-Type, Accept, Authorization
|
35
|
+
Content-Type:
|
36
|
+
- application/json; charset=utf-8
|
37
|
+
X-Ua-Compatible:
|
38
|
+
- IE=Edge,chrome=1
|
39
|
+
Etag:
|
40
|
+
- '"cbe7edeecbcc5a6baea5b69193067b2d"'
|
41
|
+
Cache-Control:
|
42
|
+
- max-age=0, private, must-revalidate
|
43
|
+
X-Request-Id:
|
44
|
+
- 927dabb2-4fac-4623-9fb6-1285ddb37295
|
45
|
+
X-Runtime:
|
46
|
+
- '0.186291'
|
47
|
+
X-Rack-Cache:
|
48
|
+
- miss
|
49
|
+
Vary:
|
50
|
+
- Accept-Encoding
|
51
|
+
Via:
|
52
|
+
- 1.1 vegur
|
53
|
+
body:
|
54
|
+
encoding: UTF-8
|
55
|
+
string: '{"members":[{"_id":"53a4c1acfc4674b330000019","added_by":"","added_on":"2014-06-20T23:20:12+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"45-54","assets":0.0,"city":null,"client_id":"53a4c1acfc4674b330000018","created_at":"2014-06-20T23:20:12Z","education":"","email":"just@mehere.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":"\u00c7\u008b\u0090\u00e7\u008b\u00b8,
|
56
|
+
Bon Ami, Monica Dahl, Bon,","first_name":null,"from":null,"from_name":null,"gender":"","group_id":"5372e1b1f79a9600020000b2","has_advisor":false,"has_children":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
57
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"76472d1bace76f9c4ce4cb20dd2f9fe5318a124f9c00d4105f25b3a4e4263d94","invitations":0,"invited_by":"David
|
58
|
+
Rodas","invited_on":"2014-06-20","is_client":false,"is_hidden":false,"last_active_date":"2014-06-21T00:22:18+00:00","last_name":"manderin","last_pipl_date":"2014-06-27T02:25:43+00:00","last_rapleaf_date":"2014-06-27T02:25:43+00:00","last_raportive_date":"1994-08-04T02:23:49+00:00","last_reminded_on":null,"last_social_date":"2014-08-21T23:37:27+00:00","linkedin_id":null,"location":"Moscow,
|
59
|
+
Russian Federation","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":"Dario
|
60
|
+
Di Nolfo","newsletter_frequency":"weekly","notes":"","occupation":"","phone":"845-411-0001","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":3,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"63.247.171.62","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up":"Email","signed_up_with":"Not
|
61
|
+
yet","sorting_name":" manderin","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":"Brussels,
|
62
|
+
Luxembourg, \u00c9vian-les-Bains, Rome, Cologne, Le Palais","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:02Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","last_active":"3
|
63
|
+
months","allow_connected":true},{"_id":"538df59a0a41e70002000884","added_by":"","added_on":"2014-06-03T16:19:38+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"25-34","assets":null,"city":null,"client_id":null,"created_at":"2014-06-03T16:19:38Z","education":"","email":"am@am.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":"Another","from":null,"from_name":null,"gender":"Male","group_id":"5372e1b1f79a9600020000b2","has_advisor":false,"has_children":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
64
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"interests":null,"invitation_code":"294562b0acc28bd408b6777e2333f6d7f9b4be9e94db3588c1e9fca10220920d","invitations":0,"invited_by":"David
|
65
|
+
Rodas","invited_on":"2014-06-03","is_client":false,"is_hidden":false,"last_active_date":null,"last_name":"Am","last_pipl_date":"2014-06-27T02:21:59+00:00","last_rapleaf_date":"2014-06-27T02:21:59+00:00","last_raportive_date":"1994-08-04T02:23:51+00:00","last_reminded_on":null,"last_social_date":"2014-09-04T04:14:11+00:00","linkedin_id":null,"location":"","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":"Another
|
66
|
+
Am","newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":0,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":null,"reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up":null,"signed_up_with":null,"sorting_name":"another
|
67
|
+
am","sorting_portfolio_size":-1,"sorting_signup":3,"sourced_by_vestorly":false,"state":null,"tags":"I''ve
|
68
|
+
wanted to do this for a while now so ... Here it is! :D I really hope you
|
69
|
+
all enjoy it and if everything goes as planned you can expect another AM Top
|
70
|
+
An, AM Top 20 Anime Series of Winter 2014","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:02Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","last_active":"Not
|
71
|
+
yet","allow_connected":true},{"_id":"53a5669512998eb73800000e","added_by":"","added_on":"2014-06-21T11:03:49+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"25-34","assets":0.0,"city":null,"client_id":"53a5669512998eb73800000d","created_at":"2014-06-21T11:03:49Z","education":"","email":"tt@t.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":"Arthur","from":null,"from_name":null,"gender":"Male","group_id":null,"has_advisor":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"250k-300k","home_owner_status":"Rent","hometown":null,"household_income":"150k-175k","interest_change_portfolio":false,"interest_consultation":"Not
|
72
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"6153e2728e46d2f2c8b9b0ef1fa7eecaae6968dd3dacd2a0aade274945aa9560","invitations":0,"invited_by":"David
|
73
|
+
Rodas","invited_on":"2014-06-21","is_client":false,"is_hidden":false,"last_active_date":"2014-06-21T11:03:56+00:00","last_name":"Basdsd","last_pipl_date":"2014-07-27T03:49:23+00:00","last_rapleaf_date":"2014-07-27T03:49:24+00:00","last_raportive_date":"1994-08-04T02:23:49+00:00","last_reminded_on":null,"last_social_date":"2014-08-22T23:35:29+00:00","linkedin_id":null,"location":"23212,
|
74
|
+
Tkon, Croatia","marital_status":"Single","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":null,"newsletter_frequency":"weekly","notes":"","occupation":"","phone":"561-223-3467","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":2,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"172.254.15.167","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up_with":"Not
|
75
|
+
yet","sorting_name":"arthur basdsd","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":"tt","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-10T02:03:32Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"23212","signed_up":"Email","last_active":"3
|
76
|
+
months","allow_connected":true},{"_id":"5406a10189c041dbf4000004","added_by":"","added_on":"2014-09-03T05:02:57+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"","assets":0.0,"city":null,"client_id":"5406a10189c041dbf4000003","created_at":"2014-09-03T05:02:57Z","education":"","email":"async@enough.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":null,"from":null,"from_name":null,"gender":"","group_id":null,"has_advisor":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
77
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"1525c6be24d70b50237feaef00de72c66e464e9997c2a178bcfa60e9d495aa67","invitations":0,"invited_by":"David
|
78
|
+
Rodas","invited_on":"2014-09-03","is_client":false,"is_hidden":false,"last_active_date":"2014-09-03T05:03:03+00:00","last_name":null,"last_pipl_date":"1994-09-03T05:02:57+00:00","last_rapleaf_date":"1994-09-03T05:02:57+00:00","last_raportive_date":"1994-09-03T05:02:57+00:00","last_reminded_on":null,"last_social_date":"2014-09-03T05:02:57+00:00","linkedin_id":null,"location":"","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":null,"newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":1,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"207.38.133.75","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up_with":"Not
|
79
|
+
yet","sorting_name":"async@enough.com","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":null,"unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:02Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","signed_up":"Email","last_active":"16
|
80
|
+
days","allow_connected":true},{"_id":"53a9ec17ac9ed8280e000162","added_by":"","added_on":"2014-06-24T21:22:31+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"55-64","assets":0.0,"city":null,"client_id":"53a9ec17ac9ed8280e000161","created_at":"2014-06-24T21:22:31Z","education":"Attended
|
81
|
+
College","email":"roy@starprintingusa.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":"Craig
|
82
|
+
W Barker, David Alvin Barker, Cheryl Ann Barker, Carol M Barker","first_name":"bob","from":null,"from_name":null,"gender":"Male","group_id":"537d32a5e2359c0002000010","has_advisor":false,"has_children":false,"have_advisor":false,"high_net_worth":true,"home_market_value":"300k-350k","home_owner_status":"Own","hometown":null,"household_income":"100k-125k","interest_change_portfolio":false,"interest_consultation":"Not
|
83
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"1ac4a6f3a15a32b32690ee73f678b832df823ed83a81c6e2643a33165bcfa1df","invitations":0,"invited_by":"David
|
84
|
+
Rodas","invited_on":"2014-06-24","is_client":false,"is_hidden":false,"last_active_date":"2014-06-24T21:22:31+00:00","last_name":"barker","last_pipl_date":"2014-06-27T04:09:39+00:00","last_rapleaf_date":"2014-06-27T04:09:39+00:00","last_raportive_date":"1994-08-04T02:23:49+00:00","last_reminded_on":null,"last_social_date":"2014-08-25T23:36:57+00:00","linkedin_id":null,"location":"Lagrangeville,
|
85
|
+
NY 12540, USA","marital_status":"Married","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":"Bob
|
86
|
+
Barker","newsletter_frequency":"weekly","notes":"","occupation":"Executive/Upper
|
87
|
+
Management","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":1,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"24.46.48.169","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up":"Email","signed_up_with":"Not
|
88
|
+
yet","sorting_name":"bob barker","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":"roy","unsubscribed":true,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:03Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"12540","last_active":"3
|
89
|
+
months","allow_connected":true},{"_id":"53a9bfd534787a867f0000fa","added_by":"","added_on":"2014-06-24T18:13:41+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"25-34","assets":null,"city":null,"client_id":"53a9bfd534787a867f0000f9","created_at":"2014-06-24T18:13:41Z","education":"Attended
|
90
|
+
College","email":"weare@thefair.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":"Laura
|
91
|
+
Snorsky, Sarah Gilbert, Laura Sullivan, Courtney Deer","first_name":"brian","from":null,"from_name":null,"gender":"Male","group_id":"537d32a5e2359c0002000010","has_advisor":false,"has_children":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
92
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"c73c554f04a38ab8e31e449efe87db7345a64e9fef54446256ba1fdf780e49fd","invitations":0,"invited_by":null,"invited_on":"2014-06-24","is_client":false,"is_hidden":false,"last_active_date":null,"last_name":null,"last_pipl_date":"2014-06-27T04:09:34+00:00","last_rapleaf_date":"2014-06-27T04:09:34+00:00","last_raportive_date":"1994-08-04T02:23:49+00:00","last_reminded_on":null,"last_social_date":"2014-08-25T23:36:57+00:00","linkedin_id":null,"location":"Greater
|
93
|
+
Seattle","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":"Hillel
|
94
|
+
Cooperman","newsletter_frequency":"weekly","notes":"","occupation":"Executive/Upper
|
95
|
+
Management","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":1,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"63.247.171.62","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up":null,"signed_up_with":null,"sorting_name":"brian
|
96
|
+
","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":"User
|
97
|
+
Experience Design Leadership, Founder at Jackson Fish Market and Owner, consulting
|
98
|
+
offers, new ventures, job inquiries, expertise requests","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:02Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","last_active":"Not
|
99
|
+
yet","allow_connected":true},{"_id":"53b470e2f49f5e70fa0000c2","added_by":"","added_on":"2014-07-02T20:51:46+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"","assets":0.0,"city":null,"client_id":"53b470e2f49f5e70fa0000c1","created_at":"2014-07-02T20:51:46Z","education":"","email":"csadasdsad@asdasd.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":null,"from":null,"from_name":null,"gender":"","group_id":"537d32a5e2359c0002000010","has_advisor":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
100
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"2d1cd3310d15eb735b32e55c5a976971d1ad5ded3b8ce7d275f8de00b6ccf7ad","invitations":0,"invited_by":"David
|
101
|
+
Rodas","invited_on":"2014-07-02","is_client":false,"is_hidden":false,"last_active_date":"2014-09-03T02:34:22+00:00","last_name":null,"last_pipl_date":"2014-08-03T02:22:16+00:00","last_rapleaf_date":"2014-08-03T02:22:16+00:00","last_raportive_date":"1994-08-04T02:23:49+00:00","last_reminded_on":null,"last_social_date":"2014-09-03T04:19:04+00:00","linkedin_id":null,"location":"","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":null,"newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":10,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"63.247.171.62","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up_with":"Not
|
102
|
+
yet","sorting_name":"csadasdsad@asdasd.com","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":"kaana.
|
103
|
+
\u200f. @. listingay Jun 16. Eu tenho que aguentar esse cao todo dia, imagina
|
104
|
+
minha situacao RT. @. ohmyshyne_. : Fernanda nao existe. ~]SAD ... SD P SDADASCD]ASDCAS","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:02Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","signed_up":"Email","last_active":"16
|
105
|
+
days","allow_connected":true},{"_id":"539a92fede6219a8900000fe","added_by":"","added_on":"2014-06-13T05:58:22+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"35-44","assets":null,"city":null,"client_id":null,"created_at":"2014-06-13T05:58:22Z","education":"Attended
|
106
|
+
College","email":"ddreliv54@gmail.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":"Antero
|
107
|
+
Fernand Mancillas, Lydia V Rayas, Lydia J Rodas, Maria Paz Rodas Mendez","first_name":"David","from":null,"from_name":null,"gender":"Male","group_id":"539a92d8de6219571e0000e6","has_advisor":false,"has_children":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
108
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"interests":null,"invitation_code":"8fb5b11442978ade4edf887e4c0098bde9810d98b11f72fa8eb7f034f2f06d47","invitations":0,"invited_by":"David
|
109
|
+
Rodas","invited_on":"2014-06-13","is_client":false,"is_hidden":false,"last_active_date":null,"last_name":"Rodas","last_pipl_date":"2014-06-27T02:25:17+00:00","last_rapleaf_date":"2014-06-27T02:25:18+00:00","last_raportive_date":"1994-08-04T02:23:49+00:00","last_reminded_on":null,"last_social_date":"2014-08-22T23:35:29+00:00","linkedin_id":null,"location":"Ottawa,
|
110
|
+
Canada","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":"David
|
111
|
+
Rodas","newsletter_frequency":"weekly","notes":"","occupation":"White Collar
|
112
|
+
Worker","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":0,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":null,"reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up":null,"signed_up_with":null,"sorting_name":"david
|
113
|
+
rodas","sorting_portfolio_size":-1,"sorting_signup":3,"sourced_by_vestorly":false,"state":null,"tags":"new
|
114
|
+
ventures, job inquiries, expertise requests, business deals, reference requests,
|
115
|
+
University of Saskatchewan Alumni","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:02Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","last_active":"Not
|
116
|
+
yet","allow_connected":true},{"_id":"53a4b76a7a5ae8848a00000e","added_by":"","added_on":"2014-06-20T22:36:26+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"25-34","assets":0.0,"city":null,"client_id":"53a4b76a7a5ae8848a00000d","created_at":"2014-06-20T22:36:26Z","education":"Completed
|
117
|
+
Graduate School","email":"d@d.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":"Ddddd","from":null,"from_name":null,"gender":"Male","group_id":"5372e1b1f79a9600020000b2","has_advisor":false,"has_children":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"100k-150k","home_owner_status":"Own","hometown":null,"household_income":"125k-150k","interest_change_portfolio":false,"interest_consultation":"Not
|
118
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"cdbac8ce5ca7ee785142f578e386518ba1214e9ecba3b559965622792fe1cb7d","invitations":0,"invited_by":"David
|
119
|
+
Rodas","invited_on":"2014-06-20","is_client":false,"is_hidden":false,"last_active_date":"2014-06-20T22:36:26+00:00","last_name":"Sssss","last_pipl_date":"2014-06-27T02:22:02+00:00","last_rapleaf_date":"2014-06-27T02:22:02+00:00","last_raportive_date":"1994-08-04T02:23:51+00:00","last_reminded_on":null,"last_social_date":"2014-08-21T23:37:26+00:00","linkedin_id":null,"location":"Glasgow,
|
120
|
+
KY 42141, USA","marital_status":"Married","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":"Ddddd
|
121
|
+
Sssss","newsletter_frequency":"weekly","notes":"","occupation":"Professional","phone":"845-411-0001","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":1,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"63.247.171.62","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up":"Email","signed_up_with":"Not
|
122
|
+
yet","sorting_name":"ddddd sssss","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":"Canadian
|
123
|
+
... Canada (Home)","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:01Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"42141","last_active":"3
|
124
|
+
months","allow_connected":true},{"_id":"53ab064bb07948b8c6000026","added_by":"","added_on":"2014-06-25T17:26:35+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"55-64","assets":0.0,"city":null,"client_id":"53ab064bb07948b8c6000025","created_at":"2014-06-25T17:26:35Z","education":"","email":"delia@mccrazy.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":"deliase","from":null,"from_name":null,"gender":"Female","group_id":"537d32a5e2359c0002000010","has_advisor":false,"has_children":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
125
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"ac1f10a0826ebab922a3b65bfff5998c674cff2f00a9b171addefda7966800e1","invitations":0,"invited_by":"David
|
126
|
+
Rodas","invited_on":"2014-06-25","is_client":false,"is_hidden":false,"last_active_date":"2014-06-25T17:26:35+00:00","last_name":"mcCrazy","last_pipl_date":"2014-06-27T02:25:56+00:00","last_rapleaf_date":"2014-06-27T02:25:56+00:00","last_raportive_date":"1994-08-04T02:23:51+00:00","last_reminded_on":null,"last_social_date":"2014-08-26T23:39:39+00:00","linkedin_id":null,"location":"Ottawa,
|
127
|
+
ON, Canada","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":null,"newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":1,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"63.247.171.62","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up":"Email","signed_up_with":"Not
|
128
|
+
yet","sorting_name":"deliase mccrazy","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":"New
|
129
|
+
user Delia 55. Chat now!. Meet her. Add to Favorites or Profile P Photos Profile
|
130
|
+
P Profile. Wants to make new friends, Canada Interests","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-18T23:30:50Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","last_active":"3
|
131
|
+
months","allow_connected":true},{"_id":"54069d7ce47d92d4ac000003","added_by":"","added_on":"2014-09-03T04:47:56+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"","assets":0.0,"city":null,"client_id":"54069d7ce47d92d4ac000002","created_at":"2014-09-03T04:47:56Z","education":"","email":"dudehaha@gmail.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":null,"from":null,"from_name":null,"gender":"","group_id":null,"has_advisor":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
132
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"b4bc2ac045058f5eac7a32f3d04ddf73243079b61b260b4456d424d8fd77678c","invitations":0,"invited_by":"David
|
133
|
+
Rodas","invited_on":"2014-09-03","is_client":false,"is_hidden":false,"last_active_date":"2014-09-03T04:48:03+00:00","last_name":null,"last_pipl_date":"1994-09-03T04:47:56+00:00","last_rapleaf_date":"1994-09-03T04:47:56+00:00","last_raportive_date":"1994-09-03T04:47:56+00:00","last_reminded_on":null,"last_social_date":"2014-09-03T04:47:57+00:00","linkedin_id":null,"location":"","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":null,"newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":1,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"207.38.133.75","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up_with":"Not
|
134
|
+
yet","sorting_name":"dudehaha@gmail.com","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":null,"unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:01Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","signed_up":"Email","last_active":"16
|
135
|
+
days","allow_connected":true},{"_id":"53a4bf267a5ae882fd000013","added_by":"","added_on":"2014-06-20T23:09:26+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"25-34","assets":null,"city":null,"client_id":"53a4bf7d7a5ae8848a00001c","created_at":"2014-06-20T23:09:26Z","education":"","email":"macdue@gmail.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":"Dudeson","from":null,"from_name":null,"gender":"Male","group_id":"537d32a5e2359c0002000013","has_advisor":false,"has_children":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
136
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"interests":null,"invitation_code":"9921b51808931b3b87698ad339d8c133edaca0e43be3ddb27d307b5a83641289","invitations":0,"invited_by":"David
|
137
|
+
Rodas","invited_on":"2014-06-20","is_client":false,"is_hidden":false,"last_active_date":"2014-06-20T23:10:53+00:00","last_name":"McDude","last_pipl_date":"2014-06-27T02:25:13+00:00","last_rapleaf_date":"2014-06-27T02:25:13+00:00","last_raportive_date":"1994-08-04T02:23:51+00:00","last_reminded_on":null,"last_social_date":"2014-08-21T23:37:26+00:00","linkedin_id":null,"location":"Cairo,
|
138
|
+
Egypt","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":null,"newsletter_frequency":"weekly","notes":"","occupation":"","phone":"845-302-0001","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":1,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"63.247.171.62","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up":null,"signed_up_with":null,"sorting_name":"dudeson
|
139
|
+
mcdude","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":"macdue
|
140
|
+
male. - 31 years","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:02Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","last_active":"3
|
141
|
+
months","allow_connected":true},{"_id":"541233743d650e0e6f000008","added_by":"","added_on":"2014-09-11T23:42:44+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"","assets":0.0,"city":null,"client_id":"541233743d650e0e6f000007","created_at":"2014-09-11T23:42:44Z","education":"","email":"elbananero@gmail.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":null,"from":null,"from_name":null,"gender":"","group_id":null,"has_advisor":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
142
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"cb873ecf8486fbeb5e8b96a62056a364433c45d9975924ebd3e8c0e52ee6b05b","invitations":0,"invited_by":null,"invited_on":"2014-09-11","is_client":false,"is_hidden":false,"last_active_date":"2014-09-11T23:42:48+00:00","last_name":null,"last_pipl_date":"1994-09-11T23:42:44+00:00","last_rapleaf_date":"1994-09-11T23:42:44+00:00","last_raportive_date":"1994-09-11T23:42:44+00:00","last_reminded_on":null,"last_social_date":"2014-09-11T23:42:45+00:00","linkedin_id":null,"location":"","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":null,"newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":1,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"63.247.171.62","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up_with":"Not
|
143
|
+
yet","sorting_name":"elbananero@gmail.com","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":null,"unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-11T23:42:48Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","signed_up":"Email","last_active":"7
|
144
|
+
days","allow_connected":true},{"_id":"54174308818db4abba000002","added_by":"","added_on":"2014-09-15T19:50:32+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"","assets":0.0,"city":null,"client_id":"54174308818db4abba000001","created_at":"2014-09-15T19:50:32Z","education":"","email":"eldude@gmail.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":null,"from":null,"from_name":null,"gender":"","group_id":null,"has_advisor":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
145
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"4399814a8fbaa4ba54de96014fd348c7f21c493f981e4a23303d7e28630644c6","invitations":0,"invited_by":null,"invited_on":"2014-09-15","is_client":false,"is_hidden":false,"last_active_date":"2014-09-15T19:51:54+00:00","last_name":null,"last_pipl_date":"1994-09-15T19:50:32+00:00","last_rapleaf_date":"1994-09-15T19:50:32+00:00","last_raportive_date":"1994-09-15T19:50:32+00:00","last_reminded_on":null,"last_social_date":"2014-09-15T19:50:34+00:00","linkedin_id":null,"location":"","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":null,"newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"","portfolio_size":"Unknown","posts_read":2,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"63.247.171.62","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up_with":"Not
|
146
|
+
yet","sorting_name":"eldude@gmail.com","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":null,"unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-15T19:50:34Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","signed_up":"Email","last_active":"3
|
147
|
+
days","allow_connected":true},{"_id":"53ac3605b5eab98b110001fb","added_by":"","added_on":"2014-06-26T15:02:29+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"35-44","assets":0.0,"city":null,"client_id":"53ac3605b5eab98b110001fa","created_at":"2014-06-26T15:02:29Z","education":"Attended
|
148
|
+
College","email":"meow@gb.com","email_types":[],"estimated_location":"Brooklyn,
|
149
|
+
NY, US","estimated_zip":null,"facebook_id":null,"family":"Peggy Abraham, Yvonne
|
150
|
+
Gersdorf, Donald A Willis, Yaron Herman","first_name":"Gretchen","from":null,"from_name":null,"gender":"","group_id":"5372e1b1f79a9600020000b2","has_advisor":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
151
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"7e75aaed8ec3f54694585209716da13e021d717be1fbbbc19af25497f0aad600","invitations":0,"invited_by":"David
|
152
|
+
Rodas","invited_on":"2014-06-26","is_client":false,"is_hidden":false,"last_active_date":"2014-06-26T15:02:29+00:00","last_name":"Parlato","last_pipl_date":"2014-06-26T15:02:32+00:00","last_rapleaf_date":"2014-06-26T15:02:33+00:00","last_raportive_date":"1994-08-04T02:23:51+00:00","last_reminded_on":null,"last_social_date":"2014-08-27T23:36:35+00:00","linkedin_id":null,"location":"New
|
153
|
+
York, NY, US","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":"Gretchen
|
154
|
+
Parlato","newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":55,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"63.247.171.62","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up_with":"Not
|
155
|
+
yet","sorting_name":"gretchen parlato","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":"meow
|
156
|
+
Naomi Duvante Naomi Duvante. Female/United States","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-18T23:30:50Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","signed_up":"Email","last_active":"3
|
157
|
+
months","allow_connected":true},{"_id":"53ac23515df77e716f000004","added_by":"","added_on":"2014-06-26T13:42:41+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"","assets":0.0,"city":null,"client_id":"53ac23515df77e716f000003","created_at":"2014-06-26T13:42:41Z","education":"","email":"iahdkhaskjdhasd@asdasdasd.com","email_types":[],"estimated_location":"Brooklyn,
|
158
|
+
NY, US","estimated_zip":null,"facebook_id":null,"family":null,"first_name":null,"from":null,"from_name":null,"gender":"","group_id":null,"has_advisor":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
159
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"785aeff78f6928aeb7c355ef8bfaf0c51fdc3f560d1981ee82292e5a971b6cac","invitations":0,"invited_by":"David
|
160
|
+
Rodas","invited_on":"2014-06-26","is_client":false,"is_hidden":false,"last_active_date":"2014-06-26T13:42:41+00:00","last_name":null,"last_pipl_date":"2014-08-27T23:36:33+00:00","last_rapleaf_date":"2014-08-28T23:40:46+00:00","last_raportive_date":"1994-08-04T02:23:49+00:00","last_reminded_on":null,"last_social_date":"2014-08-27T23:36:33+00:00","linkedin_id":null,"location":"Brooklyn,
|
161
|
+
NY, US","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":null,"newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":3,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"63.247.171.62","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up_with":"Not
|
162
|
+
yet","sorting_name":"iahdkhaskjdhasd@asdasdasd.com","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":null,"unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-18T23:30:48Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","signed_up":"Email","last_active":"3
|
163
|
+
months","allow_connected":true},{"_id":"53b46fe5f49f5e70fa00006c","added_by":"","added_on":"2014-07-02T20:47:33+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"25-34","assets":0.0,"city":null,"client_id":"53b46fe5f49f5e70fa00006b","created_at":"2014-07-02T20:47:33Z","education":"","email":"asdkas@adasdasd.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":"Imma","from":null,"from_name":null,"gender":"","group_id":null,"has_advisor":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
164
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"11bebc3d401b92c4f03daa7406bdb5c1a680eaf2732737364f1b0297bc336f7f","invitations":0,"invited_by":"David
|
165
|
+
Rodas","invited_on":"2014-07-02","is_client":false,"is_hidden":false,"last_active_date":"2014-07-02T20:50:03+00:00","last_name":"Handz","last_pipl_date":"2014-07-02T20:47:35+00:00","last_rapleaf_date":"2014-07-02T20:47:35+00:00","last_raportive_date":"1994-08-04T02:23:51+00:00","last_reminded_on":null,"last_social_date":"2014-09-03T04:19:03+00:00","linkedin_id":null,"location":"Canada","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":"Imma
|
166
|
+
Handz","newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":3,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"63.247.171.62","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up_with":"Not
|
167
|
+
yet","sorting_name":"imma handz","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":"asdkas
|
168
|
+
male. - 30 years","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:01Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","signed_up":"Email","last_active":"3
|
169
|
+
months","allow_connected":true},{"_id":"5406a7dee47d92d4ac000007","added_by":"","added_on":"2014-09-03T05:32:14+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"","assets":0.0,"city":null,"client_id":"5406a7dee47d92d4ac000006","created_at":"2014-09-03T05:32:14Z","education":"","email":"ja@gmail.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":null,"from":null,"from_name":null,"gender":"","group_id":null,"has_advisor":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
170
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"6ed7513ba947d5543aa9b44f3dc8ca53c9e998b7882c930b0cb099c13e6285e5","invitations":0,"invited_by":"David
|
171
|
+
Rodas","invited_on":"2014-09-03","is_client":false,"is_hidden":false,"last_active_date":"2014-09-03T05:32:16+00:00","last_name":null,"last_pipl_date":"1994-09-03T05:32:14+00:00","last_rapleaf_date":"1994-09-03T05:32:14+00:00","last_raportive_date":"1994-09-03T05:32:14+00:00","last_reminded_on":null,"last_social_date":"2014-09-03T05:32:16+00:00","linkedin_id":null,"location":"","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":null,"newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":1,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"207.38.133.75","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up_with":"Not
|
172
|
+
yet","sorting_name":"ja@gmail.com","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":null,"unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:02Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","signed_up":"Email","last_active":"16
|
173
|
+
days","allow_connected":true},{"_id":"537d3cd555c4f90002000002","added_by":"","added_on":"2014-05-21T23:55:01+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"35-44","assets":0.0,"city":null,"client_id":null,"created_at":"2014-05-21T23:55:01Z","education":"Completed
|
174
|
+
Graduate School","email":"jane@doe.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":"Timothy
|
175
|
+
D Manzer","first_name":"Jane","from":null,"from_name":null,"gender":"Female","group_id":"537d32a5e2359c0002000013","has_advisor":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"300k-350k","home_owner_status":"","hometown":null,"household_income":"15k-25k","interest_change_portfolio":false,"interest_consultation":"Not
|
176
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"09c840caf2fa6d221572eeb8dc08257fcd911bf51ea0c0a386aff20efb3f2a03","invitations":0,"invited_by":"David
|
177
|
+
Rodas","invited_on":"2014-05-21","is_client":false,"is_hidden":false,"last_active_date":null,"last_name":"Doe","last_pipl_date":"2014-06-27T02:24:29+00:00","last_rapleaf_date":"2014-06-27T02:24:29+00:00","last_raportive_date":"1994-08-04T02:23:49+00:00","last_reminded_on":null,"last_social_date":"2014-08-23T23:34:36+00:00","linkedin_id":null,"location":"Tampa,
|
178
|
+
FL, US","marital_status":"Married","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":"Jane
|
179
|
+
Doe","newsletter_frequency":"weekly","notes":"","occupation":"","phone":"9544250971","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":0,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":null,"reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up_with":"Not
|
180
|
+
yet","sorting_name":"jane doe","sorting_portfolio_size":-1,"sorting_signup":3,"sourced_by_vestorly":false,"state":null,"tags":"This
|
181
|
+
is my OLD list, there were account problems. Please search for Michelle Michaels-C
|
182
|
+
layton or go to this link: www.amazon .com/o/reg istry/1PSS VH2GU36WC, \"Oh
|
183
|
+
my gosh, you found me!\"","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:02Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","signed_up":"Not
|
184
|
+
yet","last_active":"Not yet","allow_connected":true},{"_id":"540692a9cad0397afd000009","added_by":"","added_on":"2014-09-03T04:01:45+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"25-34","assets":0.0,"city":null,"client_id":"540692a9cad0397afd000008","created_at":"2014-09-03T04:01:45Z","education":"Completed
|
185
|
+
High School","email":"wow@gmail.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":"Jaypee","from":null,"from_name":null,"gender":"Male","group_id":null,"has_advisor":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
186
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"6b49e0fcf1328e208b843f4cf01e38ffb884e108db6d2c3e13c80a834e64521d","invitations":0,"invited_by":"David
|
187
|
+
Rodas","invited_on":"2014-09-03","is_client":false,"is_hidden":false,"last_active_date":"2014-09-03T04:01:48+00:00","last_name":"Habaradas","last_pipl_date":"2014-09-03T04:13:17+00:00","last_rapleaf_date":"2014-09-03T04:13:18+00:00","last_raportive_date":"1994-09-03T04:01:45+00:00","last_reminded_on":null,"last_social_date":"2014-09-03T04:01:45+00:00","linkedin_id":null,"location":"CA,
|
188
|
+
US","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":"Jaypee
|
189
|
+
Habaradas","newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":1,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"207.38.133.75","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up_with":"Not
|
190
|
+
yet","sorting_name":"jaypee habaradas","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":"But
|
191
|
+
when Obama gets caught peddling it, as he did today in the Times with a document
|
192
|
+
... Posted By: wow@gmail.com ... 2007 at 11:15 AM. REPORT ABUSE","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:02Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","signed_up":"Email","last_active":"16
|
193
|
+
days","allow_connected":true},{"_id":"537d3cd555c4f90002000001","added_by":"","added_on":"2014-05-21T23:55:01+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"25-34","assets":0.0,"city":null,"client_id":"53a9a1a25a47edcc680000cd","created_at":"2014-05-21T23:55:01Z","education":"Completed
|
194
|
+
High School","email":"john@doe.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":"Lacey
|
195
|
+
L, Jerry Johnson, Kara Johnson","first_name":"John","from":null,"from_name":null,"gender":"Male","group_id":"537d32a5e2359c0002000010","has_advisor":false,"have_advisor":false,"high_net_worth":true,"home_market_value":"200k-250k","home_owner_status":"Own","hometown":null,"household_income":"100k-125k","interest_change_portfolio":false,"interest_consultation":"Not
|
196
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"ec59050f13a9dd7e90f1d7d83e27cdd37e3147f0b90adb8352d4eb8e8dd10fb9","invitations":0,"invited_by":"David
|
197
|
+
Rodas","invited_on":"2014-05-21","is_client":false,"is_hidden":false,"last_active_date":"2014-06-24T16:04:57+00:00","last_name":"Doe","last_pipl_date":"2014-06-27T02:22:14+00:00","last_rapleaf_date":"2014-06-27T02:22:14+00:00","last_raportive_date":"1994-08-04T02:23:49+00:00","last_reminded_on":null,"last_social_date":"2014-08-23T23:34:36+00:00","linkedin_id":null,"location":"Beverly
|
198
|
+
Hills, CA, US","marital_status":"Married","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":"John
|
199
|
+
Doe","newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":2,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"63.247.171.62","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up_with":"Not
|
200
|
+
yet","sorting_name":"john doe","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":null,"unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:02Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","signed_up":"Email","last_active":"3
|
201
|
+
months","allow_connected":true},{"_id":"53a9fd3f5f5ba40e310000b8","added_by":"","added_on":"2014-06-24T22:35:43+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"45-54","assets":null,"city":null,"client_id":"53a9fd3f5f5ba40e310000b7","created_at":"2014-06-24T22:35:43Z","education":"","email":"asdasdasdsad@asdcasdas.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":"johnnnyyyy","from":null,"from_name":null,"gender":"","group_id":"5372e1b1f79a9600020000b2","has_advisor":false,"has_children":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
202
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"08f116998f7fe796065e51cff093f727fe7596fb50f82431b2ed01a97abf37db","invitations":0,"invited_by":null,"invited_on":"2014-06-24","is_client":false,"is_hidden":false,"last_active_date":null,"last_name":"okay","last_pipl_date":"2014-06-27T02:24:52+00:00","last_rapleaf_date":"2014-06-27T02:24:52+00:00","last_raportive_date":"1994-08-04T02:23:49+00:00","last_reminded_on":null,"last_social_date":"2014-08-25T23:36:57+00:00","linkedin_id":null,"location":"London,
|
203
|
+
Great Britain","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":null,"newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":3,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"63.247.171.62","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up_with":null,"sorting_name":"johnnnyyyy
|
204
|
+
okay","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":"asdasdasdsad
|
205
|
+
46","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:01Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","signed_up":"Email","last_active":"Not
|
206
|
+
yet","allow_connected":true},{"_id":"53ac2ee15df77effe100013b","added_by":"","added_on":"2014-06-26T14:32:01+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"25-34","assets":0.0,"city":null,"client_id":"53ac2ee15df77effe100013a","created_at":"2014-06-26T14:32:01Z","education":"","email":"shut@it.com","email_types":[],"estimated_location":"Brooklyn,
|
207
|
+
NY, US","estimated_zip":null,"facebook_id":null,"family":"Yuichi Tsunematsu","first_name":"Juan","from":null,"from_name":null,"gender":"Male","group_id":"5372e1b1f79a9600020000b2","has_advisor":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
208
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"73ca97d23cb139a5b8ddab47129942c470af3f0795b205f69e2bbf513a4d26d9","invitations":0,"invited_by":"David
|
209
|
+
Rodas","invited_on":"2014-06-26","is_client":false,"is_hidden":false,"last_active_date":"2014-06-26T14:32:02+00:00","last_name":"Jimenez","last_pipl_date":"2014-06-27T02:24:50+00:00","last_rapleaf_date":"2014-06-26T14:32:05+00:00","last_raportive_date":"1994-08-04T02:23:49+00:00","last_reminded_on":null,"last_social_date":"2014-08-27T23:36:35+00:00","linkedin_id":null,"location":"Alfred
|
210
|
+
Station, NY, US","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":"Juan
|
211
|
+
Jimenez","newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":1,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"198.228.207.157","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up_with":"Not
|
212
|
+
yet","sorting_name":"juan jimenez","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":"I
|
213
|
+
WAS 6ORN IN KING^STON, JAMAIC^A. G^R3W UP IN C^OMPTON, C^A. I JUST MOV3D TO
|
214
|
+
HOUSTON FROM N3W ORL3ANS. ALOT OF DUM6 P3OPL3 SAY I LOOK LIK3 LLOYD I AM A
|
215
|
+
STUD. I''M MIX3D WITH JAMAIC^AN 6LAC^C^ AND. shut--up--biish","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-18T23:30:51Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","signed_up":"Email","last_active":"3
|
216
|
+
months","allow_connected":true},{"_id":"540dc31303284537fa000005","added_by":"","added_on":"2014-09-08T14:54:11+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"","assets":0.0,"city":null,"client_id":"540dc31203284537fa000004","created_at":"2014-09-08T14:54:11Z","education":"","email":"lecreppe@gmail.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":null,"from":null,"from_name":null,"gender":"","group_id":null,"has_advisor":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
217
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"760fe831a1eed7cfcf7134f0d3f77f6961820cbe1d78d819b2b8f86454ca254b","invitations":0,"invited_by":"David
|
218
|
+
Rodas","invited_on":"2014-09-08","is_client":false,"is_hidden":false,"last_active_date":"2014-09-08T14:54:12+00:00","last_name":null,"last_pipl_date":"1994-09-08T14:54:11+00:00","last_rapleaf_date":"1994-09-08T14:54:11+00:00","last_raportive_date":"1994-09-08T14:54:11+00:00","last_reminded_on":null,"last_social_date":"2014-09-08T14:54:11+00:00","linkedin_id":null,"location":"","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":null,"newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":1,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"63.247.171.62","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up_with":"Not
|
219
|
+
yet","sorting_name":"lecreppe@gmail.com","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":null,"unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-08T14:54:11Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","signed_up":"Email","last_active":"10
|
220
|
+
days","allow_connected":true},{"_id":"53a4c1027a5ae84cc5000017","added_by":"","added_on":"2014-06-20T23:17:22+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"18-20","assets":null,"city":null,"client_id":null,"created_at":"2014-06-20T23:17:22Z","education":"","email":"kombucha@gmail.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":"MacChild","from":null,"from_name":null,"gender":"","group_id":"537d32a5e2359c0002000010","has_advisor":false,"has_children":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
221
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"interests":null,"invitation_code":"85a162d8364fa90523d19d8aad61b40ae1e4fd78a94af42c272f99051fb289af","invitations":0,"invited_by":"David
|
222
|
+
Rodas","invited_on":"2014-06-20","is_client":false,"is_hidden":false,"last_active_date":null,"last_name":"Kombucha","last_pipl_date":"2014-06-27T02:25:20+00:00","last_rapleaf_date":"2014-06-27T02:25:20+00:00","last_raportive_date":"1994-08-04T02:23:49+00:00","last_reminded_on":null,"last_social_date":"2014-08-22T23:35:29+00:00","linkedin_id":null,"location":"Norfolk,
|
223
|
+
VA, US","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":"MacChild
|
224
|
+
Kombucha","newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":0,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":null,"reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up":null,"signed_up_with":null,"sorting_name":"macchild
|
225
|
+
kombucha","sorting_portfolio_size":-1,"sorting_signup":3,"sourced_by_vestorly":false,"state":null,"tags":"Discuss
|
226
|
+
the topic \"Question about Sin City.\" in the General Banter Official Forums
|
227
|
+
... I urge you to email me at kombucha@gmail.com. Thanks, and I''m glad to
|
228
|
+
see there is","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:02Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","last_active":"Not
|
229
|
+
yet","allow_connected":true},{"_id":"53a9fc675f5ba40e310000ad","added_by":"","added_on":"2014-06-24T22:32:07+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"35-44","assets":0.0,"city":null,"client_id":"53a9fc675f5ba40e310000ac","created_at":"2014-06-24T22:32:07Z","education":"","email":"mirlonco@gmail.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":"Miguel
|
230
|
+
Hernandez, Gaby Castillo, Lorena Enriquez, Carlos Sandoval","first_name":"Miracuru","from":null,"from_name":null,"gender":"","group_id":"537d32a5e2359c0002000010","has_advisor":false,"has_children":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
231
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"aee066a05420891e0bb7012b6926d143bc010dd9b20324bf40e98585eae15ea7","invitations":0,"invited_by":"David
|
232
|
+
Rodas","invited_on":"2014-06-24","is_client":false,"is_hidden":false,"last_active_date":"2014-06-24T22:32:09+00:00","last_name":"McMakerMan","last_pipl_date":"2014-06-27T02:24:53+00:00","last_rapleaf_date":"2014-06-27T02:24:53+00:00","last_raportive_date":"1994-08-04T02:23:49+00:00","last_reminded_on":null,"last_social_date":"2014-08-25T23:36:57+00:00","linkedin_id":null,"location":"Guatemala,
|
233
|
+
Guatemala","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":"Lorena
|
234
|
+
Enriquez","newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":1,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"190.56.253.45","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up":"Email","signed_up_with":"Not
|
235
|
+
yet","sorting_name":"miracuru mcmakerman","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":"Mirna
|
236
|
+
Lorena Enri","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:01Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","last_active":"3
|
237
|
+
months","allow_connected":true},{"_id":"53ac2654b5eab950b3000007","added_by":"","added_on":"2014-06-26T13:55:32+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"21-24","assets":0.0,"city":null,"client_id":"53ac2654b5eab950b3000006","created_at":"2014-06-26T13:55:32Z","education":"","email":"meowmeowmeow@gmeow.com","email_types":[],"estimated_location":"Brooklyn,
|
238
|
+
NY, US","estimated_zip":null,"facebook_id":null,"family":"Paski Gutierrez","first_name":"Mooooo","from":null,"from_name":null,"gender":"","group_id":"537d32a5e2359c0002000010","has_advisor":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
239
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"75ed7516ae38820bb1af9d6f87e18b9112179701742631cba9263e2557d6eb9d","invitations":0,"invited_by":"David
|
240
|
+
Rodas","invited_on":"2014-06-26","is_client":false,"is_hidden":false,"last_active_date":"2014-06-26T13:55:32+00:00","last_name":"Moooooo","last_pipl_date":"2014-06-26T13:55:35+00:00","last_rapleaf_date":"2014-06-26T13:55:35+00:00","last_raportive_date":"1994-08-04T02:23:49+00:00","last_reminded_on":null,"last_social_date":"2014-08-27T23:36:35+00:00","linkedin_id":null,"location":"New
|
241
|
+
York, NY, US","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":"Mooooo
|
242
|
+
Moooooo","newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":49,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"63.247.171.62","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up_with":"Not
|
243
|
+
yet","sorting_name":"mooooo moooooo","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":"meowmeowmeow
|
244
|
+
female. - 26 years, Hanoi","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-18T23:30:50Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","signed_up":"Email","last_active":"3
|
245
|
+
months","allow_connected":true},{"_id":"53a9a5f7ab270868ed0000fd","added_by":"","added_on":"2014-06-24T16:23:19+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"","assets":0.0,"city":null,"client_id":"53a9a5f7ab270868ed0000fc","created_at":"2014-06-24T16:23:19Z","education":"","email":"pagani@zonda.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":"Pagani","from":null,"from_name":null,"gender":"","group_id":"539a92d8de6219571e0000e6","has_advisor":false,"has_children":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
246
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"011b7ecd89d7be90d9344b099bd5136264f259da0858355d89520028a04c000a","invitations":0,"invited_by":"David
|
247
|
+
Rodas","invited_on":"2014-06-24","is_client":false,"is_hidden":false,"last_active_date":"2014-06-24T16:23:19+00:00","last_name":"Zonda","last_pipl_date":"2014-06-27T02:25:51+00:00","last_rapleaf_date":"2014-06-27T02:25:51+00:00","last_raportive_date":"1994-08-04T02:23:49+00:00","last_reminded_on":null,"last_social_date":"2014-08-25T23:36:57+00:00","linkedin_id":null,"location":"","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":"Pagani
|
248
|
+
Zonda","newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":1,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"63.247.171.62","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up":"Email","signed_up_with":"Not
|
249
|
+
yet","sorting_name":"pagani zonda","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":"pagani
|
250
|
+
zonda jpg, Source worldcarfans edmunds","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:02Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","last_active":"3
|
251
|
+
months","allow_connected":true},{"_id":"53a8b2710b0760db0600025e","added_by":"","added_on":"2014-06-23T23:04:17+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"","assets":0.0,"city":null,"client_id":"53a8b2710b0760db0600025d","created_at":"2014-06-23T23:04:17Z","education":"","email":"renaldomcdaniels@mcafelatte.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":"renaldo","from":null,"from_name":null,"gender":"Male","group_id":null,"has_advisor":false,"has_children":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
252
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"619f0e992c991bb108ff32aa64f3e950cbada71ac69ba3bcb748e4450691a1f3","invitations":0,"invited_by":"David
|
253
|
+
Rodas","invited_on":"2014-06-23","is_client":false,"is_hidden":false,"last_active_date":"2014-06-23T23:04:17+00:00","last_name":"McDaniels","last_pipl_date":"2014-06-27T02:25:44+00:00","last_rapleaf_date":"2014-06-27T02:25:44+00:00","last_raportive_date":"1994-08-04T02:23:49+00:00","last_reminded_on":null,"last_social_date":"2014-08-24T23:35:32+00:00","linkedin_id":null,"location":"","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":"Renaldo
|
254
|
+
Mcdaniels","newsletter_frequency":"weekly","notes":"","occupation":"","phone":"845-411-0001","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":1,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"63.247.171.62","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up":"Email","signed_up_with":"Not
|
255
|
+
yet","sorting_name":"renaldo mcdaniels","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":"1
|
256
|
+
Newspapers","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:01Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","last_active":"3
|
257
|
+
months","allow_connected":true},{"_id":"54069c9ce47d928670000002","added_by":"","added_on":"2014-09-03T04:44:12+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"","assets":0.0,"city":null,"client_id":"54069c9ce47d928670000001","created_at":"2014-09-03T04:44:12Z","education":"","email":"shaoling@gmail.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":null,"from":null,"from_name":null,"gender":"","group_id":null,"has_advisor":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
258
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"555a953de62f9d1f81779fa128a120a04b8f1648a8d0b690cb28efa6b31ab8d5","invitations":0,"invited_by":"David
|
259
|
+
Rodas","invited_on":"2014-09-03","is_client":false,"is_hidden":false,"last_active_date":"2014-09-03T04:44:13+00:00","last_name":null,"last_pipl_date":"1994-09-03T04:44:12+00:00","last_rapleaf_date":"1994-09-03T04:44:12+00:00","last_raportive_date":"1994-09-03T04:44:12+00:00","last_reminded_on":null,"last_social_date":"2014-09-03T04:44:13+00:00","linkedin_id":null,"location":"","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":null,"newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":1,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"207.38.133.75","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up_with":"Not
|
260
|
+
yet","sorting_name":"shaoling@gmail.com","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":null,"unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:01Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","signed_up":"Email","last_active":"16
|
261
|
+
days","allow_connected":true},{"_id":"53a8b189030ab7f596001e24","added_by":"","added_on":"2014-06-23T23:00:25+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"35-44","assets":0.0,"city":null,"client_id":"53a9ed07418ecc5e7d0001da","created_at":"2014-06-23T23:00:25Z","education":"Attended
|
262
|
+
College","email":"tony@fisher.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":"tony","from":null,"from_name":null,"gender":"Male","group_id":null,"has_advisor":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
263
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"88e325290d2f9e2293a4862f3328fc5d0665188fdb4cee898a8d9bfa45642ffd","invitations":0,"invited_by":"william","invited_on":"2014-06-23","is_client":false,"is_hidden":false,"last_active_date":"2014-06-24T21:27:55+00:00","last_name":"fisher","last_pipl_date":"2014-06-27T02:25:08+00:00","last_rapleaf_date":"2014-06-27T02:25:09+00:00","last_raportive_date":"1994-08-04T02:23:49+00:00","last_reminded_on":null,"last_social_date":"2014-08-24T23:35:32+00:00","linkedin_id":null,"location":"Las
|
264
|
+
Vegas, NV, US","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":"tony
|
265
|
+
fisher","newsletter_frequency":"weekly","notes":"","occupation":"Middle Management","phone":"5852009213","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":3,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"63.247.171.62","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up_with":"Not
|
266
|
+
yet","sorting_name":"tony fisher","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":"comme\u00c7a
|
267
|
+
Las Vegas at Cosmopolitan Las Vegas, career opportunities, consulting offers,
|
268
|
+
new ventures, job inquiries, expertise requests","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-18T23:30:48Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","signed_up":"Email","last_active":"3
|
269
|
+
months","allow_connected":true},{"_id":"5411f3c35a54e14d88000002","added_by":"","added_on":"2014-09-11T19:10:59+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"","assets":0.0,"city":null,"client_id":"5411f3c35a54e14d88000001","created_at":"2014-09-11T19:10:59Z","education":"","email":"what@dude.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":null,"from":null,"from_name":null,"gender":"","group_id":null,"has_advisor":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
270
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"bf2037294d2ab4ca10e23d311686d37121733c24a32fbde40507cc77cd6d038e","invitations":0,"invited_by":null,"invited_on":"2014-09-11","is_client":false,"is_hidden":false,"last_active_date":"2014-09-11T19:11:12+00:00","last_name":null,"last_pipl_date":"1994-09-11T19:10:59+00:00","last_rapleaf_date":"1994-09-11T19:10:59+00:00","last_raportive_date":"1994-09-11T19:10:59+00:00","last_reminded_on":null,"last_social_date":"2014-09-11T19:11:00+00:00","linkedin_id":null,"location":"","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":null,"newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":3,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"63.247.171.62","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up_with":"Not
|
271
|
+
yet","sorting_name":"what@dude.com","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":null,"unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-11T19:11:01Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","signed_up":"Email","last_active":"7
|
272
|
+
days","allow_connected":true},{"_id":"53a9a1d3ab2708df4c0000dd","added_by":"","added_on":"2014-06-24T16:05:39+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"21-24","assets":null,"city":null,"client_id":"53a9a1d3ab2708df4c0000dc","created_at":"2014-06-24T16:05:39Z","education":"","email":"william@tell.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":"Kelly
|
273
|
+
G, Hollie Harris, Abigail Noble, Mark Doss","first_name":"william","from":null,"from_name":null,"gender":"Male","group_id":"534f665f9460a71472000220","has_advisor":false,"has_children":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
274
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"99929d8c8d3de635075d5cfaceba1fba96090818c715661709ee8222443cb7e5","invitations":0,"invited_by":"John
|
275
|
+
Doe","invited_on":"2014-06-24","is_client":false,"is_hidden":false,"last_active_date":null,"last_name":null,"last_pipl_date":"2014-06-27T02:25:47+00:00","last_rapleaf_date":"2014-06-27T02:25:47+00:00","last_raportive_date":"1994-08-04T02:23:49+00:00","last_reminded_on":null,"last_social_date":"2014-08-25T23:36:57+00:00","linkedin_id":null,"location":"Toronto,
|
276
|
+
Canada","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":"William
|
277
|
+
Kazan","newsletter_frequency":"weekly","notes":"","occupation":"Technology","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":20,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"63.247.171.62","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up_with":null,"sorting_name":"william
|
278
|
+
","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":"career
|
279
|
+
opportunities, consulting offers, new ventures, job inquiries, expertise requests,
|
280
|
+
business deals","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:01Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","signed_up":"Email","last_active":"Not
|
281
|
+
yet","allow_connected":true},{"_id":"53a9b5ecb0dca276d4000090","added_by":"","added_on":"2014-06-24T17:31:24+00:00","address":null,"advisor_id":"534d9ebfb034d500020004fd","age":"","assets":0.0,"city":null,"client_id":"53a9b5ecb0dca276d400008f","created_at":"2014-06-24T17:31:24Z","education":"","email":"yerba@mate.com","email_types":[],"estimated_location":null,"estimated_zip":null,"facebook_id":null,"family":null,"first_name":"Yerba","from":null,"from_name":null,"gender":"","group_id":"534f665f9460a71472000220","has_advisor":false,"has_children":false,"have_advisor":false,"high_net_worth":false,"home_market_value":"","home_owner_status":"","hometown":null,"household_income":"","interest_change_portfolio":false,"interest_consultation":"Not
|
282
|
+
Yet","interest_in_new_advisor":false,"interest_want_to_learn_more":false,"invitation_code":"03359a2b85e7fb52ce513adf8b473acabced6141004783025a98c6fc99feaf17","invitations":0,"invited_by":"David
|
283
|
+
Rodas","invited_on":"2014-06-24","is_client":false,"is_hidden":false,"last_active_date":"2014-06-24T17:31:25+00:00","last_name":"Mate","last_pipl_date":"2014-06-27T04:09:31+00:00","last_rapleaf_date":"2014-06-27T04:09:31+00:00","last_raportive_date":"1994-08-04T02:23:49+00:00","last_reminded_on":null,"last_social_date":"2014-08-25T23:36:57+00:00","linkedin_id":null,"location":"","marital_status":"","message":null,"message_clicks":0,"message_sign_ups":0,"messages":0,"name":"Yerba
|
284
|
+
Mate","newsletter_frequency":"weekly","notes":"","occupation":"","phone":"","picture_url":"http://2.bp.blogspot.com/_RpcIOuO_GfM/TOpspLqg4GI/AAAAAAAAAD8/EPc7taPLg58/s1600/protos.gif","portfolio_size":"Unknown","posts_read":1,"raportive_retry_count":-1,"redtail_contact_id":0,"register_ip_addr":"63.247.171.62","reminder_unsubscribed":false,"salesforce_account_id":null,"salesforce_contact_id":null,"salesforce_lead_id":null,"shares":0,"signed_up":"Email","signed_up_with":"Not
|
285
|
+
yet","sorting_name":"yerba mate","sorting_portfolio_size":-1,"sorting_signup":0,"sourced_by_vestorly":false,"state":null,"tags":"112326777679756174621
|
286
|
+
(Natura i Zdrowie), Yerba Mate Natura i Zdrowie.png","unsubscribed":false,"unsubscribed_date":null,"updated_at":"2014-09-05T03:46:02Z","user_type":"AdvisorProspect","wall_post_clicks":0,"wall_post_sign_ups":0,"wall_posts":0,"was_advisor_user":false,"working":false,"zip":"","last_active":"3
|
287
|
+
months","allow_connected":true}],"meta":{"members_count":-1,"sort_order":"asc","sorted_by":["sorting_name"],"filter_by":".by_user_type(AdvisorUserEntry::PROSPECT)","message":"Returns
|
288
|
+
a set of members sorted in ''asc'' order. Sorted by [:sorting_name]. Filtered
|
289
|
+
by ''.by_user_type(AdvisorUserEntry::PROSPECT)''."}}'
|
290
|
+
http_version:
|
291
|
+
recorded_at: Thu, 18 Sep 2014 23:44:05 GMT
|
292
|
+
recorded_with: VCR 2.9.0
|