desk_api 0.6.1 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE.txt +1 -1
- data/README.md +26 -8
- data/lib/desk.rb +1 -1
- data/lib/desk_api.rb +2 -3
- data/lib/desk_api/client.rb +6 -6
- data/lib/desk_api/configuration.rb +5 -2
- data/lib/desk_api/default.rb +2 -2
- data/lib/desk_api/error.rb +2 -2
- data/lib/desk_api/error/bad_gateway.rb +1 -1
- data/lib/desk_api/error/bad_request.rb +1 -1
- data/lib/desk_api/error/client_error.rb +1 -1
- data/lib/desk_api/error/configuration_error.rb +1 -1
- data/lib/desk_api/error/conflict.rb +1 -1
- data/lib/desk_api/error/follow_redirect_error.rb +1 -1
- data/lib/desk_api/error/forbidden.rb +1 -1
- data/lib/desk_api/error/gateway_timeout.rb +1 -1
- data/lib/desk_api/error/internal_server_error.rb +1 -1
- data/lib/desk_api/error/method_not_allowed.rb +1 -1
- data/lib/desk_api/error/not_acceptable.rb +1 -1
- data/lib/desk_api/error/not_found.rb +1 -1
- data/lib/desk_api/error/parser_error.rb +1 -1
- data/lib/desk_api/error/server_error.rb +1 -1
- data/lib/desk_api/error/service_unavailable.rb +1 -1
- data/lib/desk_api/error/too_many_requests.rb +1 -1
- data/lib/desk_api/error/unauthorized.rb +1 -1
- data/lib/desk_api/error/unprocessable_entity.rb +1 -1
- data/lib/desk_api/error/unsupported_media_type.rb +1 -1
- data/lib/desk_api/rate_limit.rb +2 -2
- data/lib/desk_api/request/encode_dates.rb +73 -0
- data/lib/desk_api/request/encode_json.rb +2 -2
- data/lib/desk_api/request/oauth.rb +2 -2
- data/lib/desk_api/request/retry.rb +4 -3
- data/lib/desk_api/resource.rb +22 -194
- data/lib/desk_api/resource/download.rb +57 -0
- data/lib/desk_api/resource/pagination.rb +77 -0
- data/lib/desk_api/resource/query_params.rb +106 -0
- data/lib/desk_api/resource/scrud.rb +145 -0
- data/lib/desk_api/response/follow_redirects.rb +2 -2
- data/lib/desk_api/response/parse_dates.rb +2 -2
- data/lib/desk_api/response/parse_json.rb +2 -2
- data/lib/desk_api/response/raise_error.rb +2 -2
- data/lib/desk_api/version.rb +2 -2
- data/spec/cassettes/DeskApi_Resource/_next_/returns_nil_on_non-page_resources.yml +207 -0
- data/spec/cassettes/DeskApi_Resource/_next_/throws_an_error_on_non-page_resources.yml +207 -0
- data/spec/cassettes/DeskApi_Resource_Download/downloads_the_attachment.yml +238 -0
- data/spec/cassettes/DeskApi_Resource_Download/throws_an_error_on_non_attachment_resources.yml +47 -0
- data/spec/cassettes/DeskApi_Resource_Pagination/_all/iterates_over_each_resource_on_each_page.yml +13538 -0
- data/spec/cassettes/DeskApi_Resource_Pagination/_each_page/iterates_over_each_page.yml +13538 -0
- data/spec/cassettes/DeskApi_Resource_Pagination/_each_page/raises_NoMethodError_is_called_on_non-page_resources.yml +2093 -0
- data/spec/cassettes/DeskApi_Resource_Pagination/_each_page/uses_a_default_per_page_of_1000.yml +13538 -0
- data/spec/cassettes/DeskApi_Resource_QueryParams/_page/keeps_the_resource_as_loaded.yml +2093 -0
- data/spec/cassettes/DeskApi_Resource_QueryParams/_page/returns_the_current_page_and_loads_if_page_not_defined.yml +1207 -0
- data/spec/cassettes/DeskApi_Resource_QueryParams/_page/sets_the_resource_to_not_loaded.yml +2093 -0
- data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_create/creates_a_new_topic.yml +0 -0
- data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_create/throws_an_error_creating_a_user.yml +0 -0
- data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_delete/deletes_a_resource.yml +0 -0
- data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_delete/throws_an_error_deleting_a_non_deletalbe_resource.yml +0 -0
- data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_find/has_an_alias_by_id.yml +0 -0
- data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_find/loads_the_requested_resource.yml +0 -0
- data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_search/allows_searching_on_search_enabled_resources.yml +0 -0
- data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_search/throws_an_error_if_search_is_not_enabled.yml +0 -0
- data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_update/can_handle_action_params.yml +0 -0
- data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_update/can_handle_links.yml +0 -0
- data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_update/can_handle_update_action_params.yml +0 -0
- data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_update/can_replace_instead_of_append.yml +0 -0
- data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_update/can_update_without_a_hash.yml +0 -0
- data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_update/throws_an_error_updating_a_user.yml +0 -0
- data/spec/cassettes/{DeskApi_Resource → DeskApi_Resource_SCRUD}/_update/updates_a_topic.yml +0 -0
- data/spec/desk_api/client_spec.rb +33 -7
- data/spec/desk_api/configuration_spec.rb +4 -4
- data/spec/desk_api/default_spec.rb +1 -1
- data/spec/desk_api/error_spec.rb +1 -1
- data/spec/desk_api/rate_limit_spec.rb +1 -1
- data/spec/desk_api/request/encode_dates_spec.rb +63 -0
- data/spec/desk_api/request/encode_json_spec.rb +4 -4
- data/spec/desk_api/request/oauth_spec.rb +1 -1
- data/spec/desk_api/request/retry_spec.rb +1 -1
- data/spec/desk_api/resource/download_spec.rb +45 -0
- data/spec/desk_api/resource/pagination_spec.rb +77 -0
- data/spec/desk_api/resource/query_params_spec.rb +145 -0
- data/spec/desk_api/resource/scrud_spec.rb +216 -0
- data/spec/desk_api/resource_spec.rb +14 -321
- data/spec/desk_api/response/follow_redirects_spec.rb +1 -1
- data/spec/desk_api/response/parse_dates_spec.rb +1 -1
- data/spec/desk_api/response/parse_json_spec.rb +1 -1
- data/spec/desk_api/response/raise_error_spec.rb +1 -1
- data/spec/desk_api_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -2
- data/spec/stubs/file.jpg +0 -0
- metadata +128 -104
- data/spec/cassettes/DeskApi_Resource/_all/iterates_over_each_resource_on_each_page.yml +0 -1953
- data/spec/cassettes/DeskApi_Resource/_each_page/iterates_over_each_page.yml +0 -1953
- data/spec/cassettes/DeskApi_Resource/_each_page/raises_NoMethodError_is_called_on_non-page_resources.yml +0 -207
- data/spec/cassettes/DeskApi_Resource/_each_page/uses_a_default_per_page_of_1000.yml +0 -1953
- data/spec/cassettes/DeskApi_Resource/_page/keeps_the_resource_as_loaded.yml +0 -113
- data/spec/cassettes/DeskApi_Resource/_page/returns_the_current_page_and_loads_if_page_not_defined.yml +0 -62
- data/spec/cassettes/DeskApi_Resource/_page/sets_the_resource_to_not_loaded.yml +0 -113
@@ -0,0 +1,1207 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://devel.desk.com/api/v2/articles
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
Accept:
|
11
|
+
- application/json
|
12
|
+
User-Agent:
|
13
|
+
- desk.com Ruby Gem v0.6.2
|
14
|
+
Content-Type:
|
15
|
+
- application/json
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message:
|
20
|
+
headers:
|
21
|
+
cache-control:
|
22
|
+
- must-revalidate, private, max-age=0
|
23
|
+
content-type:
|
24
|
+
- application/json; charset=utf-8
|
25
|
+
date:
|
26
|
+
- Tue, 22 Nov 2016 23:21:08 GMT
|
27
|
+
etag:
|
28
|
+
- W/"38d7713aeec7a1f4bb22ca44b2e427c6"
|
29
|
+
server:
|
30
|
+
- nginx
|
31
|
+
status:
|
32
|
+
- 200 OK
|
33
|
+
vary:
|
34
|
+
- Accept-Encoding, X-AppVersion
|
35
|
+
x-appversion:
|
36
|
+
- '15.3259'
|
37
|
+
x-frame-options:
|
38
|
+
- SAMEORIGIN
|
39
|
+
x-rack-cache:
|
40
|
+
- miss
|
41
|
+
x-rate-limit-limit:
|
42
|
+
- '1000'
|
43
|
+
x-rate-limit-remaining:
|
44
|
+
- '999'
|
45
|
+
x-rate-limit-reset:
|
46
|
+
- '52'
|
47
|
+
x-request-id:
|
48
|
+
- 15a2f717129cf7ca792953963ad6c049
|
49
|
+
x-runtime:
|
50
|
+
- '0.436422'
|
51
|
+
x-ua-compatible:
|
52
|
+
- IE=Edge,chrome=1
|
53
|
+
content-length:
|
54
|
+
- '13008'
|
55
|
+
connection:
|
56
|
+
- Close
|
57
|
+
body:
|
58
|
+
encoding: ASCII-8BIT
|
59
|
+
string: '{"total_entries":48,"page":1,"_links":{"self":{"href":"/api/v2/articles?page=1&per_page=50","class":"page"},"first":{"href":"/api/v2/articles?page=1&per_page=50","class":"page"},"last":{"href":"/api/v2/articles?page=1&per_page=50","class":"page"},"previous":null,"next":null},"_embedded":{"entries":[{"id":1295677,"locale":null,"subject":"Testing","body":"<table><tr><td>Testing</td></tr></table>","body_email":"Testing","body_email_auto":true,"body_chat":"Testing","body_chat_auto":true,"body_web_callback":"<table><tr><td>Testing</td></tr></table>","body_web_callback_auto":true,"body_twitter":"Testing","body_twitter_auto":true,"body_qna":"Testing","body_qna_auto":true,"body_phone":"Testing","body_phone_auto":true,"body_facebook":"Testing","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":"","position":1,"quickcode":null,"publish_at":"2013-09-11T19:13:21Z","updated_at":"2013-09-11T19:13:21Z","created_at":"2013-09-11T19:11:48Z","in_support_center":false,"internal_notes":"","public_url":"http://devel.desk.com/customer/portal/articles/1295677-testing","_links":{"self":{"href":"/api/v2/articles/1295677","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/1295677/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/1295677/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":1348945,"locale":null,"subject":"Testing","body":"<img
|
60
|
+
alt=\"\" src=\"/customer/portal/attachments/209748\" style=\"width: 1440px;
|
61
|
+
height: 900px;\" />","body_email":"","body_email_auto":true,"body_chat":"","body_chat_auto":true,"body_web_callback":"<img
|
62
|
+
alt=\"\" src=\"/customer/portal/attachments/209748\" style=\"width: 1440px;
|
63
|
+
height: 900px;\" />","body_web_callback_auto":true,"body_twitter":"","body_twitter_auto":true,"body_qna":"","body_qna_auto":true,"body_phone":"","body_phone_auto":true,"body_facebook":"","body_facebook_auto":true,"rating":89,"rating_count":9,"rating_score":8,"keywords":"new
|
64
|
+
keyword","position":2,"quickcode":null,"publish_at":"2015-07-01T23:24:09Z","updated_at":"2015-07-01T23:24:09Z","created_at":"2013-10-28T22:59:19Z","in_support_center":true,"internal_notes":"","public_url":"http://devel.desk.com/customer/portal/articles/1348945-testing","_links":{"self":{"href":"/api/v2/articles/1348945","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/1348945/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/1348945/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":1391016,"locale":null,"subject":"Testing
|
65
|
+
OAuth","body":"OAuth testing","body_email":"OAuth testing","body_email_auto":true,"body_chat":"OAuth
|
66
|
+
testing","body_chat_auto":true,"body_web_callback":"OAuth testing","body_web_callback_auto":true,"body_twitter":"OAuth
|
67
|
+
testing","body_twitter_auto":true,"body_qna":"OAuth testing","body_qna_auto":true,"body_phone":"OAuth
|
68
|
+
testing","body_phone_auto":true,"body_facebook":"OAuth testing","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":3,"quickcode":null,"publish_at":null,"updated_at":"2013-12-12T02:52:01Z","created_at":"2013-12-12T02:52:01Z","in_support_center":null,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/1391016-testing-oauth","_links":{"self":{"href":"/api/v2/articles/1391016","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/1391016/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/1391016/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044257,"locale":null,"subject":"Cities
|
69
|
+
In California Conserved A Lot Of Water In May","body":"<p>Felicia Marcus of
|
70
|
+
the State Water Board said, \"We need all Californians to step up \u2014 and
|
71
|
+
keep it up \u2014 as if we don''t know when it will rain and snow again, because
|
72
|
+
we don''t.\"</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419252967\">»
|
73
|
+
E-Mail This</a></p>","body_email":"Felicia Marcus of the State Water Board
|
74
|
+
said, \"We need all Californians to step up \u2014 and keep it up \u2014 as
|
75
|
+
if we don''t know when it will rain and snow again, because we don''t.\"\n\n\u00bb
|
76
|
+
E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419252967)","body_email_auto":true,"body_chat":"Felicia
|
77
|
+
Marcus of the State Water Board said, \"We need all Californians to step up
|
78
|
+
\u2014 and keep it up \u2014 as if we don''t know when it will rain and snow
|
79
|
+
again, because we don''t.\"\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044257-cities-in-california-conserved-a-lot-of-water-in-may","body_chat_auto":true,"body_web_callback":"<p>Felicia
|
80
|
+
Marcus of the State Water Board said, \"We need all Californians to step up
|
81
|
+
\u2014 and keep it up \u2014 as if we don''t know when it will rain and snow
|
82
|
+
again, because we don''t.\"</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419252967\">»
|
83
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"Felicia
|
84
|
+
Marcus of the State Water Board said, \"We need all Californians to step up
|
85
|
+
\u2014 and keep it up \u2014 as if we do... http://devel.desk.com/customer/portal/articles/2044257-cities-in-california-conserved-a-lot-of-water-in-may","body_twitter_auto":true,"body_qna":"Felicia
|
86
|
+
Marcus of the State Water Board said, \"We need all Californians to step up
|
87
|
+
\u2014 and keep it up \u2014 as if we don''t know when it will rain and snow
|
88
|
+
again, because we don''t.\"\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"Felicia
|
89
|
+
Marcus of the State Water Board said, \"We need all Californians to step up
|
90
|
+
\u2014 and keep it up \u2014 as if we don''t know when it will rain and snow
|
91
|
+
again, because we don''t.\"\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"Felicia
|
92
|
+
Marcus of the State Water Board said, \"We need all Californians to step up
|
93
|
+
\u2014 and keep it up \u2014 as if we don''t know when it will rain and snow
|
94
|
+
again, because we don''t.\"\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":4,"quickcode":null,"publish_at":"2015-07-01T23:18:01Z","updated_at":"2015-07-01T23:18:01Z","created_at":"2015-07-01T23:18:01Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044257-cities-in-california-conserved-a-lot-of-water-in-may","_links":{"self":{"href":"/api/v2/articles/2044257","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044257/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044257/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044258,"locale":null,"subject":"A
|
95
|
+
Dose Of Culinary Medicine Sends Med Students To The Kitchen","body":"<p>Aspiring
|
96
|
+
doctors at the University of Chicago are learning how to teach patients about
|
97
|
+
healthy eating. Nutrition advocates say this kind of training is critical
|
98
|
+
to fighting obesity and diabetes.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419167750\">»
|
99
|
+
E-Mail This</a></p>","body_email":"Aspiring doctors at the University of Chicago
|
100
|
+
are learning how to teach patients about healthy eating. Nutrition advocates
|
101
|
+
say this kind of training is critical to fighting obesity and diabetes.\n\n\u00bb
|
102
|
+
E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419167750)","body_email_auto":true,"body_chat":"Aspiring
|
103
|
+
doctors at the University of Chicago are learning how to teach patients about
|
104
|
+
healthy eating. Nutrition advocates say this kind of training is critical
|
105
|
+
to fighting obesity and diabetes.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044258-a-dose-of-culinary-medicine-sends-med-students-to-the-kitchen","body_chat_auto":true,"body_web_callback":"<p>Aspiring
|
106
|
+
doctors at the University of Chicago are learning how to teach patients about
|
107
|
+
healthy eating. Nutrition advocates say this kind of training is critical
|
108
|
+
to fighting obesity and diabetes.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419167750\">»
|
109
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"Aspiring
|
110
|
+
doctors at the University of Chicago are learning how to teach patients about
|
111
|
+
healthy eating. Nutrition ... http://devel.desk.com/customer/portal/articles/2044258-a-dose-of-culinary-medicine-sends-med-students-to-the-kitchen","body_twitter_auto":true,"body_qna":"Aspiring
|
112
|
+
doctors at the University of Chicago are learning how to teach patients about
|
113
|
+
healthy eating. Nutrition advocates say this kind of training is critical
|
114
|
+
to fighting obesity and diabetes.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"Aspiring
|
115
|
+
doctors at the University of Chicago are learning how to teach patients about
|
116
|
+
healthy eating. Nutrition advocates say this kind of training is critical
|
117
|
+
to fighting obesity and diabetes.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"Aspiring
|
118
|
+
doctors at the University of Chicago are learning how to teach patients about
|
119
|
+
healthy eating. Nutrition advocates say this kind of training is critical
|
120
|
+
to fighting obesity and diabetes.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":5,"quickcode":null,"publish_at":"2015-07-01T23:18:01Z","updated_at":"2015-07-01T23:18:01Z","created_at":"2015-07-01T23:18:01Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044258-a-dose-of-culinary-medicine-sends-med-students-to-the-kitchen","_links":{"self":{"href":"/api/v2/articles/2044258","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044258/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044258/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044259,"locale":null,"subject":"Senators
|
121
|
+
Call For VA To Explain Why It Couldn''t Find Mustard-Gassed Veterans","body":"<p>A
|
122
|
+
dozen senators have also called on the Veterans Administration to say why
|
123
|
+
some of the WWII-era troops who were found by an NPR Investigation were denied
|
124
|
+
benefits.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419255992\">»
|
125
|
+
E-Mail This</a></p>","body_email":"A dozen senators have also called on the
|
126
|
+
Veterans Administration to say why some of the WWII-era troops who were found
|
127
|
+
by an NPR Investigation were denied benefits.\n\n\u00bb E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419255992)","body_email_auto":true,"body_chat":"A
|
128
|
+
dozen senators have also called on the Veterans Administration to say why
|
129
|
+
some of the WWII-era troops who were found by an NPR Investigation were denied
|
130
|
+
benefits.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044259-senators-call-for-va-to-explain-why-it-couldn-t-find-mustard-gassed-veterans","body_chat_auto":true,"body_web_callback":"<p>A
|
131
|
+
dozen senators have also called on the Veterans Administration to say why
|
132
|
+
some of the WWII-era troops who were found by an NPR Investigation were denied
|
133
|
+
benefits.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419255992\">»
|
134
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"A dozen
|
135
|
+
senators have also called on the Veterans Administration to say why some of
|
136
|
+
the WWII-era troops who were ... http://devel.desk.com/customer/portal/articles/2044259-senators-call-for-va-to-explain-why-it-couldn-t-find-mustard-gassed-veterans","body_twitter_auto":true,"body_qna":"A
|
137
|
+
dozen senators have also called on the Veterans Administration to say why
|
138
|
+
some of the WWII-era troops who were found by an NPR Investigation were denied
|
139
|
+
benefits.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"A dozen
|
140
|
+
senators have also called on the Veterans Administration to say why some of
|
141
|
+
the WWII-era troops who were found by an NPR Investigation were denied benefits.\n\n\u00bb
|
142
|
+
E-Mail This","body_phone_auto":true,"body_facebook":"A dozen senators have
|
143
|
+
also called on the Veterans Administration to say why some of the WWII-era
|
144
|
+
troops who were found by an NPR Investigation were denied benefits.\n\n\u00bb
|
145
|
+
E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":6,"quickcode":null,"publish_at":"2015-07-01T23:18:01Z","updated_at":"2015-07-01T23:18:01Z","created_at":"2015-07-01T23:18:01Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044259-senators-call-for-va-to-explain-why-it-couldn-t-find-mustard-gassed-veterans","_links":{"self":{"href":"/api/v2/articles/2044259","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044259/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044259/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044260,"locale":null,"subject":"Justice
|
146
|
+
Department Investigating Airlines For Possible Price Collusion","body":"<p>The
|
147
|
+
department says it is looking into \"possible unlawful coordination\" by several
|
148
|
+
major carriers. American and United have confirmed that they are among the
|
149
|
+
airlines under scrutiny.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419245511\">»
|
150
|
+
E-Mail This</a></p>","body_email":"The department says it is looking into
|
151
|
+
\"possible unlawful coordination\" by several major carriers. American and
|
152
|
+
United have confirmed that they are among the airlines under scrutiny.\n\n\u00bb
|
153
|
+
E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419245511)","body_email_auto":true,"body_chat":"The
|
154
|
+
department says it is looking into \"possible unlawful coordination\" by several
|
155
|
+
major carriers. American and United have confirmed that they are among the
|
156
|
+
airlines under scrutiny.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044260-justice-department-investigating-airlines-for-possible-price-collusion","body_chat_auto":true,"body_web_callback":"<p>The
|
157
|
+
department says it is looking into \"possible unlawful coordination\" by several
|
158
|
+
major carriers. American and United have confirmed that they are among the
|
159
|
+
airlines under scrutiny.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419245511\">»
|
160
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"The department
|
161
|
+
says it is looking into \"possible unlawful coordination\" by several major
|
162
|
+
carriers. American and U... http://devel.desk.com/customer/portal/articles/2044260-justice-department-investigating-airlines-for-possible-price-collusion","body_twitter_auto":true,"body_qna":"The
|
163
|
+
department says it is looking into \"possible unlawful coordination\" by several
|
164
|
+
major carriers. American and United have confirmed that they are among the
|
165
|
+
airlines under scrutiny.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"The
|
166
|
+
department says it is looking into \"possible unlawful coordination\" by several
|
167
|
+
major carriers. American and United have confirmed that they are among the
|
168
|
+
airlines under scrutiny.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"The
|
169
|
+
department says it is looking into \"possible unlawful coordination\" by several
|
170
|
+
major carriers. American and United have confirmed that they are among the
|
171
|
+
airlines under scrutiny.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":7,"quickcode":null,"publish_at":"2015-07-01T23:18:02Z","updated_at":"2015-07-01T23:18:02Z","created_at":"2015-07-01T23:18:02Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044260-justice-department-investigating-airlines-for-possible-price-collusion","_links":{"self":{"href":"/api/v2/articles/2044260","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044260/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044260/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044261,"locale":null,"subject":"Nationwide
|
172
|
+
Crime Spike Has Law Enforcement Retooling Their Approach","body":"<p>Violent
|
173
|
+
crime has ticked up in certain metro areas. Police are scrambling to hold
|
174
|
+
the line while at the same time trying not to appear overzealous.</p><p><a
|
175
|
+
href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418555852\">»
|
176
|
+
E-Mail This</a></p>","body_email":"Violent crime has ticked up in certain
|
177
|
+
metro areas. Police are scrambling to hold the line while at the same time
|
178
|
+
trying not to appear overzealous.\n\n\u00bb E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=418555852)","body_email_auto":true,"body_chat":"Violent
|
179
|
+
crime has ticked up in certain metro areas. Police are scrambling to hold
|
180
|
+
the line while at the same time trying not to appear overzealous.\u00bb E-Mail
|
181
|
+
This http://devel.desk.com/customer/portal/articles/2044261-nationwide-crime-spike-has-law-enforcement-retooling-their-approach","body_chat_auto":true,"body_web_callback":"<p>Violent
|
182
|
+
crime has ticked up in certain metro areas. Police are scrambling to hold
|
183
|
+
the line while at the same time trying not to appear overzealous.</p><p><a
|
184
|
+
href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418555852\">»
|
185
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"Violent
|
186
|
+
crime has ticked up in certain metro areas. Police are scrambling to hold
|
187
|
+
the line while at the same time... http://devel.desk.com/customer/portal/articles/2044261-nationwide-crime-spike-has-law-enforcement-retooling-their-approach","body_twitter_auto":true,"body_qna":"Violent
|
188
|
+
crime has ticked up in certain metro areas. Police are scrambling to hold
|
189
|
+
the line while at the same time trying not to appear overzealous.\n\n\u00bb
|
190
|
+
E-Mail This","body_qna_auto":true,"body_phone":"Violent crime has ticked up
|
191
|
+
in certain metro areas. Police are scrambling to hold the line while at the
|
192
|
+
same time trying not to appear overzealous.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"Violent
|
193
|
+
crime has ticked up in certain metro areas. Police are scrambling to hold
|
194
|
+
the line while at the same time trying not to appear overzealous.\n\n\u00bb
|
195
|
+
E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":8,"quickcode":null,"publish_at":"2015-07-01T23:18:02Z","updated_at":"2015-07-01T23:18:02Z","created_at":"2015-07-01T23:18:02Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044261-nationwide-crime-spike-has-law-enforcement-retooling-their-approach","_links":{"self":{"href":"/api/v2/articles/2044261","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044261/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044261/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044262,"locale":null,"subject":"Who''s
|
196
|
+
Behind A String Of Bombings In Ukraine''s Black Sea ''Pearl''?","body":"<p>Local
|
197
|
+
journalists and volunteers in Odessa are working to make sense of dozens of
|
198
|
+
recent bombings \u2014 and prevent future attacks. They say that Russians
|
199
|
+
have infiltrated the security services.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418905297\">»
|
200
|
+
E-Mail This</a></p>","body_email":"Local journalists and volunteers in Odessa
|
201
|
+
are working to make sense of dozens of recent bombings \u2014 and prevent
|
202
|
+
future attacks. They say that Russians have infiltrated the security services.\n\n\u00bb
|
203
|
+
E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=418905297)","body_email_auto":true,"body_chat":"Local
|
204
|
+
journalists and volunteers in Odessa are working to make sense of dozens of
|
205
|
+
recent bombings \u2014 and prevent future attacks. They say that Russians
|
206
|
+
have infiltrated the security services.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044262-who-s-behind-a-string-of-bombings-in-ukraine-s-black-sea-pearl-","body_chat_auto":true,"body_web_callback":"<p>Local
|
207
|
+
journalists and volunteers in Odessa are working to make sense of dozens of
|
208
|
+
recent bombings \u2014 and prevent future attacks. They say that Russians
|
209
|
+
have infiltrated the security services.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418905297\">»
|
210
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"Local journalists
|
211
|
+
and volunteers in Odessa are working to make sense of dozens of recent bombings
|
212
|
+
\u2014 and prevent f... http://devel.desk.com/customer/portal/articles/2044262-who-s-behind-a-string-of-bombings-in-ukraine-s-black-sea-pearl-","body_twitter_auto":true,"body_qna":"Local
|
213
|
+
journalists and volunteers in Odessa are working to make sense of dozens of
|
214
|
+
recent bombings \u2014 and prevent future attacks. They say that Russians
|
215
|
+
have infiltrated the security services.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"Local
|
216
|
+
journalists and volunteers in Odessa are working to make sense of dozens of
|
217
|
+
recent bombings \u2014 and prevent future attacks. They say that Russians
|
218
|
+
have infiltrated the security services.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"Local
|
219
|
+
journalists and volunteers in Odessa are working to make sense of dozens of
|
220
|
+
recent bombings \u2014 and prevent future attacks. They say that Russians
|
221
|
+
have infiltrated the security services.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":9,"quickcode":null,"publish_at":"2015-07-01T23:18:02Z","updated_at":"2015-07-01T23:18:02Z","created_at":"2015-07-01T23:18:02Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044262-who-s-behind-a-string-of-bombings-in-ukraine-s-black-sea-pearl-","_links":{"self":{"href":"/api/v2/articles/2044262","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044262/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044262/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044263,"locale":null,"subject":"Militants
|
222
|
+
Stage Series Of Deadly Attacks In Egypt''s Sinai Peninsula","body":"<p>The
|
223
|
+
early morning attacks on checkpoints were later claimed by the Sinai affiliate
|
224
|
+
of the self-described Islamic State.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419238444\">»
|
225
|
+
E-Mail This</a></p>","body_email":"The early morning attacks on checkpoints
|
226
|
+
were later claimed by the Sinai affiliate of the self-described Islamic State.\n\n\u00bb
|
227
|
+
E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419238444)","body_email_auto":true,"body_chat":"The
|
228
|
+
early morning attacks on checkpoints were later claimed by the Sinai affiliate
|
229
|
+
of the self-described Islamic State.\u00bb E-Mail This","body_chat_auto":true,"body_web_callback":"<p>The
|
230
|
+
early morning attacks on checkpoints were later claimed by the Sinai affiliate
|
231
|
+
of the self-described Islamic State.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419238444\">»
|
232
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"The early
|
233
|
+
morning attacks on checkpoints were later claimed by the Sinai affiliate of
|
234
|
+
the self-described Islamic State. \u00bb E-Mail This","body_twitter_auto":true,"body_qna":"The
|
235
|
+
early morning attacks on checkpoints were later claimed by the Sinai affiliate
|
236
|
+
of the self-described Islamic State.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"The
|
237
|
+
early morning attacks on checkpoints were later claimed by the Sinai affiliate
|
238
|
+
of the self-described Islamic State.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"The
|
239
|
+
early morning attacks on checkpoints were later claimed by the Sinai affiliate
|
240
|
+
of the self-described Islamic State.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":10,"quickcode":null,"publish_at":"2015-07-01T23:18:02Z","updated_at":"2015-07-01T23:18:02Z","created_at":"2015-07-01T23:18:02Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044263-militants-stage-series-of-deadly-attacks-in-egypt-s-sinai-peninsula","_links":{"self":{"href":"/api/v2/articles/2044263","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044263/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044263/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044264,"locale":null,"subject":"Industry
|
241
|
+
Payments To Doctors Are Ingrained, Federal Data Show","body":"<p>The latest
|
242
|
+
data on payments from drug and device companies to doctors show that many
|
243
|
+
doctors received payments on 100 or more days last year. Some received payments
|
244
|
+
on more days than they didn''t.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419206613\">»
|
245
|
+
E-Mail This</a></p>","body_email":"The latest data on payments from drug and
|
246
|
+
device companies to doctors show that many doctors received payments on 100
|
247
|
+
or more days last year. Some received payments on more days than they didn''t.\n\n\u00bb
|
248
|
+
E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419206613)","body_email_auto":true,"body_chat":"The
|
249
|
+
latest data on payments from drug and device companies to doctors show that
|
250
|
+
many doctors received payments on 100 or more days last year. Some received
|
251
|
+
payments on more days than they didn''t.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044264-industry-payments-to-doctors-are-ingrained-federal-data-show","body_chat_auto":true,"body_web_callback":"<p>The
|
252
|
+
latest data on payments from drug and device companies to doctors show that
|
253
|
+
many doctors received payments on 100 or more days last year. Some received
|
254
|
+
payments on more days than they didn''t.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419206613\">»
|
255
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"The latest
|
256
|
+
data on payments from drug and device companies to doctors show that many
|
257
|
+
doctors received payments on... http://devel.desk.com/customer/portal/articles/2044264-industry-payments-to-doctors-are-ingrained-federal-data-show","body_twitter_auto":true,"body_qna":"The
|
258
|
+
latest data on payments from drug and device companies to doctors show that
|
259
|
+
many doctors received payments on 100 or more days last year. Some received
|
260
|
+
payments on more days than they didn''t.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"The
|
261
|
+
latest data on payments from drug and device companies to doctors show that
|
262
|
+
many doctors received payments on 100 or more days last year. Some received
|
263
|
+
payments on more days than they didn''t.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"The
|
264
|
+
latest data on payments from drug and device companies to doctors show that
|
265
|
+
many doctors received payments on 100 or more days last year. Some received
|
266
|
+
payments on more days than they didn''t.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":11,"quickcode":null,"publish_at":"2015-07-01T23:18:03Z","updated_at":"2015-07-01T23:18:03Z","created_at":"2015-07-01T23:18:02Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044264-industry-payments-to-doctors-are-ingrained-federal-data-show","_links":{"self":{"href":"/api/v2/articles/2044264","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044264/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044264/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044265,"locale":null,"subject":"How
|
267
|
+
Your Brain Remembers Where You Parked The Car","body":"<p>When people saw
|
268
|
+
photos that linked a famous person with a famous place, it changed the behavior
|
269
|
+
of certain neurons in their brains. And it changed their memories, too.</p><p><a
|
270
|
+
href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419165395\">»
|
271
|
+
E-Mail This</a></p>","body_email":"When people saw photos that linked a famous
|
272
|
+
person with a famous place, it changed the behavior of certain neurons in
|
273
|
+
their brains. And it changed their memories, too.\n\n\u00bb E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419165395)","body_email_auto":true,"body_chat":"When
|
274
|
+
people saw photos that linked a famous person with a famous place, it changed
|
275
|
+
the behavior of certain neurons in their brains. And it changed their memories,
|
276
|
+
too.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044265-how-your-brain-remembers-where-you-parked-the-car","body_chat_auto":true,"body_web_callback":"<p>When
|
277
|
+
people saw photos that linked a famous person with a famous place, it changed
|
278
|
+
the behavior of certain neurons in their brains. And it changed their memories,
|
279
|
+
too.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419165395\">»
|
280
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"When people
|
281
|
+
saw photos that linked a famous person with a famous place, it changed the
|
282
|
+
behavior of certain neuron... http://devel.desk.com/customer/portal/articles/2044265-how-your-brain-remembers-where-you-parked-the-car","body_twitter_auto":true,"body_qna":"When
|
283
|
+
people saw photos that linked a famous person with a famous place, it changed
|
284
|
+
the behavior of certain neurons in their brains. And it changed their memories,
|
285
|
+
too.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"When people
|
286
|
+
saw photos that linked a famous person with a famous place, it changed the
|
287
|
+
behavior of certain neurons in their brains. And it changed their memories,
|
288
|
+
too.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"When people
|
289
|
+
saw photos that linked a famous person with a famous place, it changed the
|
290
|
+
behavior of certain neurons in their brains. And it changed their memories,
|
291
|
+
too.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":12,"quickcode":null,"publish_at":"2015-07-01T23:18:03Z","updated_at":"2015-07-01T23:18:03Z","created_at":"2015-07-01T23:18:03Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044265-how-your-brain-remembers-where-you-parked-the-car","_links":{"self":{"href":"/api/v2/articles/2044265","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044265/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044265/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044266,"locale":null,"subject":"Recreational
|
292
|
+
Marijuana Is Now Legal In Oregon","body":"<p>While the state permits people
|
293
|
+
to possess and grow small amounts of recreational pot, they still can''t buy
|
294
|
+
or sell it.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419208482\">»
|
295
|
+
E-Mail This</a></p>","body_email":"While the state permits people to possess
|
296
|
+
and grow small amounts of recreational pot, they still can''t buy or sell
|
297
|
+
it.\n\n\u00bb E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419208482)","body_email_auto":true,"body_chat":"While
|
298
|
+
the state permits people to possess and grow small amounts of recreational
|
299
|
+
pot, they still can''t buy or sell it.\u00bb E-Mail This","body_chat_auto":true,"body_web_callback":"<p>While
|
300
|
+
the state permits people to possess and grow small amounts of recreational
|
301
|
+
pot, they still can''t buy or sell it.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419208482\">»
|
302
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"While the
|
303
|
+
state permits people to possess and grow small amounts of recreational pot,
|
304
|
+
they still can''t buy or sell it. \u00bb E-Mail This","body_twitter_auto":true,"body_qna":"While
|
305
|
+
the state permits people to possess and grow small amounts of recreational
|
306
|
+
pot, they still can''t buy or sell it.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"While
|
307
|
+
the state permits people to possess and grow small amounts of recreational
|
308
|
+
pot, they still can''t buy or sell it.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"While
|
309
|
+
the state permits people to possess and grow small amounts of recreational
|
310
|
+
pot, they still can''t buy or sell it.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":13,"quickcode":null,"publish_at":"2015-07-01T23:18:03Z","updated_at":"2015-07-01T23:18:03Z","created_at":"2015-07-01T23:18:03Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044266-recreational-marijuana-is-now-legal-in-oregon","_links":{"self":{"href":"/api/v2/articles/2044266","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044266/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044266/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044267,"locale":null,"subject":"20
|
311
|
+
Years Ago, Mount Zion AME Was Set On Fire. Last Night, It Burned Again","body":"<p>In
|
312
|
+
1996, Bill Clinton spoke at the reopening ceremony of this historically black
|
313
|
+
church. On Tuesday, Mount Zion became the latest in a wave of fires at black
|
314
|
+
churches since the Charleston shooting.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419168251\">»
|
315
|
+
E-Mail This</a></p>","body_email":"In 1996, Bill Clinton spoke at the reopening
|
316
|
+
ceremony of this historically black church. On Tuesday, Mount Zion became
|
317
|
+
the latest in a wave of fires at black churches since the Charleston shooting.\n\n\u00bb
|
318
|
+
E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419168251)","body_email_auto":true,"body_chat":"In
|
319
|
+
1996, Bill Clinton spoke at the reopening ceremony of this historically black
|
320
|
+
church. On Tuesday, Mount Zion became the latest in a wave of fires at black
|
321
|
+
churches since the Charleston shooting.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044267-20-years-ago-mount-zion-ame-was-set-on-fire-last-night-it-burned-again","body_chat_auto":true,"body_web_callback":"<p>In
|
322
|
+
1996, Bill Clinton spoke at the reopening ceremony of this historically black
|
323
|
+
church. On Tuesday, Mount Zion became the latest in a wave of fires at black
|
324
|
+
churches since the Charleston shooting.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419168251\">»
|
325
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"In 1996,
|
326
|
+
Bill Clinton spoke at the reopening ceremony of this historically black church.
|
327
|
+
On Tuesday, Mount Zion b... http://devel.desk.com/customer/portal/articles/2044267-20-years-ago-mount-zion-ame-was-set-on-fire-last-night-it-burned-again","body_twitter_auto":true,"body_qna":"In
|
328
|
+
1996, Bill Clinton spoke at the reopening ceremony of this historically black
|
329
|
+
church. On Tuesday, Mount Zion became the latest in a wave of fires at black
|
330
|
+
churches since the Charleston shooting.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"In
|
331
|
+
1996, Bill Clinton spoke at the reopening ceremony of this historically black
|
332
|
+
church. On Tuesday, Mount Zion became the latest in a wave of fires at black
|
333
|
+
churches since the Charleston shooting.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"In
|
334
|
+
1996, Bill Clinton spoke at the reopening ceremony of this historically black
|
335
|
+
church. On Tuesday, Mount Zion became the latest in a wave of fires at black
|
336
|
+
churches since the Charleston shooting.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":14,"quickcode":null,"publish_at":"2015-07-01T23:18:03Z","updated_at":"2015-07-01T23:18:03Z","created_at":"2015-07-01T23:18:03Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044267-20-years-ago-mount-zion-ame-was-set-on-fire-last-night-it-burned-again","_links":{"self":{"href":"/api/v2/articles/2044267","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044267/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044267/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044268,"locale":null,"subject":"Somebody
|
337
|
+
Is Cutting Internet Cables In California","body":"<p>There have been at least
|
338
|
+
11 attacks in the San Francisco Bay Area in the past year, according to the
|
339
|
+
FBI. The most recent occurred Tuesday and disrupted service as far north as
|
340
|
+
Seattle.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419159678\">»
|
341
|
+
E-Mail This</a></p>","body_email":"There have been at least 11 attacks in
|
342
|
+
the San Francisco Bay Area in the past year, according to the FBI. The most
|
343
|
+
recent occurred Tuesday and disrupted service as far north as Seattle.\n\n\u00bb
|
344
|
+
E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419159678)","body_email_auto":true,"body_chat":"There
|
345
|
+
have been at least 11 attacks in the San Francisco Bay Area in the past year,
|
346
|
+
according to the FBI. The most recent occurred Tuesday and disrupted service
|
347
|
+
as far north as Seattle.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044268-somebody-is-cutting-internet-cables-in-california","body_chat_auto":true,"body_web_callback":"<p>There
|
348
|
+
have been at least 11 attacks in the San Francisco Bay Area in the past year,
|
349
|
+
according to the FBI. The most recent occurred Tuesday and disrupted service
|
350
|
+
as far north as Seattle.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419159678\">»
|
351
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"There have
|
352
|
+
been at least 11 attacks in the San Francisco Bay Area in the past year, according
|
353
|
+
to the FBI. The mos... http://devel.desk.com/customer/portal/articles/2044268-somebody-is-cutting-internet-cables-in-california","body_twitter_auto":true,"body_qna":"There
|
354
|
+
have been at least 11 attacks in the San Francisco Bay Area in the past year,
|
355
|
+
according to the FBI. The most recent occurred Tuesday and disrupted service
|
356
|
+
as far north as Seattle.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"There
|
357
|
+
have been at least 11 attacks in the San Francisco Bay Area in the past year,
|
358
|
+
according to the FBI. The most recent occurred Tuesday and disrupted service
|
359
|
+
as far north as Seattle.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"There
|
360
|
+
have been at least 11 attacks in the San Francisco Bay Area in the past year,
|
361
|
+
according to the FBI. The most recent occurred Tuesday and disrupted service
|
362
|
+
as far north as Seattle.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":15,"quickcode":null,"publish_at":"2015-07-01T23:18:03Z","updated_at":"2015-07-01T23:18:03Z","created_at":"2015-07-01T23:18:03Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044268-somebody-is-cutting-internet-cables-in-california","_links":{"self":{"href":"/api/v2/articles/2044268","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044268/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044268/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044269,"locale":null,"subject":"13
|
363
|
+
Emails That Stood Out From The Latest Clinton Document Dump","body":"<p>The
|
364
|
+
thousands of new emails don''t reveal a \"smoking gun\" from the Democratic
|
365
|
+
presidential candidate''s time at State, but do give insight into her daily
|
366
|
+
activities \u2014 and some funny daily struggles.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419162524\">»
|
367
|
+
E-Mail This</a></p>","body_email":"The thousands of new emails don''t reveal
|
368
|
+
a \"smoking gun\" from the Democratic presidential candidate''s time at State,
|
369
|
+
but do give insight into her daily activities \u2014 and some funny daily
|
370
|
+
struggles.\n\n\u00bb E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419162524)","body_email_auto":true,"body_chat":"The
|
371
|
+
thousands of new emails don''t reveal a \"smoking gun\" from the Democratic
|
372
|
+
presidential candidate''s time at State, but do give insight into her daily
|
373
|
+
activities \u2014 and some funny daily struggles.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044269-13-emails-that-stood-out-from-the-latest-clinton-document-dump","body_chat_auto":true,"body_web_callback":"<p>The
|
374
|
+
thousands of new emails don''t reveal a \"smoking gun\" from the Democratic
|
375
|
+
presidential candidate''s time at State, but do give insight into her daily
|
376
|
+
activities \u2014 and some funny daily struggles.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419162524\">»
|
377
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"The thousands
|
378
|
+
of new emails don''t reveal a \"smoking gun\" from the Democratic presidential
|
379
|
+
candidate''s time at Sta... http://devel.desk.com/customer/portal/articles/2044269-13-emails-that-stood-out-from-the-latest-clinton-document-dump","body_twitter_auto":true,"body_qna":"The
|
380
|
+
thousands of new emails don''t reveal a \"smoking gun\" from the Democratic
|
381
|
+
presidential candidate''s time at State, but do give insight into her daily
|
382
|
+
activities \u2014 and some funny daily struggles.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"The
|
383
|
+
thousands of new emails don''t reveal a \"smoking gun\" from the Democratic
|
384
|
+
presidential candidate''s time at State, but do give insight into her daily
|
385
|
+
activities \u2014 and some funny daily struggles.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"The
|
386
|
+
thousands of new emails don''t reveal a \"smoking gun\" from the Democratic
|
387
|
+
presidential candidate''s time at State, but do give insight into her daily
|
388
|
+
activities \u2014 and some funny daily struggles.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":16,"quickcode":null,"publish_at":"2015-07-01T23:18:04Z","updated_at":"2015-07-01T23:18:04Z","created_at":"2015-07-01T23:18:04Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044269-13-emails-that-stood-out-from-the-latest-clinton-document-dump","_links":{"self":{"href":"/api/v2/articles/2044269","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044269/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044269/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044270,"locale":null,"subject":"The
|
389
|
+
Scallop Scoop: Survey Forecasts A Banner Year In Atlantic","body":"<p>Federal
|
390
|
+
fisheries researchers says their survey found about 10 billion scallops in
|
391
|
+
waters off Delaware and southern New Jersey. They''re predicting a boom for
|
392
|
+
the nation''s most valuable fishery.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419151510\">»
|
393
|
+
E-Mail This</a></p>","body_email":"Federal fisheries researchers says their
|
394
|
+
survey found about 10 billion scallops in waters off Delaware and southern
|
395
|
+
New Jersey. They''re predicting a boom for the nation''s most valuable fishery.\n\n\u00bb
|
396
|
+
E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419151510)","body_email_auto":true,"body_chat":"Federal
|
397
|
+
fisheries researchers says their survey found about 10 billion scallops in
|
398
|
+
waters off Delaware and southern New Jersey. They''re predicting a boom for
|
399
|
+
the nation''s most valuable fishery.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044270-the-scallop-scoop-survey-forecasts-a-banner-year-in-atlantic","body_chat_auto":true,"body_web_callback":"<p>Federal
|
400
|
+
fisheries researchers says their survey found about 10 billion scallops in
|
401
|
+
waters off Delaware and southern New Jersey. They''re predicting a boom for
|
402
|
+
the nation''s most valuable fishery.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419151510\">»
|
403
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"Federal
|
404
|
+
fisheries researchers says their survey found about 10 billion scallops in
|
405
|
+
waters off Delaware and southe... http://devel.desk.com/customer/portal/articles/2044270-the-scallop-scoop-survey-forecasts-a-banner-year-in-atlantic","body_twitter_auto":true,"body_qna":"Federal
|
406
|
+
fisheries researchers says their survey found about 10 billion scallops in
|
407
|
+
waters off Delaware and southern New Jersey. They''re predicting a boom for
|
408
|
+
the nation''s most valuable fishery.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"Federal
|
409
|
+
fisheries researchers says their survey found about 10 billion scallops in
|
410
|
+
waters off Delaware and southern New Jersey. They''re predicting a boom for
|
411
|
+
the nation''s most valuable fishery.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"Federal
|
412
|
+
fisheries researchers says their survey found about 10 billion scallops in
|
413
|
+
waters off Delaware and southern New Jersey. They''re predicting a boom for
|
414
|
+
the nation''s most valuable fishery.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":17,"quickcode":null,"publish_at":"2015-07-01T23:18:04Z","updated_at":"2015-07-01T23:18:04Z","created_at":"2015-07-01T23:18:04Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044270-the-scallop-scoop-survey-forecasts-a-banner-year-in-atlantic","_links":{"self":{"href":"/api/v2/articles/2044270","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044270/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044270/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044271,"locale":null,"subject":"Antipsychotics
|
415
|
+
Too Often Prescribed For Aggression In Children","body":"<p>Drugs intended
|
416
|
+
to treat psychosis are also used to treat behavioral problems in children
|
417
|
+
with ADHD. Less risky behavioral treatments and medications should be the
|
418
|
+
first choice, researchers say.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418935734\">»
|
419
|
+
E-Mail This</a></p>","body_email":"Drugs intended to treat psychosis are also
|
420
|
+
used to treat behavioral problems in children with ADHD. Less risky behavioral
|
421
|
+
treatments and medications should be the first choice, researchers say.\n\n\u00bb
|
422
|
+
E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=418935734)","body_email_auto":true,"body_chat":"Drugs
|
423
|
+
intended to treat psychosis are also used to treat behavioral problems in
|
424
|
+
children with ADHD. Less risky behavioral treatments and medications should
|
425
|
+
be the first choice, researchers say.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044271-antipsychotics-too-often-prescribed-for-aggression-in-children","body_chat_auto":true,"body_web_callback":"<p>Drugs
|
426
|
+
intended to treat psychosis are also used to treat behavioral problems in
|
427
|
+
children with ADHD. Less risky behavioral treatments and medications should
|
428
|
+
be the first choice, researchers say.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418935734\">»
|
429
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"Drugs intended
|
430
|
+
to treat psychosis are also used to treat behavioral problems in children
|
431
|
+
with ADHD. Less risky be... http://devel.desk.com/customer/portal/articles/2044271-antipsychotics-too-often-prescribed-for-aggression-in-children","body_twitter_auto":true,"body_qna":"Drugs
|
432
|
+
intended to treat psychosis are also used to treat behavioral problems in
|
433
|
+
children with ADHD. Less risky behavioral treatments and medications should
|
434
|
+
be the first choice, researchers say.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"Drugs
|
435
|
+
intended to treat psychosis are also used to treat behavioral problems in
|
436
|
+
children with ADHD. Less risky behavioral treatments and medications should
|
437
|
+
be the first choice, researchers say.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"Drugs
|
438
|
+
intended to treat psychosis are also used to treat behavioral problems in
|
439
|
+
children with ADHD. Less risky behavioral treatments and medications should
|
440
|
+
be the first choice, researchers say.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":18,"quickcode":null,"publish_at":"2015-07-01T23:18:04Z","updated_at":"2015-07-01T23:18:04Z","created_at":"2015-07-01T23:18:04Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044271-antipsychotics-too-often-prescribed-for-aggression-in-children","_links":{"self":{"href":"/api/v2/articles/2044271","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044271/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044271/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044272,"locale":null,"subject":"As
|
441
|
+
The NBA''s Free Agency Period Begins, LeBron James Has All The Power","body":"<p>NPR''s
|
442
|
+
Rachel Martin talks to sportswriter Bob Ryan about the start of NBA free agency
|
443
|
+
Wednesday, and the man with the most power in the NBA \u2014 LeBron James.</p><p><a
|
444
|
+
href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419240790\">»
|
445
|
+
E-Mail This</a></p>","body_email":"NPR''s Rachel Martin talks to sportswriter
|
446
|
+
Bob Ryan about the start of NBA free agency Wednesday, and the man with the
|
447
|
+
most power in the NBA \u2014 LeBron James.\n\n\u00bb E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419240790)","body_email_auto":true,"body_chat":"NPR''s
|
448
|
+
Rachel Martin talks to sportswriter Bob Ryan about the start of NBA free agency
|
449
|
+
Wednesday, and the man with the most power in the NBA \u2014 LeBron James.\u00bb
|
450
|
+
E-Mail This http://devel.desk.com/customer/portal/articles/2044272-as-the-nba-s-free-agency-period-begins-lebron-james-has-all-the-power","body_chat_auto":true,"body_web_callback":"<p>NPR''s
|
451
|
+
Rachel Martin talks to sportswriter Bob Ryan about the start of NBA free agency
|
452
|
+
Wednesday, and the man with the most power in the NBA \u2014 LeBron James.</p><p><a
|
453
|
+
href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419240790\">»
|
454
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"NPR''s
|
455
|
+
Rachel Martin talks to sportswriter Bob Ryan about the start of NBA free agency
|
456
|
+
Wednesday, and the man with... http://devel.desk.com/customer/portal/articles/2044272-as-the-nba-s-free-agency-period-begins-lebron-james-has-all-the-power","body_twitter_auto":true,"body_qna":"NPR''s
|
457
|
+
Rachel Martin talks to sportswriter Bob Ryan about the start of NBA free agency
|
458
|
+
Wednesday, and the man with the most power in the NBA \u2014 LeBron James.\n\n\u00bb
|
459
|
+
E-Mail This","body_qna_auto":true,"body_phone":"NPR''s Rachel Martin talks
|
460
|
+
to sportswriter Bob Ryan about the start of NBA free agency Wednesday, and
|
461
|
+
the man with the most power in the NBA \u2014 LeBron James.\n\n\u00bb E-Mail
|
462
|
+
This","body_phone_auto":true,"body_facebook":"NPR''s Rachel Martin talks to
|
463
|
+
sportswriter Bob Ryan about the start of NBA free agency Wednesday, and the
|
464
|
+
man with the most power in the NBA \u2014 LeBron James.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":19,"quickcode":null,"publish_at":"2015-07-01T23:18:39Z","updated_at":"2015-07-01T23:18:39Z","created_at":"2015-07-01T23:18:39Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044272-as-the-nba-s-free-agency-period-begins-lebron-james-has-all-the-power","_links":{"self":{"href":"/api/v2/articles/2044272","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044272/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044272/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044273,"locale":null,"subject":"Justice
|
465
|
+
Department Investigates Possible Collusion In U.S. Airline Industry","body":"<p>NPR''s
|
466
|
+
Robert Siegel talks with Sen. Richard Blumenthal, who asked the Justice Department
|
467
|
+
to investigate possible collusion in the U.S. airline industry to keep ticket
|
468
|
+
prices high.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419240811\">»
|
469
|
+
E-Mail This</a></p>","body_email":"NPR''s Robert Siegel talks with Sen. Richard
|
470
|
+
Blumenthal, who asked the Justice Department to investigate possible collusion
|
471
|
+
in the U.S. airline industry to keep ticket prices high.\n\n\u00bb E-Mail
|
472
|
+
This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419240811)","body_email_auto":true,"body_chat":"NPR''s
|
473
|
+
Robert Siegel talks with Sen. Richard Blumenthal, who asked the Justice Department
|
474
|
+
to investigate possible collusion in the U.S. airline industry to keep ticket
|
475
|
+
prices high.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044273-justice-department-investigates-possible-collusion-in-u-s-airline-industry","body_chat_auto":true,"body_web_callback":"<p>NPR''s
|
476
|
+
Robert Siegel talks with Sen. Richard Blumenthal, who asked the Justice Department
|
477
|
+
to investigate possible collusion in the U.S. airline industry to keep ticket
|
478
|
+
prices high.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419240811\">»
|
479
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"NPR''s
|
480
|
+
Robert Siegel talks with Sen. Richard Blumenthal, who asked the Justice Department
|
481
|
+
to investigate possible ... http://devel.desk.com/customer/portal/articles/2044273-justice-department-investigates-possible-collusion-in-u-s-airline-industry","body_twitter_auto":true,"body_qna":"NPR''s
|
482
|
+
Robert Siegel talks with Sen. Richard Blumenthal, who asked the Justice Department
|
483
|
+
to investigate possible collusion in the U.S. airline industry to keep ticket
|
484
|
+
prices high.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"NPR''s
|
485
|
+
Robert Siegel talks with Sen. Richard Blumenthal, who asked the Justice Department
|
486
|
+
to investigate possible collusion in the U.S. airline industry to keep ticket
|
487
|
+
prices high.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"NPR''s
|
488
|
+
Robert Siegel talks with Sen. Richard Blumenthal, who asked the Justice Department
|
489
|
+
to investigate possible collusion in the U.S. airline industry to keep ticket
|
490
|
+
prices high.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":20,"quickcode":null,"publish_at":"2015-07-01T23:18:39Z","updated_at":"2015-07-01T23:18:39Z","created_at":"2015-07-01T23:18:39Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044273-justice-department-investigates-possible-collusion-in-u-s-airline-industry","_links":{"self":{"href":"/api/v2/articles/2044273","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044273/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044273/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044274,"locale":null,"subject":"The
|
491
|
+
Economics Of Airline Baggage Check; To Pay Or Not To Pay","body":"<p>NPR''s
|
492
|
+
Robert Siegel interviews Rick Seaney, CEO of Farecompare.com, about the economics
|
493
|
+
of luggage fees for airlines. JetBlue started to charge fees for the first
|
494
|
+
checked bag on Wednesday.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419218276\">»
|
495
|
+
E-Mail This</a></p>","body_email":"NPR''s Robert Siegel interviews Rick Seaney,
|
496
|
+
CEO of Farecompare.com, about the economics of luggage fees for airlines.
|
497
|
+
JetBlue started to charge fees for the first checked bag on Wednesday.\n\n\u00bb
|
498
|
+
E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419218276)","body_email_auto":true,"body_chat":"NPR''s
|
499
|
+
Robert Siegel interviews Rick Seaney, CEO of Farecompare.com, about the economics
|
500
|
+
of luggage fees for airlines. JetBlue started to charge fees for the first
|
501
|
+
checked bag on Wednesday.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044274-the-economics-of-airline-baggage-check-to-pay-or-not-to-pay","body_chat_auto":true,"body_web_callback":"<p>NPR''s
|
502
|
+
Robert Siegel interviews Rick Seaney, CEO of Farecompare.com, about the economics
|
503
|
+
of luggage fees for airlines. JetBlue started to charge fees for the first
|
504
|
+
checked bag on Wednesday.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419218276\">»
|
505
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"NPR''s
|
506
|
+
Robert Siegel interviews Rick Seaney, CEO of Farecompare.com, about the economics
|
507
|
+
of luggage fees for airli... http://devel.desk.com/customer/portal/articles/2044274-the-economics-of-airline-baggage-check-to-pay-or-not-to-pay","body_twitter_auto":true,"body_qna":"NPR''s
|
508
|
+
Robert Siegel interviews Rick Seaney, CEO of Farecompare.com, about the economics
|
509
|
+
of luggage fees for airlines. JetBlue started to charge fees for the first
|
510
|
+
checked bag on Wednesday.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"NPR''s
|
511
|
+
Robert Siegel interviews Rick Seaney, CEO of Farecompare.com, about the economics
|
512
|
+
of luggage fees for airlines. JetBlue started to charge fees for the first
|
513
|
+
checked bag on Wednesday.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"NPR''s
|
514
|
+
Robert Siegel interviews Rick Seaney, CEO of Farecompare.com, about the economics
|
515
|
+
of luggage fees for airlines. JetBlue started to charge fees for the first
|
516
|
+
checked bag on Wednesday.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":21,"quickcode":null,"publish_at":"2015-07-01T23:18:39Z","updated_at":"2015-07-01T23:18:39Z","created_at":"2015-07-01T23:18:39Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044274-the-economics-of-airline-baggage-check-to-pay-or-not-to-pay","_links":{"self":{"href":"/api/v2/articles/2044274","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044274/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044274/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044275,"locale":null,"subject":"Justice
|
517
|
+
Department Investigating Airlines For Possible Price Collusion","body":"<p>The
|
518
|
+
department says it is looking into \"possible unlawful coordination\" by several
|
519
|
+
major carriers. American and United have confirmed that they are among the
|
520
|
+
airlines under scrutiny.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419245511\">»
|
521
|
+
E-Mail This</a></p>","body_email":"The department says it is looking into
|
522
|
+
\"possible unlawful coordination\" by several major carriers. American and
|
523
|
+
United have confirmed that they are among the airlines under scrutiny.\n\n\u00bb
|
524
|
+
E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419245511)","body_email_auto":true,"body_chat":"The
|
525
|
+
department says it is looking into \"possible unlawful coordination\" by several
|
526
|
+
major carriers. American and United have confirmed that they are among the
|
527
|
+
airlines under scrutiny.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044275-justice-department-investigating-airlines-for-possible-price-collusion","body_chat_auto":true,"body_web_callback":"<p>The
|
528
|
+
department says it is looking into \"possible unlawful coordination\" by several
|
529
|
+
major carriers. American and United have confirmed that they are among the
|
530
|
+
airlines under scrutiny.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419245511\">»
|
531
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"The department
|
532
|
+
says it is looking into \"possible unlawful coordination\" by several major
|
533
|
+
carriers. American and U... http://devel.desk.com/customer/portal/articles/2044275-justice-department-investigating-airlines-for-possible-price-collusion","body_twitter_auto":true,"body_qna":"The
|
534
|
+
department says it is looking into \"possible unlawful coordination\" by several
|
535
|
+
major carriers. American and United have confirmed that they are among the
|
536
|
+
airlines under scrutiny.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"The
|
537
|
+
department says it is looking into \"possible unlawful coordination\" by several
|
538
|
+
major carriers. American and United have confirmed that they are among the
|
539
|
+
airlines under scrutiny.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"The
|
540
|
+
department says it is looking into \"possible unlawful coordination\" by several
|
541
|
+
major carriers. American and United have confirmed that they are among the
|
542
|
+
airlines under scrutiny.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":22,"quickcode":null,"publish_at":"2015-07-01T23:18:40Z","updated_at":"2015-07-01T23:18:40Z","created_at":"2015-07-01T23:18:40Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044275-justice-department-investigating-airlines-for-possible-price-collusion","_links":{"self":{"href":"/api/v2/articles/2044275","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044275/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044275/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044276,"locale":null,"subject":"Frontier
|
543
|
+
Airlines Exit Leaves Delaware Without Commercial Flights","body":"<p>Frontier
|
544
|
+
Airlines is saying goodbye to New Castle Airport in Wilmington, Del. That
|
545
|
+
makes the second-smallest state the only one in the country without access
|
546
|
+
to commercial passenger flights.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419240773\">»
|
547
|
+
E-Mail This</a></p>","body_email":"Frontier Airlines is saying goodbye to
|
548
|
+
New Castle Airport in Wilmington, Del. That makes the second-smallest state
|
549
|
+
the only one in the country without access to commercial passenger flights.\n\n\u00bb
|
550
|
+
E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419240773)","body_email_auto":true,"body_chat":"Frontier
|
551
|
+
Airlines is saying goodbye to New Castle Airport in Wilmington, Del. That
|
552
|
+
makes the second-smallest state the only one in the country without access
|
553
|
+
to commercial passenger flights.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044276-frontier-airlines-exit-leaves-delaware-without-commercial-flights","body_chat_auto":true,"body_web_callback":"<p>Frontier
|
554
|
+
Airlines is saying goodbye to New Castle Airport in Wilmington, Del. That
|
555
|
+
makes the second-smallest state the only one in the country without access
|
556
|
+
to commercial passenger flights.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419240773\">»
|
557
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"Frontier
|
558
|
+
Airlines is saying goodbye to New Castle Airport in Wilmington, Del. That
|
559
|
+
makes the second-smallest stat... http://devel.desk.com/customer/portal/articles/2044276-frontier-airlines-exit-leaves-delaware-without-commercial-flights","body_twitter_auto":true,"body_qna":"Frontier
|
560
|
+
Airlines is saying goodbye to New Castle Airport in Wilmington, Del. That
|
561
|
+
makes the second-smallest state the only one in the country without access
|
562
|
+
to commercial passenger flights.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"Frontier
|
563
|
+
Airlines is saying goodbye to New Castle Airport in Wilmington, Del. That
|
564
|
+
makes the second-smallest state the only one in the country without access
|
565
|
+
to commercial passenger flights.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"Frontier
|
566
|
+
Airlines is saying goodbye to New Castle Airport in Wilmington, Del. That
|
567
|
+
makes the second-smallest state the only one in the country without access
|
568
|
+
to commercial passenger flights.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":23,"quickcode":null,"publish_at":"2015-07-01T23:18:40Z","updated_at":"2015-07-01T23:18:40Z","created_at":"2015-07-01T23:18:40Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044276-frontier-airlines-exit-leaves-delaware-without-commercial-flights","_links":{"self":{"href":"/api/v2/articles/2044276","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044276/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044276/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044277,"locale":null,"subject":"Industry
|
569
|
+
Payments To Doctors Are Ingrained, Federal Data Show","body":"<p>The latest
|
570
|
+
data on payments from drug and device companies to doctors show that many
|
571
|
+
doctors received payments on 100 or more days last year. Some received payments
|
572
|
+
on more days than they didn''t.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419206613\">»
|
573
|
+
E-Mail This</a></p>","body_email":"The latest data on payments from drug and
|
574
|
+
device companies to doctors show that many doctors received payments on 100
|
575
|
+
or more days last year. Some received payments on more days than they didn''t.\n\n\u00bb
|
576
|
+
E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419206613)","body_email_auto":true,"body_chat":"The
|
577
|
+
latest data on payments from drug and device companies to doctors show that
|
578
|
+
many doctors received payments on 100 or more days last year. Some received
|
579
|
+
payments on more days than they didn''t.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044277-industry-payments-to-doctors-are-ingrained-federal-data-show","body_chat_auto":true,"body_web_callback":"<p>The
|
580
|
+
latest data on payments from drug and device companies to doctors show that
|
581
|
+
many doctors received payments on 100 or more days last year. Some received
|
582
|
+
payments on more days than they didn''t.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419206613\">»
|
583
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"The latest
|
584
|
+
data on payments from drug and device companies to doctors show that many
|
585
|
+
doctors received payments on... http://devel.desk.com/customer/portal/articles/2044277-industry-payments-to-doctors-are-ingrained-federal-data-show","body_twitter_auto":true,"body_qna":"The
|
586
|
+
latest data on payments from drug and device companies to doctors show that
|
587
|
+
many doctors received payments on 100 or more days last year. Some received
|
588
|
+
payments on more days than they didn''t.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"The
|
589
|
+
latest data on payments from drug and device companies to doctors show that
|
590
|
+
many doctors received payments on 100 or more days last year. Some received
|
591
|
+
payments on more days than they didn''t.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"The
|
592
|
+
latest data on payments from drug and device companies to doctors show that
|
593
|
+
many doctors received payments on 100 or more days last year. Some received
|
594
|
+
payments on more days than they didn''t.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":24,"quickcode":null,"publish_at":"2015-07-01T23:18:40Z","updated_at":"2015-07-01T23:18:40Z","created_at":"2015-07-01T23:18:40Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044277-industry-payments-to-doctors-are-ingrained-federal-data-show","_links":{"self":{"href":"/api/v2/articles/2044277","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044277/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044277/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044278,"locale":null,"subject":"Toyota''s
|
595
|
+
Top Female Executive Resigns After Arrest","body":"<p>Julie Hamp was accused
|
596
|
+
of importing the prescription painkiller oxycodone in violation of the country''s
|
597
|
+
narcotics laws. She was arrested June 18 but has not been charged.</p><p><a
|
598
|
+
href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419101492\">»
|
599
|
+
E-Mail This</a></p>","body_email":"Julie Hamp was accused of importing the
|
600
|
+
prescription painkiller oxycodone in violation of the country''s narcotics
|
601
|
+
laws. She was arrested June 18 but has not been charged.\n\n\u00bb E-Mail
|
602
|
+
This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419101492)","body_email_auto":true,"body_chat":"Julie
|
603
|
+
Hamp was accused of importing the prescription painkiller oxycodone in violation
|
604
|
+
of the country''s narcotics laws. She was arrested June 18 but has not been
|
605
|
+
charged.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044278-toyota-s-top-female-executive-resigns-after-arrest","body_chat_auto":true,"body_web_callback":"<p>Julie
|
606
|
+
Hamp was accused of importing the prescription painkiller oxycodone in violation
|
607
|
+
of the country''s narcotics laws. She was arrested June 18 but has not been
|
608
|
+
charged.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419101492\">»
|
609
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"Julie Hamp
|
610
|
+
was accused of importing the prescription painkiller oxycodone in violation
|
611
|
+
of the country''s narcotics... http://devel.desk.com/customer/portal/articles/2044278-toyota-s-top-female-executive-resigns-after-arrest","body_twitter_auto":true,"body_qna":"Julie
|
612
|
+
Hamp was accused of importing the prescription painkiller oxycodone in violation
|
613
|
+
of the country''s narcotics laws. She was arrested June 18 but has not been
|
614
|
+
charged.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"Julie Hamp
|
615
|
+
was accused of importing the prescription painkiller oxycodone in violation
|
616
|
+
of the country''s narcotics laws. She was arrested June 18 but has not been
|
617
|
+
charged.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"Julie
|
618
|
+
Hamp was accused of importing the prescription painkiller oxycodone in violation
|
619
|
+
of the country''s narcotics laws. She was arrested June 18 but has not been
|
620
|
+
charged.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":25,"quickcode":null,"publish_at":"2015-07-01T23:18:41Z","updated_at":"2015-07-01T23:18:41Z","created_at":"2015-07-01T23:18:41Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044278-toyota-s-top-female-executive-resigns-after-arrest","_links":{"self":{"href":"/api/v2/articles/2044278","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044278/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044278/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044279,"locale":null,"subject":"Greek
|
621
|
+
Leader Reiterates Call For ''No'' Vote In Referendum","body":"<p>Prime Minister
|
622
|
+
Alexis Tsipras insisted a rejection of creditors'' proposals for a bailout
|
623
|
+
did not mean Greece would leave the eurozone. Greece officially missed a loan
|
624
|
+
payment to the IMF.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419098840\">»
|
625
|
+
E-Mail This</a></p>","body_email":"Prime Minister Alexis Tsipras insisted
|
626
|
+
a rejection of creditors'' proposals for a bailout did not mean Greece would
|
627
|
+
leave the eurozone. Greece officially missed a loan payment to the IMF.\n\n\u00bb
|
628
|
+
E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419098840)","body_email_auto":true,"body_chat":"Prime
|
629
|
+
Minister Alexis Tsipras insisted a rejection of creditors'' proposals for
|
630
|
+
a bailout did not mean Greece would leave the eurozone. Greece officially
|
631
|
+
missed a loan payment to the IMF.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044279-greek-leader-reiterates-call-for-no-vote-in-referendum","body_chat_auto":true,"body_web_callback":"<p>Prime
|
632
|
+
Minister Alexis Tsipras insisted a rejection of creditors'' proposals for
|
633
|
+
a bailout did not mean Greece would leave the eurozone. Greece officially
|
634
|
+
missed a loan payment to the IMF.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419098840\">»
|
635
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"Prime Minister
|
636
|
+
Alexis Tsipras insisted a rejection of creditors'' proposals for a bailout
|
637
|
+
did not mean Greece woul... http://devel.desk.com/customer/portal/articles/2044279-greek-leader-reiterates-call-for-no-vote-in-referendum","body_twitter_auto":true,"body_qna":"Prime
|
638
|
+
Minister Alexis Tsipras insisted a rejection of creditors'' proposals for
|
639
|
+
a bailout did not mean Greece would leave the eurozone. Greece officially
|
640
|
+
missed a loan payment to the IMF.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"Prime
|
641
|
+
Minister Alexis Tsipras insisted a rejection of creditors'' proposals for
|
642
|
+
a bailout did not mean Greece would leave the eurozone. Greece officially
|
643
|
+
missed a loan payment to the IMF.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"Prime
|
644
|
+
Minister Alexis Tsipras insisted a rejection of creditors'' proposals for
|
645
|
+
a bailout did not mean Greece would leave the eurozone. Greece officially
|
646
|
+
missed a loan payment to the IMF.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":26,"quickcode":null,"publish_at":"2015-07-01T23:18:41Z","updated_at":"2015-07-01T23:18:41Z","created_at":"2015-07-01T23:18:41Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044279-greek-leader-reiterates-call-for-no-vote-in-referendum","_links":{"self":{"href":"/api/v2/articles/2044279","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044279/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044279/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044280,"locale":null,"subject":"After
|
647
|
+
Supreme Court Decision, What''s Next For Gay Rights Groups?","body":"<p>Advocates
|
648
|
+
concede it may be more challenging to rally public support and dollars for
|
649
|
+
causes that may be less obvious or visceral than marriage.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418838989\">»
|
650
|
+
E-Mail This</a></p>","body_email":"Advocates concede it may be more challenging
|
651
|
+
to rally public support and dollars for causes that may be less obvious or
|
652
|
+
visceral than marriage.\n\n\u00bb E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=418838989)","body_email_auto":true,"body_chat":"Advocates
|
653
|
+
concede it may be more challenging to rally public support and dollars for
|
654
|
+
causes that may be less obvious or visceral than marriage.\u00bb E-Mail This
|
655
|
+
http://devel.desk.com/customer/portal/articles/2044280-after-supreme-court-decision-what-s-next-for-gay-rights-groups-","body_chat_auto":true,"body_web_callback":"<p>Advocates
|
656
|
+
concede it may be more challenging to rally public support and dollars for
|
657
|
+
causes that may be less obvious or visceral than marriage.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418838989\">»
|
658
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"Advocates
|
659
|
+
concede it may be more challenging to rally public support and dollars for
|
660
|
+
causes that may be less obvi... http://devel.desk.com/customer/portal/articles/2044280-after-supreme-court-decision-what-s-next-for-gay-rights-groups-","body_twitter_auto":true,"body_qna":"Advocates
|
661
|
+
concede it may be more challenging to rally public support and dollars for
|
662
|
+
causes that may be less obvious or visceral than marriage.\n\n\u00bb E-Mail
|
663
|
+
This","body_qna_auto":true,"body_phone":"Advocates concede it may be more
|
664
|
+
challenging to rally public support and dollars for causes that may be less
|
665
|
+
obvious or visceral than marriage.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"Advocates
|
666
|
+
concede it may be more challenging to rally public support and dollars for
|
667
|
+
causes that may be less obvious or visceral than marriage.\n\n\u00bb E-Mail
|
668
|
+
This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":27,"quickcode":null,"publish_at":"2015-07-01T23:18:41Z","updated_at":"2015-07-01T23:18:41Z","created_at":"2015-07-01T23:18:41Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044280-after-supreme-court-decision-what-s-next-for-gay-rights-groups-","_links":{"self":{"href":"/api/v2/articles/2044280","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044280/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044280/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044281,"locale":null,"subject":"As
|
669
|
+
Panama''s Economy Booms, So Do Concerns Over Debt And The Environment","body":"<p>Panama''s
|
670
|
+
economy, while cooling in recent years, is still growing at astonishing rates
|
671
|
+
compared to its neighbors. But environmental damage and huge government debt
|
672
|
+
are part of the package.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418964649\">»
|
673
|
+
E-Mail This</a></p>","body_email":"Panama''s economy, while cooling in recent
|
674
|
+
years, is still growing at astonishing rates compared to its neighbors. But
|
675
|
+
environmental damage and huge government debt are part of the package.\n\n\u00bb
|
676
|
+
E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=418964649)","body_email_auto":true,"body_chat":"Panama''s
|
677
|
+
economy, while cooling in recent years, is still growing at astonishing rates
|
678
|
+
compared to its neighbors. But environmental damage and huge government debt
|
679
|
+
are part of the package.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044281-as-panama-s-economy-booms-so-do-concerns-over-debt-and-the-environment","body_chat_auto":true,"body_web_callback":"<p>Panama''s
|
680
|
+
economy, while cooling in recent years, is still growing at astonishing rates
|
681
|
+
compared to its neighbors. But environmental damage and huge government debt
|
682
|
+
are part of the package.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418964649\">»
|
683
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"Panama''s
|
684
|
+
economy, while cooling in recent years, is still growing at astonishing rates
|
685
|
+
compared to its neighbors.... http://devel.desk.com/customer/portal/articles/2044281-as-panama-s-economy-booms-so-do-concerns-over-debt-and-the-environment","body_twitter_auto":true,"body_qna":"Panama''s
|
686
|
+
economy, while cooling in recent years, is still growing at astonishing rates
|
687
|
+
compared to its neighbors. But environmental damage and huge government debt
|
688
|
+
are part of the package.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"Panama''s
|
689
|
+
economy, while cooling in recent years, is still growing at astonishing rates
|
690
|
+
compared to its neighbors. But environmental damage and huge government debt
|
691
|
+
are part of the package.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"Panama''s
|
692
|
+
economy, while cooling in recent years, is still growing at astonishing rates
|
693
|
+
compared to its neighbors. But environmental damage and huge government debt
|
694
|
+
are part of the package.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":28,"quickcode":null,"publish_at":"2015-07-01T23:18:42Z","updated_at":"2015-07-01T23:18:42Z","created_at":"2015-07-01T23:18:41Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044281-as-panama-s-economy-booms-so-do-concerns-over-debt-and-the-environment","_links":{"self":{"href":"/api/v2/articles/2044281","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044281/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044281/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044282,"locale":null,"subject":"Martha
|
695
|
+
Stewart''s Company Sold For A Fraction Of Its Previous Worth","body":"<p>At
|
696
|
+
its height, Martha Stewart Living Omnimedia was worth $2 billion. Her company
|
697
|
+
is being sold to Sequential Brands Group for $353 million. Linda Wertheimer
|
698
|
+
talks to brand analyst Liz Dunn.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419076199\">»
|
699
|
+
E-Mail This</a></p>","body_email":"At its height, Martha Stewart Living Omnimedia
|
700
|
+
was worth $2 billion. Her company is being sold to Sequential Brands Group
|
701
|
+
for $353 million. Linda Wertheimer talks to brand analyst Liz Dunn.\n\n\u00bb
|
702
|
+
E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419076199)","body_email_auto":true,"body_chat":"At
|
703
|
+
its height, Martha Stewart Living Omnimedia was worth $2 billion. Her company
|
704
|
+
is being sold to Sequential Brands Group for $353 million. Linda Wertheimer
|
705
|
+
talks to brand analyst Liz Dunn.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044282-martha-stewart-s-company-sold-for-a-fraction-of-its-previous-worth","body_chat_auto":true,"body_web_callback":"<p>At
|
706
|
+
its height, Martha Stewart Living Omnimedia was worth $2 billion. Her company
|
707
|
+
is being sold to Sequential Brands Group for $353 million. Linda Wertheimer
|
708
|
+
talks to brand analyst Liz Dunn.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419076199\">»
|
709
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"At its
|
710
|
+
height, Martha Stewart Living Omnimedia was worth $2 billion. Her company
|
711
|
+
is being sold to Sequential Bran... http://devel.desk.com/customer/portal/articles/2044282-martha-stewart-s-company-sold-for-a-fraction-of-its-previous-worth","body_twitter_auto":true,"body_qna":"At
|
712
|
+
its height, Martha Stewart Living Omnimedia was worth $2 billion. Her company
|
713
|
+
is being sold to Sequential Brands Group for $353 million. Linda Wertheimer
|
714
|
+
talks to brand analyst Liz Dunn.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"At
|
715
|
+
its height, Martha Stewart Living Omnimedia was worth $2 billion. Her company
|
716
|
+
is being sold to Sequential Brands Group for $353 million. Linda Wertheimer
|
717
|
+
talks to brand analyst Liz Dunn.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"At
|
718
|
+
its height, Martha Stewart Living Omnimedia was worth $2 billion. Her company
|
719
|
+
is being sold to Sequential Brands Group for $353 million. Linda Wertheimer
|
720
|
+
talks to brand analyst Liz Dunn.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":29,"quickcode":null,"publish_at":"2015-07-01T23:18:42Z","updated_at":"2015-07-01T23:18:42Z","created_at":"2015-07-01T23:18:42Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044282-martha-stewart-s-company-sold-for-a-fraction-of-its-previous-worth","_links":{"self":{"href":"/api/v2/articles/2044282","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044282/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044282/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044283,"locale":null,"subject":"Online
|
721
|
+
Fund Started To Raise Money For Greece''s Debt","body":"<p>Thom Feeney of
|
722
|
+
London says he was fed up with the showdowns between Greece and its creditors.
|
723
|
+
He started a campaign called Greek Bailout Fund to raise 1.6 billion euros
|
724
|
+
to help pay Greece''s debt.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419076136\">»
|
725
|
+
E-Mail This</a></p>","body_email":"Thom Feeney of London says he was fed up
|
726
|
+
with the showdowns between Greece and its creditors. He started a campaign
|
727
|
+
called Greek Bailout Fund to raise 1.6 billion euros to help pay Greece''s
|
728
|
+
debt.\n\n\u00bb E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419076136)","body_email_auto":true,"body_chat":"Thom
|
729
|
+
Feeney of London says he was fed up with the showdowns between Greece and
|
730
|
+
its creditors. He started a campaign called Greek Bailout Fund to raise 1.6
|
731
|
+
billion euros to help pay Greece''s debt.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044283-online-fund-started-to-raise-money-for-greece-s-debt","body_chat_auto":true,"body_web_callback":"<p>Thom
|
732
|
+
Feeney of London says he was fed up with the showdowns between Greece and
|
733
|
+
its creditors. He started a campaign called Greek Bailout Fund to raise 1.6
|
734
|
+
billion euros to help pay Greece''s debt.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419076136\">»
|
735
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"Thom Feeney
|
736
|
+
of London says he was fed up with the showdowns between Greece and its creditors.
|
737
|
+
He started a campai... http://devel.desk.com/customer/portal/articles/2044283-online-fund-started-to-raise-money-for-greece-s-debt","body_twitter_auto":true,"body_qna":"Thom
|
738
|
+
Feeney of London says he was fed up with the showdowns between Greece and
|
739
|
+
its creditors. He started a campaign called Greek Bailout Fund to raise 1.6
|
740
|
+
billion euros to help pay Greece''s debt.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"Thom
|
741
|
+
Feeney of London says he was fed up with the showdowns between Greece and
|
742
|
+
its creditors. He started a campaign called Greek Bailout Fund to raise 1.6
|
743
|
+
billion euros to help pay Greece''s debt.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"Thom
|
744
|
+
Feeney of London says he was fed up with the showdowns between Greece and
|
745
|
+
its creditors. He started a campaign called Greek Bailout Fund to raise 1.6
|
746
|
+
billion euros to help pay Greece''s debt.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":30,"quickcode":null,"publish_at":"2015-07-01T23:18:43Z","updated_at":"2015-07-01T23:18:43Z","created_at":"2015-07-01T23:18:42Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044283-online-fund-started-to-raise-money-for-greece-s-debt","_links":{"self":{"href":"/api/v2/articles/2044283","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044283/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044283/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044284,"locale":null,"subject":"Historic
|
747
|
+
Vote May Determine Whether Greece Remains In The Eurozone","body":"<p>Greek
|
748
|
+
voters on Sunday face a referendum on further austerity measures in exchange
|
749
|
+
for bailouts. But the unstated question is whether Greece should give up the
|
750
|
+
euro.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419047707\">»
|
751
|
+
E-Mail This</a></p>","body_email":"Greek voters on Sunday face a referendum
|
752
|
+
on further austerity measures in exchange for bailouts. But the unstated question
|
753
|
+
is whether Greece should give up the euro.\n\n\u00bb E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419047707)","body_email_auto":true,"body_chat":"Greek
|
754
|
+
voters on Sunday face a referendum on further austerity measures in exchange
|
755
|
+
for bailouts. But the unstated question is whether Greece should give up the
|
756
|
+
euro.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044284-historic-vote-may-determine-whether-greece-remains-in-the-eurozone","body_chat_auto":true,"body_web_callback":"<p>Greek
|
757
|
+
voters on Sunday face a referendum on further austerity measures in exchange
|
758
|
+
for bailouts. But the unstated question is whether Greece should give up the
|
759
|
+
euro.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419047707\">»
|
760
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"Greek voters
|
761
|
+
on Sunday face a referendum on further austerity measures in exchange for
|
762
|
+
bailouts. But the unstated... http://devel.desk.com/customer/portal/articles/2044284-historic-vote-may-determine-whether-greece-remains-in-the-eurozone","body_twitter_auto":true,"body_qna":"Greek
|
763
|
+
voters on Sunday face a referendum on further austerity measures in exchange
|
764
|
+
for bailouts. But the unstated question is whether Greece should give up the
|
765
|
+
euro.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"Greek voters
|
766
|
+
on Sunday face a referendum on further austerity measures in exchange for
|
767
|
+
bailouts. But the unstated question is whether Greece should give up the euro.\n\n\u00bb
|
768
|
+
E-Mail This","body_phone_auto":true,"body_facebook":"Greek voters on Sunday
|
769
|
+
face a referendum on further austerity measures in exchange for bailouts.
|
770
|
+
But the unstated question is whether Greece should give up the euro.\n\n\u00bb
|
771
|
+
E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":31,"quickcode":null,"publish_at":"2015-07-01T23:18:43Z","updated_at":"2015-07-01T23:18:43Z","created_at":"2015-07-01T23:18:43Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044284-historic-vote-may-determine-whether-greece-remains-in-the-eurozone","_links":{"self":{"href":"/api/v2/articles/2044284","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044284/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044284/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044285,"locale":null,"subject":"Donald
|
772
|
+
Trump Sues Univision For $500 Million","body":"<p>In the suit, Trump claims
|
773
|
+
Univision is attempting to suppress his freedom of speech by dropping coverage
|
774
|
+
of the Miss Universe Pageant, which Trump co-owns.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418990895\">»
|
775
|
+
E-Mail This</a></p>","body_email":"In the suit, Trump claims Univision is
|
776
|
+
attempting to suppress his freedom of speech by dropping coverage of the Miss
|
777
|
+
Universe Pageant, which Trump co-owns.\n\n\u00bb E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=418990895)","body_email_auto":true,"body_chat":"In
|
778
|
+
the suit, Trump claims Univision is attempting to suppress his freedom of
|
779
|
+
speech by dropping coverage of the Miss Universe Pageant, which Trump co-owns.\u00bb
|
780
|
+
E-Mail This http://devel.desk.com/customer/portal/articles/2044285-donald-trump-sues-univision-for-500-million","body_chat_auto":true,"body_web_callback":"<p>In
|
781
|
+
the suit, Trump claims Univision is attempting to suppress his freedom of
|
782
|
+
speech by dropping coverage of the Miss Universe Pageant, which Trump co-owns.</p><p><a
|
783
|
+
href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418990895\">»
|
784
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"In the
|
785
|
+
suit, Trump claims Univision is attempting to suppress his freedom of speech
|
786
|
+
by dropping coverage of the M... http://devel.desk.com/customer/portal/articles/2044285-donald-trump-sues-univision-for-500-million","body_twitter_auto":true,"body_qna":"In
|
787
|
+
the suit, Trump claims Univision is attempting to suppress his freedom of
|
788
|
+
speech by dropping coverage of the Miss Universe Pageant, which Trump co-owns.\n\n\u00bb
|
789
|
+
E-Mail This","body_qna_auto":true,"body_phone":"In the suit, Trump claims
|
790
|
+
Univision is attempting to suppress his freedom of speech by dropping coverage
|
791
|
+
of the Miss Universe Pageant, which Trump co-owns.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"In
|
792
|
+
the suit, Trump claims Univision is attempting to suppress his freedom of
|
793
|
+
speech by dropping coverage of the Miss Universe Pageant, which Trump co-owns.\n\n\u00bb
|
794
|
+
E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":32,"quickcode":null,"publish_at":"2015-07-01T23:18:43Z","updated_at":"2015-07-01T23:18:43Z","created_at":"2015-07-01T23:18:43Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044285-donald-trump-sues-univision-for-500-million","_links":{"self":{"href":"/api/v2/articles/2044285","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044285/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044285/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044286,"locale":null,"subject":"Communities
|
795
|
+
Get A Lift As Local Food Sales Surge To $11 Billion A Year","body":"<p>The
|
796
|
+
U.S. Department of Agriculture says local food is growing quickly from a niche
|
797
|
+
market into something that''s generating significant income for communities
|
798
|
+
across the country.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418835394\">»
|
799
|
+
E-Mail This</a></p>","body_email":"The U.S. Department of Agriculture says
|
800
|
+
local food is growing quickly from a niche market into something that''s generating
|
801
|
+
significant income for communities across the country.\n\n\u00bb E-Mail This
|
802
|
+
(http://www.npr.org/templates/email/emailAFriend.php?storyId=418835394)","body_email_auto":true,"body_chat":"The
|
803
|
+
U.S. Department of Agriculture says local food is growing quickly from a niche
|
804
|
+
market into something that''s generating significant income for communities
|
805
|
+
across the country.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044286-communities-get-a-lift-as-local-food-sales-surge-to-11-billion-a-year","body_chat_auto":true,"body_web_callback":"<p>The
|
806
|
+
U.S. Department of Agriculture says local food is growing quickly from a niche
|
807
|
+
market into something that''s generating significant income for communities
|
808
|
+
across the country.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418835394\">»
|
809
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"The U.S.
|
810
|
+
Department of Agriculture says local food is growing quickly from a niche
|
811
|
+
market into something that''s g... http://devel.desk.com/customer/portal/articles/2044286-communities-get-a-lift-as-local-food-sales-surge-to-11-billion-a-year","body_twitter_auto":true,"body_qna":"The
|
812
|
+
U.S. Department of Agriculture says local food is growing quickly from a niche
|
813
|
+
market into something that''s generating significant income for communities
|
814
|
+
across the country.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"The
|
815
|
+
U.S. Department of Agriculture says local food is growing quickly from a niche
|
816
|
+
market into something that''s generating significant income for communities
|
817
|
+
across the country.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"The
|
818
|
+
U.S. Department of Agriculture says local food is growing quickly from a niche
|
819
|
+
market into something that''s generating significant income for communities
|
820
|
+
across the country.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":33,"quickcode":null,"publish_at":"2015-07-01T23:18:43Z","updated_at":"2015-07-01T23:18:43Z","created_at":"2015-07-01T23:18:43Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044286-communities-get-a-lift-as-local-food-sales-surge-to-11-billion-a-year","_links":{"self":{"href":"/api/v2/articles/2044286","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044286/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044286/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044287,"locale":null,"subject":"How
|
821
|
+
Your Brain Remembers Where You Parked The Car","body":"<p>When people saw
|
822
|
+
photos that linked a famous person with a famous place, it changed the behavior
|
823
|
+
of certain neurons in their brains. And it changed their memories, too.</p><p><a
|
824
|
+
href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419165395\">»
|
825
|
+
E-Mail This</a></p>","body_email":"When people saw photos that linked a famous
|
826
|
+
person with a famous place, it changed the behavior of certain neurons in
|
827
|
+
their brains. And it changed their memories, too.\n\n\u00bb E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419165395)","body_email_auto":true,"body_chat":"When
|
828
|
+
people saw photos that linked a famous person with a famous place, it changed
|
829
|
+
the behavior of certain neurons in their brains. And it changed their memories,
|
830
|
+
too.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044287-how-your-brain-remembers-where-you-parked-the-car","body_chat_auto":true,"body_web_callback":"<p>When
|
831
|
+
people saw photos that linked a famous person with a famous place, it changed
|
832
|
+
the behavior of certain neurons in their brains. And it changed their memories,
|
833
|
+
too.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419165395\">»
|
834
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"When people
|
835
|
+
saw photos that linked a famous person with a famous place, it changed the
|
836
|
+
behavior of certain neuron... http://devel.desk.com/customer/portal/articles/2044287-how-your-brain-remembers-where-you-parked-the-car","body_twitter_auto":true,"body_qna":"When
|
837
|
+
people saw photos that linked a famous person with a famous place, it changed
|
838
|
+
the behavior of certain neurons in their brains. And it changed their memories,
|
839
|
+
too.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"When people
|
840
|
+
saw photos that linked a famous person with a famous place, it changed the
|
841
|
+
behavior of certain neurons in their brains. And it changed their memories,
|
842
|
+
too.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"When people
|
843
|
+
saw photos that linked a famous person with a famous place, it changed the
|
844
|
+
behavior of certain neurons in their brains. And it changed their memories,
|
845
|
+
too.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":34,"quickcode":null,"publish_at":"2015-07-01T23:18:52Z","updated_at":"2015-07-01T23:18:52Z","created_at":"2015-07-01T23:18:52Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044287-how-your-brain-remembers-where-you-parked-the-car","_links":{"self":{"href":"/api/v2/articles/2044287","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044287/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044287/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044288,"locale":null,"subject":"The
|
846
|
+
Scallop Scoop: Survey Forecasts A Banner Year In Atlantic","body":"<p>Federal
|
847
|
+
fisheries researchers says their survey found about 10 billion scallops in
|
848
|
+
waters off Delaware and southern New Jersey. They''re predicting a boom for
|
849
|
+
the nation''s most valuable fishery.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419151510\">»
|
850
|
+
E-Mail This</a></p>","body_email":"Federal fisheries researchers says their
|
851
|
+
survey found about 10 billion scallops in waters off Delaware and southern
|
852
|
+
New Jersey. They''re predicting a boom for the nation''s most valuable fishery.\n\n\u00bb
|
853
|
+
E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=419151510)","body_email_auto":true,"body_chat":"Federal
|
854
|
+
fisheries researchers says their survey found about 10 billion scallops in
|
855
|
+
waters off Delaware and southern New Jersey. They''re predicting a boom for
|
856
|
+
the nation''s most valuable fishery.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044288-the-scallop-scoop-survey-forecasts-a-banner-year-in-atlantic","body_chat_auto":true,"body_web_callback":"<p>Federal
|
857
|
+
fisheries researchers says their survey found about 10 billion scallops in
|
858
|
+
waters off Delaware and southern New Jersey. They''re predicting a boom for
|
859
|
+
the nation''s most valuable fishery.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=419151510\">»
|
860
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"Federal
|
861
|
+
fisheries researchers says their survey found about 10 billion scallops in
|
862
|
+
waters off Delaware and southe... http://devel.desk.com/customer/portal/articles/2044288-the-scallop-scoop-survey-forecasts-a-banner-year-in-atlantic","body_twitter_auto":true,"body_qna":"Federal
|
863
|
+
fisheries researchers says their survey found about 10 billion scallops in
|
864
|
+
waters off Delaware and southern New Jersey. They''re predicting a boom for
|
865
|
+
the nation''s most valuable fishery.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"Federal
|
866
|
+
fisheries researchers says their survey found about 10 billion scallops in
|
867
|
+
waters off Delaware and southern New Jersey. They''re predicting a boom for
|
868
|
+
the nation''s most valuable fishery.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"Federal
|
869
|
+
fisheries researchers says their survey found about 10 billion scallops in
|
870
|
+
waters off Delaware and southern New Jersey. They''re predicting a boom for
|
871
|
+
the nation''s most valuable fishery.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":35,"quickcode":null,"publish_at":"2015-07-01T23:18:53Z","updated_at":"2015-07-01T23:18:53Z","created_at":"2015-07-01T23:18:53Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044288-the-scallop-scoop-survey-forecasts-a-banner-year-in-atlantic","_links":{"self":{"href":"/api/v2/articles/2044288","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044288/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044288/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044289,"locale":null,"subject":"Benefits
|
872
|
+
Of Sports To A Child''s Mind And Heart All Part Of The Game","body":"<p>In
|
873
|
+
NPR''s most recent poll, a majority of American adults say they played sports
|
874
|
+
in their youth. Many say they encourage their kids to play, too, and see health
|
875
|
+
benefits as well as lifelong lessons.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418899249\">»
|
876
|
+
E-Mail This</a></p>","body_email":"In NPR''s most recent poll, a majority
|
877
|
+
of American adults say they played sports in their youth. Many say they encourage
|
878
|
+
their kids to play, too, and see health benefits as well as lifelong lessons.\n\n\u00bb
|
879
|
+
E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=418899249)","body_email_auto":true,"body_chat":"In
|
880
|
+
NPR''s most recent poll, a majority of American adults say they played sports
|
881
|
+
in their youth. Many say they encourage their kids to play, too, and see health
|
882
|
+
benefits as well as lifelong lessons.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044289-benefits-of-sports-to-a-child-s-mind-and-heart-all-part-of-the-game","body_chat_auto":true,"body_web_callback":"<p>In
|
883
|
+
NPR''s most recent poll, a majority of American adults say they played sports
|
884
|
+
in their youth. Many say they encourage their kids to play, too, and see health
|
885
|
+
benefits as well as lifelong lessons.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418899249\">»
|
886
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"In NPR''s
|
887
|
+
most recent poll, a majority of American adults say they played sports in
|
888
|
+
their youth. Many say they enc... http://devel.desk.com/customer/portal/articles/2044289-benefits-of-sports-to-a-child-s-mind-and-heart-all-part-of-the-game","body_twitter_auto":true,"body_qna":"In
|
889
|
+
NPR''s most recent poll, a majority of American adults say they played sports
|
890
|
+
in their youth. Many say they encourage their kids to play, too, and see health
|
891
|
+
benefits as well as lifelong lessons.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"In
|
892
|
+
NPR''s most recent poll, a majority of American adults say they played sports
|
893
|
+
in their youth. Many say they encourage their kids to play, too, and see health
|
894
|
+
benefits as well as lifelong lessons.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"In
|
895
|
+
NPR''s most recent poll, a majority of American adults say they played sports
|
896
|
+
in their youth. Many say they encourage their kids to play, too, and see health
|
897
|
+
benefits as well as lifelong lessons.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":36,"quickcode":null,"publish_at":"2015-07-01T23:18:53Z","updated_at":"2015-07-01T23:18:53Z","created_at":"2015-07-01T23:18:53Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044289-benefits-of-sports-to-a-child-s-mind-and-heart-all-part-of-the-game","_links":{"self":{"href":"/api/v2/articles/2044289","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044289/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044289/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044290,"locale":null,"subject":"To
|
898
|
+
Keep Up With Earth''s Rotation, Clocks Will Tick An Extra Second Tonight","body":"<p>There
|
899
|
+
is an extra \"leap\" second in Tuesday''s clock. The second is designed to
|
900
|
+
keep the clocks in synch with earth''s rotation, but some people would like
|
901
|
+
to take it away.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418924569\">»
|
902
|
+
E-Mail This</a></p>","body_email":"There is an extra \"leap\" second in Tuesday''s
|
903
|
+
clock. The second is designed to keep the clocks in synch with earth''s rotation,
|
904
|
+
but some people would like to take it away.\n\n\u00bb E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=418924569)","body_email_auto":true,"body_chat":"There
|
905
|
+
is an extra \"leap\" second in Tuesday''s clock. The second is designed to
|
906
|
+
keep the clocks in synch with earth''s rotation, but some people would like
|
907
|
+
to take it away.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044290-to-keep-up-with-earth-s-rotation-clocks-will-tick-an-extra-second-tonight","body_chat_auto":true,"body_web_callback":"<p>There
|
908
|
+
is an extra \"leap\" second in Tuesday''s clock. The second is designed to
|
909
|
+
keep the clocks in synch with earth''s rotation, but some people would like
|
910
|
+
to take it away.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418924569\">»
|
911
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"There is
|
912
|
+
an extra \"leap\" second in Tuesday''s clock. The second is designed to keep
|
913
|
+
the clocks in synch with earth... http://devel.desk.com/customer/portal/articles/2044290-to-keep-up-with-earth-s-rotation-clocks-will-tick-an-extra-second-tonight","body_twitter_auto":true,"body_qna":"There
|
914
|
+
is an extra \"leap\" second in Tuesday''s clock. The second is designed to
|
915
|
+
keep the clocks in synch with earth''s rotation, but some people would like
|
916
|
+
to take it away.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"There
|
917
|
+
is an extra \"leap\" second in Tuesday''s clock. The second is designed to
|
918
|
+
keep the clocks in synch with earth''s rotation, but some people would like
|
919
|
+
to take it away.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"There
|
920
|
+
is an extra \"leap\" second in Tuesday''s clock. The second is designed to
|
921
|
+
keep the clocks in synch with earth''s rotation, but some people would like
|
922
|
+
to take it away.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":37,"quickcode":null,"publish_at":"2015-07-01T23:18:54Z","updated_at":"2015-07-01T23:18:54Z","created_at":"2015-07-01T23:18:53Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044290-to-keep-up-with-earth-s-rotation-clocks-will-tick-an-extra-second-tonight","_links":{"self":{"href":"/api/v2/articles/2044290","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044290/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044290/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044291,"locale":null,"subject":"Flood
|
923
|
+
Maps Can Get Much Sharper With A Little Supercomputing Oomph","body":"<p>Entrepreneurs
|
924
|
+
are turning to Oak Ridge National Lab''s supercomputer to make all sorts of
|
925
|
+
things, including maps that are much more accurate in predicting how a neighborhood
|
926
|
+
will fare in a flood.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418643595\">»
|
927
|
+
E-Mail This</a></p>","body_email":"Entrepreneurs are turning to Oak Ridge
|
928
|
+
National Lab''s supercomputer to make all sorts of things, including maps
|
929
|
+
that are much more accurate in predicting how a neighborhood will fare in
|
930
|
+
a flood.\n\n\u00bb E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=418643595)","body_email_auto":true,"body_chat":"Entrepreneurs
|
931
|
+
are turning to Oak Ridge National Lab''s supercomputer to make all sorts of
|
932
|
+
things, including maps that are much more accurate in predicting how a neighborhood
|
933
|
+
will fare in a flood.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044291-flood-maps-can-get-much-sharper-with-a-little-supercomputing-oomph","body_chat_auto":true,"body_web_callback":"<p>Entrepreneurs
|
934
|
+
are turning to Oak Ridge National Lab''s supercomputer to make all sorts of
|
935
|
+
things, including maps that are much more accurate in predicting how a neighborhood
|
936
|
+
will fare in a flood.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418643595\">»
|
937
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"Entrepreneurs
|
938
|
+
are turning to Oak Ridge National Lab''s supercomputer to make all sorts of
|
939
|
+
things, including maps t... http://devel.desk.com/customer/portal/articles/2044291-flood-maps-can-get-much-sharper-with-a-little-supercomputing-oomph","body_twitter_auto":true,"body_qna":"Entrepreneurs
|
940
|
+
are turning to Oak Ridge National Lab''s supercomputer to make all sorts of
|
941
|
+
things, including maps that are much more accurate in predicting how a neighborhood
|
942
|
+
will fare in a flood.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"Entrepreneurs
|
943
|
+
are turning to Oak Ridge National Lab''s supercomputer to make all sorts of
|
944
|
+
things, including maps that are much more accurate in predicting how a neighborhood
|
945
|
+
will fare in a flood.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"Entrepreneurs
|
946
|
+
are turning to Oak Ridge National Lab''s supercomputer to make all sorts of
|
947
|
+
things, including maps that are much more accurate in predicting how a neighborhood
|
948
|
+
will fare in a flood.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":38,"quickcode":null,"publish_at":"2015-07-01T23:18:54Z","updated_at":"2015-07-01T23:18:54Z","created_at":"2015-07-01T23:18:54Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044291-flood-maps-can-get-much-sharper-with-a-little-supercomputing-oomph","_links":{"self":{"href":"/api/v2/articles/2044291","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044291/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044291/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044292,"locale":null,"subject":"Venus
|
949
|
+
And Jupiter Set For A Close Encounter Tuesday Night","body":"<p>NASA says
|
950
|
+
the two bright planets will be \"a jaw-dropping one-third of a degree apart\"
|
951
|
+
around sunset. It''s the closest they''ll come in their current 24-year cycle.</p><p><a
|
952
|
+
href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418915225\">»
|
953
|
+
E-Mail This</a></p>","body_email":"NASA says the two bright planets will be
|
954
|
+
\"a jaw-dropping one-third of a degree apart\" around sunset. It''s the closest
|
955
|
+
they''ll come in their current 24-year cycle.\n\n\u00bb E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=418915225)","body_email_auto":true,"body_chat":"NASA
|
956
|
+
says the two bright planets will be \"a jaw-dropping one-third of a degree
|
957
|
+
apart\" around sunset. It''s the closest they''ll come in their current 24-year
|
958
|
+
cycle.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044292-venus-and-jupiter-set-for-a-close-encounter-tuesday-night","body_chat_auto":true,"body_web_callback":"<p>NASA
|
959
|
+
says the two bright planets will be \"a jaw-dropping one-third of a degree
|
960
|
+
apart\" around sunset. It''s the closest they''ll come in their current 24-year
|
961
|
+
cycle.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418915225\">»
|
962
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"NASA says
|
963
|
+
the two bright planets will be \"a jaw-dropping one-third of a degree apart\"
|
964
|
+
around sunset. It''s the clo... http://devel.desk.com/customer/portal/articles/2044292-venus-and-jupiter-set-for-a-close-encounter-tuesday-night","body_twitter_auto":true,"body_qna":"NASA
|
965
|
+
says the two bright planets will be \"a jaw-dropping one-third of a degree
|
966
|
+
apart\" around sunset. It''s the closest they''ll come in their current 24-year
|
967
|
+
cycle.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"NASA says
|
968
|
+
the two bright planets will be \"a jaw-dropping one-third of a degree apart\"
|
969
|
+
around sunset. It''s the closest they''ll come in their current 24-year cycle.\n\n\u00bb
|
970
|
+
E-Mail This","body_phone_auto":true,"body_facebook":"NASA says the two bright
|
971
|
+
planets will be \"a jaw-dropping one-third of a degree apart\" around sunset.
|
972
|
+
It''s the closest they''ll come in their current 24-year cycle.\n\n\u00bb
|
973
|
+
E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":39,"quickcode":null,"publish_at":"2015-07-01T23:18:54Z","updated_at":"2015-07-01T23:18:54Z","created_at":"2015-07-01T23:18:54Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044292-venus-and-jupiter-set-for-a-close-encounter-tuesday-night","_links":{"self":{"href":"/api/v2/articles/2044292","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044292/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044292/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044293,"locale":null,"subject":"11:59:60
|
974
|
+
\u2014 Look For An Extra Tick Of The Clock Tonight","body":"<p>\"Leap seconds\"
|
975
|
+
are added from time to time to keep atomic clocks in sync with a time standard
|
976
|
+
tied to the rotation of the Earth. This will be the 26th time it''s been done.</p><p><a
|
977
|
+
href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418594948\">»
|
978
|
+
E-Mail This</a></p>","body_email":"\"Leap seconds\" are added from time to
|
979
|
+
time to keep atomic clocks in sync with a time standard tied to the rotation
|
980
|
+
of the Earth. This will be the 26th time it''s been done.\n\n\u00bb E-Mail
|
981
|
+
This (http://www.npr.org/templates/email/emailAFriend.php?storyId=418594948)","body_email_auto":true,"body_chat":"\"Leap
|
982
|
+
seconds\" are added from time to time to keep atomic clocks in sync with a
|
983
|
+
time standard tied to the rotation of the Earth. This will be the 26th time
|
984
|
+
it''s been done.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044293-11-59-60-%E2%80%94-look-for-an-extra-tick-of-the-clock-tonight","body_chat_auto":true,"body_web_callback":"<p>\"Leap
|
985
|
+
seconds\" are added from time to time to keep atomic clocks in sync with a
|
986
|
+
time standard tied to the rotation of the Earth. This will be the 26th time
|
987
|
+
it''s been done.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418594948\">»
|
988
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"\"Leap
|
989
|
+
seconds\" are added from time to time to keep atomic clocks in sync with a
|
990
|
+
time standard tied to the rotatio... http://devel.desk.com/customer/portal/articles/2044293-11-59-60-%E2%80%94-look-for-an-extra-tick-of-the-clock-tonight","body_twitter_auto":true,"body_qna":"\"Leap
|
991
|
+
seconds\" are added from time to time to keep atomic clocks in sync with a
|
992
|
+
time standard tied to the rotation of the Earth. This will be the 26th time
|
993
|
+
it''s been done.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"\"Leap
|
994
|
+
seconds\" are added from time to time to keep atomic clocks in sync with a
|
995
|
+
time standard tied to the rotation of the Earth. This will be the 26th time
|
996
|
+
it''s been done.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"\"Leap
|
997
|
+
seconds\" are added from time to time to keep atomic clocks in sync with a
|
998
|
+
time standard tied to the rotation of the Earth. This will be the 26th time
|
999
|
+
it''s been done.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":40,"quickcode":null,"publish_at":"2015-07-01T23:18:55Z","updated_at":"2015-07-01T23:18:55Z","created_at":"2015-07-01T23:18:54Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044293-11-59-60-%E2%80%94-look-for-an-extra-tick-of-the-clock-tonight","_links":{"self":{"href":"/api/v2/articles/2044293","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044293/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044293/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044294,"locale":null,"subject":"Branding
|
1000
|
+
Teen Drivers As Newbies Doesn''t Prevent Crashes","body":"<p>Graduated driver''s
|
1001
|
+
licenses that impose restrictions like no driving at night have reduced crashes
|
1002
|
+
and deaths. But it looks like putting a learner sticker on teens'' license
|
1003
|
+
plates doesn''t help.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418596404\">»
|
1004
|
+
E-Mail This</a></p>","body_email":"Graduated driver''s licenses that impose
|
1005
|
+
restrictions like no driving at night have reduced crashes and deaths. But
|
1006
|
+
it looks like putting a learner sticker on teens'' license plates doesn''t
|
1007
|
+
help.\n\n\u00bb E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=418596404)","body_email_auto":true,"body_chat":"Graduated
|
1008
|
+
driver''s licenses that impose restrictions like no driving at night have
|
1009
|
+
reduced crashes and deaths. But it looks like putting a learner sticker on
|
1010
|
+
teens'' license plates doesn''t help.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044294-branding-teen-drivers-as-newbies-doesn-t-prevent-crashes","body_chat_auto":true,"body_web_callback":"<p>Graduated
|
1011
|
+
driver''s licenses that impose restrictions like no driving at night have
|
1012
|
+
reduced crashes and deaths. But it looks like putting a learner sticker on
|
1013
|
+
teens'' license plates doesn''t help.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418596404\">»
|
1014
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"Graduated
|
1015
|
+
driver''s licenses that impose restrictions like no driving at night have
|
1016
|
+
reduced crashes and deaths. Bu... http://devel.desk.com/customer/portal/articles/2044294-branding-teen-drivers-as-newbies-doesn-t-prevent-crashes","body_twitter_auto":true,"body_qna":"Graduated
|
1017
|
+
driver''s licenses that impose restrictions like no driving at night have
|
1018
|
+
reduced crashes and deaths. But it looks like putting a learner sticker on
|
1019
|
+
teens'' license plates doesn''t help.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"Graduated
|
1020
|
+
driver''s licenses that impose restrictions like no driving at night have
|
1021
|
+
reduced crashes and deaths. But it looks like putting a learner sticker on
|
1022
|
+
teens'' license plates doesn''t help.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"Graduated
|
1023
|
+
driver''s licenses that impose restrictions like no driving at night have
|
1024
|
+
reduced crashes and deaths. But it looks like putting a learner sticker on
|
1025
|
+
teens'' license plates doesn''t help.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":41,"quickcode":null,"publish_at":"2015-07-01T23:18:55Z","updated_at":"2015-07-01T23:18:55Z","created_at":"2015-07-01T23:18:55Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044294-branding-teen-drivers-as-newbies-doesn-t-prevent-crashes","_links":{"self":{"href":"/api/v2/articles/2044294","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044294/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044294/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044295,"locale":null,"subject":"U.N.
|
1026
|
+
Holds Climate Talks In New York Ahead Of Paris Meeting","body":"<p>The United
|
1027
|
+
Nations is having a high-level climate meeting ahead of the end-of-year meeting
|
1028
|
+
in Paris that will hopefully result in a major new agreement to rein in greenhouse
|
1029
|
+
gases.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418641168\">»
|
1030
|
+
E-Mail This</a></p>","body_email":"The United Nations is having a high-level
|
1031
|
+
climate meeting ahead of the end-of-year meeting in Paris that will hopefully
|
1032
|
+
result in a major new agreement to rein in greenhouse gases.\n\n\u00bb E-Mail
|
1033
|
+
This (http://www.npr.org/templates/email/emailAFriend.php?storyId=418641168)","body_email_auto":true,"body_chat":"The
|
1034
|
+
United Nations is having a high-level climate meeting ahead of the end-of-year
|
1035
|
+
meeting in Paris that will hopefully result in a major new agreement to rein
|
1036
|
+
in greenhouse gases.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044295-u-n-holds-climate-talks-in-new-york-ahead-of-paris-meeting","body_chat_auto":true,"body_web_callback":"<p>The
|
1037
|
+
United Nations is having a high-level climate meeting ahead of the end-of-year
|
1038
|
+
meeting in Paris that will hopefully result in a major new agreement to rein
|
1039
|
+
in greenhouse gases.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418641168\">»
|
1040
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"The United
|
1041
|
+
Nations is having a high-level climate meeting ahead of the end-of-year meeting
|
1042
|
+
in Paris that will hop... http://devel.desk.com/customer/portal/articles/2044295-u-n-holds-climate-talks-in-new-york-ahead-of-paris-meeting","body_twitter_auto":true,"body_qna":"The
|
1043
|
+
United Nations is having a high-level climate meeting ahead of the end-of-year
|
1044
|
+
meeting in Paris that will hopefully result in a major new agreement to rein
|
1045
|
+
in greenhouse gases.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"The
|
1046
|
+
United Nations is having a high-level climate meeting ahead of the end-of-year
|
1047
|
+
meeting in Paris that will hopefully result in a major new agreement to rein
|
1048
|
+
in greenhouse gases.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"The
|
1049
|
+
United Nations is having a high-level climate meeting ahead of the end-of-year
|
1050
|
+
meeting in Paris that will hopefully result in a major new agreement to rein
|
1051
|
+
in greenhouse gases.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":42,"quickcode":null,"publish_at":"2015-07-01T23:18:56Z","updated_at":"2015-07-01T23:18:56Z","created_at":"2015-07-01T23:18:55Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044295-u-n-holds-climate-talks-in-new-york-ahead-of-paris-meeting","_links":{"self":{"href":"/api/v2/articles/2044295","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044295/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044295/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044296,"locale":null,"subject":"Supreme
|
1052
|
+
Court Rules In Industry''s Favor. What''s EPA''s Next Move?","body":"<p>Monday''s
|
1053
|
+
decision from the high court technically only applies to the Clean Air Act''s
|
1054
|
+
standards on mercury emissions from power plants. But it could affect future
|
1055
|
+
EPA regulations, legal experts say.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418581616\">»
|
1056
|
+
E-Mail This</a></p>","body_email":"Monday''s decision from the high court
|
1057
|
+
technically only applies to the Clean Air Act''s standards on mercury emissions
|
1058
|
+
from power plants. But it could affect future EPA regulations, legal experts
|
1059
|
+
say.\n\n\u00bb E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=418581616)","body_email_auto":true,"body_chat":"Monday''s
|
1060
|
+
decision from the high court technically only applies to the Clean Air Act''s
|
1061
|
+
standards on mercury emissions from power plants. But it could affect future
|
1062
|
+
EPA regulations, legal experts say.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044296-supreme-court-rules-in-industry-s-favor-what-s-epa-s-next-move-","body_chat_auto":true,"body_web_callback":"<p>Monday''s
|
1063
|
+
decision from the high court technically only applies to the Clean Air Act''s
|
1064
|
+
standards on mercury emissions from power plants. But it could affect future
|
1065
|
+
EPA regulations, legal experts say.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418581616\">»
|
1066
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"Monday''s
|
1067
|
+
decision from the high court technically only applies to the Clean Air Act''s
|
1068
|
+
standards on mercury emissi... http://devel.desk.com/customer/portal/articles/2044296-supreme-court-rules-in-industry-s-favor-what-s-epa-s-next-move-","body_twitter_auto":true,"body_qna":"Monday''s
|
1069
|
+
decision from the high court technically only applies to the Clean Air Act''s
|
1070
|
+
standards on mercury emissions from power plants. But it could affect future
|
1071
|
+
EPA regulations, legal experts say.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"Monday''s
|
1072
|
+
decision from the high court technically only applies to the Clean Air Act''s
|
1073
|
+
standards on mercury emissions from power plants. But it could affect future
|
1074
|
+
EPA regulations, legal experts say.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"Monday''s
|
1075
|
+
decision from the high court technically only applies to the Clean Air Act''s
|
1076
|
+
standards on mercury emissions from power plants. But it could affect future
|
1077
|
+
EPA regulations, legal experts say.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":43,"quickcode":null,"publish_at":"2015-07-01T23:18:56Z","updated_at":"2015-07-01T23:18:56Z","created_at":"2015-07-01T23:18:56Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044296-supreme-court-rules-in-industry-s-favor-what-s-epa-s-next-move-","_links":{"self":{"href":"/api/v2/articles/2044296","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044296/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044296/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044297,"locale":null,"subject":"Why
|
1078
|
+
You Should Thank A Caterpillar For Your Mustard And Wasabi","body":"<p>Eons
|
1079
|
+
ago, cabbage butterfly larvae and the plants they eat began an evolutionary
|
1080
|
+
arms race. The result: \"mustard oil bombs\" that give the plants, and condiments
|
1081
|
+
we make from them, distinctive flavors.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418518152\">»
|
1082
|
+
E-Mail This</a></p>","body_email":"Eons ago, cabbage butterfly larvae and
|
1083
|
+
the plants they eat began an evolutionary arms race. The result: \"mustard
|
1084
|
+
oil bombs\" that give the plants, and condiments we make from them, distinctive
|
1085
|
+
flavors.\n\n\u00bb E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=418518152)","body_email_auto":true,"body_chat":"Eons
|
1086
|
+
ago, cabbage butterfly larvae and the plants they eat began an evolutionary
|
1087
|
+
arms race. The result: \"mustard oil bombs\" that give the plants, and condiments
|
1088
|
+
we make from them, distinctive flavors.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044297-why-you-should-thank-a-caterpillar-for-your-mustard-and-wasabi","body_chat_auto":true,"body_web_callback":"<p>Eons
|
1089
|
+
ago, cabbage butterfly larvae and the plants they eat began an evolutionary
|
1090
|
+
arms race. The result: \"mustard oil bombs\" that give the plants, and condiments
|
1091
|
+
we make from them, distinctive flavors.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418518152\">»
|
1092
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"Eons ago,
|
1093
|
+
cabbage butterfly larvae and the plants they eat began an evolutionary arms
|
1094
|
+
race. The result: \"mustard ... http://devel.desk.com/customer/portal/articles/2044297-why-you-should-thank-a-caterpillar-for-your-mustard-and-wasabi","body_twitter_auto":true,"body_qna":"Eons
|
1095
|
+
ago, cabbage butterfly larvae and the plants they eat began an evolutionary
|
1096
|
+
arms race. The result: \"mustard oil bombs\" that give the plants, and condiments
|
1097
|
+
we make from them, distinctive flavors.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"Eons
|
1098
|
+
ago, cabbage butterfly larvae and the plants they eat began an evolutionary
|
1099
|
+
arms race. The result: \"mustard oil bombs\" that give the plants, and condiments
|
1100
|
+
we make from them, distinctive flavors.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"Eons
|
1101
|
+
ago, cabbage butterfly larvae and the plants they eat began an evolutionary
|
1102
|
+
arms race. The result: \"mustard oil bombs\" that give the plants, and condiments
|
1103
|
+
we make from them, distinctive flavors.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":44,"quickcode":null,"publish_at":"2015-07-01T23:18:56Z","updated_at":"2015-07-01T23:18:56Z","created_at":"2015-07-01T23:18:56Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044297-why-you-should-thank-a-caterpillar-for-your-mustard-and-wasabi","_links":{"self":{"href":"/api/v2/articles/2044297","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044297/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044297/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044298,"locale":null,"subject":"Medical
|
1104
|
+
School Hopefuls Grapple With Overhauled Entrance Exam","body":"<p>The results
|
1105
|
+
are coming in for the first medical school candidates who took a revamped
|
1106
|
+
exam that includes a wider range of subjects, including psychology and sociology.</p><p><a
|
1107
|
+
href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=417421252\">»
|
1108
|
+
E-Mail This</a></p>","body_email":"The results are coming in for the first
|
1109
|
+
medical school candidates who took a revamped exam that includes a wider range
|
1110
|
+
of subjects, including psychology and sociology.\n\n\u00bb E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=417421252)","body_email_auto":true,"body_chat":"The
|
1111
|
+
results are coming in for the first medical school candidates who took a revamped
|
1112
|
+
exam that includes a wider range of subjects, including psychology and sociology.\u00bb
|
1113
|
+
E-Mail This http://devel.desk.com/customer/portal/articles/2044298-medical-school-hopefuls-grapple-with-overhauled-entrance-exam","body_chat_auto":true,"body_web_callback":"<p>The
|
1114
|
+
results are coming in for the first medical school candidates who took a revamped
|
1115
|
+
exam that includes a wider range of subjects, including psychology and sociology.</p><p><a
|
1116
|
+
href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=417421252\">»
|
1117
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"The results
|
1118
|
+
are coming in for the first medical school candidates who took a revamped
|
1119
|
+
exam that includes a wider ... http://devel.desk.com/customer/portal/articles/2044298-medical-school-hopefuls-grapple-with-overhauled-entrance-exam","body_twitter_auto":true,"body_qna":"The
|
1120
|
+
results are coming in for the first medical school candidates who took a revamped
|
1121
|
+
exam that includes a wider range of subjects, including psychology and sociology.\n\n\u00bb
|
1122
|
+
E-Mail This","body_qna_auto":true,"body_phone":"The results are coming in
|
1123
|
+
for the first medical school candidates who took a revamped exam that includes
|
1124
|
+
a wider range of subjects, including psychology and sociology.\n\n\u00bb E-Mail
|
1125
|
+
This","body_phone_auto":true,"body_facebook":"The results are coming in for
|
1126
|
+
the first medical school candidates who took a revamped exam that includes
|
1127
|
+
a wider range of subjects, including psychology and sociology.\n\n\u00bb E-Mail
|
1128
|
+
This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":45,"quickcode":null,"publish_at":"2015-07-01T23:18:57Z","updated_at":"2015-07-01T23:18:57Z","created_at":"2015-07-01T23:18:57Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044298-medical-school-hopefuls-grapple-with-overhauled-entrance-exam","_links":{"self":{"href":"/api/v2/articles/2044298","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044298/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044298/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044299,"locale":null,"subject":"Curb
|
1129
|
+
Your Appetite: Save Bread For The End Of The Meal","body":"<p>A hot bread
|
1130
|
+
basket is a tasty way to start off dinner. But all those carbs before the
|
1131
|
+
main fare can amp up appetite and spike blood sugar. Saving the carbs for
|
1132
|
+
the end of the meal can help avert that.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=417500957\">»
|
1133
|
+
E-Mail This</a></p>","body_email":"A hot bread basket is a tasty way to start
|
1134
|
+
off dinner. But all those carbs before the main fare can amp up appetite and
|
1135
|
+
spike blood sugar. Saving the carbs for the end of the meal can help avert
|
1136
|
+
that.\n\n\u00bb E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=417500957)","body_email_auto":true,"body_chat":"A
|
1137
|
+
hot bread basket is a tasty way to start off dinner. But all those carbs before
|
1138
|
+
the main fare can amp up appetite and spike blood sugar. Saving the carbs
|
1139
|
+
for the end of the meal can help avert that.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044299-curb-your-appetite-save-bread-for-the-end-of-the-meal","body_chat_auto":true,"body_web_callback":"<p>A
|
1140
|
+
hot bread basket is a tasty way to start off dinner. But all those carbs before
|
1141
|
+
the main fare can amp up appetite and spike blood sugar. Saving the carbs
|
1142
|
+
for the end of the meal can help avert that.</p><p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=417500957\">»
|
1143
|
+
E-Mail This</a></p>","body_web_callback_auto":true,"body_twitter":"A hot bread
|
1144
|
+
basket is a tasty way to start off dinner. But all those carbs before the
|
1145
|
+
main fare can amp up appeti... http://devel.desk.com/customer/portal/articles/2044299-curb-your-appetite-save-bread-for-the-end-of-the-meal","body_twitter_auto":true,"body_qna":"A
|
1146
|
+
hot bread basket is a tasty way to start off dinner. But all those carbs before
|
1147
|
+
the main fare can amp up appetite and spike blood sugar. Saving the carbs
|
1148
|
+
for the end of the meal can help avert that.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"A
|
1149
|
+
hot bread basket is a tasty way to start off dinner. But all those carbs before
|
1150
|
+
the main fare can amp up appetite and spike blood sugar. Saving the carbs
|
1151
|
+
for the end of the meal can help avert that.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"A
|
1152
|
+
hot bread basket is a tasty way to start off dinner. But all those carbs before
|
1153
|
+
the main fare can amp up appetite and spike blood sugar. Saving the carbs
|
1154
|
+
for the end of the meal can help avert that.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":null,"position":46,"quickcode":null,"publish_at":"2015-07-01T23:18:57Z","updated_at":"2015-07-01T23:18:57Z","created_at":"2015-07-01T23:18:57Z","in_support_center":true,"internal_notes":null,"public_url":"http://devel.desk.com/customer/portal/articles/2044299-curb-your-appetite-save-bread-for-the-end-of-the-meal","_links":{"self":{"href":"/api/v2/articles/2044299","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044299/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044299/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044300,"locale":null,"subject":"Supreme
|
1155
|
+
Court Blocks Obama Administration Plan On Power Plant Emissions","body":"<p>In
|
1156
|
+
a 5-4 ruling, the court says the Environmental Protection Agency should have
|
1157
|
+
taken into account the costs of complying with regulation. Testing stuff.</p>\r\n\r\n<p><a
|
1158
|
+
href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418557691\">»
|
1159
|
+
E-Mail This</a></p>\r\n","body_email":"In a 5-4 ruling, the court says the
|
1160
|
+
Environmental Protection Agency should have taken into account the costs of
|
1161
|
+
complying with regulation. Testing stuff.\n\n\u00bb E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=418557691)","body_email_auto":true,"body_chat":"In
|
1162
|
+
a 5-4 ruling, the court says the Environmental Protection Agency should have
|
1163
|
+
taken into account the costs of complying with regulation. Testing stuff.\u00bb
|
1164
|
+
E-Mail This http://devel.desk.com/customer/portal/articles/2044300-supreme-court-blocks-obama-administration-plan-on-power-plant-emissions","body_chat_auto":true,"body_web_callback":"<p>In
|
1165
|
+
a 5-4 ruling, the court says the Environmental Protection Agency should have
|
1166
|
+
taken into account the costs of complying with regulation. Testing stuff.</p>\r\n\r\n<p><a
|
1167
|
+
href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418557691\">»
|
1168
|
+
E-Mail This</a></p>\r\n","body_web_callback_auto":true,"body_twitter":"In
|
1169
|
+
a 5-4 ruling, the court says the Environmental Protection Agency should have
|
1170
|
+
taken into account the costs of c... http://devel.desk.com/customer/portal/articles/2044300-supreme-court-blocks-obama-administration-plan-on-power-plant-emissions","body_twitter_auto":true,"body_qna":"In
|
1171
|
+
a 5-4 ruling, the court says the Environmental Protection Agency should have
|
1172
|
+
taken into account the costs of complying with regulation. Testing stuff.\n\n\u00bb
|
1173
|
+
E-Mail This","body_qna_auto":true,"body_phone":"In a 5-4 ruling, the court
|
1174
|
+
says the Environmental Protection Agency should have taken into account the
|
1175
|
+
costs of complying with regulation. Testing stuff.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"In
|
1176
|
+
a 5-4 ruling, the court says the Environmental Protection Agency should have
|
1177
|
+
taken into account the costs of complying with regulation. Testing stuff.\n\n\u00bb
|
1178
|
+
E-Mail This","body_facebook_auto":true,"rating":0,"rating_count":0,"rating_score":0,"keywords":"","position":47,"quickcode":null,"publish_at":null,"updated_at":"2016-01-27T19:33:47Z","created_at":"2015-07-01T23:18:57Z","in_support_center":true,"internal_notes":"","public_url":"http://devel.desk.com/customer/portal/articles/2044300-supreme-court-blocks-obama-administration-plan-on-power-plant-emissions","_links":{"self":{"href":"/api/v2/articles/2044300","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044300/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044300/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}},{"id":2044301,"locale":null,"subject":"SpaceX
|
1179
|
+
Rocket Breaks Up On Liftoff","body":"<p>In Florida, an unmanned supply rocket
|
1180
|
+
blasted off for the International Space Station, but something went wrong.
|
1181
|
+
The loss of the rocket, which was also carrying experiments, is a setback
|
1182
|
+
for NASA.</p>\r\n\r\n<p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418490309\">»
|
1183
|
+
E-Mail This</a></p>\r\n","body_email":"In Florida, an unmanned supply rocket
|
1184
|
+
blasted off for the International Space Station, but something went wrong.
|
1185
|
+
The loss of the rocket, which was also carrying experiments, is a setback
|
1186
|
+
for NASA.\n\n\u00bb E-Mail This (http://www.npr.org/templates/email/emailAFriend.php?storyId=418490309)","body_email_auto":true,"body_chat":"In
|
1187
|
+
Florida, an unmanned supply rocket blasted off for the International Space
|
1188
|
+
Station, but something went wrong. The loss of the rocket, which was also
|
1189
|
+
carrying experiments, is a setback for NASA.\u00bb E-Mail This http://devel.desk.com/customer/portal/articles/2044301-spacex-rocket-breaks-up-on-liftoff","body_chat_auto":true,"body_web_callback":"<p>In
|
1190
|
+
Florida, an unmanned supply rocket blasted off for the International Space
|
1191
|
+
Station, but something went wrong. The loss of the rocket, which was also
|
1192
|
+
carrying experiments, is a setback for NASA.</p>\r\n\r\n<p><a href=\"http://www.npr.org/templates/email/emailAFriend.php?storyId=418490309\">»
|
1193
|
+
E-Mail This</a></p>\r\n","body_web_callback_auto":true,"body_twitter":"In
|
1194
|
+
Florida, an unmanned supply rocket blasted off for the International Space
|
1195
|
+
Station, but something went wrong. ... http://devel.desk.com/customer/portal/articles/2044301-spacex-rocket-breaks-up-on-liftoff","body_twitter_auto":true,"body_qna":"In
|
1196
|
+
Florida, an unmanned supply rocket blasted off for the International Space
|
1197
|
+
Station, but something went wrong. The loss of the rocket, which was also
|
1198
|
+
carrying experiments, is a setback for NASA.\n\n\u00bb E-Mail This","body_qna_auto":true,"body_phone":"In
|
1199
|
+
Florida, an unmanned supply rocket blasted off for the International Space
|
1200
|
+
Station, but something went wrong. The loss of the rocket, which was also
|
1201
|
+
carrying experiments, is a setback for NASA.\n\n\u00bb E-Mail This","body_phone_auto":true,"body_facebook":"In
|
1202
|
+
Florida, an unmanned supply rocket blasted off for the International Space
|
1203
|
+
Station, but something went wrong. The loss of the rocket, which was also
|
1204
|
+
carrying experiments, is a setback for NASA.\n\n\u00bb E-Mail This","body_facebook_auto":true,"rating":100,"rating_count":4,"rating_score":4,"keywords":"","position":48,"quickcode":null,"publish_at":"2015-07-01T23:25:49Z","updated_at":"2015-07-01T23:25:49Z","created_at":"2015-07-01T23:18:58Z","in_support_center":true,"internal_notes":"","public_url":"http://devel.desk.com/customer/portal/articles/2044301-spacex-rocket-breaks-up-on-liftoff","_links":{"self":{"href":"/api/v2/articles/2044301","class":"article"},"topic":{"href":"/api/v2/topics/498301","class":"topic"},"translations":{"href":"/api/v2/articles/2044301/translations","class":"article_translation"},"attachments":{"href":"/api/v2/articles/2044301/attachments","class":"attachment","count":0},"created_by":{"href":"/api/v2/users/16096734","class":"user"},"updated_by":{"href":"/api/v2/users/16096734","class":"user"}}}]}}'
|
1205
|
+
http_version:
|
1206
|
+
recorded_at: Tue, 22 Nov 2016 23:21:08 GMT
|
1207
|
+
recorded_with: VCR 3.0.3
|