-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathpress.html
More file actions
1170 lines (1167 loc) · 75.4 KB
/
press.html
File metadata and controls
1170 lines (1167 loc) · 75.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
permalink: /press
layout: article
title: Press and Media Coverage
breadcrumbs:
- title: "Press and Media Coverage"
---
<div datatype="rdf:HTML" property="description">
<p>Are you looking to get a speaker or interview about Solid? Contact us on <a href="mailto:solid+press@theodi.org">solid+press@theodi.org</a> with a description of what you are looking for.</p>
</div>
<section resource="#mentions_of_solid_in_talks" inlist="" rel="hasPart" class="article-section">
<h2 id="mentions_of_solid_in_talks" property="name">Talks Mentioning Solid</h2>
<div datatype="rdf:HTML" property="description">
<h3 id="talks_2023">2023</h3>
<ol class="tiles tile-links">
<li>
<a href="https://fosdem.org/2023/schedule/event/sovcloud_from_zero_to_hero_with_solid/">
<h4 id="from_zero_to_hero_with_solid_fosdem">From Zero to Hero with Solid - FOSDEM</h4>
<dl>
<dt>Author</dt>
<dd>Noel De Martin</dd>
<dt>Date</dt>
<dd>2023-02-04</dd>
</dl>
</a>
</li>
</ol>
<h3 id="talks_2021">2021</h3>
<ol class="tiles tile-links">
<li>
<a href="https://www.programmier.bar/podcast/deep-dive-78-solid-project-mit-angelo-veltens">
<h4 id="programmier_bar_folge_78_solid_project_mit_angelo_veltens">programmier.bar Folge 78 - Solid Project mit Angelo Veltens</h4>
<dl>
<dt>Author</dt>
<dd>Angelo Veltens</dd>
<dt>Date</dt>
<dd>2021-01-01</dd>
</dl>
</a>
</li>
</ol>
<h3 id="talks_2020">2020</h3>
<ol class="tiles tile-links">
<li>
<a href="https://www.ivoox.com/episodio-72-controla-tus-datos-el-audios-mp3_rf_62216005_1.html">
<h4 id="programar_es_una_mierda_episodio_72_controla_tus_datos_con_el_estandar_web_solid">Programar es una mierda episodio 72 - Controla tus datos con el estándar web SOLID</h4>
<dl>
<dt>Author</dt>
<dd>Virginia Balseiro</dd>
<dt>Date</dt>
<dd>2020-12-11</dd>
</dl>
</a>
</li>
<li>
<a href="https://versnellingsplan.nl/english/">
<h4 id="data_as_the_key_to_smarter_innovation">Data as the key to smarter innovation</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2020-10-28</dd>
</dl>
</a>
</li>
<li>
<a href="https://ec.europa.eu/isa2/news/solid-workshop-highlights_en">
<h4 id="semic_workshop_6_october_2020">SEMIC Workshop, 6 October 2020</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2020-10-06</dd>
</dl>
</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=PtnbAf8uQ-M&t=22640">
<h4 id="nextcloud_conference_2020">Nextcloud Conference 2020</h4>
<dl>
<dt>Author</dt>
<dd>Michiel de Jong</dd>
<dt>Date</dt>
<dd>2020-10-04</dd>
</dl>
</a>
</li>
<li>
<a href="https://www.bbc.co.uk/sounds/play/p08ht9tf">
<h4 id="bbc_rethink_rethinking_digital_access">BBC Rethink: Rethinking Digital Access</h4>
<dl>
<dt>Author</dt>
<dd>Tim Berners-Lee</dd>
<dt>Date</dt>
<dd>2020-06-24</dd>
</dl>
</a>
</li>
<li>
<a href="https://yewtu.be/watch?v=oaVE9OcPrm8">
<h4 id="data_privacy_trust_and_smart_city_services">Data privacy, trust, and smart city services</h4>
<dl>
<dt>Author</dt>
<dd>Jeff Zucker</dd>
<dt>Date</dt>
<dd>2020-05-21</dd>
</dl>
</a>
</li>
<li>
<a href="https://studiegids.ugent.be/2019/EN/studiefiches/B001581.pdf">
<h4 id="personal_data_universality_and_the_world_wide_web">Personal data, universality, and the World Wide Web</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2020-03-30</dd>
</dl>
</a>
</li>
<li>
<a href="https://speakerdeck.com/noeldemartin/showcasing-an-app-that-uses-the-solid-protocol-for-decentralized-storage">
<h4 id="showcasing_an_app_that_uses_the_solid_protocol_for_decentralized_storage">Showcasing an app that uses the Solid protocol for decentralized storage</h4>
<dl>
<dt>Author</dt>
<dd>Noel De Martin</dd>
<dt>Date</dt>
<dd>2020-02-27</dd>
</dl>
</a>
</li>
<li>
<a href="https://www.rsaconference.com/experts/davi-ottenheimer-3">
<h4 id="rsa">RSA</h4>
<dl>
<dt>Author</dt>
<dd>Davi Ottenheimer</dd>
<dt>Date</dt>
<dd>2020-02-24</dd>
</dl>
</a>
</li>
<li>
<a href="https://ingenieriainformatica.uniovi.es/actualidad/eventos/-/asset_publisher/uS6D/content/conferencia-solid-search:-introduccion-a-solid-y-paradigmas-de-los-buscadores?redirect=%2Factualidad%2Feventos">
<h4 id="a_introduction_to_solid_and_solid_search">A introduction to Solid & Solid Search</h4>
<dl>
<dt>Author</dt>
<dd>Alejandro Juan Garcia</dd>
<dt>Date</dt>
<dd>2020-02-19</dd>
</dl>
</a>
</li>
<li>
<a href="https://speakerdeck.com/noeldemartin/an-introduction-to-solid">
<h4 id="an_introduction_to_solid">An introduction to Solid</h4>
<dl>
<dt>Author</dt>
<dd>Noel De Martin</dd>
<dt>Date</dt>
<dd>2020-02-18</dd>
</dl>
</a>
</li>
<li>
<a href="https://indico.cern.ch/e/CERN-Solid-brainstorming">
<h4 id="solid_cern">Solid CERN</h4>
<dl>
<dt>Author</dt>
<dd>Maria Dimou, Sarven Capadisli, and Mitzi László</dd>
<dt>Date</dt>
<dd>2020-02-07</dd>
</dl>
</a>
</li>
<li>
<a href="https://indico.cern.ch/event/854707/program">
<h4 id="keynote_may_we_please_store_your_personal_data">Keynote: May we please store your personal data?</h4>
<dl>
<dt>Author</dt>
<dd>Michiel de Jong</dd>
<dt>Date</dt>
<dd>2020-01-27</dd>
</dl>
</a>
</li>
<li>
<a href="https://web.archive.org/web/20241003073311/https://p2p.paris/fr/talks/intro-solid-box/">
<h4 id="intro_a_solid_box">Intro à Solid Box</h4>
<dl>
<dt>Author</dt>
<dd>Jonas Smedegaard</dd>
<dt>Date</dt>
<dd>2020-01-11</dd>
</dl>
</a>
</li>
<li>
<a href="https://web.archive.org/web/20241003073106/https://p2p.paris/fr/talks/workshop-future-solid-specifications/">
<h4 id="atelier_prospective_sur_le_standard_solid_batir_le_web_de_demain">Atelier prospective sur le standard Solid - Bâtir le web de demain</h4>
<dl>
<dt>Author</dt>
<dd>Alice Poggioli</dd>
<dt>Date</dt>
<dd>2020-01-10</dd>
</dl>
</a>
</li>
</ol>
<h3 id="talks_2019">2019</h3>
<ol class="tiles tile-links">
<li>
<a href=https://www.utwente.nl/en/digital-society/events/2019/12/63530/solid-winter-meetup-enschede-how-to-fix-the-internet">
<h4 id="solid_winter_meetup_enschede_how_to_fix_the_internet">Solid Winter Meetup Enschede - How To Fix The Internet</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2019-12-20</dd>
</dl>
</a>
</li>
<li>
<a href="https://www.meetup.com/es-ES/MyData-Madrid/events/tpmwjryzqbqb/">
<h4 id="mydata_madrid">MyData Madrid</h4>
<dl>
<dt>Author</dt>
<dd>Alejandro Juan Garcia</dd>
<dt>Date</dt>
<dd>2019-12-11</dd>
</dl>
</a>
</li>
<li>
<a href="https://rubenverborgh.github.io/Nocturne-Informatie-Vlaanderen-2019/">
<h4 id="nocturne_informatie_vlaanderen">Nocturne Informatie Vlaanderen</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2019-11-26</dd>
</dl>
</a>
</li>
<li>
<a href="https://www.bbc.co.uk/programmes/b006ptbl">
<h4 id="the_richard_dimbleby_lecture">The Richard Dimbleby Lecture</h4>
<dl>
<dt>Author</dt>
<dd>Tim Berners-Lee</dd>
<dt>Date</dt>
<dd>2019-11-18</dd>
</dl>
</a>
</li>
<li>
<a href="https://ecp.nl/">
<h4 id="ecp">ECP</h4>
<dl>
<dt>Author</dt>
<dd>Mitzi László & Pieter van Everdingen</dd>
<dt>Date</dt>
<dd>2019-11-14</dd>
</dl>
</a>
</li>
<li>
<a href="https://redecentralize.org/">
<h4 id="redecentralize">Redecentralize</h4>
<dl>
<dt>Author</dt>
<dd>Sarven Capadisli</dd>
<dt>Date</dt>
<dd>2019-10-25</dd>
</dl>
</a>
</li>
<li>
<a href="https://www.ada-lovelace-festival.com/">
<h4 id="ada_lovelace_festival">Ada Lovelace Festival</h4>
<dl>
<dt>Author</dt>
<dd>Mitzi László</dd>
<dt>Date</dt>
<dd>2019-10-24</dd>
</dl>
</a>
</li>
<li>
<a href="https://www.meetup.com/Brussels-Legal-Hackers/events/265191277/">
<h4 id="privacy_by_design_meetup">Privacy by Design meetup</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2019-10-23</dd>
</dl>
</a>
</li>
<li>
<a href="https://dataethics.eu/conference19/">
<h4 id="european_data_ethics_forum">European Data Ethics Forum</h4>
<dl>
<dt>Author</dt>
<dd>Mitzi László</dd>
<dt>Date</dt>
<dd>2019-10-10</dd>
</dl>
</a>
</li>
<li>
<a href="https://connected-data.london">
<h4 id="connected_data_london">Connected Data London</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2019-10-04</dd>
</dl>
</a>
</li>
<li>
<a href="https://csarven.ca/presentations/third-party-control-considered-harmful/">
<h4 id="third_party_control_considered_harmful_at_open_access_scholarly_publishers_association">Third-Party Control Considered Harmful - at Open Access Scholarly Publishers Association</h4>
<dl>
<dt>Author</dt>
<dd>Sarven Capadisli</dd>
<dt>Date</dt>
<dd>2019-09-26</dd>
</dl>
</a>
</li>
<li>
<a href="https://waag.org/nl/event/data-commons-1-fietsdata">
<h4 id="waag_data_commons_1_fietsdata">Waag Data Commons #1: Fietsdata</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2019-09-26</dd>
</dl>
</a>
</li>
<li>
<a href="https://rubenverborgh.github.io/Decentralized-Web-Query-Challenges-2019/">
<h4 id="the_decentralized_web_and_its_challenges_for_querying_at_aalborg_university">The Decentralized Web and its challenges for querying - at Aalborg University</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2019-09-20</dd>
</dl>
</a>
</li>
<li>
<a href="https://nextcloud.com/fr_FR/blog/nextcloud-conference-2019-talks-now-online/">
<h4 id="nextcloud_conference">NextCloud Conference</h4>
<dl>
<dt>Author</dt>
<dd>Mitzi László</dd>
<dt>Date</dt>
<dd>2019-09-15</dd>
</dl>
</a>
</li>
<li>
<a href="https://onderwijsaanbod.kuleuven.be/syllabi/e/F0XO5AE.htm#activetab=doelstellingen_idp45136">
<h4 id="linked_data_scholarship_course_at_ku_leuven_2019">Linked Data Scholarship course at KU Leuven</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2019-09-14</dd>
</dl>
</a>
</li>
<li>
<a href="https://www.kb.nl/nieuws/2019/kb-sessie-heruitvinden-van-de-digitale-publieke-ruimte">
<h4 id="kb_session_on_reinventing_the_public_space">KB session on Reinventing the Public Space</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2019-09-12</dd>
</dl>
</a>
</li>
<li>
<a href="https://csarven.ca/presentations/social-scholarly-web-ecosystem/">
<h4 id="enabling_a_socially_aware_scholarly_ecosystem_at_vivo_conference_2019">Enabling a Socially-Aware Scholarly Ecosystem - at VIVO conference 2019</h4>
<dl>
<dt>Author</dt>
<dd></dd>
<dt>Date</dt>
<dd>2019-09-06</dd>
</dl>
</a>
</li>
<li>
<a href="https://media.ccc.de/v/froscon2019-2375-die_ruckeroberung_des_social_web">
<h4 id="die_ruckeroberung_des_social_web">Die Rückeroberung des Social Web</h4>
<dl>
<dt>Author</dt>
<dd>Angelo Veltens</dd>
<dt>Date</dt>
<dd>2019-08-11</dd>
</dl>
</a>
</li>
<li>
<a href="https://www.irit.fr/pfia2019/en/">
<h4 id="how_solid_aims_to_impact_the_web_and_ai_with_it_at_the_artificial_intelligence_platform_pfia">How Solid aims to impact the Web (and AI with it) - at the Artificial Intelligence Platform (PFIA)</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2019-07-02</dd>
</dl>
</a>
</li>
<li>
<a href="https://cyber.harvard.edu/">
<h4 id="solid_at_berkman_klein_center">Solid - at Berkman Klein Center</h4>
<dl>
<dt>Author</dt>
<dd>Mitzi László & Justin Bingham</dd>
<dt>Date</dt>
<dd>2019-07-01</dd>
</dl>
</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=Ao9bmFFoAB4">
<h4 id="a_look_ahead_into_the_future_of_tech_at_postgres_vision_2019">A Look Ahead Into the Future of Tech - at Postgres Vision 2019</h4>
<dl>
<dt>Author</dt>
<dd>Tim Berners-Lee</dd>
<dt>Date</dt>
<dd>2019-06-25</dd>
</dl>
</a>
</li>
<li>
<a href="https://rubenverborgh.github.io/LDAC-2019/">
<h4 id="building_a_decentralized_semantic_web_at_linked_data_in_architecture_and_construction_week_2019">Building a decentralized Semantic Web - at Linked Data in Architecture and Construction Week 2019</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh/dd>
<dt>Date</dt>
<dd>2019-06-19</dd>
</dl>
</a>
</li>
<li>
<a href="https://rubenverborgh.github.io/Blockchain-Education-France-2019/">
<h4 id="toward_a_more_decentralized_web_at_blockchain_open_education_and_digital_citizenship">Toward a more decentralized Web - at Blockchain, Open Education & Digital Citizenship</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2019-05-28</dd>
</dl>
</a>
</li>
<li>
<a href="https://rubenverborgh.github.io/FAIR-Symposium-2019/">
<h4 id="research_challenges_for_decentralized_data_symposium_on_fair_personal_open_and_distributed_data_on_the_web_at_the_institute_of_data_science">Research challenges for decentralized data - Symposium on FAIR Personal, Open and Distributed Data on the Web at the Institute of Data Science</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2019-04-24</dd>
</dl>
</a>
</li>
<li>
<a href="http://slides.verborgh.org/GhentJS-2019/">
<h4 id="querying_the_decentralized_web_with_javascript_ghentjs_meetup">Querying the decentralized Web with JavaScript - GhentJS Meetup</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2019-04-10</dd>
</dl>
</a>
</li>
<li>
<a href="https://rubenverborgh.github.io/PLDN-Solid-Kick-Off-2019/">
<h4 id="platform_linked_data_nederland_solid_kickoff">Platform Linked Data Nederland Solid Kickoff</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2019-04-09</dd>
</dl>
</a>
</li>
<li>
<a href="https://rubenverborgh.github.io/STRP-Festival-2019/">
<h4 id="solid_at_strp_strp_festival">Solid @ STRP - STRP Festival</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2019-04-04</dd>
</dl>
</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=zzsViU5kSlY">
<h4 id="solid_una_vision_del_futuro_de_la_web_descentralizada_t3chfest_2019">Solid, una visión del futuro de la web descentralizada - T3chFest 2019</h4>
<dl>
<dt>Author</dt>
<dd>Juan Lupión</dd>
<dt>Date</dt>
<dd>2019-03-28</dd>
</dl>
</a>
</li>
<li>
<a href="https://rubenverborgh.github.io/Beyond-Data-Event-2019/">
<h4 id="control_over_data_as_key_to_permissionless_innovation_beyond_data_event_2019">Control over data as key to permissionless innovation - Beyond Data Event 2019</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2019-03-28</dd>
</dl>
</a>
</li>
<li>
<a href="https://schedule.sxsw.com/2019/events/PP93227">
<h4 id="designing_for_the_next_30_years_of_the_web">Designing For the Next 30 Years of the Web</h4>
<dl>
<dt>Author</dt>
<dd>John Bruce & Justin Bingham</dd>
<dt>Date</dt>
<dd>2019-03-10</dd>
</dl>
</a>
</li>
<li>
<a href="https://www.youtube.com/watch?v=eJ6IrWc7Wt4">
<h4 id="sir_tim_berners_lee_says_his_company_solid_will_give_users_control_of_their_data">Sir Tim Berners-Lee says his company Solid will give users control of their data</h4>
<dl>
<dt>Author</dt>
<dd>Tim Berners-Lee</dd>
<dt>Date</dt>
<dd>2019-03-06</dd>
</dl>
</a>
</li>
<li>
<a href="https://rubenverborgh.github.io/OverWeb-Meetup-Ghent-2019/">
<h4 id="solid_bringing_back_choice_by_taking_back_control_overweb_meetup">Solid: bringing back choice by taking back control - OverWeb Meetup</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2019-03-05</dd>
</dl>
</a>
</li>
<li>
<a href="https://www.rubensworks.net/raw/slides/2019/oslo-solid/">
<h4 id="solid_oslo_inspiratienamiddag">Solid - OSLO Inspiratienamiddag</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Taelman</dd>
<dt>Date</dt>
<dd>2019-02-19</dd>
</dl>
</a>
</li>
<li>
<a href="https://hackersandfounders.nl/">
<h4 id="solid_hackers_and_founders">Solid - Hackers & Founders</h4>
<dl>
<dt>Author</dt>
<dd>Mitzi László</dd>
<dt>Date</dt>
<dd>2019-02-07</dd>
</dl>
</a>
</li>
<li>
<a href="https://rubenverborgh.github.io/Slides-FOSDEM-2019/">
<h4 id="solid_taking_back_the_web_through_decentralization_fosdem">Solid: taking back the Web through decentralization - FOSDEM</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2019-02-03</dd>
</dl>
</a>
</li>
<li>
<a href="https://rubenverborgh.github.io/CSCC2019/">
<h4 id="data_ownership_and_control_in_connected_smart_cities">Data ownership and control in connected smart cities</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2019-01-17</dd>
</dl>
</a>
</li>
</ol>
<h3 id="talks_2018">2018</h3>
<ol class="tiles tile-links">
<li>
<a href="https://www.mediafastforward.be">
<h4 id="media_fast_forward">Media Fast Forward</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2018-12-14</dd>
</dl>
</a>
</li>
<li>
<a href="https://www.apidays.co/paris">
<h4 id="api_days_paris">API Days Paris</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2019-12-12</dd>
</dl>
</a>
</li>
<li>
<a href="https://wiki.mozilla.org/Mozfest/2018">
<h4 id="mozfest">MozFest</h4>
<dl>
<dt>Author</dt>
<dd>Tim Berners-Lee</dd>
<dt>Date</dt>
<dd>2018-10-27</dd>
</dl>
</a>
</li>
<li>
<a href="https://iswc2018.desemweb.org">
<h4 id="iswc_2018_workshop_on_decentralising_the_semantic_web">ISWC 2018 Workshop on Decentralising the Semantic Web</h4>
<dl>
<dt>Author</dt>
<dd>Tim Berners-Lee & Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2018-10-08</dd>
</dl>
</a>
</li>
<li>
<a href="https://www.techsoul.in">
<h4 id="solid_the_new_internet_by_prof_tim_berner_lee">SOLID - The New Internet by Prof. Tim Berner Lee</h4>
<dl>
<dt>Author</dt>
<dd>AjayKumar</dd>
<dt>Date</dt>
<dd>2018-10-04</dd>
</dl>
</a>
</li>
<li>
<a href="https://onderwijsaanbod.kuleuven.be/syllabi/e/F0XO5AE.htm#activetab=doelstellingen_idp935024">
<h4 id="linked_data_scholarship_course_at_ku_leuven_2018">Linked Data Scholarship course at KU Leuven</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2018-09-19</dd>
</dl>
</a>
</li>
<li>
<a href="https://2018.european-big-data-value-forum.eu/">
<h4 id="big_data_in_media_workshop_at_the_european_big_data_value_forum">Big Data in Media workshop at the European Big Data Value Forum</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2018-11-14</dd>
</dl>
</a>
</li>
<li>
<a href="https://rubenverborgh.github.io/Web-Foundation-2018/">
<h4 id="web_foundation_seminar">Web Foundation Seminar</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2018-09-13</dd>
</dl>
</a>
</li>
<li>
<a href="http://www.oslcfest.org">
<h4 id="oslc_fest">OSLC Fest</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2018-09-06</dd>
</dl>
</a>
</li>
<li>
<a href="https://epic.openrecognition.org">
<h4 id="epic">ePIC</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2018-08-23</dd>
</dl>
</a>
</li>
<li>
<a href="https://decentralizedwebsummit2018.sched.com/">
<h4 id="decentralized_web_summit">Decentralized Web Summit</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2018-08-02</dd>
</dl>
</a>
</li>
<li>
<a href="https://www.elag2018.org">
<h4 id="international_conference_of_the_european_library_automation_group_elag">International Conference of the European Library Automation Group (ELAG)</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2018-06-05</dd>
</dl>
</a>
</li>
<li>
<a href="https://www.w3.org/2018/Talks/0529-timbl-turing/timbl-turing-slides-utopia-to-dystopia.html">
<h4 id="acm_turing_lecture_utopia_to_dystopia_in_29_short_years">ACM Turing Lecture - Utopia to Dystopia in 29 short years</h4>
<dl>
<dt>Author</dt>
<dd>Tim Berners-Lee</dd>
<dt>Date</dt>
<dd>2018-05-28</dd>
</dl>
</a>
</li>
<li>
<a href="https://pro.europeana.eu/event/europeanatech-conference-2018">
<h4 id="europeanatech">EuropeanaTech</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2018-05-15</dd>
</dl>
</a>
</li>
<li>
<a href="https://www.mulesoft.com/press-center/connect-2018">
<h4 id="connect">Connect</h4>
<dl>
<dt>Author</dt>
<dd>Tim Berners-Lee</dd>
<dt>Date</dt>
<dd>2018-05-15</dd>
</dl>
</a>
</li>
<li>
<a href="https://www.graphqlday.org">
<h4 id="graphqll_day">GraphQlL Day</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2018-04-14</dd>
</dl>
</a>
</li>
<li>
<a href="https://linkedresearch.org/events/the-web-conf-2018/summary#researcher-centric-solid">
<h4 id="researcher_centric_scholarly_communication_workshop_at_the_web_conf_2018_building_a_researcher_centric_world_on_the_user_centric_platform_solid">Researcher-Centric Scholarly Communication workshop at The Web Conf 2018 - Building a
researcher-centric world on the user-centric platform, Solid</h4>
<dl>
<dt>Author</dt>
<dd>Tim Berners-Lee</dd>
<dt>Date</dt>
<dd>2018-04-28</dd>
</dl>
</a>
</li>
<li>
<a href="https://underscore.vc/blockchain">
<h4 id="blockchain_core_summit">Blockchain Core Summit</h4>
<dl>
<dt>Author</dt>
<dd>Ruben Verborgh</dd>
<dt>Date</dt>
<dd>2018-03-22</dd>
</dl>
</a>
</li>
<li>
<a href="https://gotocph.com/2018">
<h4 id="goto_conference">GoTo Conference</h4>
<dl>
<dt>Author</dt>
<dd>Tim Berners-Lee</dd>
<dt>Date</dt>
<dd>2018-01-06</dd>
</dl>
</a>
</li>
</ol>
<h3 id="talks_2017">2017</h3>
<ol class="tiles tile-links">
<li>
<a href="https://www.cni.org/events/membership-meetings/past-meetings/fall-2017/plenary-sessions-f17-2#closing">
<h4 id="cni_fall_2017_meeting_closing_plenary_scholarly_communication_deconstruct_and_decentralize">CNI Fall 2017 Meeting - Closing Plenary - Scholarly Communication: Deconstruct &
Decentralize?</h4>
<dl>
<dt>Author</dt>
<dd>Herbert van der Sompel</dd>
<dt>Date</dt>
<dd>2017-12-12</dd>
</dl>
</a>
</li>
</ol>
<h3 id="talks_2016">2016</h3>
<ol class="tiles tile-links">
<li>
<a href="https://2016.decentralizedweb.net">
<h4 id="decentralised_web_summit">Decentralised Web Summit</h4>
<dl>
<dt>Author</dt>
<dd>Tim Berners-Lee</dd>
<dt>Date</dt>
<dd>2016-07-08</dd>
</dl>
</a>
</li>
<li>
<a href="http://www2016.ca/program/program-by-track/tutorials.html#building-decentralized-applications-for-the-social-web">
<h4 id="building_decentralized_applications_for_the_social_web">Building Decentralized Applications For The Social Web</h4>
<dl>
<dt>Author</dt>
<dd>Andrei Sambra, Amy Guy, Sarven Capadisli, Nicola Greco</dd>
<dt>Date</dt>
<dd>2016-04-12</dd>
</dl>
</a>
</li>
<li>
<a href="https://2016.decentralizedweb.net">
<h4 id="ipri_meeting">IPRI meeting</h4>
<dl>
<dt>Author</dt>
<dd>Andrei Sambra & Nicola Greco</dd>
<dt>Date</dt>
<dd>2016-04-07</dd>
</dl>
</a>
</li>
</ol>
<h3 id="talks_2015">2015</h3>
<ol class="tiles tile-links">
<li>
<a href="https://slides.com/deiu/redecentralize-2015#/">
<h4 id="redecentralize_conference">Redecentralize conference</h4>
<dl>
<dt>Author</dt>
<dd>Andrei Sambra & Nicola Greco</dd>
<dt>Date</dt>
<dd>2015-10-18</dd>
</dl>
</a>
</li>
<li>
<a href="http://slides.com/deiu/solid-tech#/">
<h4 id="cambridge_semantic_web_meetup">Cambridge Semantic Web Meetup</h4>
<dl>
<dt>Author</dt>
<dd>Andrei Sambra</dd>
<dt>Date</dt>
<dd>2015-10-13</dd>
</dl>
</a>
</li>
<li>
<a href="http://conferenciaweb.w3c.br/">
<h4 id="web_br">Web.br</h4>
<dl>
<dt>Author</dt>
<dd>Andrei Sambra & Nicola Greco</dd>
<dt>Date</dt>
<dd>2015-09-25</dd>
</dl>
</a>
</li>
</ol>
</div>
</section>
<section resource="#mentions_of_solid_in_articles" inlist="" rel="hasPart" class="article-section">
<h2 id="mentions_of_solid_in_articles" property="name">Mentions of Solid in Articles</h2>
<div datatype="rdf:HTML" property="description">
<h3 id="articles_2023">2023</h3>
<ol>
<li>2023-03 <a href="https://art19.com/shows/beyond-the-valley/episodes/d0f4cf85-991d-4331-9599-e4e35e092e45">Podcast: Three decades after inventing the web, Tim Berners-Lee has some ideas on how to fix it</a></li>
<li>2023-01-19 <a href="https://www.infoworld.com/article/3685572/web-3-doesnt-need-a-blockchain-revolution.html">Article: Web 3.0 doesn't need a blockchain revolution</a></li>
<li>2023-01-06 <a href="https://edition.cnn.com/2022/12/16/tech/tim-berners-lee-inrupt-spc-intl/index.html">Article: Inventor of the world wide web wants us to reclaim our data from tech giants</a></li>
</ol>
<h3 id="articles_2022">2022</h3>
<ol>
<li>2022-11-26 <a href="https://www.businesspost.ie/connected/inventor-of-the-internet-looks-to-fix-it/">Article: Inventor of the Web looks to fix internet</a></li>
<li>2022-11-21 <a href="https://openfuture.world/view/exploring-personal-data-stores-at-the-bbc/">Interview: Exploring personal data stores at the BBC</a></li>
<li>2022-11-08 <a href="https://www.fastcompany.com/90807852/tim-berners-lee-inrupt-solid-pods">Article: Tim Berners-Lee is building the web's 'third layer.' Don't call it Web3</a></li>
</ol>
<h3 id="articles_2021">2021</h3>
<ol>
<li>2021-04-15 <a href="https://www.sciencefocus.com/future-technology/interview-web-inventor-tim-berners-lee-thinks-his-creation-is-out-of-control-heres-his-plan-to-save-it/">Interview: Web inventor Tim Berners-Lee thinks his creation is out of control. Here's his plan to save it</a></li>
<li>2021-01-10 <a href="https://www.nytimes.com/2021/01/10/technology/tim-berners-lee-privacy-internet.html">He Created the Web. Now He’s Out to Remake the Digital World.</a></li>
</ol>
<h3 id="articles_2020">2020</h3>
<ol>
<li>2020-07-28 <a href="https://www.nrc.nl/nieuws/2020/07/28/tem-big-tech-stop-data-in-prive-kluizen-a4007191">Tem Big Tech: stop data in privékluizen</a></li>
<li>2020-07-12 <a href="https://yarmo.eu/post/future-online-identity-decentralized">The Future of Online Identity is Decentralized by Yarmo Mackenbach</a></li>
<li>2020-07-01 <a href="https://www.technologyreview.com/2020/07/01/1004725/redesign-internet-apps-no-one-controls-data-privacy-innovation-cloud/">MIT Technology Review - A plan to redesign the internet could make apps that no one controls</a></li>
<li>2020-06-12 <a href="https://alltechishuman.org/blog/changemakers-davi-ottenheimer-on-data-ethics-and-how-to-save-the-internet">CHANGEMAKERS: Davi Ottenheimer on Data Ethics and How to Save the Web</a></li>
<li>2020-06-02 <a href="https://www.csail.mit.edu/research/solid-social-linked-data">Solid: Social Linked Data</a></li>
<li>2020-06-02 <a href="https://modeling-languages.com/low-code-open-source-platform-generative-objects/">Low-code development platform Generative Objects : the journey to open source</a></li>
<li>2020-05-20 <a href="https://blockchain.open.ac.uk/#covid-19">Open University Solid initiative</a></li>
<li>2020-05-06 <a href="https://hackernoon.com/what-happens-when-you-get-sick-right-now-mh12x3y82">What Happens When You Get Sick Right Now?</a></li>
<li>2020-04-29 <a href="https://cointelegraph.com/news/new-app-for-covid-19-combines-blockchain-with-web-inventors-privacy-tech">New App for COVID-19 Combines Blockchain With Web Inventor's Privacy Tech</a></li>
<li>2020-04-15 <a href="https://arxiv.org/abs/2004.07376">COVID-19 Antibody Test Certification: There's an app for that</a></li>
<li>2020-04-14 <a href="https://www.zdnet.com/article/scale-distribution-and-occupying-mars-covid-19-is-a-catalyst/">Scale, distribution, and occupying Mars: COVID-19 is a catalyst</a></li>
<li>2020-04-07 <a href="https://njtechweekly.com/henrys-take-princeton-blockchain-meetup-digital-identities-and-a-cool-ceo-named-ed-zabar/">Henry's Take: Princeton Blockchain Meetup, Digital Identities, And A Cool Ceo Named Ed Zabar</a></li>
<li>2020-04-04 <a href="https://hackaday.com/2020/04/04/can-solid-save-the-internet/">Can Solid Save The Internet?</a></li>
<li>2020-04-01 <a href="https://thepolitic.org/an-interview-with-bruce-schneier-renowned-security-technologist/">An Interview with Bruce Schneier, Renowned Security Technologist</a></li>
<li>2020-03-30 <a href="https://hackaday.com/2020/03/30/solid-promises-a-new-approach-to-how-the-web-works/">Solid Promises A New Approach To How The Web Works</a></li>
<li>2020-03-29 <a href="https://blog.usejournal.com/co-immunology-and-the-web-43379b46688e">Co-Immunology and the Web</a></li>
<li>2020-03-27 <a href="https://www.newkerala.com/news/2020/43499.htm">Accenture Published Accenture Technology Vision 2020 - Five Trends to Look For</a></li>
<li>2020-02-25 <a href="https://reclaimthenet.org/bruce-schneier-joins-inrupt-solid/">Bruce Schneier joins Inrupt to work on a vision for the future of the internet</a></li>
<li>2020-02-24 <a href="https://www.zdnet.com/article/berners-lees-solid-project-schneier-joins-team-to-give-you-back-control-over-data/">Berners-Lee's Solid project: Schneier joins team to give you back control over data</a></li>
<li>2020-02-24 <a href="https://mailchi.mp/protocol/nid66issxj?e=91fe210859">Source Code Newsletter</a></li>
<li>2020-02-24 <a href="https://telecoms.com/502629/internet-pioneer-tim-berners-lee-is-on-a-hiring-spree/">Internet pioneer Tim Berners-Lee is on a hiring spree</a></li>
<li>2020-02-24 <a href="https://www.siliconrepublic.com/enterprise/tim-berners-lee-expands-inrupt-team-open-source-web">Tim Berners-Lee expands Inrupt team to 'restore power' on the web</a></li>
<li>2020-02-24 <a href="https://www.theregister.co.uk/2020/02/24/solid_nrupt_plans/">World Wide Web's Sir Tim swells his let's-remake-the-internet startup with Bruce Schneier, fellow tech experts</a></li>
<li>2020-02-21 <a href="https://securityboulevard.com/2020/02/inrupt-tim-berners-lees-solid-and-me/">Syndication: Inrupt, Tim Berners-Lee's Solid, and Me</a></li>
<li>2020-02-18 <a href="https://www.cityam.com/the-privacy-paradox-how-we-got-trapped-in-a-data-dystopia/">The privacy paradox: How we got trapped in a data dystopia</a></li>
<li>2020-02-17 <a href="https://www.helpnetsecurity.com/2020/02/17/technology-future-businesses/">Key technology trends that will redefine businesses over the next three years</a></li>
<li>2020-02-14 <a href="https://channeldrive.in/accenture-technology-vision-2020-predicts-key-tech-trends/">Accenture Technology Vision 2020 Predicts Key Tech Trends</a></li>
<li>2020-02-13 <a href="https://www.techrepublic.com/article/5-tech-trends-to-focus-on-for-better-customer-and-stakeholder-relationships/">5 tech trends to focus on for better customer and stakeholder relationships</a></li>
<li>2020-02-13 <a href="https://trav.page/log/solid-ground/">solid at ground level</a></li>
<li>2020-02-13 <a href="https://www.eweek.com/innovation/accenture-technology-vision-2020-the-focus-must-be-on-people">Accenture Technology Vision 2020: The Focus Must Be on People</a></li>
<li>2020-02-12 <a href="https://trav.page/log/solid-foundation/">a solid foundation for a new web</a></li>
<li>2020-02-12 <a href="https://finance.yahoo.com/news/accenture-technology-vision-2020-tech-120000395.html?guccounter=1">Accenture Technology Vision 2020: From Tech-Clash to Trust, the Focus Must Be on People</a></li>
<li>2020-02-05 <a href="https://www.wired.co.uk/article/privacy-first-technology">This year privacy-first tech will (slowly) start going mainstream</a></li>
<li>2020-02-05 <a href="https://www.acorel.nl/2018/10/i-hear-you-but-im-not-listening/">I hear you but I'm not listening!</a></li>
<li>2020-01-23 <a href="https://www.coywolf.news/social/solid-profile-design/">Developer offers a glimpse of what a 'Solid' decentralized social network presence might look like</a></li>
<li>2020-01-22 <a href="https://www.bellanaija.com/2020/01/tim-berners-lees/">The Inventor of the World Wide Web wrote an Inspiring Letter to the Women's Technology Empowerment Centre in Lagos | Read it Here</a></li>
<li>2020-01-20 <a href="https://www.thenewamerican.com/print-magazine/item/34519-freeing-the-web-from-big-tech">Freeing the Web From Big Tech</a></li>
<li>2020-01-18 <a href="https://decrypt.co/16935/why-decentralization-is-the-future-for-social-media">Why decentralization is the future for social media</a></li>
<li>2020-01-16 <a href="https://time.com/5764511/open-letters-to-youth-activists/">Letters to Young People Who Inspire Us, by Madeleine Albright, Michelle Bachelet, Tim Berners-Lee and More</a></li>
<li>2020-01-05 <a href="https://medium.com/@AlexGlasneck/unfuck-digital-why-we-should-reboot-the-digital-revolution-4652237ab05f">Unfuck digital ! — Why we should reboot the digital revolution.</a></li>
</ol>
<h3 id="articles_2019">2019</h3>
<ol>
<li>2019-12-06 <a href="https://medium.com/digita-ai/the-personal-data-web-social-linked-data-and-data-vaults-explained-48d40f520034">The personal data web, social linked data and data vaults explained</a></li>
<li>2019-11-29 <a href="https://www.coywolf.news/social/solid-decentralized-network/">'Solid' Decentralized social apps, where users control their data and privacy, could replace Facebook</a></li>
<li>2019-11-20 <a href="https://blogs.lse.ac.uk/businessreview/2019/11/20/how-to-turn-trust-into-a-competitive-advantage/">LSE Business Review: How to turn trust into a competitive advantage</a></li>
<li>2019-11-13 <a href="http://www.mrweb.com/drno/news28902.htm">MRWeb: Berners-Lee Raises Funds to ‘Reimagine the Web’</a></li>
<li>2019-11-12 <a href="https://www.cio.co.uk/cio-career/richard-corbridge-digests-tim-berners-lees-gartner-symposium-keynote-3777696/">CIO: ‘Tech for humanity’ - Richard Corbridge digests Professor Sir Tim Berners-Lee’s Gartner Symposium CIO call to arms</a></li>
<li>2019-11-08 <a href="https://www.thenewamerican.com/tech/computers/item/33988-web-2-0-was-hijacked-and-broken-by-big-tech-privacy-pioneers-are-building-a-better-web-3-0">New American: Web 2.0 Was Hijacked and Broken by Big Tech. Privacy Pioneers Are Building a Better Web 3.0</a></li>
<li>2019-11-04 <a href="https://www.theinquirer.net/inquirer/news/3083354/tim-berners-lee-inrupt-gdp5m-investment">The Inquirer: Sir Tim Berners-Lee’s Inrupt startup receives £5m investment</a></li>
<li>2019-10-29 <a href="https://decrypt.co/10857/tim-berners-lee-internet-50th-anniversary-contract-for-the-web">Decrypt: Tim Berners-Lee marks Internet's 50th with Contract for the Web</a></li>
<li>2019-10-28 <a href="https://www.americaninno.com/boston/boston-speaks-up/meet-janeiro-digital-cto-justin-bingham/">Bostino: Meet Janeiro Digital CTO Justin Bingham</a></li>
<li>2019-10-26 <a href="https://www.wsj.com/articles/tech-giants-have-hijacked-the-web-its-time-for-a-reboot-11572062420">Wall Street Journal: Tech Giants Have Hijacked the Web. It's Time for a Reboot.</a></li>
<li>2019-10-23 <a href="https://www.pcmag.com/article/371488/tim-berners-lee-it-leaders-must-build-values-into-their-com">PC Magazine: Tim Berners-Lee: IT Leaders Must Build Values into Their Companies and Systems</a></li>
<li>2019-10-20 <a href="https://tapmydata.com/data-ownership-and-the-semantic-web-interview-with-professor-ruben-verborgh-part-2/">Data ownership and the semantic web: Interview with Professor Ruben Verborgh (Part 2)</a></li>
<li>2019-10-11 <a href="https://www.computing.co.uk/ctg/analysis/3082496/solids-ruben-verborgh-we-need-competition-based-on-quality-of-service-not-on-data-harvesting">Computing: Solid’s Ruben Verborgh: ‘We need competition based on quality of service not on data harvesting’</a></li>
<li>2019-09-24 <a href="https://tapmydata.com/give-me-my-data-facebook-interview-with-ruben-verborgh/">Give me all my data Facebook: Interview with professor Ruben Verborgh (Part 1)</a></li>
<li>2019-09-16 <a href="https://www.computing.co.uk/ctg/news/3033006/blockchain-ico-not-dead-changing-diacle/page/2">Computing: Blockchain latest news: ICOs are not dead, but they’re certainly changing says Diacle</a></li>
<li>2019-09-13 <a href="https://www.computing.co.uk/ctg/news/3033006/blockchain-ico-not-dead-changing-diacle">Computing: Blockchain latest news: Santander unveils $20 million bond that lives on the Ethereum blockchain</a></li>
<li>2019-09-06 <a href="https://medium.com/the-backers/my-data-my-rules-60890ffa0e56">Medium: My Data! My Rules!</a></li>
<li>2019-09-02 <a href="https://retina.elpais.com/retina/2019/09/02/innovacion/1567416042_149910.html">El Pais: Privacidad: La 'startup' asturiana que ayuda al inventor de internet a crear la nueva web</a></li>
<li>2019-08-29 <a href="https://www.thefreelibrary.com/Accelerating+the+pace+of+change+for+data+ownership.-a0597843558">Scotsman: Accelerating the pace of change for data ownership</a></li>
<li>2019-08-18 <a href="https://cointelegraph.com/news/would-blockchain-better-protect-user-data-than-faceapp-experts-answer">Coin Telegraph: Would Blockchain Better Protect User Data Than FaceApp? Experts Answer</a></li>
<li>2019-08-08 <a href="https://www.innovationexcellence.com/blog/2019/08/08/inventor-of-the-web-tim-berners-lee-has-launched-a-new-startup/">Innovation Excellence: Inventor of the Web, Tim Berners-Lee, Has Launched a New Startup</a></li>
<li>2019-08-02 <a href="https://www.cmswire.com/digital-workplace/gartner-describes-cdo-v40-microsoft-axes-skype-for-business-online-and-other-news/">CMS wire:Gartner Describes CDO v4.0, Microsoft Axes Skype for Business Online and Other News</a></li>