-
Notifications
You must be signed in to change notification settings - Fork 103
/
community.html
1419 lines (1196 loc) · 110 KB
/
community.html
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
<!DOCTYPE html>
<html lang="en" xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Community - Solid</title>
<meta content="width=device-width, initial-scale=1" name="viewport" />
<link rel="stylesheet" href="style/base.css" />
</head>
<body about="" prefix="schema: http://schema.org/ doap: http://usefulinc.com/ns/doap# foaf: http://xmlns.com/foaf/0.1/" id="community">
<div class="banner">
🎉 Exciting news! The <a href="https://theodi.org/">Open Data Institute (ODI)</a> is now a steward for Solid - learn more <a href="https://theodi.org/news-and-events/news/odi-and-solid-come-together-to-give-individuals-greater-control-over-personal-data/">here</a> 🎉
</div>
<header>
<address>
<a href="/"><img alt="Solid logo" src="/image/logo.svg" width="50" /> Solid</a>
</address>
<nav>
<ul>
<li><a href="/about.html">About Solid</a></li>
<li><a href="/for-users.html">For Users</a></li>
<li><a href="/for-developers.html">For Developers</a></li>
<li><a href="/for-organizations.html">For Organizations</a></li>
<li><a href="/community.html">Community</a></li>
</ul>
</nav>
</header>
<main>
<article about="" typeof="schema:Article">
<h1 property="schema:name">Community</h1>
<p>Solid is powered by a community of passionate volunteers committed to the project's success. As of October 2024, the Open Data Institute (ODI) has <a href="https://theodi.org/news-and-events/news/odi-and-solid-come-together-to-give-individuals-greater-control-over-personal-data/">committed</a> to provide organisational stewardship and support to the project.</p>
<p>Everyone is welcome in the Solid community - discover ways to join and contribute to the Solid community.</p>
<div datatype="rdf:HTML" property="schema:description">
<section id="where-to-collaborate" inlist="" rel="schema:hasPart" resource="#where-to-collaborate">
<h2 property="schema:name">Where to collaborate</h2>
<div datatype="rdf:HTML" property="schema:description">
<ul>
<li>
<img src="image/solid-forum-logo.svg" alt="img_1" width="75" />
<p><strong>Solid Project Forum</strong></p>
<p>Create and respond to comments, questions, and discussions happening in the community.</p>
<a href="https://forum.solidproject.org" rel="rdfs:seeAlso">Go to Solid Forum</a>
</li>
<li>
<img src="image/solid-forum-logo.svg" alt="img_1" width="75" />
<p><strong>Solid Matrix Chat</strong></p>
<p>The Solid Matrix Chat is a live chat where community members can connect.</p>
<a href="https://matrix.to/#/%23solid:converser.eu" rel="rdfs:seeAlso">Go to Matrix</a>
</li>
<li>
<img src="image/solid-community-group-logo.svg" alt="img_1" width="65" />
<p><strong>Solid Community Group</strong></p>
<p>Learn and work on Solid specifications.</p>
<a href="https://www.w3.org/groups/cg/solid/" rel="rdfs:seeAlso">Go to Community Group</a>
</li>
</ul>
</div>
</section>
<section id="events" inlist="" rel="schema:hasPart" resource="#events">
<h2 property="schema:name">Events</h2>
<div datatype="rdf:HTML" property="schema:description">
<p>Discover Solid events taking place virtually and/or in person around the world.</p>
<ul>
<li id="events-2024" rel="schema:hasPart" resource="#events-2024">
<details open="">
<summary property="schema:name">2024 Events</summary>
<ul rel="schema:hasPart">
<li>
<dl about="#event-2024-02-27-solid-world" id="#event-2024-02-27-solid-world" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.co.uk/e/solid-world-2024-tickets-827618468117?aff=oddtdtcreator" rel="schema:url">Solid World</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a> / <a href="https://www.inrupt.com/" rel="schema:organizer">Inrupt</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2024-02-27" datetime="2024-02-27">2024-02-27</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/917649395">Solid World Recording</a> <br /> Solid World was held around the theme of "Solid for Social Benefit: Delivering Shared and Public Resources." We heard news from the Solid Team and presentations from the PASS Project, Open Commons, the SleepyBike Project, and Digital Flanders.</dd>
</dl>
</li>
<li>
<dl about="#event-2024-05-02-2024-05-03-2nd-solid-symposium" id="#event-2024-05-02-2024-05-03-2nd-solid-symposium" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://events.vito.be/sosy2024" rel="schema:url">2nd Solid Symposium</a></dd>
<dt>Organization</dt>
<dd><a href="https://cost-dkg.eu/" rel="schema:organizer">COST</a> / [<a href="https://vito.be/" rel="schema:organizer">VITO</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2024-05-02" datetime="2024-05-02">2024-05-02</time>–<time property="schema:endDate" datatype="xsd:date" content="2024-05-03" datetime="2024-05-03">2024-05-03</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description">(Leuven, Belgium)</dd>
</dl>
</li>
<li>
<dl about="#event-2024-02-28-solid-community-flanders-meeting-media-in-the-spotlight" id="#event-2024-02-28-solid-community-flanders-meeting-media-in-the-spotlight" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://solidcommunity.be/agenda/" rel="schema:url">Solid Community Flanders meeting "Media in the spotlight"</a></dd>
<dt>Organization</dt>
<dd><a href="https://athumi.be/en/" rel="schema:organizer">SolidLab Flanders](https://solidlab.be) / [athumi</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2024-02-28" datetime="2024-02-28">2024-02-28</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description">This is an on-site event only, at <a href="https://dekrook.be/en/">De Krook</a> (Ghent, Belgium).</dd>
</dl>
</li>
</ul>
</details>
</li>
<li id="events-2023" rel="schema:hasPart" resource="#events-2023">
<details open="">
<summary property="schema:name">2023 Events</summary>
<ul rel="schema:hasPart">
<li>
<dl about="#event-2023-09-27-solid-world" id="#event-2023-09-27-solid-world" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.co.uk/e/solid-world-2023-tickets-577704739427" rel="schema:url">Solid World</a></dd>
<dt>Organization</dt>
<dd><a href="https://www.inrupt.com/" rel="schema:organizer">Inrupt</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2023-09-27" datetime="2023-09-27">2023-09-27</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/869309116">Solid World recording</a><br />Aaron Coburn updated us on news from the W3C's annual meeting. Jackson Morgan presented <a href="https://tinyurl.com/solid-react-ldo">Linked Data Objects</a>. Davi Ottenheimer presented on how Solid can enable responsible AI, and a team from Northeastern University presented on how predictive and generative AI can leverage Solid.</dd>
</dl>
</li>
<li>
<dl about="#event-2023-06-28-solid-world" id="#event-2023-06-28-solid-world" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.co.uk/e/solid-world-2023-tickets-577704739427" rel="schema:url">Solid World</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2023-06-28" datetime="2023-06-28">2023-06-28</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description">Solid World was held at 11:00 a.m. EDT/1700 CEST. There was an update on CSS, an announcement of Inrupt's Solid hackathon winners, and presentations from Graphmetrix and Motius. <a href="https://www.eventbrite.co.uk/e/solid-world-2023-tickets-577704739427">Eventbrite</a>.</dd>
</dl>
</li>
<li>
<dl about="#event-2023-05-31-2023-06-01-my-data-conference-2023" id="#event-2023-05-31-2023-06-01-my-data-conference-2023" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://2023.mydata.org/" rel="schema:url">My Data Conference 2023</a></dd>
<dt>Organization</dt>
<dd><a href="https://www.mydata.org/" rel="schema:organizer">MyData</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2023-05-31" datetime="2023-05-31">2023-05-31</time>-<time property="schema:endDate" datatype="xsd:date" content="2023-06-01" datetime="2023-06-01">2023-06-01</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description">There will be a dedicated workshop/panel session about the Solid project at this conference, alongside interesting people and presentations from many like-minded projects. Location: Helsinki</dd>
</dl>
</li>
<li>
<dl about="#event-2023-03-30-2023-03-31-solid-symposium-2023" id="#event-2023-03-30-2023-03-31-solid-symposium-2023" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://solid.ti.rw.fau.de/public/2023/solid-symposium/" rel="schema:url">Solid Symposium 2023</a></dd>
<dt>Organization</dt>
<dd><a href="https://cost-dkg.eu/" rel="schema:organizer">COST Action on Distributed Knowledge Graphs</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2023-03-30" datetime="2023-03-30">2023-03-30</time>-<time property="schema:startEnd" datatype="xsd:date" content="2023-03-31" datetime="2023-03-31">2023-03-31</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description">The goal of the symposium is to provide a forum for researchers, early adopters from companies and public administration, and the community at large to discuss the current state of the art around Solid and exchange ideas for further developments.</dd>
</dl>
</li>
<li>
<dl about="#event-2023-03-29-solid-world" id="#event-2023-03-29-solid-world" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.co.uk/e/solid-world-2023-tickets-577704739427" rel="schema:url">Solid World</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2023-03-29" datetime="2023-03-29">2023-03-29</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/812954759">Solid World recording</a><br />Ruben Verborgh updated us on the Solid W3C Working Group, and Melissa Wood of SolidMcr announced the creation of SolidUK. Esther de Loof of SolidLab Flanders presented the findings from their first annual <a href="https://solidlab.be/reports">SOLIDMonitor report</a>. Oz Olivo presented Inrupt's <a href="https://www.inrupt.com/blog/tools-for-mission-critical-deployments-in-inrupts-version-2-1-release">Version 2.1 release</a>.</dd>
</dl>
</li>
<li>
<dl about="#event-2023-02-21-solid-app-mvp's-and-a-guest-presentation:-an-open-source-opportunity" id="#event-2023-02-21-solid-app-mvp's-and-a-guest-presentation:-an-open-source-opportunity" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.meetup.com/minneapolis-solid-project/events/291368275/" rel="schema:url">Solid App MVP's and a Guest Presentation: An Open Source Opportunity</a></dd>
<dt>Organization</dt>
<dd><a href="https://www.meetup.com/minneapolis-solid-project/" rel="schema:organizer">Solid Minneapolis</a> / <a href="https://github.com/YetAnotherJonWilson">Jon Wilson</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2023-02-21" datetime="2023-02-21">2023-02-21</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://forum.solidproject.org/t/looking-for-a-teacher-to-learn-programming-solid-apps/6036/13">An online meetup</a> discussing the essential parts to make Solid apps, and with a presentation by Chase Hunt, a contributor to SolidOS, about getting involved in open source, and the opportunities to join and help grow the Solid ecosystem.</dd>
</dl>
</li>
</ul>
</details>
</li>
<li id="events-2022" rel="schema:hasPart" resource="#events-2022">
<details open="">
<summary property="schema:name">2022 Events</summary>
<ul rel="schema:hasPart">
<li>
<dl about="#event-2022-12-08-solid-world" id="#event-2022-12-08-solid-world" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.co.uk/e/solid-world-2022-tickets-223005725127" rel="schema:url">Solid World</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2022-12-08" datetime="2022-12-08">2022-12-08</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/780425759">Solid World December recording</a><br />Jun Zhao, Hunar Batra and Rui Zhao from Oxford University presented two Solid-based applications: <a href="https://oxfordhcc.github.io/solid-media/login?redirect=%2Fsolid-media%2F">Solidflix</a> and <a href="https://solid-calendar.vercel.app/">Solid Calendar</a>. Jackson Morgan presented <a href="https://www.npmjs.com/package/ldo">LDO</a>. We also heard about the formation of a Solid W3C Working Group.</dd>
</dl>
</li>
<li>
<dl about="#event-2022-11-10-solid-world" id="#event-2022-11-10-solid-world" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.co.uk/e/solid-world-2022-tickets-223005725127" rel="schema:url">Solid World</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2022-11-10" datetime="2022-11-10">2022-11-10</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/770472401">Solid World November recording</a><br />The BBC Research & Development team presented their new watch party product, <a href="https://www.bbc.co.uk/taster/pilots/together-pod">BBC Together + Data Pod</a>.</dd>
</dl>
</li>
<li>
<dl about="#event-2022-10-13-solid-world" id="#event-2022-10-13-solid-world" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.co.uk/e/solid-world-2022-tickets-223005725127" rel="schema:url">Solid World</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2022-10-13" datetime="2022-10-13">2022-10-13</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/761200405">Solid World October recording</a><br /> Eliott Behar, a privacy and human rights attorney, Davi Ottenheimer, VP of Trust and Digital Ethics at Inrupt, and Michiel Fierens, doctoral researcher at SolidLab Flanders, participated in a panel discussion on Solid and New Data Regulations.</dd>
</dl>
</li>
<li>
<dl about="#event-2022-10-06-solid-amsterdam" id="#event-2022-10-06-solid-amsterdam" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.pldn.nl/wiki/Solid_Amsterdam_Meetup_%E2%80%93_6_oktober_2022" rel="schema:url">Solid Amsterdam</a></dd>
<dt>Organization</dt>
<dd><a href="https://www.pldn.nl" rel="schema:organizer">PLDN</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2022-10-06" datetime="2022-10-06">2022-10-06</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description">Register <a href="https://docs.google.com/forms/d/e/1FAIpQLScJ7VFJYapBOkuUusc4jrvAytC8ud72wBN89PUDPkkWalpY9g/viewform">here</a></dd>
</dl>
</li>
<li>
<dl about="#event-2022-09-08-solid-world" id="#event-2022-09-08-solid-world" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.co.uk/e/solid-world-2022-tickets-223005725127" rel="schema:url">Solid World</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2022-09-08" datetime="2022-09-08">2022-09-08</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/748041642">Solid World September recording</a><br /> <a href="https://graphmetrix.com/">Graphmetrix</a> previewed the launch of their Trinpod service at <a href="https://trinpod.us/">Trinpod.us</a> and <a href="https://trinpod.eu/">Trinpod.eu</a><br /> Esther de Loof to us about <a href="https://solidlab.be/">SolidLab Belgium</a><br /> Melissa Wood told us about the latest <a href="https://www.meetup.com/solid-mcr/">Solid Manchester meetup</a></dd>
</dl>
</li>
<li>
<dl about="#event-2022-07-28-collaboration-call:-pods-for-empowering-due-diligence-process" id="#event-2022-07-28-collaboration-call:-pods-for-empowering-due-diligence-process" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.meetup.com/solid-mcr/events/287243950/" rel="schema:url">Collaboration Call: Pods for empowering Due Diligence process</a></dd>
<dt>Organization</dt>
<dd><a href="https://www.meetup.com/solid-mcr/" rel="schema:organizer">SolidMcr Meetup - Manchester</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2022-07-28" datetime="2022-07-28">2022-07-28</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description">Right to Rent, Right to Work, Pre-Employment Screening, preventing modern slavery, DBS checks - CDD Services introduce two products requiring help to reach market. Sign up on <a href="https://www.eventbrite.ca/e/collaboration-call-pods-for-empowering-due-diligence-process-tickets-386339189917">EventBrite</a></dd>
</dl>
</li>
<li>
<dl about="#event-2022-07-22-solid,-linked-data-and-decentralized-web-meetup" id="#event-2022-07-22-solid,-linked-data-and-decentralized-web-meetup" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://wiki.mch2022.org/Session:Solid,_Linked_Data_and_Decentralized_Web_Meetup" rel="schema:url">Solid, Linked Data and Decentralized Web Meetup</a></dd>
<dt>Organization</dt>
<dd><a href="https://muze.nl" rel="schema:organizer">MCH 2022](https://mch2022.org/) / [Muze</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2022-07-22" datetime="2022-07-22">2022-07-22</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description">Muze hosts a meetup about Solid, Linked Data and Decentralized Web at MCH 2022, in Zeewolde, the Netherlands. There will be talks and workshops on three afternoons, starting at July 23th. If you've got something to show or tell, or just tell us that you're coming, please mail to <a href="mailto:[email protected]">[email protected]</a>.</dd>
</dl>
</li>
<li>
<dl about="#event-2022-06-09-solid-world" id="#event-2022-06-09-solid-world" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.co.uk/e/solid-world-2022-tickets-223005725127" rel="schema:url">Solid World</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2022-06-09" datetime="2022-06-09">2022-06-09</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/719699220">Solid World Recording</a> <br/> Presentation: <br/> Ruben Verborgh told us more about <a href="https://solidlab.be/">Solid Lab</a> <br/> Aaron Coburn told us about the <a href="https://inrupt.com/blog/V2.0-Release">v2.0 Inrupt ESS lanch</a></dd>
</dl>
</li>
<li>
<dl about="#event-2022-05-12-solid-world" id="#event-2022-05-12-solid-world" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.co.uk/e/solid-world-2022-tickets-223005725127" rel="schema:url">Solid World</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2022-05-12" datetime="2022-05-12">2022-05-12</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/709214424">Solid World Recording</a> <br/> Presentation: <br/> Flanders Data Utility Company Team: Hear first-hand insight into how the Flemish Data Utility Company wants to stimulate citizens’ trust in sharing data, by focusing on responsible and secure data sharing. The Data Utility Company’s Solid Pod platform is designed to establish trusted data ecosystems on this groundbreaking technology. The Data Utility Company’s platform mitigates the costs and risks associated with innovative technology, lowering the threshold for organizations to enter the Solid ecosystem.</dd>
</dl>
</li>
<li>
<dl about="#event-2022-05-09-introducing-solid-irl" id="#event-2022-05-09-introducing-solid-irl" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.meetup.com/minneapolis-solid-project/events/285299203/" rel="schema:url">Introducing Solid IRL</a></dd>
<dt>Organization</dt>
<dd><a href="https://www.meetup.com/minneapolis-solid-project/" rel="schema:organizer">Solid Minneapolis</a> / <a href="https://github.com/YetAnotherJonWilson">Jon Wilson</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2022-05-09" datetime="2022-05-09">2022-05-09</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"></dd>
</dl>
</li>
<li>
<dl about="#event-2022-04-28-person-centric-data:-solid,-pods,-personal-data-stores-interoperability" id="#event-2022-04-28-person-centric-data:-solid,-pods,-personal-data-stores-interoperability" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.meetup.com/solid-mcr/events/285153744/" rel="schema:url">Person-Centric Data: Solid, Pods, Personal Data Stores & Interoperability</a></dd>
<dt>Organization</dt>
<dd><a href="https://www.meetup.com/solid-mcr/" rel="schema:organizer">Solid Mcr - Manchester / Mel W.</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2022-04-28" datetime="2022-04-28">2022-04-28</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"></dd>
</dl>
</li>
<li>
<dl about="#event-2022-04-14-solid-world" id="#event-2022-04-14-solid-world" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.co.uk/e/solid-world-2022-tickets-223005725127" rel="schema:url">Solid World</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2022-04-14" datetime="2022-04-14">2022-04-14</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/703101308">Solid World Recording</a> <br/> Presentation: <br/> Philippe Duchesne, DataVillage & Luk Overmeire, VRT. DataVillage is developing a platform to perform confidential data processing on personal data, where end users can allow service providers to process their data to produce derived data, while having the guarantee that the original data will not be read by the service provider itself. DataVillage will be joined by VRT, the Flemish public broadcasting company, which is using the DataVillage platform to build a user-controlled content recommendation service for its audience.</dd>
</dl>
</li>
<li>
<dl about="#event-2022-03-10-solid-world" id="#event-2022-03-10-solid-world" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.co.uk/e/solid-world-2022-tickets-223005725127" rel="schema:url">Solid World</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2022-03-10" datetime="2022-03-10">2022-03-10</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/691410463">Solid World Recording</a> <br/> Presentations: <br/> Jasmine Leonard, Solid developer tool <a href="https://podpro.dev">PodPro</a> <br/> Sebastien Rosset, <a href="https://github.com/assemblee-virtuelle/activitypods">ActivityPods</a>, a new kind of architecture for web applications which aims to reconcile the ActivityPub and Solid standards</dd>
</dl>
</li>
<li>
<dl about="#event-2022-02-10-solid-world" id="#event-2022-02-10-solid-world" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.co.uk/e/solid-world-2022-tickets-223005725127" rel="schema:url">Solid World</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2022-02-10" datetime="2022-02-10">2022-02-10</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/677388784">Solid World Recording</a> <br/> Presentations: <br/> Gertjan de Mulder, <a href="https://prov4itdata.ilabt.imec.be/docs#adding-data-providers">PROV4ITDaTa</a> <br/> Pete Edwards, <a href="https://github.com/solid/conformance-test-harness">The V1.1 release of the Conformance Test Harness</a> <br/> All links from the meetup are shared on <a href="https://forum.solidproject.org/t/solid-world-february-2022/5100">Solid Forum</a></dd>
</dl>
</li>
<li>
<dl about="#event-2022-01-13-solid-world" id="#event-2022-01-13-solid-world" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.co.uk/e/solid-world-2022-tickets-223005725127" rel="schema:url">Solid World</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2022-01-13" datetime="2022-01-13">2022-01-13</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/666799465">Solid World Recording</a> <br/> Presentations: <br/> <a href="https://csarven.ca/#i" rel="schema:performer">Sarven Capadisli</a>, <a href="https://www.w3.org/community/solid/">W3C Solid Community Group</a> Chair and Solid Editor, presented the recent milestone release of <a href="https://solidproject.org/TR/protocol" rel="schema:about" typeof="doap:Specification">Solid Protocol Version 0.9</a>. <br/> Ruben Verborgh, Professor of decentralized Web technology at Ghent University, presented <a href="https://rubenverborgh.github.io/Web-APIs-for-decentralized-knowledge-graphs/#">a vision on access, query and search across the decentralized Web, and the role that Web APIs play therein</a>. <br/> All links from the meetup are shared on <a href="https://forum.solidproject.org/t/solid-world-january-2022/5034">Solid Forum</a></dd>
</dl>
</li>
</ul>
</details>
</li>
<li id="events-2021" rel="schema:hasPart" resource="#events-2021">
<details open="">
<summary property="schema:name">2021 Events</summary>
<ul rel="schema:hasPart">
<li>
<dl about="#event-2021-11-04-solid-world" id="#event-2021-11-04-solid-world" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.co.uk/e/solid-world-november-2021-tickets-188624118817" rel="schema:url">Solid World</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2021-11-04" datetime="2021-11-04">2021-11-04</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/643594034">Solid World Recording</a> <br/> Presentations: <br/> <a href="https://drive.google.com/file/d/1uFJgcv91LO7L9Mki4VwooRKG7Jp6ocPS/view?usp=sharing">Timea Turdean gave an update about SolidOS - the operating system for Solid.</a> SolidOS code home: <a href="https://github.com/solidos/solidos">https://github.com/solidos/solidos</a> <br/> Justin Bingham gave updates on the growth of specifications in Solid and the Solid team. <br/> Jeff Zucker explained the new Solid Glossary welcoming to newcomers. The glossary contains libraries, essential tools, documentation, and community topics.</dd>
</dl>
</li>
<li>
<dl about="#event-2021-10-21-solid-implementer--feedback-session" id="#event-2021-10-21-solid-implementer--feedback-session" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://global.gotomeeting.com/join/654935701" rel="schema:url">Solid Implementer Feedback Session</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2021-10-21" datetime="2021-10-21">2021-10-21</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description">The Solid Editorial Team would like to increase communication with community members who are actively implementing Solid compliant server or client technologies. This session is open to the public, and we welcome everyone to attend this session. However, in an effort to maintain focus on the stated goals of the session, only individuals who are actively engaged in implementing Solid compliant server or client technologies will be queued to speak. To actively participate, an implementer must: 1. Be a member of the Solid Community Group 2. RSVP in advance to [email protected]. Must be able to cite active implementation work. Legitimate citations include links to Github repositories, links to product descriptions on websites, or otherwise credible explanation of active work efforts. Implementers are encouraged to submit questions, issues, or topics in advance to [email protected]. This may be included in the RSVP, or sent separately afterwards. Minutes will be recorded, and posted to https://github.com/solid/specification/tree/main/meetings.</dd>
</dl>
</li>
<li>
<dl about="#event-2021-10-07-solid-world" id="#event-2021-10-07-solid-world" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.com/e/166561545065" rel="schema:url">Solid World</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2021-10-07" datetime="2021-10-07">2021-10-07</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/626489187">Solid World Recording</a>, Schedule a Solid Project Review: https://calendly.com/marrelle-bailey/website-research, Join <a href="https://sites.google.com/inrupt.com/developer-workshop/home">Inrupt's Developer Workshop</a>, Tani's Presentation: <a href="https://www.mysilio.com/">Website</a>, <a href="https://mailchi.mp/865966fe3848/mysilio-waitlist">Waitlist</a>, Email: [email protected]; Enno's Presentation: <a href="https://docs.google.com/presentation/d/1v_cQe6Y22Vc8q7eKjjTcCRTYLa6ajPoJTth_roC2pwI/edit#slide=id.g500fb08b99_0_9">His slides</a>, <a href="https://netwerkdigitaalerfgoed.nl/activiteiten/nationale-strategie-digitaal-erfgoed/">Strategy</a>, <a href="https://github.com/netwerk-digitaal-erfgoed">GitHub repo</a>, <a href="https://solid-crs.netwerkdigitaalerfgoed.nl/">Maintiner app link</a>, <a href="https://solid-crs-presentatie.netwerkdigitaalerfgoed.nl/">Presentation App</a>, Contact Email: mailto:[email protected]; Maria's & Jan's Presentation: <a href="https://indico.cern.ch/event/1082763/">Slides</a>, <a href="http://solid.cern.ch">CERN-Solid document index</a>, <a href="https://gitter.im/cern-solid/community">Chat</a>, <a href="https://it-student-projects.web.cern.ch/projects/cern-solid-code-investigation">The completed PoC Project description</a>, <a href="https://getindico.io">Indico</a>, The PoC Project repo: <a href="https://github.com/janschill/solid-comment">Comment module</a>, <a href="https://github.com/janschill/solid-autocomplete">Indico Registration autocomplete</a>, <a href="https://gitlab.cern.ch/cern-solid">CERN mirror of the repo</a>, <a href="https://it-student-projects.web.cern.ch/projects/cern-solid-server-hosting">The current Follow-up project</a>, <a href="https://codimd.web.cern.ch/1VLKK_rYQYixHmwOuGL2fg#">Policy document for a CERN Solid server</a></dd>
</dl>
</li>
<li>
<dl about="#event-2021-09-02-solid-world" id="#event-2021-09-02-solid-world" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.co.uk/e/solid-world-september-2021-tickets-166560808863" rel="schema:url">Solid World</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2021-09-02" datetime="2021-09-02">2021-09-02</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/596683888">Solid World Recording</a>; Ruben Presentation Links: <a href="https://gitter.im/solid/community-server">Community Solid Server Gitter</a>, <a href="https://github.com/solid/community-server/pull/900">Support for authorizing groups of people</a>, <a href="https://github.com/FUUbi/solid-css-demo-module">Demo project for how to create your module</a>, <a href="https://github.com/solid/community-server/issues/783">InterPlanetary File System (IPFS) support</a>, and <a href="https://github.com/solid/community-server/discussions/941">Public instance of the Community Solid Server</a>; Jackson's Presentation: <a href="https://interesting.chat">Interesting Chat</a></dd>
</dl>
</li>
<li>
<dl about="#event-2021-08-10-women-of-solid" id="#event-2021-08-10-women-of-solid" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.womenofsolid.org/meetup.html" rel="schema:url">Women of Solid</a></dd>
<dt>Organization</dt>
<dd><a href="https://virginiabalseiro.com/" rel="schema:organizer">Virginia Balseiro</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2021-08-10" datetime="2021-08-10">2021-08-10</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://www.linkedin.com/in/marrelle-bailey/">Marrelle Bailey</a> was the hostess.<br/>Talks: <a href="https://www.linkedin.com/in/marrelle-bailey/">Marrelle Bailey</a> "You Matter As You", <a href="https://www.linkedin.com/in/juliette-carter-38605ba5/">Juliette Carter</a> The BBC and Solid.<br/><a href="https://www.linkedin.com/in/mariadimou/">Maria Dimou</a> CERN-Solid Proof of Concept.<br/> <a href="https://youtu.be/K-FQuV1jERU">Recording</a><br/> Additional links: <a href="https://www.canva.com/design/DAEmqeWpFZA/pEuSHd-OC9f5rgAdGAYp1A/view">You Matter As You slides</a>, <a href="https://docs.google.com/presentation/d/1QCp4RDmkLv_4lsVqzWYzMWkn5YMkHlHAF3oPYf0cGO8/">The BBC and Solid slides</a>, <a href="https://indico.cern.ch/event/1065884/">CERN-Solid Proof of Concept slides</a>.</dd>
</dl>
</li>
<li>
<dl about="#event-2021-08-05-solid-world" id="#event-2021-08-05-solid-world" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.co.uk/e/solid-world-august-2021-tickets-158445927033?aff=erelexpmlt" rel="schema:url">Solid World</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2021-08-05" datetime="2021-08-05">2021-08-05</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/585006498">Recording</a><br/> Also <a href="https://indico.cern.ch/event/1065513/">Notes</a> by attendant Maria Dimou <br/>Ruben's Update: <a href="https://github.com/solid/community-server">Community server</a> & <a href="https://solidproject.org/self-hosting/css">installation guide</a> <br/>Oz Update: <a href="https://research.net/r/solidappcompatibility">Compability Survey</a> <br/><a href="https://github.com/jeff-zucker/deit/blob/main/Jeff-Talk.md">Jeff’s presentation</a> <br/><a href="https://www.canva.com/design/DAEl-z5tMek/Q8DgVH52TN5Fu90tOBxn9w/view">Kyra Assaad’s presentation</a>; <a href="https://gitter.im/solid/DEIT">DEI Team Gitter</a>; <a href="https://Twitter.com/KyraAssaad">Kyra's Twitter</a> <br/><a href="https://www.w3.org/community/solid/wiki/Meetings#2021-08-05">Sarven’s Presentation</a></dd>
</dl>
</li>
<li>
<dl about="#event-2021-07-01-solid-world" id="#event-2021-07-01-solid-world" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.com/e/158443820733" rel="schema:url">Solid World</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2021-07-01" datetime="2021-07-01">2021-07-01</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/572726511">Recording</a></dd>
</dl>
</li>
<li>
<dl about="#event-2021-06-21-nlnet;-ngi-webinar-on-linked-data" id="#event-2021-06-21-nlnet;-ngi-webinar-on-linked-data" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://nlnet.nl/events/20210621/LinkedData/index.html" rel="schema:url">NLnet; NGI webinar on Linked Data</a></dd>
<dt>Organization</dt>
<dd><a href="https://nlnet.nl/foundation/" rel="schema:organizer">NLnet foundation</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2021-06-21" datetime="2021-06-21">2021-06-21</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"></dd>
</dl>
</li>
<li>
<dl about="#event-2021-06-21-di2f:-decentralising-the-internet-with-ipfs-and-filecoin" id="#event-2021-06-21-di2f:-decentralising-the-internet-with-ipfs-and-filecoin" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://networking.ifip.org/2021/workshops/di2f-decentralising-the-internet-with-ipfs-and-filecoin" rel="schema:url">DI2F: Decentralising The Internet With IPFS and Filecoin</a></dd>
<dt>Organization</dt>
<dd><a href="https://www.aalto.fi/en" rel="schema:organizer">Aalto University, Finland</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2021-06-21" datetime="2021-06-21">2021-06-21</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><em>Solid over the Interplanetary File System</em><br />Fabrizio Parrillo (U. Basel, Switzerland), Christian F Tschudin (U. Basel, Switzerland)</dd>
</dl>
</li>
<li>
<dl about="#event-2021-06-03-solid-world" id="#event-2021-06-03-solid-world" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.com/e/147210272889" rel="schema:url">Solid World</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2021-06-03" datetime="2021-06-03">2021-06-03</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/558597018">Recording</a><br/>Also <a href="https://indico.cern.ch/event/1046020/">Notes</a> by attendant Maria Dimou. <br/>Tim’s Flanders Press: <a href="https://www.tijd.be/app/carousel1/tim-berners-lee-de-bedenker-van-het-internet-we-kunnen-het-wereldwijde-web-nog-fiksen/10309722.html">Read about the news from Flanders</a>; <a href="https://www.digita.ai/">Digita</a>: <a href="https://digita.ai/resources">Digita Resources</a> and <a href="https://go.digita.ai/reuse-patterns">Reuse Patterns</a>; <a href="https://www.digg.se/om-oss/nyheter/2021/vardefullt-for-individen-att-fa-okad-insyn-och-kontroll-over-sin-data">Swedish Public Employment Service</a>: <a href="https://gitlab.com/arbetsformedlingen/individdata/rupoc">Proof of Concept (PoC)</a></dd>
</dl>
</li>
<li>
<dl about="#event-2021-05-27-your-personal-linked-data-graphs-with-solid" id="#event-2021-05-27-your-personal-linked-data-graphs-with-solid" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="http://www.lotico.com/index.php/Your_Personal_Linked_Data_Graphs_with_Solid" rel="schema:url">Your Personal Linked Data Graphs with Solid</a></dd>
<dt>Organization</dt>
<dd><a href="http://www.lotico.com" rel="schema:organizer">Lotico</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2021-05-27" datetime="2021-05-27">2021-05-27</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"></dd>
</dl>
</li>
<li>
<dl about="#event-2021-05-07-understory-digital-garden-club-—-solid" id="#event-2021-05-07-understory-digital-garden-club-—-solid" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.com/e/understory-digital-garden-club-tickets-151311208899" rel="schema:url">Understory Digital Garden Club — Solid</a></dd>
<dt>Organization</dt>
<dd><a href="https://www.understory.coop/" rel="schema:organizer">Understory</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2021-05-07" datetime="2021-05-07">2021-05-07</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"></dd>
</dl>
</li>
<li>
<dl about="#event-2021-05-06-solid-world-may" id="#event-2021-05-06-solid-world-may" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.com/e/solid-world-may-2021-tickets-146761614941" rel="schema:url">Solid World May</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2021-05-06" datetime="2021-05-06">2021-05-06</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/546202189">Recording</a><br/>Also <a href="https://indico.cern.ch/event/1037390/">Notes</a> by attendant Maria Dimou. <br/>Jackson Morgan’s links: <a href="https://tinyurl.com/liqid-chat">Liqid Chat Demo</a>, <a href="https://twitter.com/otherJackson">Twitter</a>, <a href="https://www.youtube.com/channel/UCMVpUX6URfy5SnRn9OWteyQ">YouTube</a>, <a href="https://www.linkedin.com/in/jacksoncmorgan/">LinkedIn</a>, <a href="https://www.tiktok.com/@otherotherjackson">TikTok</a>, <a href="https://github.com/o-development/ochat-client">Client Repo</a> <a href="https://github.com/o-development/ochat-api">API Repo</a>. <br/>Christian Buggedei's links: <a href="https://darcy.is/">Darcy.is</a>, <a href="https://opencollective.com/darcy-is/updates/we-are-looking-for-help">Help Needed</a>.<br/>Aaron Coburn's and Jack Lawson's links: <a href="https://notifications-demo.docs.inrupt.com">Notifications Demo</a>, <a href="https://podbrowser.inrupt.com">PodBrowser</a>, <a href="https://docs.inrupt.com/ess/latest/services/service-websocket/">Docs</a>.</dd>
</dl>
</li>
<li>
<dl about="#event-2021-04-01-solid-world-april" id="#event-2021-04-01-solid-world-april" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.com/e/solid-world-april-2021-tickets-144512880917" rel="schema:url">Solid World April</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2021-04-01" datetime="2021-04-01">2021-04-01</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/solidworld/review/531907097/eda903e37f">Recording</a><br/>Also <a href="https://indico.cern.ch/event/1028037/">Notes</a> by attendant Maria Dimou. <br/>Tim's talk: <a href="https://webfoundation.org/2021/03/web-birthday-32/">Web's 32nd Birthday</a>.<br/>Oz’s talk: <a href="https://www.research.net/r/GWWJB7V">Survey for the Universal API</a>.<br/>Graphmetrix' talk: <a href="https://graphmetrix.com/">Website</a>, <a href="https://trinpod.us/">sign up for a Trin Pod</a>.<br/>Nextcloud/PDS Interop's talk: <a href="https://pdsinterop.org">PDS Interop Website</a>, <a href="https://github.com/pdsinterop">PDS Interop</a>, <a href="https://github.com/ylebre">Yvo Brevoort</a>, <a href="https://github.com/solid/test-suite">Solid Test Suite</a>, <a href="https://github.com/pdsinterop/php-solid-server">PHP Solid Server</a>, <a href="https://github.com/pdsinterop/solid-nextcloud">Nextcloud Solid Server</a>, <a href="http://solid-world.dev.muze.nl/">slides</a>.<br/>Spoter.Me's talk: <a href="https://spoter.me">homepage</a>.</dd>
</dl>
</li>
<li>
<dl about="#event-2021-03-22-women-of-solid" id="#event-2021-03-22-women-of-solid" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.womenofsolid.org/meetup.html" rel="schema:url">Women of Solid</a></dd>
<dt>Organization</dt>
<dd><a href="https://virginiabalseiro.com/" rel="schema:organizer">Virginia Balseiro</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2021-03-22" datetime="2021-03-22">2021-03-22</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://www.linkedin.com/in/marrelle-bailey/">Marrelle Bailey</a> was the hostess.<br/> <a href="https://virginiabalseiro.com/">Virginia Balseiro</a> gave us a short introduction to Solid, <a href="http://linkedin.com/in/timeaturdean">Timea Turdean</a> talked about RDF.<br/><a href="https://www.linkedin.com/in/sharon-stratsianis-9341802/">Sharon Stratsianis</a> told us about SolidOS.<br/><a href="https://www.linkedin.com/in/hindiamohammed/">Hindia M. Mohammed</a> presented on the authentication process in Solid.<br/>Recording for the first Women of Solid Meetup is <a href="https://youtu.be/FEPabu0_3z0">up on YouTube</a>.<br/> Additional links: <a href="https://docs.google.com/presentation/d/1dvpkYzwyCiQ7Fyiei6PwbPVm0P2dZQdvUyRcGQwRlek/edit?usp=sharing">Introduction to Solid slides</a>, <a href="https://docs.google.com/presentation/d/1LyDNVcwHPQz30XS95gXsYoUkO5hmu8j7IPRefUBsCX8/edit?usp=sharing">RDF in Solid slides</a>, <a href="https://1drv.ms/p/s!Ap0EpVGWDqdSvVZRRimjuyCbQ_rg?e=MeB4I9">SolidOS slides</a>, <a href="https://docs.google.com/presentation/d/1L3Z4RYoA6ZN4cBrZNPsqBgCO89UFTSFF-ElLdh5mh9o/edit?usp=sharing">Authentication in Solid slides</a>.</dd>
</dl>
</li>
<li>
<dl about="#event-2021-03-04-solid-world-march" id="#event-2021-03-04-solid-world-march" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.com/e/solid-world-tickets-135552054845" rel="schema:url">Solid World March</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2021-03-04" datetime="2021-03-04">2021-03-04</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://docs.google.com/document/d/1CitMmwmca2G4CEPLBKVF_KQ7Obk9qsdZGhhdOfIzJ5Q/edit#heading=h.yumvnttmitue">Recording</a>. Also <a href="https://indico.cern.ch/event/1015408/">Notes</a> by attendant Maria Dimou. <br/>Community Spotlights: <a href="https://www.virginiabalseiro.com/">Virginia Balseiro</a> who created <a href="https://www.womenofsolid.org/">Women of Solid</a> and <a href="https://www.digita.ai/">Digita</a> for their <a href="https://www.youtube.com/channel/UCA22hu-0VEHt5tCc7jad74g">introduction videos</a>.<br/>Ruben Verborgh gave an update on Community Solid Server (CSS) (mentioned links: <a href="https://css.verborgh.org/public/2021/Solid%23World/Chat/">his chat from his pod</a>).<br/> Osmar Olivo asked for <a href="https://inrupt.atlassian.net/servicedesk/customer/portal/7">feedback</a> on <a href="https://docs.inrupt.com/pod-spaces/">Pod Spaces</a>.<br/> <a href="https://lifescope.io/">LifeScope</a> presented what they're working on (<a href="https://docs.google.com/presentation/d/1vg9y_o0KtaC1j9w6yxpukEeoOsdbMCQa2zh1hQO2pYw">slides</a>). <br/> Creafree (<a href="https://ln2.sync.com/dl/53b6274d0/fcs466su-bs8bgykx-hkfmpz2a-rmwamczt/view/default/9895814900003">slides</a>).</dd>
</dl>
</li>
<li>
<dl about="#event-2021-02-04-solid-world-february" id="#event-2021-02-04-solid-world-february" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.com/e/solid-world-tickets-135541896461" rel="schema:url">Solid World February</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2021-02-04" datetime="2021-02-04">2021-02-04</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/508623332">Recording</a>. Also, <a href="https://codimd.web.cern.ch/s/XMkykenm3#">Notes</a> by attendant Maria Dimou.<br/> Tim Berners-Lee’s Update: <a href="https://www.nytimes.com/2021/01/10/technology/tim-berners-lee-privacy-internet.html?smid=tw-share">New York Times</a> and <a href="https://www.reuters.com/article/us-tech-bernerslee-interview/father-of-the-web-tim-berners-lee-prepares-do-over-idUSKBN29H1JK">Reuters Next conference</a>.<br/> Ruben Verborgh’s update on Community Solid Server: <a href="https://github.com/solid/community-server-recipes">recipes</a>. <br/> Osmar Olivo update on Node.js support: <a href="https://docs.inrupt.com/developer-tools/javascript/client-libraries/">Inrupt Solid Client Libraries</a>. <br/><a href="https://noeldemartin.com/">Noel DeMartin’s</a> Presentation: <a href="file:///Users/marrellebailey/Downloads/NoelDeMartin-Slides.pdf">Slides</a>, <a href="https://noeldemartin.github.io/media-kraken/login">Media Kraken</a>, <a href="https://noeldemartin.com/tasks/">journal</a>. <br/>Jasmine Leonard’s Presentation: <a href="">Slides</a>, <a href="https://podexplorer.gigalixirapp.com">PodExplorer</a>, <a href="https://forum.solidproject.org/">Solid Forum</a>, <a href="http://solidproject.org/">Solid Website</a>, <a href="https://github.com/solid/solidproject.org">GitHub Repos</a>. <br/>Hindia Mohammed’s Presentation: <a href="https://ekseli.fi/">Ekseli</a></dd>
</dl>
</li>
<li>
<dl about="#event-2021-01-07-solid-world-january" id="#event-2021-01-07-solid-world-january" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.com/e/solid-world-tickets-132301957717" rel="schema:url">Solid World January</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2021-01-07" datetime="2021-01-07">2021-01-07</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/498076263">Recording</a>. <br />Resources from event: <a href="https://solidos.solidcommunity.net/public/Roadmap/Tasks/index.ttl#this">Solid Operating System (OS) Roadmap</a>, <a href="https://communitysolidserver.github.io/CommunitySolidServer/docs/">Community Solid Server (CSS)</a>, <a href="https://inrupt.com/products/enterprise-solid-server">Inrupt's Enterprise Solid Server (ESS)</a>, <a href="https://github.com/RubenVerborgh/solid-hue">Ruben's Code for the lights</a>, <a href="https://solid.github.io/specification/#work-items">Specifications</a>, <a href="https://github.com/solid/process/blob/master/panels.md">Specifications Panels (open to all)</a>.</dd>
</dl>
</li>
</ul>
</details>
</li>
<li id="events-2020" rel="schema:hasPart" resource="#events-2020">
<details open="">
<summary property="schema:name">2020 Events</summary>
<ul rel="schema:hasPart">
<li>
<dl about="#event-2020-12-29-solid-networking-december" id="#event-2020-12-29-solid-networking-december" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.com/e/solid-networking-december-tickets-131244348379" rel="schema:url">Solid Networking December</a></dd>
<dt>Organization</dt>
<dd><a href="https://twitter.com/otherJackson" rel="schema:organizer">Jackson Morgan</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2020-12-29" datetime="2020-12-29">2020-12-29</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"></dd>
</dl>
</li>
<li>
<dl about="#event-2020-12-03-solid-world-december" id="#event-2020-12-03-solid-world-december" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.com/e/solid-world-tickets-128665029567" rel="schema:url">Solid World December</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2020-12-03" datetime="2020-12-03">2020-12-03</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/487088029">Recording</a>. From Ruben's presentation: the <a href="https://github.com/solid/community-server/">Community Server</a>, <a href="https://rubenverborgh.github.io/solid-list-viewer/">Ruben's live list</a> with <a href="https://css.verborgh.org/list">his CSS Pod</a>. From CERN's presentation: <a href="https://indico.cern.ch/event/977577/attachments/2150316/3635690/SolidWorld2020-12-03presentation.pdf">slides</a>, <a href="https://github.com/indico/">Indico source code</a> and the <a href="https://getindico.io/">Indico webpage</a>. The <a href="https://www.datavillage.me/">Data Village website</a>. Digita's <a href="https://www.inox.app/">Inox</a>.</dd>
</dl>
</li>
<li>
<dl about="#event-2020-11-05-solid-world-november" id="#event-2020-11-05-solid-world-november" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.com/e/solid-world-tickets-124481709143" rel="schema:url">Solid World November</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2020-11-05" datetime="2020-11-05">2020-11-05</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/479873289">Full recording</a>. <a href="https://indico.cern.ch/event/974494/attachments/2140273/3606052/SolidWorld2020-11-05notes.pdf">Notes</a> by attendant Maria Dimou.</dd>
</dl>
</li>
<li>
<dl about="#event-2020-10-01-solid-world-october" id="#event-2020-10-01-solid-world-october" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.com/e/solid-world-tickets-119073298441" rel="schema:url">Solid World October</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2020-10-01" datetime="2020-10-01">2020-10-01</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/468132352">Recording of Inrupt demonstrating their React SDK</a>. <a href="https://vimeo.com/471703581">Recording of Janeiro Digital demonstrating their work on Personal Health Stores for the NHS.</a> <a href="https://indico.cern.ch/event/963601/attachments/2116869/3573995/SolidWorld2020-10-01notes.pdf">Notes</a> by attendant Maria Dimou.</dd>
</dl>
</li>
<li>
<dl about="#event-2020-09-03-solid-world-september" id="#event-2020-09-03-solid-world-september" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.com/e/solid-world-tickets-115477011851" rel="schema:url">Solid World September</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2020-09-03" datetime="2020-09-03">2020-09-03</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/454813146">Recording</a> and slides: <a href="https://rubenverborgh.github.io/Solid-World-September-2020/#">Community Solid Server update (Ruben V.)</a></dd>
</dl>
</li>
<li>
<dl about="#event-2020-08-06-solid-world-august" id="#event-2020-08-06-solid-world-august" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.com/e/solid-world-tickets-111960609196#" rel="schema:url">Solid World August</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2020-08-06" datetime="2020-08-06">2020-08-06</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/446435972">Recording</a> and slides: <a href="https://rubenverborgh.github.io/Solid-World-August-2020/">Community Solid Server (Ruben V.)</a>, <a href="https://solidos.solid.community/public/Roadmap/Tasks/">Community Roadmap (Tim B.L.)</a>. <a href="https://indico.cern.ch/event/947969/attachments/2089239/3574007/SolidWorld2020-08-06notes.pdf">Notes</a> by attendant Maria Dimou.</dd>
</dl>
</li>
<li>
<dl about="#event-2020-07-02-solid-world-july" id="#event-2020-07-02-solid-world-july" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.com/e/solid-world-tickets-108099311952?aff=erelexpmlt" rel="schema:url">Solid World July</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2020-07-02" datetime="2020-07-02">2020-07-02</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/434767351">Recording</a> and <a href="https://docs.google.com/presentation/d/1CyidWcwBs_1FPGLiFazExhjFXOQCSqZb78HyC7LFv_o/edit#slide=id.g8225d1e7b1_0_1">Slides</a></dd>
</dl>
</li>
<li>
<dl about="#event-2020-06-04-solid-world-june" id="#event-2020-06-04-solid-world-june" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.com/e/solid-world-june-tickets-104631158612" rel="schema:url">Solid World June</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2020-06-04" datetime="2020-06-04">2020-06-04</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/425919959">Recording</a></dd>
</dl>
</li>
<li>
<dl about="#event-2020-05-07-solid-world-may" id="#event-2020-05-07-solid-world-may" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.com/e/solid-world-tickets-101812024506#" rel="schema:url">Solid World May</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2020-05-07" datetime="2020-05-07">2020-05-07</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/415976385">Recording</a></dd>
</dl>
</li>
<li>
<dl about="#event-2020-04-02-solid-world-april" id="#event-2020-04-02-solid-world-april" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.com/e/solid-world-tickets-100417571660#" rel="schema:url">Solid World April</a></dd>
<dt>Organization</dt>
<dd><a href="https://solidproject.org/team" rel="schema:organizer">Solid Team</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2020-04-02" datetime="2020-04-02">2020-04-02</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://vimeo.com/404963568">Recording</a></dd>
</dl>
</li>
<li>
<dl about="#event-2020-03-05-solid-toronto" id="#event-2020-03-05-solid-toronto" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.meetup.com/Solid-Toronto/events/268684820/" rel="schema:url">Solid Toronto</a></dd>
<dt>Organization</dt>
<dd><a href="https://github.com/SolidToronto" rel="schema:organizer">Li Lu</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2020-03-05" datetime="2020-03-05">2020-03-05</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"></dd>
</dl>
</li>
<li>
<dl about="#event-2020-02-20-solid-san-francisco" id="#event-2020-02-20-solid-san-francisco" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://meetabit.com/events/february-2020-bay-area-solid-interest-club-meetup" rel="schema:url">Solid San Francisco</a></dd>
<dt>Organization</dt>
<dd><a href="https://github.com/travis" rel="schema:organizer">Travis Vachon</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2020-02-20" datetime="2020-02-20">2020-02-20</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description">-</dd>
</dl>
</li>
<li>
<dl about="#event-2020-02-19-solid-oviedo" id="#event-2020-02-19-solid-oviedo" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://ingenieriainformatica.uniovi.es/actualidad/eventos/-/asset_publisher/uS6D/content/conferencia-solid-search:-introduccion-a-solid-y-como-cambiar-el-paradigma-de-los-buscadores-de-co?redirect=%2F" rel="schema:url">Solid Oviedo</a></dd>
<dt>Organization</dt>
<dd><a href="https://gitter.im/alexcorvis84" rel="schema:organizer">Alejandro Juan García</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2020-02-19" datetime="2020-02-19">2020-02-19</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://youtu.be/xBopDO2NTxo">recording</a> and <a href="https://docs.google.com/presentation/d/19Glq6dcIa83nliQR1fvS9ZzYglogFD7mT5Pb5JLFrIQ/edit?usp=sharing">slides</a></dd>
</dl>
</li>
<li>
<dl about="#event-2020-02-18-solid-barcelona" id="#event-2020-02-18-solid-barcelona" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.meetup.com/MyData-Barcelona/events/268485856/" rel="schema:url">Solid Barcelona</a></dd>
<dt>Organization</dt>
<dd><a href="https://noeldemartin.com" rel="schema:organizer">Noel De Martin</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2020-02-18" datetime="2020-02-18">2020-02-18</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://speakerdeck.com/noeldemartin/an-introduction-to-solid">slides</a></dd>
</dl>
</li>
<li>
<dl about="#event-2020-02-10-solid-berlin" id="#event-2020-02-10-solid-berlin" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.com/e/solid-meetup-berlin-tickets-88843267605" rel="schema:url">Solid Berlin</a></dd>
<dt>Organization</dt>
<dd><a href="" rel="schema:organizer">Christian Buggedei</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2020-02-10" datetime="2020-02-10">2020-02-10</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"></dd>
</dl>
</li>
<li>
<dl about="#event-2020-01-30-solid-amsterdam" id="#event-2020-01-30-solid-amsterdam" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.pldn.nl/index.php/2nd_Solid_Amsterdam_Meetup_–_January_30th,_2020" rel="schema:url">Solid Amsterdam</a></dd>
<dt>Organization</dt>
<dd><a href="https://github.com/jjvbeele" rel="schema:organizer">Jeroen van Beele</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2020-01-30" datetime="2020-01-30">2020-01-30</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"></dd>
</dl>
</li>
<li>
<dl about="#event-2020-01-07-solid-khartoum" id="#event-2020-01-07-solid-khartoum" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="http://solid-khartoum.atspace.cc" rel="schema:url">Solid Khartoum</a></dd>
<dt>Organization</dt>
<dd><a href="https://github.com/alisirag" rel="schema:organizer">Ali Siragedien</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2020-01-07" datetime="2020-01-07">2020-01-07</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"><a href="https://youtu.be/BhFFCzjAqm4">recording</a></dd>
</dl>
</li>
</ul>
</details>
</li>
<li id="events-2019" rel="schema:hasPart" resource="#events-2019">
<details open="">
<summary property="schema:name">2019 Events</summary>
<ul rel="schema:hasPart">
<li>
<dl about="#event-2019-12-10-solid-enschede" id="#event-2019-12-10-solid-enschede" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.utwente.nl/en/digital-society/events/2019/12/63530/solid-christmas-meetup-enschede-how-to-fix-the-internet" rel="schema:url">Solid Enschede</a></dd>
<dt>Organization</dt>
<dd><a href="" rel="schema:organizer">Erwin Folmer</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2019-12-10" datetime="2019-12-10">2019-12-10</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"></dd>
</dl>
</li>
<li>
<dl about="#event-2019-11-20-solid-london" id="#event-2019-11-20-solid-london" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="https://www.eventbrite.com/e/data-control-ethics-solid-workshop-this-is-for-everyone-join-the-movement-tickets-79208132657?ref=estw" rel="schema:url">Solid London</a></dd>
<dt>Organization</dt>
<dd><a href="" rel="schema:organizer">Kartika Tulusan</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2019-11-20" datetime="2019-11-20">2019-11-20</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"></dd>
</dl>
</li>
<li>
<dl about="#event-2019-11-21-solid-montreal" id="#event-2019-11-21-solid-montreal" typeof="schema:Event">
<dt>Title</dt>
<dd property="schema:name"><a href="" rel="schema:url">Solid Montreal</a></dd>
<dt>Organization</dt>
<dd><a href="https://github.com/vid" rel="schema:organizer">David H Mason</a></dd>
<dt>Date</dt>
<dd><time property="schema:startDate" datatype="xsd:date" content="2019-11-21" datetime="2019-11-21">2019-11-21</time></dd>
<dt>Description</dt>
<dd datatype="rdf:HTML" property="schema:description"></dd>
</dl>