crunchbase-ruby-library 0.1.7 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +66 -0
- data/.rubocop_todo.yml +47 -0
- data/.travis.yml +12 -0
- data/Gemfile +4 -0
- data/README.md +44 -54
- data/Rakefile +4 -1
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/crunchbase-ruby-library.gemspec +15 -12
- data/lib/crunchbase.rb +12 -3
- data/lib/crunchbase/api.rb +110 -102
- data/lib/crunchbase/client.rb +50 -0
- data/lib/crunchbase/exception.rb +13 -11
- data/lib/crunchbase/model.rb +50 -48
- data/lib/crunchbase/model/acquired_by.rb +23 -20
- data/lib/crunchbase/model/acquiree.rb +2 -1
- data/lib/crunchbase/model/acquirer.rb +2 -1
- data/lib/crunchbase/model/acquisition.rb +16 -19
- data/lib/crunchbase/model/address.rb +4 -6
- data/lib/crunchbase/model/advisory_role.rb +2 -2
- data/lib/crunchbase/model/board_members_and_advisor.rb +10 -9
- data/lib/crunchbase/model/category.rb +6 -7
- data/lib/crunchbase/model/competitor.rb +3 -2
- data/lib/crunchbase/model/current_team.rb +7 -11
- data/lib/crunchbase/model/customer.rb +3 -2
- data/lib/crunchbase/model/degree.rb +4 -5
- data/lib/crunchbase/model/entity.rb +98 -108
- data/lib/crunchbase/model/error.rb +3 -4
- data/lib/crunchbase/model/featured_team.rb +19 -0
- data/lib/crunchbase/model/founded_company.rb +2 -3
- data/lib/crunchbase/model/founder.rb +3 -4
- data/lib/crunchbase/model/fund.rb +8 -11
- data/lib/crunchbase/model/fund_raise.rb +7 -8
- data/lib/crunchbase/model/funding_round.rb +29 -24
- data/lib/crunchbase/model/headquarter.rb +2 -1
- data/lib/crunchbase/model/image.rb +6 -7
- data/lib/crunchbase/model/investment.rb +20 -27
- data/lib/crunchbase/model/investor.rb +6 -7
- data/lib/crunchbase/model/ipo.rb +12 -12
- data/lib/crunchbase/model/job.rb +11 -10
- data/lib/crunchbase/model/location.rb +20 -11
- data/lib/crunchbase/model/member.rb +3 -4
- data/lib/crunchbase/model/membership.rb +7 -8
- data/lib/crunchbase/model/new.rb +5 -6
- data/lib/crunchbase/model/office.rb +3 -4
- data/lib/crunchbase/model/organization.rb +39 -38
- data/lib/crunchbase/model/organization_summary.rb +7 -8
- data/lib/crunchbase/model/owned_by.rb +4 -5
- data/lib/crunchbase/model/parent_location.rb +3 -3
- data/lib/crunchbase/model/past_team.rb +7 -11
- data/lib/crunchbase/model/person.rb +53 -46
- data/lib/crunchbase/model/person_summary.rb +13 -14
- data/lib/crunchbase/model/primary_affiliation.rb +6 -6
- data/lib/crunchbase/model/primary_image.rb +3 -3
- data/lib/crunchbase/model/primary_location.rb +8 -7
- data/lib/crunchbase/model/product.rb +14 -13
- data/lib/crunchbase/model/product_summary.rb +4 -5
- data/lib/crunchbase/model/school.rb +3 -2
- data/lib/crunchbase/model/search.rb +39 -40
- data/lib/crunchbase/model/search_result.rb +7 -6
- data/lib/crunchbase/model/simple_organization.rb +9 -10
- data/lib/crunchbase/model/sub_organization.rb +3 -4
- data/lib/crunchbase/model/video.rb +4 -5
- data/lib/crunchbase/model/website.rb +7 -11
- data/lib/crunchbase/request.rb +8 -0
- data/lib/crunchbase/request/client.rb +69 -0
- data/lib/crunchbase/version.rb +2 -1
- data/spec/crunchbase.yml.example +2 -2
- data/spec/crunchbase/client_spec.rb +25 -0
- data/spec/crunchbase/data/board_members_and_advisors/facebook.json +462 -0
- data/spec/crunchbase/data/categories/facebook.json +67 -0
- data/spec/crunchbase/data/current_team/facebook.json +4335 -0
- data/spec/crunchbase/data/featured_team/facebook.json +286 -0
- data/spec/crunchbase/data/funding_rounds/37bd05f961af726ba3c1b279da842805.json +484 -0
- data/spec/crunchbase/data/funding_rounds/facebook.json +2049 -0
- data/spec/crunchbase/data/headquarters/facebook.json +50 -0
- data/spec/crunchbase/data/investors/facebook.json +776 -0
- data/spec/crunchbase/data/news/facebook.json +1426 -0
- data/spec/crunchbase/data/news/facebook_2.json +1426 -0
- data/spec/crunchbase/data/offices/facebook.json +50 -0
- data/spec/crunchbase/data/organizations/crunchbase.json +2845 -0
- data/spec/crunchbase/data/organizations/ekohe.json +654 -0
- data/spec/crunchbase/data/organizations/facebook-without-relationships.json +45 -0
- data/spec/crunchbase/data/organizations/facebook.json +6723 -0
- data/spec/crunchbase/data/organizations/mx-media-llc.json +7 -0
- data/spec/crunchbase/data/past_team/facebook.json +4336 -0
- data/spec/crunchbase/data/people/facebook_founders.json +148 -0
- data/spec/crunchbase/data/people/mark-zuckerberg.json +2602 -0
- data/spec/crunchbase/data/websites/facebook.json +74 -0
- data/spec/crunchbase/model/board_members_and_advisor_spec.rb +39 -11
- data/spec/crunchbase/model/category_spec.rb +47 -0
- data/spec/crunchbase/model/current_team_spec.rb +50 -0
- data/spec/crunchbase/model/featured_team_spec.rb +40 -0
- data/spec/crunchbase/model/founders_spec.rb +49 -0
- data/spec/crunchbase/model/fund_raise_spec.rb +4 -24
- data/spec/crunchbase/model/funding_round_spec.rb +75 -32
- data/spec/crunchbase/model/headquarter_spec.rb +37 -0
- data/spec/crunchbase/model/investment_spec.rb +4 -15
- data/spec/crunchbase/model/investor_spec.rb +37 -0
- data/spec/crunchbase/model/new_spec.rb +86 -0
- data/spec/crunchbase/model/office_spec.rb +29 -9
- data/spec/crunchbase/model/organization_spec.rb +160 -34
- data/spec/crunchbase/model/past_team_spec.rb +36 -14
- data/spec/crunchbase/model/person_spec.rb +21 -19
- data/spec/crunchbase/model/product_spec.rb +4 -31
- data/spec/crunchbase/model/search_spec.rb +25 -49
- data/spec/crunchbase/model/website_spec.rb +36 -9
- data/spec/crunchbase/support/api_helper.rb +19 -0
- data/spec/spec_helper.rb +14 -4
- metadata +103 -6
@@ -0,0 +1,1426 @@
|
|
1
|
+
{
|
2
|
+
"metadata":
|
3
|
+
{
|
4
|
+
"version": 31,
|
5
|
+
"www_path_prefix": "https://www.crunchbase.com",
|
6
|
+
"api_path_prefix": "https://api.crunchbase.com",
|
7
|
+
"image_path_prefix": "http://public.crunchbase.com/t_api_images/"
|
8
|
+
},
|
9
|
+
"data":
|
10
|
+
{
|
11
|
+
"paging":
|
12
|
+
{
|
13
|
+
"total_items": 263163,
|
14
|
+
"number_of_pages": 2632,
|
15
|
+
"current_page": 2,
|
16
|
+
"sort_order": "posted_on DESC",
|
17
|
+
"items_per_page": 100,
|
18
|
+
"next_page_url": "https://api.crunchbase.com/v3.1/organizations/facebook/news?page=3&sort_order=posted_on%20DESC&items_per_page=100",
|
19
|
+
"prev_page_url": "https://api.crunchbase.com/v3.1/organizations/facebook/news?page=1&sort_order=posted_on%20DESC&items_per_page=100",
|
20
|
+
"key_set_url": null,
|
21
|
+
"collection_url": "https://api.crunchbase.com/v3.1/organizations/facebook/news",
|
22
|
+
"updated_since": null
|
23
|
+
},
|
24
|
+
"items": [
|
25
|
+
{
|
26
|
+
"type": "News",
|
27
|
+
"uuid": "36474c1cd9acfc2717e1974fbc7f1bdb",
|
28
|
+
"properties":
|
29
|
+
{
|
30
|
+
"title": "Teens favoring Snapchat and Instagram over Facebook, says eMarketer",
|
31
|
+
"author": "Natasha Lomas",
|
32
|
+
"posted_on": "2017-08-22",
|
33
|
+
"posted_on_trust_code": 7,
|
34
|
+
"url": "https://techcrunch.com/2017/08/22/teens-favoring-snapchat-and-instagram-over-facebook-says-emarketer/",
|
35
|
+
"created_at": 1503426171,
|
36
|
+
"updated_at": 1503426224
|
37
|
+
}
|
38
|
+
},
|
39
|
+
{
|
40
|
+
"type": "News",
|
41
|
+
"uuid": "14c521b649b81accd858cba21bbb4614",
|
42
|
+
"properties":
|
43
|
+
{
|
44
|
+
"title": "Facebook’s Safety Check feature gets its own dedicated button, can be accessed anytime",
|
45
|
+
"author": "Sarah Perez",
|
46
|
+
"posted_on": "2017-08-21",
|
47
|
+
"posted_on_trust_code": 7,
|
48
|
+
"url": "https://techcrunch.com/2017/08/21/facebooks-safety-check-feature-gets-its-own-dedicated-button-can-be-accessed-anytime/",
|
49
|
+
"created_at": 1503406275,
|
50
|
+
"updated_at": 1503406275
|
51
|
+
}
|
52
|
+
},
|
53
|
+
{
|
54
|
+
"type": "News",
|
55
|
+
"uuid": "d80d9bb4d5b7506018e572bb0a02146e",
|
56
|
+
"properties":
|
57
|
+
{
|
58
|
+
"title": "How Facebook prioritizes privacy when you die",
|
59
|
+
"author": "Josh Constine",
|
60
|
+
"posted_on": "2017-08-18",
|
61
|
+
"posted_on_trust_code": 7,
|
62
|
+
"url": "https://techcrunch.com/2017/08/18/facebook-after-death/",
|
63
|
+
"created_at": 1503078432,
|
64
|
+
"updated_at": 1503078432
|
65
|
+
}
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"type": "News",
|
69
|
+
"uuid": "05bb17ae95b94d049818a3cb2d3ce32f",
|
70
|
+
"properties":
|
71
|
+
{
|
72
|
+
"title": "Prefeitura lança a São Paulo Tech Week 2017",
|
73
|
+
"author": null,
|
74
|
+
"posted_on": "2017-08-18",
|
75
|
+
"posted_on_trust_code": 7,
|
76
|
+
"url": "https://imasters.com.br/noticia/prefeitura-lanca-sao-paulo-tech-week-2017/",
|
77
|
+
"created_at": 1507915685,
|
78
|
+
"updated_at": 1507915685
|
79
|
+
}
|
80
|
+
},
|
81
|
+
{
|
82
|
+
"type": "News",
|
83
|
+
"uuid": "e2a7ac00dc777ae831984a5ab886b4d6",
|
84
|
+
"properties":
|
85
|
+
{
|
86
|
+
"title": "Facebook downranks video clickbait and fake play buttons",
|
87
|
+
"author": "Josh Constine",
|
88
|
+
"posted_on": "2017-08-17",
|
89
|
+
"posted_on_trust_code": 7,
|
90
|
+
"url": "https://techcrunch.com/2017/08/17/facebook-fake-play-buttons/",
|
91
|
+
"created_at": 1502991841,
|
92
|
+
"updated_at": 1502991841
|
93
|
+
}
|
94
|
+
},
|
95
|
+
{
|
96
|
+
"type": "News",
|
97
|
+
"uuid": "8cd64eeac0fd86543af0a3ef6637dee3",
|
98
|
+
"properties":
|
99
|
+
{
|
100
|
+
"title": "45 million people send birthday wishes on Facebook each day",
|
101
|
+
"author": "Josh Constine",
|
102
|
+
"posted_on": "2017-08-16",
|
103
|
+
"posted_on_trust_code": 7,
|
104
|
+
"url": "https://techcrunch.com/2017/08/16/facebook-birthday-video-fundraiser/",
|
105
|
+
"created_at": 1502901387,
|
106
|
+
"updated_at": 1502901387
|
107
|
+
}
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"type": "News",
|
111
|
+
"uuid": "5b42c520e0e0176b26747672bfc82651",
|
112
|
+
"properties":
|
113
|
+
{
|
114
|
+
"title": "Facebook adds eBay’s Daily Deals to its Marketplace on mobile",
|
115
|
+
"author": "Sarah Perez",
|
116
|
+
"posted_on": "2017-08-15",
|
117
|
+
"posted_on_trust_code": 7,
|
118
|
+
"url": "https://techcrunch.com/2017/08/15/facebook-adds-ebays-daily-deals-to-its-marketplace-on-mobile/",
|
119
|
+
"created_at": 1502818318,
|
120
|
+
"updated_at": 1502818369
|
121
|
+
}
|
122
|
+
},
|
123
|
+
{
|
124
|
+
"type": "News",
|
125
|
+
"uuid": "3c7d3bd689040b4ed424df88fc9158a4",
|
126
|
+
"properties":
|
127
|
+
{
|
128
|
+
"title": "Facebook and Instagram get redesigns for readability",
|
129
|
+
"author": "Josh Constine",
|
130
|
+
"posted_on": "2017-08-15",
|
131
|
+
"posted_on_trust_code": 7,
|
132
|
+
"url": "https://techcrunch.com/2017/08/15/facebook-instagram-comments/",
|
133
|
+
"created_at": 1502819286,
|
134
|
+
"updated_at": 1502819399
|
135
|
+
}
|
136
|
+
},
|
137
|
+
{
|
138
|
+
"type": "News",
|
139
|
+
"uuid": "41058847ee207f8edd4b5a5599b74f65",
|
140
|
+
"properties":
|
141
|
+
{
|
142
|
+
"title": "Facebook boosts snubbed Stories Camera with Live, GIF, & text sharing",
|
143
|
+
"author": "Josh Constine",
|
144
|
+
"posted_on": "2017-08-15",
|
145
|
+
"posted_on_trust_code": 7,
|
146
|
+
"url": "https://techcrunch.com/2017/08/15/facebook-camera-gifs-live/",
|
147
|
+
"created_at": 1502819211,
|
148
|
+
"updated_at": 1502819211
|
149
|
+
}
|
150
|
+
},
|
151
|
+
{
|
152
|
+
"type": "News",
|
153
|
+
"uuid": "c91beac402659531565484e5d5a4a3ef",
|
154
|
+
"properties":
|
155
|
+
{
|
156
|
+
"title": "What Facebook, Twitter, YouTube and others are doing to tackle hate speech",
|
157
|
+
"author": "Brian Heater",
|
158
|
+
"posted_on": "2017-08-15",
|
159
|
+
"posted_on_trust_code": 7,
|
160
|
+
"url": "https://techcrunch.com/2017/08/15/what-facebook-twitter-youtube-and-others-are-doing-to-tackle-hate-speech/",
|
161
|
+
"created_at": 1502886319,
|
162
|
+
"updated_at": 1502886636
|
163
|
+
}
|
164
|
+
},
|
165
|
+
{
|
166
|
+
"type": "News",
|
167
|
+
"uuid": "2492061c0b99b6eaa1d6e94603608df3",
|
168
|
+
"properties":
|
169
|
+
{
|
170
|
+
"title": "Mighty Hawthorn can't match the history of Jeff Kennett's new role at EQT",
|
171
|
+
"author": "Colin Kruger",
|
172
|
+
"posted_on": "2017-08-14",
|
173
|
+
"posted_on_trust_code": 7,
|
174
|
+
"url": "http://www.smh.com.au/business/mighty-hawthorn-cant-match-the-history-of-jeff-kennetts-new-role-at-eqt-20170814-gxvmy5.html",
|
175
|
+
"created_at": 1502728447,
|
176
|
+
"updated_at": 1502728447
|
177
|
+
}
|
178
|
+
},
|
179
|
+
{
|
180
|
+
"type": "News",
|
181
|
+
"uuid": "6b545ea327c53a2172c0602590b1519f",
|
182
|
+
"properties":
|
183
|
+
{
|
184
|
+
"title": "Facebook is rolling out a Trending News section on mobile, now with its own link",
|
185
|
+
"author": "Sarah Perez",
|
186
|
+
"posted_on": "2017-08-14",
|
187
|
+
"posted_on_trust_code": 7,
|
188
|
+
"url": "https://techcrunch.com/2017/08/14/facebook-is-rolling-out-a-trending-news-section-on-mobile-now-with-its-own-link/",
|
189
|
+
"created_at": 1502731938,
|
190
|
+
"updated_at": 1502731938
|
191
|
+
}
|
192
|
+
},
|
193
|
+
{
|
194
|
+
"type": "News",
|
195
|
+
"uuid": "6b4687199caa46f3be7d3af480565ec9",
|
196
|
+
"properties":
|
197
|
+
{
|
198
|
+
"title": "Onavo: Facebooks VPN-Dienst spioniert Nutzer aus",
|
199
|
+
"author": "Denise Bergert |",
|
200
|
+
"posted_on": "2017-08-11",
|
201
|
+
"posted_on_trust_code": 7,
|
202
|
+
"url": "https://mobil.pcwelt.de/a/onavo-facebooks-vpn-dienst-spioniert-nutzer-aus,3447748",
|
203
|
+
"created_at": 1502522435,
|
204
|
+
"updated_at": 1502522435
|
205
|
+
}
|
206
|
+
},
|
207
|
+
{
|
208
|
+
"type": "News",
|
209
|
+
"uuid": "d440beb7edc1344d8c4f07b9c34c22ba",
|
210
|
+
"properties":
|
211
|
+
{
|
212
|
+
"title": "The 2017/2018 Premier League Kicks off on Flow",
|
213
|
+
"author": null,
|
214
|
+
"posted_on": "2017-08-10",
|
215
|
+
"posted_on_trust_code": 7,
|
216
|
+
"url": "http://www.marketwired.com/press-release/the-2017-2018-premier-league-kicks-off-on-flow-nasdaq-lbtya-2229801.htm",
|
217
|
+
"created_at": 1502635360,
|
218
|
+
"updated_at": 1502635360
|
219
|
+
}
|
220
|
+
},
|
221
|
+
{
|
222
|
+
"type": "News",
|
223
|
+
"uuid": "aea16770201e489c8a0d0f389001c478",
|
224
|
+
"properties":
|
225
|
+
{
|
226
|
+
"title": "Facebook password stealing software comes packed with a trojan that steals your passwords",
|
227
|
+
"author": "Taylor Hatmaker",
|
228
|
+
"posted_on": "2017-08-10",
|
229
|
+
"posted_on_trust_code": 7,
|
230
|
+
"url": "https://techcrunch.com/2017/08/10/facebook-password-stealing-software-comes-packed-with-a-trojan-that-steals-your-passwords/",
|
231
|
+
"created_at": 1502386148,
|
232
|
+
"updated_at": 1502386148
|
233
|
+
}
|
234
|
+
},
|
235
|
+
{
|
236
|
+
"type": "News",
|
237
|
+
"uuid": "dd0e1e27ca3b9aefb9beaa19b4334a8d",
|
238
|
+
"properties":
|
239
|
+
{
|
240
|
+
"title": "Exit Nation: Israeli Gaming Company Plarium Sold To Australia’s Aristocrat For $500M",
|
241
|
+
"author": null,
|
242
|
+
"posted_on": "2017-08-10",
|
243
|
+
"posted_on_trust_code": 7,
|
244
|
+
"url": "http://nocamels.com/2017/08/aristocrat-buys-israeli-gaming-plarium",
|
245
|
+
"created_at": 1502496106,
|
246
|
+
"updated_at": 1502496106
|
247
|
+
}
|
248
|
+
},
|
249
|
+
{
|
250
|
+
"type": "News",
|
251
|
+
"uuid": "889b5e97f045c46070eedf44916fb89e",
|
252
|
+
"properties":
|
253
|
+
{
|
254
|
+
"title": "Google CEO cancels diversity all-hands meeting due to leaks",
|
255
|
+
"author": "Steven Musil",
|
256
|
+
"posted_on": "2017-08-10",
|
257
|
+
"posted_on_trust_code": 7,
|
258
|
+
"url": "https://www.cnet.com/news/google-cancels-all-hands-meeting-on-diversity-firestorm-james-damore/",
|
259
|
+
"created_at": 1502611757,
|
260
|
+
"updated_at": 1502611757
|
261
|
+
}
|
262
|
+
},
|
263
|
+
{
|
264
|
+
"type": "News",
|
265
|
+
"uuid": "a52c377f384098c0fb1ccc4a74b3ebb6",
|
266
|
+
"properties":
|
267
|
+
{
|
268
|
+
"title": "Facebook bans ‘cloaking’ of spam sites that fool filters",
|
269
|
+
"author": "Josh Constine",
|
270
|
+
"posted_on": "2017-08-09",
|
271
|
+
"posted_on_trust_code": 7,
|
272
|
+
"url": "https://techcrunch.com/2017/08/09/facebook-cloaking/",
|
273
|
+
"created_at": 1502296109,
|
274
|
+
"updated_at": 1502296109
|
275
|
+
}
|
276
|
+
},
|
277
|
+
{
|
278
|
+
"type": "News",
|
279
|
+
"uuid": "677b83f90c840c9e0dec37d8b0f1907c",
|
280
|
+
"properties":
|
281
|
+
{
|
282
|
+
"title": "Facebook launches Watch tab of original video shows",
|
283
|
+
"author": "Josh Constine",
|
284
|
+
"posted_on": "2017-08-09",
|
285
|
+
"posted_on_trust_code": 7,
|
286
|
+
"url": "https://techcrunch.com/2017/08/09/facebook-watch/",
|
287
|
+
"created_at": 1502367950,
|
288
|
+
"updated_at": 1502367950
|
289
|
+
}
|
290
|
+
},
|
291
|
+
{
|
292
|
+
"type": "News",
|
293
|
+
"uuid": "b7e7253e1474c919d26905324965485e",
|
294
|
+
"properties":
|
295
|
+
{
|
296
|
+
"title": "Leaders from Iconic Companies like Facebook & Airbnb Reveal Secrets to Product Design in 3 New Books from InVision",
|
297
|
+
"author": null,
|
298
|
+
"posted_on": "2017-08-08",
|
299
|
+
"posted_on_trust_code": 7,
|
300
|
+
"url": "http://www.prweb.com/releases/2017/08/prweb14581340.htm",
|
301
|
+
"created_at": 1502292795,
|
302
|
+
"updated_at": 1502292795
|
303
|
+
}
|
304
|
+
},
|
305
|
+
{
|
306
|
+
"type": "News",
|
307
|
+
"uuid": "97492c58ba502ca8ecd4f93754977f84",
|
308
|
+
"properties":
|
309
|
+
{
|
310
|
+
"title": "Facebook shuts down its Snapchat competitor Lifestage and its standalone Groups app",
|
311
|
+
"author": "Sarah Perez",
|
312
|
+
"posted_on": "2017-08-08",
|
313
|
+
"posted_on_trust_code": 7,
|
314
|
+
"url": "https://techcrunch.com/2017/08/08/facebook-shuts-down-its-snapchat-competitor-lifestage-and-its-standalone-groups-app/",
|
315
|
+
"created_at": 1502218684,
|
316
|
+
"updated_at": 1502218794
|
317
|
+
}
|
318
|
+
},
|
319
|
+
{
|
320
|
+
"type": "News",
|
321
|
+
"uuid": "d01fb30499a3ae58b3024319f86aceba",
|
322
|
+
"properties":
|
323
|
+
{
|
324
|
+
"title": "Upper Deck expands past tabletop games with Legendary DXP, a digital card battler",
|
325
|
+
"author": "Stephanie Chan",
|
326
|
+
"posted_on": "2017-08-08",
|
327
|
+
"posted_on_trust_code": 7,
|
328
|
+
"url": "https://venturebeat.com/2017/08/08/upper-deck-expands-past-tabletop-games-with-legendary-dxp-a-digital-card-battler/",
|
329
|
+
"created_at": 1502747288,
|
330
|
+
"updated_at": 1502747288
|
331
|
+
}
|
332
|
+
},
|
333
|
+
{
|
334
|
+
"type": "News",
|
335
|
+
"uuid": "f3c25967502cdc031e97731f29d7ecb4",
|
336
|
+
"properties":
|
337
|
+
{
|
338
|
+
"title": "Google anti-diversity policy memo goes viral at tech giant",
|
339
|
+
"author": null,
|
340
|
+
"posted_on": "2017-08-08",
|
341
|
+
"posted_on_trust_code": 7,
|
342
|
+
"url": "http://www.edmontonsun.com/2017/08/07/google-anti-diversity-policy-memo-goes-viral-at-tech-giant",
|
343
|
+
"created_at": 1502323657,
|
344
|
+
"updated_at": 1502323657
|
345
|
+
}
|
346
|
+
},
|
347
|
+
{
|
348
|
+
"type": "News",
|
349
|
+
"uuid": "ed3c93e060e82196a5b5ca501d05714e",
|
350
|
+
"properties":
|
351
|
+
{
|
352
|
+
"title": "Facebook says it’s removing accidental clicks from its ad network",
|
353
|
+
"author": "Anthony Ha",
|
354
|
+
"posted_on": "2017-08-08",
|
355
|
+
"posted_on_trust_code": 7,
|
356
|
+
"url": "https://techcrunch.com/2017/08/08/facebook-unintentional-clicks/",
|
357
|
+
"created_at": 1502211201,
|
358
|
+
"updated_at": 1502211201
|
359
|
+
}
|
360
|
+
},
|
361
|
+
{
|
362
|
+
"type": "News",
|
363
|
+
"uuid": "dc627e6fd761290b1df2d991679e3a77",
|
364
|
+
"properties":
|
365
|
+
{
|
366
|
+
"title": "Time Inc. launches PetHero in a consumer revenue push",
|
367
|
+
"author": "Max Willens",
|
368
|
+
"posted_on": "2017-08-07",
|
369
|
+
"posted_on_trust_code": 7,
|
370
|
+
"url": "https://digiday.com/media/time-inc-launches-pethero-consumer-revenue-push/",
|
371
|
+
"created_at": 1502309895,
|
372
|
+
"updated_at": 1502309895
|
373
|
+
}
|
374
|
+
},
|
375
|
+
{
|
376
|
+
"type": "News",
|
377
|
+
"uuid": "7a3848668b1f64ed195752bd01622058",
|
378
|
+
"properties":
|
379
|
+
{
|
380
|
+
"title": "Beyond the boring blockchain bubble",
|
381
|
+
"author": "Jon Evans",
|
382
|
+
"posted_on": "2017-08-06",
|
383
|
+
"posted_on_trust_code": 7,
|
384
|
+
"url": "https://techcrunch.com/2017/08/06/beyond-the-boring-blockchain-bubble/",
|
385
|
+
"created_at": 1502137355,
|
386
|
+
"updated_at": 1502137355
|
387
|
+
}
|
388
|
+
},
|
389
|
+
{
|
390
|
+
"type": "News",
|
391
|
+
"uuid": "73068474218a024589b8535f16c08ea2",
|
392
|
+
"properties":
|
393
|
+
{
|
394
|
+
"title": "Facebook tests ‘going live’ from Facebook Camera, Live Stories like Instagram",
|
395
|
+
"author": "Sarah Perez",
|
396
|
+
"posted_on": "2017-08-04",
|
397
|
+
"posted_on_trust_code": 7,
|
398
|
+
"url": "https://techcrunch.com/2017/08/04/facebook-tests-going-live-from-facebook-camera-live-stories-like-instagram/",
|
399
|
+
"created_at": 1501871756,
|
400
|
+
"updated_at": 1501871756
|
401
|
+
}
|
402
|
+
},
|
403
|
+
{
|
404
|
+
"type": "News",
|
405
|
+
"uuid": "d2ba37b6e6d31dfa0a4d3b78fe5f2478",
|
406
|
+
"properties":
|
407
|
+
{
|
408
|
+
"title": "Now it’s Snapchat copying Facebook’s ads Power Editor",
|
409
|
+
"author": "Josh Constine",
|
410
|
+
"posted_on": "2017-08-04",
|
411
|
+
"posted_on_trust_code": 7,
|
412
|
+
"url": "https://techcrunch.com/2017/08/04/snapchat-advanced-mode/",
|
413
|
+
"created_at": 1501868257,
|
414
|
+
"updated_at": 1501868317
|
415
|
+
}
|
416
|
+
},
|
417
|
+
{
|
418
|
+
"type": "News",
|
419
|
+
"uuid": "b2f346abd22a402da1d2bac8f04523b8",
|
420
|
+
"properties":
|
421
|
+
{
|
422
|
+
"title": "Google and Facebook envision Stories for news, not social",
|
423
|
+
"author": "Josh Constine",
|
424
|
+
"posted_on": "2017-08-04",
|
425
|
+
"posted_on_trust_code": 7,
|
426
|
+
"url": "https://techcrunch.com/2017/08/04/news-at-your-own-pace/",
|
427
|
+
"created_at": 1501911707,
|
428
|
+
"updated_at": 1502108785
|
429
|
+
}
|
430
|
+
},
|
431
|
+
{
|
432
|
+
"type": "News",
|
433
|
+
"uuid": "2250ffda69ab066618f72aec82b76a75",
|
434
|
+
"properties":
|
435
|
+
{
|
436
|
+
"title": "Debenhams discount voucher codes: This is how beauty fans can get £10 worth of points",
|
437
|
+
"author": "Chantelle Symester",
|
438
|
+
"posted_on": "2017-08-04",
|
439
|
+
"posted_on_trust_code": 7,
|
440
|
+
"url": "http://www.mirror.co.uk/money/debenhams-discount-code-deals-august-5427751",
|
441
|
+
"created_at": 1501964191,
|
442
|
+
"updated_at": 1501964191
|
443
|
+
}
|
444
|
+
},
|
445
|
+
{
|
446
|
+
"type": "News",
|
447
|
+
"uuid": "660bc91129c49e5101f1e7d36f4b6487",
|
448
|
+
"properties":
|
449
|
+
{
|
450
|
+
"title": "Facebook fights fake news with links to other angles",
|
451
|
+
"author": "Josh Constine",
|
452
|
+
"posted_on": "2017-08-03",
|
453
|
+
"posted_on_trust_code": 7,
|
454
|
+
"url": "https://techcrunch.com/2017/08/03/facebook-related-articles/",
|
455
|
+
"created_at": 1501765405,
|
456
|
+
"updated_at": 1501765405
|
457
|
+
}
|
458
|
+
},
|
459
|
+
{
|
460
|
+
"type": "News",
|
461
|
+
"uuid": "1c86b90f744054d0969e4c006e1eb423",
|
462
|
+
"properties":
|
463
|
+
{
|
464
|
+
"title": "Facebook finishes its move to neural machine translation",
|
465
|
+
"author": "John Mannes",
|
466
|
+
"posted_on": "2017-08-03",
|
467
|
+
"posted_on_trust_code": 7,
|
468
|
+
"url": "https://techcrunch.com/2017/08/03/facebook-finishes-its-move-to-neural-machine-translation/",
|
469
|
+
"created_at": 1501783756,
|
470
|
+
"updated_at": 1501783756
|
471
|
+
}
|
472
|
+
},
|
473
|
+
{
|
474
|
+
"type": "News",
|
475
|
+
"uuid": "e96471a965ac52c6aac400fbf99b8422",
|
476
|
+
"properties":
|
477
|
+
{
|
478
|
+
"title": "Facebook begins testing Stories on the desktop",
|
479
|
+
"author": "Sarah Perez",
|
480
|
+
"posted_on": "2017-08-03",
|
481
|
+
"posted_on_trust_code": 7,
|
482
|
+
"url": "https://techcrunch.com/2017/08/03/facebook-begins-testing-stories-on-the-desktop/",
|
483
|
+
"created_at": 1501779108,
|
484
|
+
"updated_at": 1501779108
|
485
|
+
}
|
486
|
+
},
|
487
|
+
{
|
488
|
+
"type": "News",
|
489
|
+
"uuid": "2bb3bdab54b862b3ad5c998f82b692d5",
|
490
|
+
"properties":
|
491
|
+
{
|
492
|
+
"title": "How to Win the Talent War - Webcast Announced",
|
493
|
+
"author": null,
|
494
|
+
"posted_on": "2017-08-03",
|
495
|
+
"posted_on_trust_code": 7,
|
496
|
+
"url": "http://www.prweb.com/releases/small-business/talent-webcast/prweb14570339.htm",
|
497
|
+
"created_at": 1501886535,
|
498
|
+
"updated_at": 1501886535
|
499
|
+
}
|
500
|
+
},
|
501
|
+
{
|
502
|
+
"type": "News",
|
503
|
+
"uuid": "e57fd7e1b15a0c7cf7a883bdbb6009d5",
|
504
|
+
"properties":
|
505
|
+
{
|
506
|
+
"title": "Facebook will soon start ranking faster loading webpages higher in News Feed",
|
507
|
+
"author": "Sarah Perez",
|
508
|
+
"posted_on": "2017-08-02",
|
509
|
+
"posted_on_trust_code": 7,
|
510
|
+
"url": "https://techcrunch.com/2017/08/02/facebook-will-soon-start-ranking-faster-loading-webpages-higher-in-news-feed/",
|
511
|
+
"created_at": 1501695102,
|
512
|
+
"updated_at": 1501695102
|
513
|
+
}
|
514
|
+
},
|
515
|
+
{
|
516
|
+
"type": "News",
|
517
|
+
"uuid": "1983a77150399a2deabc1bcf44c022dc",
|
518
|
+
"properties":
|
519
|
+
{
|
520
|
+
"title": "Twitter explains why it won’t disclose the number of daily users. Kinda.",
|
521
|
+
"author": "Chris O'Brien",
|
522
|
+
"posted_on": "2017-08-02",
|
523
|
+
"posted_on_trust_code": 7,
|
524
|
+
"url": "https://venturebeat.com/2017/08/02/twitter-explains-why-it-wont-disclose-the-number-of-daily-users-kinda/",
|
525
|
+
"created_at": 1502095869,
|
526
|
+
"updated_at": 1502095869
|
527
|
+
}
|
528
|
+
},
|
529
|
+
{
|
530
|
+
"type": "News",
|
531
|
+
"uuid": "e609f29af0696fae41ca101129804f16",
|
532
|
+
"properties":
|
533
|
+
{
|
534
|
+
"title": "Facebook’s black employee representation has increased for the first time since 2014",
|
535
|
+
"author": "Megan Rose Dickey",
|
536
|
+
"posted_on": "2017-08-02",
|
537
|
+
"posted_on_trust_code": 7,
|
538
|
+
"url": "https://techcrunch.com/2017/08/02/facebooks-black-employee-representation-has-increased-for-the-first-time-since-2014/",
|
539
|
+
"created_at": 1501694995,
|
540
|
+
"updated_at": 1501694995
|
541
|
+
}
|
542
|
+
},
|
543
|
+
{
|
544
|
+
"type": "News",
|
545
|
+
"uuid": "8bbc28014e9602e1bafaf5098fd297b6",
|
546
|
+
"properties":
|
547
|
+
{
|
548
|
+
"title": "Another black activist, Ijeoma Oluo, is suspended by Facebook for posting about racism",
|
549
|
+
"author": "Devin Coldewey",
|
550
|
+
"posted_on": "2017-08-02",
|
551
|
+
"posted_on_trust_code": 7,
|
552
|
+
"url": "https://techcrunch.com/2017/08/02/another-black-activist-ijeoma-oluo-is-suspended-by-facebook-for-posting-about-racism/",
|
553
|
+
"created_at": 1501763269,
|
554
|
+
"updated_at": 1501763269
|
555
|
+
}
|
556
|
+
},
|
557
|
+
{
|
558
|
+
"type": "News",
|
559
|
+
"uuid": "94353504f73b8567171a75dcc6ed324f",
|
560
|
+
"properties":
|
561
|
+
{
|
562
|
+
"title": "Real Estate Startup zavvie to Break with the Status Quo at Big Tech Show",
|
563
|
+
"author": "Noelle Bortfeld",
|
564
|
+
"posted_on": "2017-08-02",
|
565
|
+
"posted_on_trust_code": 7,
|
566
|
+
"url": "http://www.marketwired.com/press-release/real-estate-startup-zavvie-to-break-with-the-status-quo-at-big-tech-show-2228685.htm",
|
567
|
+
"created_at": 1501905960,
|
568
|
+
"updated_at": 1501905960
|
569
|
+
}
|
570
|
+
},
|
571
|
+
{
|
572
|
+
"type": "News",
|
573
|
+
"uuid": "1de6deefa9878643ea24c7dfa1927440",
|
574
|
+
"properties":
|
575
|
+
{
|
576
|
+
"title": "YouTube Sweetens The Pot; Marketing Services Crop Up Around Amazon",
|
577
|
+
"author": null,
|
578
|
+
"posted_on": "2017-08-02",
|
579
|
+
"posted_on_trust_code": 7,
|
580
|
+
"url": "https://adexchanger.com/ad-exchange-news/wednesday-08022017/",
|
581
|
+
"created_at": 1501993338,
|
582
|
+
"updated_at": 1501993338
|
583
|
+
}
|
584
|
+
},
|
585
|
+
{
|
586
|
+
"type": "News",
|
587
|
+
"uuid": "4679a0b365dd374d5b75e774a72fe4f2",
|
588
|
+
"properties":
|
589
|
+
{
|
590
|
+
"title": "Facebook said to be working on dedicated video chat device",
|
591
|
+
"author": "Darrell Etherington",
|
592
|
+
"posted_on": "2017-08-01",
|
593
|
+
"posted_on_trust_code": 7,
|
594
|
+
"url": "https://techcrunch.com/2017/08/01/facebook-said-to-be-working-on-dedicated-video-chat-device/",
|
595
|
+
"created_at": 1501612252,
|
596
|
+
"updated_at": 1501612252
|
597
|
+
}
|
598
|
+
},
|
599
|
+
{
|
600
|
+
"type": "News",
|
601
|
+
"uuid": "5adb27ebd5184a67dbb2150a22aaecde",
|
602
|
+
"properties":
|
603
|
+
{
|
604
|
+
"title": "Facebook buys Ozlo to boost its conversational AI efforts",
|
605
|
+
"author": "John Mannes",
|
606
|
+
"posted_on": "2017-08-01",
|
607
|
+
"posted_on_trust_code": 7,
|
608
|
+
"url": "https://techcrunch.com/2017/07/31/facebook-buys-ozlo-to-boost-its-conversational-ai-efforts/",
|
609
|
+
"created_at": 1501566722,
|
610
|
+
"updated_at": 1501590867
|
611
|
+
}
|
612
|
+
},
|
613
|
+
{
|
614
|
+
"type": "News",
|
615
|
+
"uuid": "4ce705c8c0dfdb4cf0cc16dd3808ffbe",
|
616
|
+
"properties":
|
617
|
+
{
|
618
|
+
"title": "Welcome to the Rise of the Machine-to-Machine. Isn't it time to 'block off' some data ducts?",
|
619
|
+
"author": "Trevor Pott",
|
620
|
+
"posted_on": "2017-08-01",
|
621
|
+
"posted_on_trust_code": 7,
|
622
|
+
"url": "https://www.theregister.co.uk/2017/08/01/isolation_based_security",
|
623
|
+
"created_at": 1501722257,
|
624
|
+
"updated_at": 1501722257
|
625
|
+
}
|
626
|
+
},
|
627
|
+
{
|
628
|
+
"type": "News",
|
629
|
+
"uuid": "844bed5dc6dc7b6fcccfc2b115e1c94a",
|
630
|
+
"properties":
|
631
|
+
{
|
632
|
+
"title": "Snap joins rivals Facebook and YouTube to fight terrorism",
|
633
|
+
"author": "Josh Constine",
|
634
|
+
"posted_on": "2017-08-01",
|
635
|
+
"posted_on_trust_code": 7,
|
636
|
+
"url": "https://techcrunch.com/2017/07/31/snap-fights-terrorism/",
|
637
|
+
"created_at": 1501593047,
|
638
|
+
"updated_at": 1501593461
|
639
|
+
}
|
640
|
+
},
|
641
|
+
{
|
642
|
+
"type": "News",
|
643
|
+
"uuid": "bce19336f93cad577110029355873dbd",
|
644
|
+
"properties":
|
645
|
+
{
|
646
|
+
"title": "Why The Information Accelerator Was Always the Future of Journalism",
|
647
|
+
"author": "Adam Rowe",
|
648
|
+
"posted_on": "2017-07-31",
|
649
|
+
"posted_on_trust_code": 7,
|
650
|
+
"url": "https://tech.co/information-accelerator-future-journalism-2017-07",
|
651
|
+
"created_at": 1502425210,
|
652
|
+
"updated_at": 1502425210
|
653
|
+
}
|
654
|
+
},
|
655
|
+
{
|
656
|
+
"type": "News",
|
657
|
+
"uuid": "7e2d9b3311acd7b36e79bb95ea73cc23",
|
658
|
+
"properties":
|
659
|
+
{
|
660
|
+
"title": "A letter from the editor: On tnooz and the journey ahead",
|
661
|
+
"author": null,
|
662
|
+
"posted_on": "2017-07-31",
|
663
|
+
"posted_on_trust_code": 7,
|
664
|
+
"url": "https://www.tnooz.com/article/a-letter-from-the-editor-on-tnooz-and-the-journey-ahead/",
|
665
|
+
"created_at": 1501805385,
|
666
|
+
"updated_at": 1501805385
|
667
|
+
}
|
668
|
+
},
|
669
|
+
{
|
670
|
+
"type": "News",
|
671
|
+
"uuid": "d2b0d95388b9376fc166de2726cb567d",
|
672
|
+
"properties":
|
673
|
+
{
|
674
|
+
"title": "How The Duplass Brothers Are Bringing Their Indie Creativity To Brands",
|
675
|
+
"author": "Nicole LaPorte",
|
676
|
+
"posted_on": "2017-07-31",
|
677
|
+
"posted_on_trust_code": 7,
|
678
|
+
"url": "https://www.fastcompany.com/40446366/how-the-duplass-brothers-are-bringing-their-indie-creativity-to-brands",
|
679
|
+
"created_at": 1501546333,
|
680
|
+
"updated_at": 1501546333
|
681
|
+
}
|
682
|
+
},
|
683
|
+
{
|
684
|
+
"type": "News",
|
685
|
+
"uuid": "b60c38df20f234666b486e6562bf3104",
|
686
|
+
"properties":
|
687
|
+
{
|
688
|
+
"title": "Facebook, Autodesk partner with a design organization geared toward underserved kids",
|
689
|
+
"author": "Megan Rose Dickey",
|
690
|
+
"posted_on": "2017-07-31",
|
691
|
+
"posted_on_trust_code": 7,
|
692
|
+
"url": "https://techcrunch.com/2017/07/31/facebook-autodesk-inneract-project/",
|
693
|
+
"created_at": 1501534196,
|
694
|
+
"updated_at": 1501534237
|
695
|
+
}
|
696
|
+
},
|
697
|
+
{
|
698
|
+
"type": "News",
|
699
|
+
"uuid": "473031da2d5b387dedfdad4083d8ac3e",
|
700
|
+
"properties":
|
701
|
+
{
|
702
|
+
"title": "Facebook Stories unlocks public sharing",
|
703
|
+
"author": "Josh Constine",
|
704
|
+
"posted_on": "2017-07-30",
|
705
|
+
"posted_on_trust_code": 7,
|
706
|
+
"url": "https://techcrunch.com/2017/07/30/facebook-stories-public/",
|
707
|
+
"created_at": 1501506744,
|
708
|
+
"updated_at": 1501506744
|
709
|
+
}
|
710
|
+
},
|
711
|
+
{
|
712
|
+
"type": "News",
|
713
|
+
"uuid": "21e10733af3d276a00bd42f9990a1c04",
|
714
|
+
"properties":
|
715
|
+
{
|
716
|
+
"title": "Kids in the House Announces Brooke Burke-Charvet and Leana Greene host live broadcast covering the latest in baby care with eight top experts.",
|
717
|
+
"author": null,
|
718
|
+
"posted_on": "2017-07-28",
|
719
|
+
"posted_on_trust_code": 7,
|
720
|
+
"url": "http://www.prnewswire.com/news-releases/kids-in-the-house-announces-brooke-burke-charvet-and-leana-greene-host-live-broadcast-covering-the-latest-in-baby-care-with-eight-top-experts-300496259.html",
|
721
|
+
"created_at": 1501482705,
|
722
|
+
"updated_at": 1501482705
|
723
|
+
}
|
724
|
+
},
|
725
|
+
{
|
726
|
+
"type": "News",
|
727
|
+
"uuid": "f56a134662ad6aae4311c378586df124",
|
728
|
+
"properties":
|
729
|
+
{
|
730
|
+
"title": "Equity podcast: Facebook good, everyone else bad",
|
731
|
+
"author": "Alex Wilhelm",
|
732
|
+
"posted_on": "2017-07-28",
|
733
|
+
"posted_on_trust_code": 7,
|
734
|
+
"url": "https://techcrunch.com/2017/07/28/equity-podcast-facebook-good-everyone-else-bad/",
|
735
|
+
"created_at": 1501250243,
|
736
|
+
"updated_at": 1501250243
|
737
|
+
}
|
738
|
+
},
|
739
|
+
{
|
740
|
+
"type": "News",
|
741
|
+
"uuid": "2bace2cac29fe823710463598a21a3fc",
|
742
|
+
"properties":
|
743
|
+
{
|
744
|
+
"title": "Google Updates: SOS, OK, 60 and £19bn",
|
745
|
+
"author": "Chris Merriman",
|
746
|
+
"posted_on": "2017-07-28",
|
747
|
+
"posted_on_trust_code": 7,
|
748
|
+
"url": "https://www.theinquirer.net/inquirer/news/3014741/google-updates-sos-ok-60-and-19bn",
|
749
|
+
"created_at": 1501377718,
|
750
|
+
"updated_at": 1501377718
|
751
|
+
}
|
752
|
+
},
|
753
|
+
{
|
754
|
+
"type": "News",
|
755
|
+
"uuid": "19024d603c2892790d6f1b811bcd0e66",
|
756
|
+
"properties":
|
757
|
+
{
|
758
|
+
"title": "Facebook’s Instant Articles restore subscription options they previously stripped",
|
759
|
+
"author": "Devin Coldewey",
|
760
|
+
"posted_on": "2017-07-28",
|
761
|
+
"posted_on_trust_code": 7,
|
762
|
+
"url": "https://techcrunch.com/2017/07/27/facebooks-instant-articles-restore-subscription-options-they-previously-stripped/",
|
763
|
+
"created_at": 1501245860,
|
764
|
+
"updated_at": 1501245860
|
765
|
+
}
|
766
|
+
},
|
767
|
+
{
|
768
|
+
"type": "News",
|
769
|
+
"uuid": "133ce57be4898cf0bee60d67bd9d76e9",
|
770
|
+
"properties":
|
771
|
+
{
|
772
|
+
"title": "How startup Kite tried to ruin two open source communities",
|
773
|
+
"author": "Matt Asay",
|
774
|
+
"posted_on": "2017-07-28",
|
775
|
+
"posted_on_trust_code": 7,
|
776
|
+
"url": "http://www.techrepublic.com/article/how-startup-kite-tried-to-ruin-two-open-source-communities/",
|
777
|
+
"created_at": 1501545820,
|
778
|
+
"updated_at": 1501545820
|
779
|
+
}
|
780
|
+
},
|
781
|
+
{
|
782
|
+
"type": "News",
|
783
|
+
"uuid": "172f47d0665b44929294cc8419d2de53",
|
784
|
+
"properties":
|
785
|
+
{
|
786
|
+
"title": "VARStreet to Exhibit at CompTIA ChannelCon 2017 - Booth # 716",
|
787
|
+
"author": "VARStreet",
|
788
|
+
"posted_on": "2017-07-28",
|
789
|
+
"posted_on_trust_code": 7,
|
790
|
+
"url": "http://www.prnewswire.com/news-releases/varstreet-to-exhibit-at-comptia-channelcon-2017--booth--716-300496046.html",
|
791
|
+
"created_at": 1501326928,
|
792
|
+
"updated_at": 1501353622
|
793
|
+
}
|
794
|
+
},
|
795
|
+
{
|
796
|
+
"type": "News",
|
797
|
+
"uuid": "51fbcad1cb89eac56ee1ad618453c002",
|
798
|
+
"properties":
|
799
|
+
{
|
800
|
+
"title": "Facebook to Launch Paywall in Response to Publisher Pushback",
|
801
|
+
"author": "David Jones",
|
802
|
+
"posted_on": "2017-07-26",
|
803
|
+
"posted_on_trust_code": 7,
|
804
|
+
"url": "http://www.ecommercetimes.com/story/social-media/84699.html",
|
805
|
+
"created_at": 1501200953,
|
806
|
+
"updated_at": 1501200953
|
807
|
+
}
|
808
|
+
},
|
809
|
+
{
|
810
|
+
"type": "News",
|
811
|
+
"uuid": "77c5f26294149ccc8e40dbf73ae9a3e1",
|
812
|
+
"properties":
|
813
|
+
{
|
814
|
+
"title": "Facebook’s CSO: the security industry needs to change",
|
815
|
+
"author": "Jon Evans",
|
816
|
+
"posted_on": "2017-07-26",
|
817
|
+
"posted_on_trust_code": 7,
|
818
|
+
"url": "https://techcrunch.com/2017/07/26/facebooks-cso-the-security-industry-needs-to-change/",
|
819
|
+
"created_at": 1501158980,
|
820
|
+
"updated_at": 1501158980
|
821
|
+
}
|
822
|
+
},
|
823
|
+
{
|
824
|
+
"type": "News",
|
825
|
+
"uuid": "213be964d11c52b1a1a56c3733a212c8",
|
826
|
+
"properties":
|
827
|
+
{
|
828
|
+
"title": "Facebook beats in Q2 with $9.32B revenue despite slower user growth",
|
829
|
+
"author": "Josh Constine",
|
830
|
+
"posted_on": "2017-07-26",
|
831
|
+
"posted_on_trust_code": 7,
|
832
|
+
"url": "https://techcrunch.com/2017/07/26/facebook-earnings-q2-2017/",
|
833
|
+
"created_at": 1501175306,
|
834
|
+
"updated_at": 1501175306
|
835
|
+
}
|
836
|
+
},
|
837
|
+
{
|
838
|
+
"type": "News",
|
839
|
+
"uuid": "b8b7521aee1ebd90e7c106fd02ba0366",
|
840
|
+
"properties":
|
841
|
+
{
|
842
|
+
"title": "Simon English: ITV’s had its day in the sun and the honeymoon’s over",
|
843
|
+
"author": "Simon English",
|
844
|
+
"posted_on": "2017-07-26",
|
845
|
+
"posted_on_trust_code": 7,
|
846
|
+
"url": "http://www.standard.co.uk/business/simon-english-itv-s-had-its-day-in-the-sun-and-the-honeymoon-s-over-a3596746.html",
|
847
|
+
"created_at": 1501204689,
|
848
|
+
"updated_at": 1501204689
|
849
|
+
}
|
850
|
+
},
|
851
|
+
{
|
852
|
+
"type": "News",
|
853
|
+
"uuid": "46fce503f4532167e230cbce8fdbbc19",
|
854
|
+
"properties":
|
855
|
+
{
|
856
|
+
"title": "Crunch Report | Facebook Smart Speaker on the Way",
|
857
|
+
"author": "Khaled \"Tito\" Hamze",
|
858
|
+
"posted_on": "2017-07-26",
|
859
|
+
"posted_on_trust_code": 7,
|
860
|
+
"url": "https://techcrunch.com/2017/07/25/crunch-report-facebook-smart-speaker-on-the-way/",
|
861
|
+
"created_at": 1501165040,
|
862
|
+
"updated_at": 1501165040
|
863
|
+
}
|
864
|
+
},
|
865
|
+
{
|
866
|
+
"type": "News",
|
867
|
+
"uuid": "7b720258c07bee1a07419df83bf766d4",
|
868
|
+
"properties":
|
869
|
+
{
|
870
|
+
"title": "Facebook to Launch Paywall in Response to Publisher Pushback",
|
871
|
+
"author": "David Jones",
|
872
|
+
"posted_on": "2017-07-26",
|
873
|
+
"posted_on_trust_code": 7,
|
874
|
+
"url": "http://www.ecommercetimes.com/story/Facebook-to-Launch-Paywall-in-Response-to-Publisher-Pushback-84699.html",
|
875
|
+
"created_at": 1502367107,
|
876
|
+
"updated_at": 1502367107
|
877
|
+
}
|
878
|
+
},
|
879
|
+
{
|
880
|
+
"type": "News",
|
881
|
+
"uuid": "543a97e3c02829cd5df57a6108f54eb8",
|
882
|
+
"properties":
|
883
|
+
{
|
884
|
+
"title": "Facebook reportedly building smart speaker with touch screen",
|
885
|
+
"author": "Josh Constine",
|
886
|
+
"posted_on": "2017-07-25",
|
887
|
+
"posted_on_trust_code": 7,
|
888
|
+
"url": "https://techcrunch.com/2017/07/25/facebook-speaker/",
|
889
|
+
"created_at": 1500998948,
|
890
|
+
"updated_at": 1500998948
|
891
|
+
}
|
892
|
+
},
|
893
|
+
{
|
894
|
+
"type": "News",
|
895
|
+
"uuid": "52d10e0bd7967acac3b0948b12afd620",
|
896
|
+
"properties":
|
897
|
+
{
|
898
|
+
"title": "Facebook is hiring a (human) AI Editor",
|
899
|
+
"author": "Natasha Lomas",
|
900
|
+
"posted_on": "2017-07-25",
|
901
|
+
"posted_on_trust_code": 7,
|
902
|
+
"url": "https://techcrunch.com/2017/07/25/facebook-is-hiring-a-human-ai-editor/",
|
903
|
+
"created_at": 1501159608,
|
904
|
+
"updated_at": 1501159608
|
905
|
+
}
|
906
|
+
},
|
907
|
+
{
|
908
|
+
"type": "News",
|
909
|
+
"uuid": "67b69a03df263a9112cc987b8d55d70d",
|
910
|
+
"properties":
|
911
|
+
{
|
912
|
+
"title": "Facebook, Twitter, Google warned over EU consumer rights",
|
913
|
+
"author": "Natasha Lomas",
|
914
|
+
"posted_on": "2017-07-25",
|
915
|
+
"posted_on_trust_code": 7,
|
916
|
+
"url": "https://techcrunch.com/2017/07/25/facebook-twitter-google-warned-over-eu-consumer-rights/",
|
917
|
+
"created_at": 1500987006,
|
918
|
+
"updated_at": 1500987224
|
919
|
+
}
|
920
|
+
},
|
921
|
+
{
|
922
|
+
"type": "News",
|
923
|
+
"uuid": "b2299d435e2cfcbfa62e74de836d71a7",
|
924
|
+
"properties":
|
925
|
+
{
|
926
|
+
"title": "Facebook brings 4K support, other enhancements to Live 360",
|
927
|
+
"author": "Lucas Matney",
|
928
|
+
"posted_on": "2017-07-25",
|
929
|
+
"posted_on_trust_code": 7,
|
930
|
+
"url": "https://techcrunch.com/2017/07/25/facebook-brings-4k-support-other-enhancements-to-live-360/",
|
931
|
+
"created_at": 1500998399,
|
932
|
+
"updated_at": 1500998399
|
933
|
+
}
|
934
|
+
},
|
935
|
+
{
|
936
|
+
"type": "News",
|
937
|
+
"uuid": "73a6dde1588d409fee3b614bfeeb784e",
|
938
|
+
"properties":
|
939
|
+
{
|
940
|
+
"title": "Lean on Your Networks When Making Early Hires",
|
941
|
+
"author": "Cooper Harris",
|
942
|
+
"posted_on": "2017-07-24",
|
943
|
+
"posted_on_trust_code": 7,
|
944
|
+
"url": "https://tech.co/early-hires-startup-lean-networks-2017-07",
|
945
|
+
"created_at": 1501462194,
|
946
|
+
"updated_at": 1501462194
|
947
|
+
}
|
948
|
+
},
|
949
|
+
{
|
950
|
+
"type": "News",
|
951
|
+
"uuid": "d3aa8db66adf73e9cfe9607b710668ba",
|
952
|
+
"properties":
|
953
|
+
{
|
954
|
+
"title": "Internet Bug Bounty Project Receives $300,000 Donation",
|
955
|
+
"author": "Eduard Kovacs",
|
956
|
+
"posted_on": "2017-07-24",
|
957
|
+
"posted_on_trust_code": 7,
|
958
|
+
"url": "http://www.securityweek.com/internet-bug-bounty-project-receives-300000-donation",
|
959
|
+
"created_at": 1501006656,
|
960
|
+
"updated_at": 1501006656
|
961
|
+
}
|
962
|
+
},
|
963
|
+
{
|
964
|
+
"type": "News",
|
965
|
+
"uuid": "5ef1820122f5b2821fce742878f38725",
|
966
|
+
"properties":
|
967
|
+
{
|
968
|
+
"title": "Facebook Wants to Build Its Own Town",
|
969
|
+
"author": "Conor Cawley",
|
970
|
+
"posted_on": "2017-07-24",
|
971
|
+
"posted_on_trust_code": 7,
|
972
|
+
"url": "https://tech.co/facebook-wants-build-town-2017-07",
|
973
|
+
"created_at": 1501186907,
|
974
|
+
"updated_at": 1501186907
|
975
|
+
}
|
976
|
+
},
|
977
|
+
{
|
978
|
+
"type": "News",
|
979
|
+
"uuid": "8b0e330781e84445754e52e9ce8d496f",
|
980
|
+
"properties":
|
981
|
+
{
|
982
|
+
"title": "Here's what Elon Musk, Richard Branson, and 9 other successful people ask job candidates during interviews",
|
983
|
+
"author": "Rachel Gillett",
|
984
|
+
"posted_on": "2017-07-22",
|
985
|
+
"posted_on_trust_code": 7,
|
986
|
+
"url": "http://www.businessinsider.com/favorite-interview-questions-highly-successful-bosses-2017-7",
|
987
|
+
"created_at": 1500885873,
|
988
|
+
"updated_at": 1500885873
|
989
|
+
}
|
990
|
+
},
|
991
|
+
{
|
992
|
+
"type": "News",
|
993
|
+
"uuid": "bda79f2b2677cec5f44de6768c4824ce",
|
994
|
+
"properties":
|
995
|
+
{
|
996
|
+
"title": "How to pick the right collaboration tools",
|
997
|
+
"author": "James A. Martin",
|
998
|
+
"posted_on": "2017-07-21",
|
999
|
+
"posted_on_trust_code": 7,
|
1000
|
+
"url": "https://cio-asia.com/resource/applications/how-to-pick-the-right-collaboration-tools",
|
1001
|
+
"created_at": 1501979268,
|
1002
|
+
"updated_at": 1501979268
|
1003
|
+
}
|
1004
|
+
},
|
1005
|
+
{
|
1006
|
+
"type": "News",
|
1007
|
+
"uuid": "c8955763fa23593055f484dbceb2ac6f",
|
1008
|
+
"properties":
|
1009
|
+
{
|
1010
|
+
"title": "What's behind Google Hire?",
|
1011
|
+
"author": "Cliff Saran",
|
1012
|
+
"posted_on": "2017-07-21",
|
1013
|
+
"posted_on_trust_code": 7,
|
1014
|
+
"url": "http://www.computerweekly.com/news/450423073/Whats-behind-Google-Hire",
|
1015
|
+
"created_at": 1500774437,
|
1016
|
+
"updated_at": 1500774437
|
1017
|
+
}
|
1018
|
+
},
|
1019
|
+
{
|
1020
|
+
"type": "News",
|
1021
|
+
"uuid": "de3fd5eb167af9bdd58f294f1df00f6c",
|
1022
|
+
"properties":
|
1023
|
+
{
|
1024
|
+
"title": "How Creatives Can Earn a Living Through Patreon",
|
1025
|
+
"author": "Adam Rowe",
|
1026
|
+
"posted_on": "2017-07-21",
|
1027
|
+
"posted_on_trust_code": 7,
|
1028
|
+
"url": "https://tech.co/succeed-on-patreon-2017-07",
|
1029
|
+
"created_at": 1501359674,
|
1030
|
+
"updated_at": 1501359674
|
1031
|
+
}
|
1032
|
+
},
|
1033
|
+
{
|
1034
|
+
"type": "News",
|
1035
|
+
"uuid": "48c5891482b23f51eefa7440fba6bced",
|
1036
|
+
"properties":
|
1037
|
+
{
|
1038
|
+
"title": "QC Airport: Spread the tax burden?",
|
1039
|
+
"author": "Ed Tibbetts",
|
1040
|
+
"posted_on": "2017-07-20",
|
1041
|
+
"posted_on_trust_code": 7,
|
1042
|
+
"url": "http://qctimes.com/business/qc-airport-spread-the-tax-burden/article_bc12435e-f537-5c50-a712-d3c6433d506a.html",
|
1043
|
+
"created_at": 1500857566,
|
1044
|
+
"updated_at": 1500857566
|
1045
|
+
}
|
1046
|
+
},
|
1047
|
+
{
|
1048
|
+
"type": "News",
|
1049
|
+
"uuid": "ae80919d436477e0caa8821c73b8e727",
|
1050
|
+
"properties":
|
1051
|
+
{
|
1052
|
+
"title": "ALE and PGi deliver audio conferencing to maximize the UC&C experience",
|
1053
|
+
"author": null,
|
1054
|
+
"posted_on": "2017-07-20",
|
1055
|
+
"posted_on_trust_code": 7,
|
1056
|
+
"url": "http://www.acnnewswire.com/press-release/english/37545/ale-and-pgi-deliver-audio-conferencing-to-maximize-the-uc&c-experience",
|
1057
|
+
"created_at": 1500638801,
|
1058
|
+
"updated_at": 1500638801
|
1059
|
+
}
|
1060
|
+
},
|
1061
|
+
{
|
1062
|
+
"type": "News",
|
1063
|
+
"uuid": "c0e3c4af09930b28390e25bdaf797bdb",
|
1064
|
+
"properties":
|
1065
|
+
{
|
1066
|
+
"title": "A huge new survey shows that teens are bullied most on Instagram and Facebook",
|
1067
|
+
"author": "Taylor Hatmaker",
|
1068
|
+
"posted_on": "2017-07-20",
|
1069
|
+
"posted_on_trust_code": 7,
|
1070
|
+
"url": "https://techcrunch.com/2017/07/19/ditch-the-label-2017-cyberbullying-report/",
|
1071
|
+
"created_at": 1500554395,
|
1072
|
+
"updated_at": 1500554524
|
1073
|
+
}
|
1074
|
+
},
|
1075
|
+
{
|
1076
|
+
"type": "News",
|
1077
|
+
"uuid": "785e4e5dbbc24001e9035cb9b80c4bf2",
|
1078
|
+
"properties":
|
1079
|
+
{
|
1080
|
+
"title": "Tech’s 5 biggest players now worth $3 trillion",
|
1081
|
+
"author": "Alex Wilhelm",
|
1082
|
+
"posted_on": "2017-07-19",
|
1083
|
+
"posted_on_trust_code": 7,
|
1084
|
+
"url": "https://techcrunch.com/2017/07/19/techs-5-biggest-players-now-worth-3-trillion/",
|
1085
|
+
"created_at": 1500553045,
|
1086
|
+
"updated_at": 1500553090
|
1087
|
+
}
|
1088
|
+
},
|
1089
|
+
{
|
1090
|
+
"type": "News",
|
1091
|
+
"uuid": "72137efa1ce99e3d13b80b74e822e24c",
|
1092
|
+
"properties":
|
1093
|
+
{
|
1094
|
+
"title": "Facebook's Subscription Plan Gives Publishers Hope at Last",
|
1095
|
+
"author": "Garett Sloane",
|
1096
|
+
"posted_on": "2017-07-19",
|
1097
|
+
"posted_on_trust_code": 7,
|
1098
|
+
"url": "http://adage.com/article/digital/facebook-s-subscription-plan-publishers-hope/309819/",
|
1099
|
+
"created_at": 1500639105,
|
1100
|
+
"updated_at": 1500639105
|
1101
|
+
}
|
1102
|
+
},
|
1103
|
+
{
|
1104
|
+
"type": "News",
|
1105
|
+
"uuid": "fd6fcfebf210bf476e2ed318592b9ab9",
|
1106
|
+
"properties":
|
1107
|
+
{
|
1108
|
+
"title": "Facebook launches comparison tool to prove Instant Articles beat mobile web",
|
1109
|
+
"author": "Josh Constine",
|
1110
|
+
"posted_on": "2017-07-19",
|
1111
|
+
"posted_on_trust_code": 7,
|
1112
|
+
"url": "https://techcrunch.com/2017/07/19/facebook-instant-articles-comparison/",
|
1113
|
+
"created_at": 1500496007,
|
1114
|
+
"updated_at": 1500496007
|
1115
|
+
}
|
1116
|
+
},
|
1117
|
+
{
|
1118
|
+
"type": "News",
|
1119
|
+
"uuid": "41f2d37be9cc4de168d644a9e496ca9b",
|
1120
|
+
"properties":
|
1121
|
+
{
|
1122
|
+
"title": "Facebook ‘Groups for Pages’ unlocks fan clubs",
|
1123
|
+
"author": "Josh Constine",
|
1124
|
+
"posted_on": "2017-07-19",
|
1125
|
+
"posted_on_trust_code": 7,
|
1126
|
+
"url": "https://techcrunch.com/2017/07/19/facebook-groups-for-pages/",
|
1127
|
+
"created_at": 1500552780,
|
1128
|
+
"updated_at": 1500552780
|
1129
|
+
}
|
1130
|
+
},
|
1131
|
+
{
|
1132
|
+
"type": "News",
|
1133
|
+
"uuid": "25bcf79f68358ed20a76d4d47677c3f4",
|
1134
|
+
"properties":
|
1135
|
+
{
|
1136
|
+
"title": "Facebook may begin testing a paywall for selected media stories as soon as October",
|
1137
|
+
"author": "Jon Russell",
|
1138
|
+
"posted_on": "2017-07-19",
|
1139
|
+
"posted_on_trust_code": 7,
|
1140
|
+
"url": "https://techcrunch.com/2017/07/19/facebook-subscription-service-october/",
|
1141
|
+
"created_at": 1500472542,
|
1142
|
+
"updated_at": 1500472542
|
1143
|
+
}
|
1144
|
+
},
|
1145
|
+
{
|
1146
|
+
"type": "News",
|
1147
|
+
"uuid": "9f1352ccd2254f6f8676226c8b901b10",
|
1148
|
+
"properties":
|
1149
|
+
{
|
1150
|
+
"title": "Lifeboat to Distribute TeamViewer’s Digital Networking and Collaboration Solutions",
|
1151
|
+
"author": null,
|
1152
|
+
"posted_on": "2017-07-18",
|
1153
|
+
"posted_on_trust_code": 7,
|
1154
|
+
"url": "http://www.prweb.com/releases/2017/07/prweb14508335.htm",
|
1155
|
+
"created_at": 1500453558,
|
1156
|
+
"updated_at": 1501175113
|
1157
|
+
}
|
1158
|
+
},
|
1159
|
+
{
|
1160
|
+
"type": "News",
|
1161
|
+
"uuid": "7761906bd6e1fb78d4c17e9b8defea09",
|
1162
|
+
"properties":
|
1163
|
+
{
|
1164
|
+
"title": "Ad tech company Rocket Fuel sold for a fraction of its peak $2 billion valuation, and it marks the end of an era",
|
1165
|
+
"author": "Mike Shields",
|
1166
|
+
"posted_on": "2017-07-18",
|
1167
|
+
"posted_on_trust_code": 7,
|
1168
|
+
"url": "http://www.businessinsider.com/rocket-fuels-sale-to-sizmek-marks-the-end-of-an-era-in-ad-tech-2017-7",
|
1169
|
+
"created_at": 1500930576,
|
1170
|
+
"updated_at": 1500930576
|
1171
|
+
}
|
1172
|
+
},
|
1173
|
+
{
|
1174
|
+
"type": "News",
|
1175
|
+
"uuid": "6af0af516174d9fd09b42ede7382ced6",
|
1176
|
+
"properties":
|
1177
|
+
{
|
1178
|
+
"title": "'Ad Tech Armageddon:' Sizmek Acquires Rocket Fuel In $145m Deal",
|
1179
|
+
"author": "George Slefo",
|
1180
|
+
"posted_on": "2017-07-18",
|
1181
|
+
"posted_on_trust_code": 7,
|
1182
|
+
"url": "http://adage.com/article/digital/sizmek-snags-rocket-fuel-ad-tech-armageddon-looms/309788/",
|
1183
|
+
"created_at": 1500552307,
|
1184
|
+
"updated_at": 1500552307
|
1185
|
+
}
|
1186
|
+
},
|
1187
|
+
{
|
1188
|
+
"type": "News",
|
1189
|
+
"uuid": "4ea3bf568a2542b4dd0f566e46335a2d",
|
1190
|
+
"properties":
|
1191
|
+
{
|
1192
|
+
"title": "Facebook fights fake news spread via modified link previews",
|
1193
|
+
"author": "Josh Constine",
|
1194
|
+
"posted_on": "2017-07-18",
|
1195
|
+
"posted_on_trust_code": 7,
|
1196
|
+
"url": "https://techcrunch.com/2017/07/18/facebook-link-preview-modification/",
|
1197
|
+
"created_at": 1500466732,
|
1198
|
+
"updated_at": 1500466732
|
1199
|
+
}
|
1200
|
+
},
|
1201
|
+
{
|
1202
|
+
"type": "News",
|
1203
|
+
"uuid": "32d6b8dcd4421d5585be69ba67db0076",
|
1204
|
+
"properties":
|
1205
|
+
{
|
1206
|
+
"title": "Thousands of people willingly agree to clean toilets all for free Wi-Fi",
|
1207
|
+
"author": "Daniela Sternitzky-Di Napoli",
|
1208
|
+
"posted_on": "2017-07-18",
|
1209
|
+
"posted_on_trust_code": 7,
|
1210
|
+
"url": "http://www.chron.com/news/nation-world/article/Purple-free-WiFi-hotspot-terms-and-conditions-11297991.php",
|
1211
|
+
"created_at": 1500725148,
|
1212
|
+
"updated_at": 1500725148
|
1213
|
+
}
|
1214
|
+
},
|
1215
|
+
{
|
1216
|
+
"type": "News",
|
1217
|
+
"uuid": "35b07efdbd4203fa5ee6c028c29bdffd",
|
1218
|
+
"properties":
|
1219
|
+
{
|
1220
|
+
"title": "Government 'cyber troops' manipulate Facebook, Twitter, study says",
|
1221
|
+
"author": "Bloomberg",
|
1222
|
+
"posted_on": "2017-07-17",
|
1223
|
+
"posted_on_trust_code": 7,
|
1224
|
+
"url": "http://www.nola.com/business/index.ssf/2017/07/government_cyber_troops_manipu.html",
|
1225
|
+
"created_at": 1500509532,
|
1226
|
+
"updated_at": 1500509532
|
1227
|
+
}
|
1228
|
+
},
|
1229
|
+
{
|
1230
|
+
"type": "News",
|
1231
|
+
"uuid": "90a29c06e1da36d854fd33b382c3b759",
|
1232
|
+
"properties":
|
1233
|
+
{
|
1234
|
+
"title": "Wade Davis Has Tough Talk for Men in Tech",
|
1235
|
+
"author": "Emily Hopkins",
|
1236
|
+
"posted_on": "2017-07-17",
|
1237
|
+
"posted_on_trust_code": 7,
|
1238
|
+
"url": "https://women2.com/stories/2017/7/17/wade-davis-has-tough-talk-for-men-in-tech",
|
1239
|
+
"created_at": 1500740076,
|
1240
|
+
"updated_at": 1500740076
|
1241
|
+
}
|
1242
|
+
},
|
1243
|
+
{
|
1244
|
+
"type": "News",
|
1245
|
+
"uuid": "ffab3f25ba44ed5a982ab30974b0abc2",
|
1246
|
+
"properties":
|
1247
|
+
{
|
1248
|
+
"title": "Telegram blocks terror content after Indonesia threatens ban",
|
1249
|
+
"author": "STEPHEN WRIGHT",
|
1250
|
+
"posted_on": "2017-07-16",
|
1251
|
+
"posted_on_trust_code": 7,
|
1252
|
+
"url": "http://www.miamiherald.com/news/business/article161639003.html",
|
1253
|
+
"created_at": 1500308503,
|
1254
|
+
"updated_at": 1500308503
|
1255
|
+
}
|
1256
|
+
},
|
1257
|
+
{
|
1258
|
+
"type": "News",
|
1259
|
+
"uuid": "f1a07343d5eb41485a746bb167bf1c3e",
|
1260
|
+
"properties":
|
1261
|
+
{
|
1262
|
+
"title": "Pinterest Poaches 2 Longtime Google Execs to Develop New Ad Formats and Targeting",
|
1263
|
+
"author": null,
|
1264
|
+
"posted_on": "2017-07-15",
|
1265
|
+
"posted_on_trust_code": 7,
|
1266
|
+
"url": "http://www.adweek.com/digital/pinterest-poaches-2-longtime-google-execs-to-develop-new-ad-formats-and-targeting",
|
1267
|
+
"created_at": 1500246706,
|
1268
|
+
"updated_at": 1500246706
|
1269
|
+
}
|
1270
|
+
},
|
1271
|
+
{
|
1272
|
+
"type": "News",
|
1273
|
+
"uuid": "eee09a43527936c4fb969679c134f48d",
|
1274
|
+
"properties":
|
1275
|
+
{
|
1276
|
+
"title": "Facebook really can’t decide how much VR should cost",
|
1277
|
+
"author": "Lucas Matney",
|
1278
|
+
"posted_on": "2017-07-14",
|
1279
|
+
"posted_on_trust_code": 7,
|
1280
|
+
"url": "https://techcrunch.com/2017/07/14/oculus-rift-and-touch-receive-yet-another-price-cut-now-just-499/",
|
1281
|
+
"created_at": 1500044916,
|
1282
|
+
"updated_at": 1500044956
|
1283
|
+
}
|
1284
|
+
},
|
1285
|
+
{
|
1286
|
+
"type": "News",
|
1287
|
+
"uuid": "3a66295640bbdca6e701862e0610e7c9",
|
1288
|
+
"properties":
|
1289
|
+
{
|
1290
|
+
"title": "Facebook’s new “Explore Feed” makes its way to the app’s main navigation",
|
1291
|
+
"author": "Sarah Perez",
|
1292
|
+
"posted_on": "2017-07-14",
|
1293
|
+
"posted_on_trust_code": 7,
|
1294
|
+
"url": "https://techcrunch.com/2017/07/14/facebooks-new-explore-feed-makes-its-way-to-the-apps-main-navigation/",
|
1295
|
+
"created_at": 1500055814,
|
1296
|
+
"updated_at": 1500055814
|
1297
|
+
}
|
1298
|
+
},
|
1299
|
+
{
|
1300
|
+
"type": "News",
|
1301
|
+
"uuid": "3711ed08b8cf87a780f5cd2d02364d27",
|
1302
|
+
"properties":
|
1303
|
+
{
|
1304
|
+
"title": "Facebook tests a GIF maker on iOS",
|
1305
|
+
"author": "Sarah Perez",
|
1306
|
+
"posted_on": "2017-07-14",
|
1307
|
+
"posted_on_trust_code": 7,
|
1308
|
+
"url": "https://techcrunch.com/2017/07/14/facebook-tests-a-gif-maker-on-ios/",
|
1309
|
+
"created_at": 1500065454,
|
1310
|
+
"updated_at": 1500065454
|
1311
|
+
}
|
1312
|
+
},
|
1313
|
+
{
|
1314
|
+
"type": "News",
|
1315
|
+
"uuid": "a2d67be30c02beff1676a0a73f6d2135",
|
1316
|
+
"properties":
|
1317
|
+
{
|
1318
|
+
"title": "Free WiFi prank clause has thousands volunteering to clean toilets",
|
1319
|
+
"author": null,
|
1320
|
+
"posted_on": "2017-07-14",
|
1321
|
+
"posted_on_trust_code": 7,
|
1322
|
+
"url": "https://www.theinquirer.net/inquirer/news/3013867/free-wifi-prank-clause-has-thousands-volunteering-to-clean-toilets-and-hug-stray-cats",
|
1323
|
+
"created_at": 1500167219,
|
1324
|
+
"updated_at": 1500167219
|
1325
|
+
}
|
1326
|
+
},
|
1327
|
+
{
|
1328
|
+
"type": "News",
|
1329
|
+
"uuid": "5319eb84114d23dd8ec06fc34d442843",
|
1330
|
+
"properties":
|
1331
|
+
{
|
1332
|
+
"title": "Oculus reportedly planning $200 standalone wireless VR headset for 2018",
|
1333
|
+
"author": "Darrell Etherington",
|
1334
|
+
"posted_on": "2017-07-13",
|
1335
|
+
"posted_on_trust_code": 7,
|
1336
|
+
"url": "https://techcrunch.com/2017/07/13/oculus-reportedly-planning-200-standalone-wireless-vr-headset-for-2018/",
|
1337
|
+
"created_at": 1499956882,
|
1338
|
+
"updated_at": 1499956910
|
1339
|
+
}
|
1340
|
+
},
|
1341
|
+
{
|
1342
|
+
"type": "News",
|
1343
|
+
"uuid": "73d2c07350b08b2852207334d789d37e",
|
1344
|
+
"properties":
|
1345
|
+
{
|
1346
|
+
"title": "Academics 'funded by Google' tend not to mention it in their work",
|
1347
|
+
"author": "Andrew Orlowski",
|
1348
|
+
"posted_on": "2017-07-13",
|
1349
|
+
"posted_on_trust_code": 7,
|
1350
|
+
"url": "https://www.theregister.co.uk/2017/07/13/google_transparency_report_academics",
|
1351
|
+
"created_at": 1500194309,
|
1352
|
+
"updated_at": 1500194309
|
1353
|
+
}
|
1354
|
+
},
|
1355
|
+
{
|
1356
|
+
"type": "News",
|
1357
|
+
"uuid": "68a6c9c3a691569ac13bd164d874ebc6",
|
1358
|
+
"properties":
|
1359
|
+
{
|
1360
|
+
"title": "Facebook brings Live broadcasting to its Spaces virtual reality app",
|
1361
|
+
"author": "Lucas Matney",
|
1362
|
+
"posted_on": "2017-07-12",
|
1363
|
+
"posted_on_trust_code": 7,
|
1364
|
+
"url": "https://techcrunch.com/2017/07/12/facebook-brings-live-to-its-spaces-vr-app/",
|
1365
|
+
"created_at": 1499880690,
|
1366
|
+
"updated_at": 1499880690
|
1367
|
+
}
|
1368
|
+
},
|
1369
|
+
{
|
1370
|
+
"type": "News",
|
1371
|
+
"uuid": "49bf11b94b1206ffde07e069b99b8d1a",
|
1372
|
+
"properties":
|
1373
|
+
{
|
1374
|
+
"title": "Editor’s note to our readers",
|
1375
|
+
"author": null,
|
1376
|
+
"posted_on": "2017-07-12",
|
1377
|
+
"posted_on_trust_code": 7,
|
1378
|
+
"url": "http://www.newsday.com/news/editor-s-note-to-our-readers-1.13796846",
|
1379
|
+
"created_at": 1500078481,
|
1380
|
+
"updated_at": 1500078481
|
1381
|
+
}
|
1382
|
+
},
|
1383
|
+
{
|
1384
|
+
"type": "News",
|
1385
|
+
"uuid": "9bf4298aade23e0db234b8841ca512a2",
|
1386
|
+
"properties":
|
1387
|
+
{
|
1388
|
+
"title": "Facebook’s Messenger ads are bad and must be destroyed",
|
1389
|
+
"author": "Devin Coldewey",
|
1390
|
+
"posted_on": "2017-07-11",
|
1391
|
+
"posted_on_trust_code": 7,
|
1392
|
+
"url": "https://techcrunch.com/2017/07/11/facebooks-messenger-ads-are-bad-and-must-be-destroyed/",
|
1393
|
+
"created_at": 1499806206,
|
1394
|
+
"updated_at": 1499806243
|
1395
|
+
}
|
1396
|
+
},
|
1397
|
+
{
|
1398
|
+
"type": "News",
|
1399
|
+
"uuid": "4e73595d8b7d5672e9a97dc83fec5315",
|
1400
|
+
"properties":
|
1401
|
+
{
|
1402
|
+
"title": "How tech giants rank at protecting your privacy",
|
1403
|
+
"author": "Alfred Ng",
|
1404
|
+
"posted_on": "2017-07-11",
|
1405
|
+
"posted_on_trust_code": 7,
|
1406
|
+
"url": "http://www.cbsnews.com/news/how-tech-giants-rank-at-protecting-your-privacy/",
|
1407
|
+
"created_at": 1499935989,
|
1408
|
+
"updated_at": 1499935989
|
1409
|
+
}
|
1410
|
+
},
|
1411
|
+
{
|
1412
|
+
"type": "News",
|
1413
|
+
"uuid": "21d29affc387006838577aba6e214430",
|
1414
|
+
"properties":
|
1415
|
+
{
|
1416
|
+
"title": "Facebook Messenger globally tests injecting display ads into inbox",
|
1417
|
+
"author": "Josh Constine",
|
1418
|
+
"posted_on": "2017-07-11",
|
1419
|
+
"posted_on_trust_code": 7,
|
1420
|
+
"url": "https://techcrunch.com/2017/07/11/facebook-messenger-display-ads/",
|
1421
|
+
"created_at": 1499802297,
|
1422
|
+
"updated_at": 1499802326
|
1423
|
+
}
|
1424
|
+
}]
|
1425
|
+
}
|
1426
|
+
}
|