-
Notifications
You must be signed in to change notification settings - Fork 2
/
feed.xml
977 lines (718 loc) · 112 KB
/
feed.xml
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
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="3.8.6">Jekyll</generator><link href="https://solidproject.cn//feed.xml" rel="self" type="application/atom+xml" /><link href="https://solidproject.cn//" rel="alternate" type="text/html" /><updated>2020-04-14T17:16:16+08:00</updated><id>https://solidproject.cn//feed.xml</id><title type="html">Solid</title><entry><title type="html">This Week in Solid 2020-04-01</title><link href="https://solidproject.cn//this-week-in-solid/2020-04-01" rel="alternate" type="text/html" title="This Week in Solid 2020-04-01" /><published>2020-04-01T00:00:00+08:00</published><updated>2020-04-01T00:00:00+08:00</updated><id>https://solidproject.cn//this-week-in-solid/this-week-in-solid</id><content type="html" xml:base="https://solidproject.cn//this-week-in-solid/2020-04-01"><p>Hello and welcome to another edition of This Week in Solid!</p>
<p><a href="https://solidproject.org">Solid</a> is a set of open specifications, built on existing open standards, that describes how to build applications in such a way that users can conveniently switch between data storage providers and application providers and take the data generated along.</p>
<p>This is a weekly summary of Solid progress.</p>
<p>Want something mentioned? Contact the Solid Manager at [email protected]. This Week in Solid is openly developed <a href="http://github.com/solid/solidproject.org/blob/master/_posts/this-week-in-solid/next.md">on GitHub</a>. If you find any errors in this week’s issue please <a href="https://github.com/solid/solidproject.org/pulls">submit a pull request</a>.</p>
<p>Want to get involved? <a href="https://solidproject.org/standardisation">Contributions are welcome.</a></p>
<p>Every Thursday there is an hour-long public call where newcomers can introduce themselves, anyone can ask general questions about Solid, and we recap the weeks’ works on Solid.</p>
<p>Tune in at <a href="https://zoom.us/j/261297657">this line</a>:</p>
<ul>
<li>on the 2nd January 2020 at 16:00.</li>
<li>on the 9th January 2020 at 10:00.</li>
<li>on the 16th January 2020 at 16:00.</li>
<li>on the 23rd January 2020 at 10:00.</li>
<li>(and so on, alternating at 10:00 CET and 16:00 CET, unless otherwise noted here)</li>
</ul>
<h2 id="updates">Updates</h2>
<h3 id="events"><a href="https://solidproject.org/events">Events</a></h3>
<p>Solid Events are open gatherings for anyone interested in Solid; run and organised by people like you. While these events used to happen in person in cities around the world, Solid Events are moving online for the foreseeable future in light of the COVID-19 pandemic. Solid World is an opportunity to meet people who are working on or interested in working on Solid.</p>
<p><a href="https://www.eventbrite.com/e/solid-world-tickets-100417571660">Read more about Solid World April</a> which is happening this Thursday 2nd at 1600 CEST.</p>
<p>If you have any questions for the presenters <a href="https://forum.solidproject.org/t/solid-world-april-2020/2788">pop them in this thread</a>.</p>
<p>Are you interested in speaking about what you have been building on Solid? Reach out to the Solid Manager on <a href="mailto:[email protected]">[email protected]</a> to get a speaking slot at the next event.</p>
<h3 id="covid-19-hackathon">Covid-19 Hackathon</h3>
<p>Come take part in the MIT Covid-19 Hackathon on the 3rd April until 5th April. This is a great opportunity to share Solid expertise and values and apply them to an urgent and humanitarian use case. Solid was born out of an MIT project, so it’s fitting for us to contribute to this hackathon. Hope to see you there next weekend!</p>
<h2 id="solid-implementation">Solid Implementation</h2>
<p>If you have any new <a href="https://github.com/solid/solid-apps">apps</a>, <a href="https://github.com/solid/pods">Pods</a>, or <a href="https://github.com/solid/solid-idp-list">identity providers</a>, or if there are updates to existing Solid implementations, make sure to add them to the list so they get included in next week’s edition.</p>
<ul>
<li><a href="https://gca-solid.now.sh/login">Golf Companion app</a></li>
</ul>
<h3 id="talks--articles">Talks &amp; Articles</h3>
<p>Have you seen any articles or talks about Solid this week? If you’ve seen any talks, articles, or written blog posts about Solid please do send them over for next week.</p>
<ul>
<li><a href="https://medium.com/@bblfish/co-immunology-and-the-web-43379b46688e">Co-Immunology and the Web</a> by <a href="https://medium.com/@bblfish">Henry Story</a></li>
</ul>
<h3 id="job-openings">Job Openings</h3>
<ul>
<li><a href="https://www.digita.ai/careers">Digita is hiring</a> a Full Stack Developer and a Linked Data Principal. Email <a href="mailto:[email protected]">[email protected]</a> for more information.</li>
<li><a href="https://inrupt.com/careers">Inrupt is hiring</a> a DevOps Engineer and Technical Writer. Email <a href="mailto:[email protected]">[email protected]</a> for more information.</li>
</ul></content><author><name></name></author><category term="weekly" /><category term="updates" /><summary type="html">Hello and welcome to another edition of This Week in Solid! Solid is a set of open specifications, built on existing open standards, that describes how to build applications in such a way that users can conveniently switch between data storage providers and application providers and take the data generated along. This is a weekly summary of Solid progress. Want something mentioned? Contact the Solid Manager at [email protected]. This Week in Solid is openly developed on GitHub. If you find any errors in this week’s issue please submit a pull request. Want to get involved? Contributions are welcome. Every Thursday there is an hour-long public call where newcomers can introduce themselves, anyone can ask general questions about Solid, and we recap the weeks’ works on Solid. Tune in at this line: on the 2nd January 2020 at 16:00. on the 9th January 2020 at 10:00. on the 16th January 2020 at 16:00. on the 23rd January 2020 at 10:00. (and so on, alternating at 10:00 CET and 16:00 CET, unless otherwise noted here) Updates Events Solid Events are open gatherings for anyone interested in Solid; run and organised by people like you. While these events used to happen in person in cities around the world, Solid Events are moving online for the foreseeable future in light of the COVID-19 pandemic. Solid World is an opportunity to meet people who are working on or interested in working on Solid. Read more about Solid World April which is happening this Thursday 2nd at 1600 CEST. If you have any questions for the presenters pop them in this thread. Are you interested in speaking about what you have been building on Solid? Reach out to the Solid Manager on [email protected] to get a speaking slot at the next event. Covid-19 Hackathon Come take part in the MIT Covid-19 Hackathon on the 3rd April until 5th April. This is a great opportunity to share Solid expertise and values and apply them to an urgent and humanitarian use case. Solid was born out of an MIT project, so it’s fitting for us to contribute to this hackathon. Hope to see you there next weekend! Solid Implementation If you have any new apps, Pods, or identity providers, or if there are updates to existing Solid implementations, make sure to add them to the list so they get included in next week’s edition. Golf Companion app Talks &amp; Articles Have you seen any articles or talks about Solid this week? If you’ve seen any talks, articles, or written blog posts about Solid please do send them over for next week. Co-Immunology and the Web by Henry Story Job Openings Digita is hiring a Full Stack Developer and a Linked Data Principal. Email [email protected] for more information. Inrupt is hiring a DevOps Engineer and Technical Writer. Email [email protected] for more information.</summary></entry><entry><title type="html">This Week in Solid 2020-03-26</title><link href="https://solidproject.cn//this-week-in-solid/2020-03-26" rel="alternate" type="text/html" title="This Week in Solid 2020-03-26" /><published>2020-03-26T00:00:00+08:00</published><updated>2020-03-26T00:00:00+08:00</updated><id>https://solidproject.cn//this-week-in-solid/this-week-in-solid</id><content type="html" xml:base="https://solidproject.cn//this-week-in-solid/2020-03-26"><p>Hello and welcome to another edition of This Week in Solid!</p>
<p><a href="https://solidproject.org">Solid</a> is a set of open specifications, built on existing open standards, that describes how to build applications in such a way that users can conveniently switch between data storage providers and application providers and take the data generated along.</p>
<p>This is a weekly summary of Solid progress.</p>
<p>Want something mentioned? Contact the Solid Manager at [email protected]. This Week in Solid is openly developed <a href="http://github.com/solid/solidproject.org/blob/master/_posts/this-week-in-solid/next.md">on GitHub</a>. If you find any errors in this week’s issue please <a href="https://github.com/solid/solidproject.org/pulls">submit a pull request</a>.</p>
<p>Want to get involved? <a href="https://solidproject.org/standardisation">Contributions are welcome.</a></p>
<p>Every Thursday there is an hour-long public call where newcomers can introduce themselves, anyone can ask general questions about Solid, and we recap the weeks’ works on Solid.</p>
<p>Tune in at <a href="https://zoom.us/j/261297657">this line</a>:</p>
<ul>
<li>on the 2nd January 2020 at 16:00.</li>
<li>on the 9th January 2020 at 10:00.</li>
<li>on the 16th January 2020 at 16:00.</li>
<li>on the 23rd January 2020 at 10:00.</li>
<li>(and so on, alternating at 10:00 CET and 16:00 CET, unless otherwise noted here)</li>
</ul>
<h2 id="updates">Updates</h2>
<h3 id="events"><a href="https://solidproject.org/events">Events</a></h3>
<p>In light of the COVID-19 pandemic Solid Events are moving online for the foreseeable future.</p>
<p>The first online <a href="https://www.eventbrite.com/e/solid-world-tickets-100417571660">Solid World</a> will be on the 2nd of April 2020 at 1600 CEST. <a href="https://zoom.us/j/606342071">Tune in</a> for two Solid app presentations by the people behind the apps. Solid World is a great opportunity to connect to other Solid app developers.</p>
<p>If you have any questions for the presenters <a href="https://forum.solidproject.org/t/solid-world-april-2020/2788">pop them in this thread</a>.</p>
<p>From now on, there will be an online Solid Event every first Thursday of the month.If you had upcoming Solid Events planned reach out to the Solid Manager on [email protected] to arrange moving the content online with Solid World. Are you interested in speaking about what you have been building on Solid? Reach out to the Solid Manager on [email protected] to get a speaking slot at the next event.</p>
<h3 id="external-grants">External Grants</h3>
<p>SIDN Fonds has a grant called <a href="https://www.sidnfonds.nl/nieuws/follow-up-call-je-data-de-baas">Je Data de Baas</a> and there is an EU initiative called <a href="https://dapsi.ngi.eu/">Dapsi</a> that could be suitable for Solid app projects.</p>
<p>If you know of more grants that could be interesting for the Solid community <a href="https://github.com/solid/solidproject.org/blob/staging/_posts/this-week-in-solid/next.md">submit a pull request</a> to let others know about it via the next edition.</p>
<h3 id="job-openings">Job Openings</h3>
<ul>
<li><a href="https://www.digita.ai/careers">Digita is hiring</a> a Full Stack Developer and a Linked Data Principal. Email [email protected] for more information.</li>
<li><a href="https://inrupt.com/careers">Inrupt is hiring</a> a DevOps Engineer and Technical Writer. Email [email protected] for more information.</li>
</ul>
<p>Have you seen any articles or talks about Solid this week? If you’ve seen any talks, articles, or written blog posts about Solid please do send them over for next week.</p></content><author><name></name></author><category term="weekly" /><category term="updates" /><summary type="html">Hello and welcome to another edition of This Week in Solid! Solid is a set of open specifications, built on existing open standards, that describes how to build applications in such a way that users can conveniently switch between data storage providers and application providers and take the data generated along. This is a weekly summary of Solid progress. Want something mentioned? Contact the Solid Manager at [email protected]. This Week in Solid is openly developed on GitHub. If you find any errors in this week’s issue please submit a pull request. Want to get involved? Contributions are welcome. Every Thursday there is an hour-long public call where newcomers can introduce themselves, anyone can ask general questions about Solid, and we recap the weeks’ works on Solid. Tune in at this line: on the 2nd January 2020 at 16:00. on the 9th January 2020 at 10:00. on the 16th January 2020 at 16:00. on the 23rd January 2020 at 10:00. (and so on, alternating at 10:00 CET and 16:00 CET, unless otherwise noted here) Updates Events In light of the COVID-19 pandemic Solid Events are moving online for the foreseeable future. The first online Solid World will be on the 2nd of April 2020 at 1600 CEST. Tune in for two Solid app presentations by the people behind the apps. Solid World is a great opportunity to connect to other Solid app developers. If you have any questions for the presenters pop them in this thread. From now on, there will be an online Solid Event every first Thursday of the month.If you had upcoming Solid Events planned reach out to the Solid Manager on [email protected] to arrange moving the content online with Solid World. Are you interested in speaking about what you have been building on Solid? Reach out to the Solid Manager on [email protected] to get a speaking slot at the next event. External Grants SIDN Fonds has a grant called Je Data de Baas and there is an EU initiative called Dapsi that could be suitable for Solid app projects. If you know of more grants that could be interesting for the Solid community submit a pull request to let others know about it via the next edition. Job Openings Digita is hiring a Full Stack Developer and a Linked Data Principal. Email [email protected] for more information. Inrupt is hiring a DevOps Engineer and Technical Writer. Email [email protected] for more information. Have you seen any articles or talks about Solid this week? If you’ve seen any talks, articles, or written blog posts about Solid please do send them over for next week.</summary></entry><entry><title type="html">This Week in Solid 2020-03-19</title><link href="https://solidproject.cn//this-week-in-solid/2020-03-19" rel="alternate" type="text/html" title="This Week in Solid 2020-03-19" /><published>2020-03-19T00:00:00+08:00</published><updated>2020-03-19T00:00:00+08:00</updated><id>https://solidproject.cn//this-week-in-solid/this-week-in-solid</id><content type="html" xml:base="https://solidproject.cn//this-week-in-solid/2020-03-19"><p>Hello and welcome to another edition of This Week in Solid!</p>
<p><a href="https://solidproject.org">Solid</a> is a set of open specifications, built on existing open standards, that describes how to build applications in such a way that users can conveniently switch between data storage providers and application providers and take the data generated along.</p>
<p>This is a weekly summary of Solid progress.</p>
<p>Want something mentioned? Contact the Solid Manager at [email protected]. This Week in Solid is openly developed <a href="http://github.com/solid/solidproject.org/blob/master/_posts/this-week-in-solid/next.md">on GitHub</a>. If you find any errors in this week’s issue please <a href="https://github.com/solid/solidproject.org/pulls">submit a pull request</a>.</p>
<p>Want to get involved? <a href="https://solidproject.org/standardisation">Contributions are welcome.</a></p>
<p>Every Thursday there is an hour-long public call where newcomers can introduce themselves, anyone can ask general questions about Solid, and we recap the weeks’ works on Solid.</p>
<p>Tune in at <a href="https://zoom.us/j/261297657">this line</a>:</p>
<ul>
<li>on the 2nd January 2020 at 16:00.</li>
<li>on the 9th January 2020 at 10:00.</li>
<li>on the 16th January 2020 at 16:00.</li>
<li>on the 23rd January 2020 at 10:00.</li>
<li>(and so on, alternating at 10:00 CET and 16:00 CET, unless otherwise noted here)</li>
</ul>
<h2 id="updates">Updates</h2>
<h3 id="events"><a href="https://solidproject.org/events">Events</a></h3>
<p>In light of the COVID-19 pandemic Solid Events are moving online for the foreseeable future.</p>
<p><a href="https://zoom.us/j/606342071">Tune in</a> on the 2nd April 2020 at 1600 CEST to join.</p>
<p>If you had upcoming Solid Events planned reach out to the Solid Manager on [email protected] to arrange moving the content online with Solid World.</p>
<p>Are you interested in speaking about what you have been building on Solid? Reach out to the Solid Manager on [email protected] to get a speaking slot at the next event.</p>
<p>There will be an online Solid Event every first Thursday of the month.</p>
<p>Have you seen any articles or talks about Solid this week? If you’ve seen any talks, articles, or written blog posts about Solid please do send them over for next week.</p>
<h3 id="job-openings">Job Openings</h3>
<ul>
<li><a href="https://www.digita.ai/careers">Digita is hiring</a> a Full Stack Developer and a Linked Data Principal. Email [email protected] for more information</li>
<li><a href="https://inrupt.com/careers">Inrupt is hiring</a> a Head of Business Development, DevOps Engineer, and Senior Front-End Engineer/Architect.)</li>
</ul></content><author><name></name></author><category term="weekly" /><category term="updates" /><summary type="html">Hello and welcome to another edition of This Week in Solid! Solid is a set of open specifications, built on existing open standards, that describes how to build applications in such a way that users can conveniently switch between data storage providers and application providers and take the data generated along. This is a weekly summary of Solid progress. Want something mentioned? Contact the Solid Manager at [email protected]. This Week in Solid is openly developed on GitHub. If you find any errors in this week’s issue please submit a pull request. Want to get involved? Contributions are welcome. Every Thursday there is an hour-long public call where newcomers can introduce themselves, anyone can ask general questions about Solid, and we recap the weeks’ works on Solid. Tune in at this line: on the 2nd January 2020 at 16:00. on the 9th January 2020 at 10:00. on the 16th January 2020 at 16:00. on the 23rd January 2020 at 10:00. (and so on, alternating at 10:00 CET and 16:00 CET, unless otherwise noted here) Updates Events In light of the COVID-19 pandemic Solid Events are moving online for the foreseeable future. Tune in on the 2nd April 2020 at 1600 CEST to join. If you had upcoming Solid Events planned reach out to the Solid Manager on [email protected] to arrange moving the content online with Solid World. Are you interested in speaking about what you have been building on Solid? Reach out to the Solid Manager on [email protected] to get a speaking slot at the next event. There will be an online Solid Event every first Thursday of the month. Have you seen any articles or talks about Solid this week? If you’ve seen any talks, articles, or written blog posts about Solid please do send them over for next week. Job Openings Digita is hiring a Full Stack Developer and a Linked Data Principal. Email [email protected] for more information Inrupt is hiring a Head of Business Development, DevOps Engineer, and Senior Front-End Engineer/Architect.)</summary></entry><entry><title type="html">This Week in Solid 2020-03-12</title><link href="https://solidproject.cn//this-week-in-solid/2020-03-12" rel="alternate" type="text/html" title="This Week in Solid 2020-03-12" /><published>2020-03-12T00:00:00+08:00</published><updated>2020-03-12T00:00:00+08:00</updated><id>https://solidproject.cn//this-week-in-solid/this-week-in-solid</id><content type="html" xml:base="https://solidproject.cn//this-week-in-solid/2020-03-12"><p>Hello and welcome to another edition of This Week in Solid!</p>
<p><a href="https://solidproject.org">Solid</a> is a set of open specifications, built on existing open standards, that describes how to build applications in such a way that users can conveniently switch between data storage providers and application providers and take the data generated along.</p>
<p>This is a weekly summary of Solid progress.</p>
<p>Want something mentioned? Contact the Solid Manager at [email protected]. This Week in Solid is openly developed <a href="http://github.com/solid/solidproject.org/blob/master/_posts/this-week-in-solid/next.md">on GitHub</a>. If you find any errors in this week’s issue please <a href="https://github.com/solid/solidproject.org/pulls">submit a pull request</a>.</p>
<p>Want to get involved? <a href="https://solidproject.org/standardisation">Contributions are welcome.</a></p>
<p>Every Thursday there is an hour-long public call where newcomers can introduce themselves, anyone can ask general questions about Solid, and we recap the weeks’ works on Solid.</p>
<p>Tune in at <a href="https://zoom.us/j/261297657">this line</a>:</p>
<ul>
<li>on the 2nd January 2020 at 16:00.</li>
<li>on the 9th January 2020 at 10:00.</li>
<li>on the 16th January 2020 at 16:00.</li>
<li>on the 23rd January 2020 at 10:00.</li>
<li>(and so on, alternating at 10:00 CET and 16:00 CET, unless otherwise noted here)</li>
</ul>
<h2 id="updates">Updates</h2>
<h3 id="events"><a href="https://solidproject.org/events">Events</a></h3>
<p>There are a few upcoming events where you can learn more and meet others working on Solid:</p>
<div class="talk">
<div class="columns">
<div class="column is-two-thirds">
<p>
<small>2020-03-09</small>
</p>
<p>
<a href="https://www.meetup.com/es-ES/AsturiasHacking/events/268794238/" class="is-size-4 is-uppercase">
Solid Gijón
</a>
<br />
<span class="speaker">By <i>Sergio and Azahara</i></span>
</p>
</div>
<aside class="column">
<a href="https://www.meetup.com/es-ES/AsturiasHacking/events/268794238/" class="button is-text">
<span class="icon is-small">
<img src="/assets/img/fontawesome-free-5.11.2-web/svgs/solid/link.svg" alt="[]" />
</span>
<span>Visit website</span>
</a>
</aside>
</div>
</div>
<div class="talk">
<div class="columns">
<div class="column is-two-thirds">
<p>
<small>2020-04-02</small>
</p>
<p>
<a href="https://meetabit.com/events/4-2-20-bay-area-solid-interest-club-meetup" class="is-size-4 is-uppercase">
Solid San Francisco
</a>
<br />
<span class="speaker">By <i>TBD</i></span>
</p>
</div>
<aside class="column">
<a href="https://meetabit.com/events/4-2-20-bay-area-solid-interest-club-meetup" class="button is-text">
<span class="icon is-small">
<img src="/assets/img/fontawesome-free-5.11.2-web/svgs/solid/link.svg" alt="[]" />
</span>
<span>Visit website</span>
</a>
</aside>
</div>
</div>
<div class="talk">
<div class="columns">
<div class="column is-two-thirds">
<p>
<small>2020-04-15</small>
</p>
<p>
<a href="https://www.meetup.com/DWeb-BOS/events/269144252/" class="is-size-4 is-uppercase">
Solid Boston
</a>
<br />
<span class="speaker">By <i>Jackson Morgan</i></span>
</p>
</div>
<aside class="column">
<a href="https://www.meetup.com/DWeb-BOS/events/269144252/" class="button is-text">
<span class="icon is-small">
<img src="/assets/img/fontawesome-free-5.11.2-web/svgs/solid/link.svg" alt="[]" />
</span>
<span>Visit website</span>
</a>
</aside>
</div>
</div>
<p>Have you seen any articles or talks about Solid this week? If you’ve seen any talks, articles, or written blog posts about Solid please do send them over for next week.</p>
<h3 id="job-openings">Job Openings</h3>
<ul>
<li><a href="https://www.digita.ai/careers">Digita is hiring</a> a Full Stack Developer and a Linked Data Principal. Email [email protected] for more information</li>
<li><a href="https://inrupt.com/careers">Inrupt is hiring</a> a Head of Business Development, DevOps Engineer, and Senior Front-End Engineer/Architect.)</li>
</ul></content><author><name></name></author><category term="weekly" /><category term="updates" /><summary type="html">Hello and welcome to another edition of This Week in Solid! Solid is a set of open specifications, built on existing open standards, that describes how to build applications in such a way that users can conveniently switch between data storage providers and application providers and take the data generated along. This is a weekly summary of Solid progress. Want something mentioned? Contact the Solid Manager at [email protected]. This Week in Solid is openly developed on GitHub. If you find any errors in this week’s issue please submit a pull request. Want to get involved? Contributions are welcome. Every Thursday there is an hour-long public call where newcomers can introduce themselves, anyone can ask general questions about Solid, and we recap the weeks’ works on Solid. Tune in at this line: on the 2nd January 2020 at 16:00. on the 9th January 2020 at 10:00. on the 16th January 2020 at 16:00. on the 23rd January 2020 at 10:00. (and so on, alternating at 10:00 CET and 16:00 CET, unless otherwise noted here) Updates Events There are a few upcoming events where you can learn more and meet others working on Solid: 2020-03-09 Solid Gijón By Sergio and Azahara Visit website 2020-04-02 Solid San Francisco By TBD Visit website 2020-04-15 Solid Boston By Jackson Morgan Visit website Have you seen any articles or talks about Solid this week? If you’ve seen any talks, articles, or written blog posts about Solid please do send them over for next week. Job Openings Digita is hiring a Full Stack Developer and a Linked Data Principal. Email [email protected] for more information Inrupt is hiring a Head of Business Development, DevOps Engineer, and Senior Front-End Engineer/Architect.)</summary></entry><entry><title type="html">This Week in Solid 2020-03-05</title><link href="https://solidproject.cn//this-week-in-solid/2020-03-05" rel="alternate" type="text/html" title="This Week in Solid 2020-03-05" /><published>2020-03-05T00:00:00+08:00</published><updated>2020-03-05T00:00:00+08:00</updated><id>https://solidproject.cn//this-week-in-solid/this-week-in-solid</id><content type="html" xml:base="https://solidproject.cn//this-week-in-solid/2020-03-05"><p>Hello and welcome to another edition of This Week in Solid!</p>
<p><a href="https://solidproject.org">Solid</a> is a set of open specifications, built on existing open standards, that describes how to build applications in such a way that users can conveniently switch between data storage providers and application providers and take the data generated along.</p>
<p>This is a weekly summary of Solid progress.</p>
<p>Want something mentioned? Contact the Solid Manager at [email protected]. This Week in Solid is openly developed <a href="http://github.com/solid/solidproject.org/blob/master/_posts/this-week-in-solid/next.md">on GitHub</a>. If you find any errors in this week’s issue please <a href="https://github.com/solid/solidproject.org/pulls">submit a pull request</a>.</p>
<p>Want to get involved? <a href="https://solidproject.org/standardisation">Contributions are welcome.</a></p>
<p>Every Thursday there is an hour-long public call where newcomers can introduce themselves, anyone can ask general questions about Solid, and we recap the weeks’ works on Solid.</p>
<p>Tune in at <a href="https://zoom.us/j/261297657">this line</a>:</p>
<ul>
<li>on the 2nd January 2020 at 16:00.</li>
<li>on the 9th January 2020 at 10:00.</li>
<li>on the 16th January 2020 at 16:00.</li>
<li>on the 23rd January 2020 at 10:00.</li>
<li>(and so on, alternating at 10:00 CET and 16:00 CET, unless otherwise noted here)</li>
</ul>
<h2 id="updates">Updates</h2>
<h3 id="press"><a href="https://solidproject.org/press">Press</a></h3>
<p>There have been a few new articles about Solid:</p>
<ul>
<li><a href="https://twitter.com/henshaw">Jon Henshaw</a> published an article about the work Angelo Veltens has been doing. <a href="https://www.coywolf.news/social/solid-profile-design/">Read more here</a>.</li>
<li><a href="https://robboss.art/@travis">Travis Vachon</a> has published a series of articles about the Solid app prototyping he has been working on. Read <a href="https://trav.page/log/solid-foundation">a solid foundation for a new web</a>, <a href="https://trav.page/log/solid-ground/">solid at ground level</a> and <a href="https://trav.page/log/write-solid">writing the web with solid</a></li>
</ul>
<p>Solid Events are run by people like you, read more about tips on organising a successful Solid Event <a href="https://solidproject.org/events">here</a> or <a href="https://forum.solidproject.org/c/solid-events">chat</a> with other attendees and organisers.</p>
<p>There have been several more Solid Events:</p>
<div class="talk">
<div class="columns">
<div class="column is-two-thirds">
<p>
<small>2020-01-07</small>
</p>
<p>
<a href="http://solid-khartoum.atspace.cc" class="is-size-4 is-uppercase">
Solid Khartoum
</a>
<br />
<span class="speaker">By <i>Ali Siragedien</i></span>
</p>
</div>
<aside class="column">
<a href="http://solid-khartoum.atspace.cc" class="button is-text">
<span class="icon is-small">
<img src="/assets/img/fontawesome-free-5.11.2-web/svgs/solid/link.svg" alt="[]" />
</span>
<span>Visit website</span>
</a>
<a href="https://youtu.be/BhFFCzjAqm4" class="button is-text">
<span class="icon is-small">
<img src="/assets/img/fontawesome-free-5.11.2-web/svgs/solid/file-video.svg" alt="[]" />
</span>
<span>Watch video</span>
</a>
</aside>
</div>
</div>
<div class="talk">
<div class="columns">
<div class="column is-two-thirds">
<p>
<small>2020-01-30</small>
</p>
<p>
<a href="https://www.pldn.nl/index.php/2nd_Solid_Amsterdam_Meetup_%E2%80%93_January_30th,_2020" class="is-size-4 is-uppercase">
Solid Amsterdam
</a>
<br />
<span class="speaker">By <i>Jeroen van Beele</i></span>
</p>
</div>
<aside class="column">
<a href="https://www.pldn.nl/index.php/2nd_Solid_Amsterdam_Meetup_%E2%80%93_January_30th,_2020" class="button is-text">
<span class="icon is-small">
<img src="/assets/img/fontawesome-free-5.11.2-web/svgs/solid/link.svg" alt="[]" />
</span>
<span>Visit website</span>
</a>
</aside>
</div>
</div>
<div class="talk">
<div class="columns">
<div class="column is-two-thirds">
<p>
<small>2020-02-10</small>
</p>
<p>
<a href="https://www.eventbrite.com/e/solid-meetup-berlin-tickets-88843267605" class="is-size-4 is-uppercase">
Solid Berlin
</a>
<br />
<span class="speaker">By <i>Christian Buggedei</i></span>
</p>
</div>
<aside class="column">
<a href="https://www.eventbrite.com/e/solid-meetup-berlin-tickets-88843267605" class="button is-text">
<span class="icon is-small">
<img src="/assets/img/fontawesome-free-5.11.2-web/svgs/solid/link.svg" alt="[]" />
</span>
<span>Visit website</span>
</a>
</aside>
</div>
</div>
<div class="talk">
<div class="columns">
<div class="column is-two-thirds">
<p>
<small>2020-02-19</small>
</p>
<p>
<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" class="is-size-4 is-uppercase">
Solid Barcelona - Empathy.co on Solid search
</a>
<br />
<span class="speaker">By <i>Alex Corvis</i></span>
</p>
</div>
<aside class="column">
<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" class="button is-text">
<span class="icon is-small">
<img src="/assets/img/fontawesome-free-5.11.2-web/svgs/solid/link.svg" alt="[]" />
</span>
<span>Visit website</span>
</a>
<a href="https://docs.google.com/presentation/d/19Glq6dcIa83nliQR1fvS9ZzYglogFD7mT5Pb5JLFrIQ/edit?usp=sharing" class="button is-text">
<span class="icon is-small">
<img src="/assets/img/fontawesome-free-5.11.2-web/svgs/solid/file-powerpoint.svg" alt="[]" />
</span>
<span>View slides</span>
</a>
<a href="https://youtu.be/xBopDO2NTxo" class="button is-text">
<span class="icon is-small">
<img src="/assets/img/fontawesome-free-5.11.2-web/svgs/solid/file-video.svg" alt="[]" />
</span>
<span>Watch video</span>
</a>
</aside>
</div>
</div>
<div class="talk">
<div class="columns">
<div class="column is-two-thirds">
<p>
<small>2020-02-20</small>
</p>
<p>
<a href="https://meetabit.com/events/february-2020-bay-area-solid-interest-club-meetup" class="is-size-4 is-uppercase">
Solid San Francisco
</a>
<br />
<span class="speaker">By <i>Travis Vachon</i></span>
</p>
</div>
<aside class="column">
<a href="https://meetabit.com/events/february-2020-bay-area-solid-interest-club-meetup" class="button is-text">
<span class="icon is-small">
<img src="/assets/img/fontawesome-free-5.11.2-web/svgs/solid/link.svg" alt="[]" />
</span>
<span>Visit website</span>
</a>
</aside>
</div>
</div>
<p>There have been several talks on Solid around the world:</p>
<div class="talk">
<div class="columns">
<div class="column is-two-thirds">
<p>
<small>2020-01-10</small>
</p>
<p>
<a href="https://p2p.paris/fr/event/festival-0/" class="is-size-4 is-uppercase">
P2P
</a>
<br />
<span class="speaker">By <i>Alice Poggioli</i></span>
</p>
</div>
<aside class="column">
<a href="https://p2p.paris/fr/event/festival-0/" class="button is-text">
<span class="icon is-small">
<img src="/assets/img/fontawesome-free-5.11.2-web/svgs/solid/link.svg" alt="[]" />
</span>
<span>Visit website</span>
</a>
</aside>
</div>
</div>
<div class="talk">
<div class="columns">
<div class="column is-two-thirds">
<p>
<small>2020-01-11</small>
</p>
<p>
<a href="https://p2p.paris/fr/event/festival-0/" class="is-size-4 is-uppercase">
P2P
</a>
<br />
<span class="speaker">By <i>Jonas Smedegaard</i></span>
</p>
</div>
<aside class="column">
<a href="https://p2p.paris/fr/event/festival-0/" class="button is-text">
<span class="icon is-small">
<img src="/assets/img/fontawesome-free-5.11.2-web/svgs/solid/link.svg" alt="[]" />
</span>
<span>Visit website</span>
</a>
</aside>
</div>
</div>
<div class="talk">
<div class="columns">
<div class="column is-two-thirds">
<p>
<small>2020-01-27</small>
</p>
<p>
<a href="https://cs3.deic.dk" class="is-size-4 is-uppercase">
Workshop on Cloud Services for File Synchronisation and Sharing
</a>
<br />
<span class="speaker">By <i>Michiel de Jong</i></span>
</p>
</div>
<aside class="column">
<a href="https://cs3.deic.dk" class="button is-text">
<span class="icon is-small">
<img src="/assets/img/fontawesome-free-5.11.2-web/svgs/solid/link.svg" alt="[]" />
</span>
<span>Visit website</span>
</a>
</aside>
</div>
</div>
<div class="talk">
<div class="columns">
<div class="column is-two-thirds">
<p>
<small>2020-02-24</small>
</p>
<p>
<a href="https://www.rsaconference.com/experts/davi-ottenheimer-3" class="is-size-4 is-uppercase">
RSA
</a>
<br />
<span class="speaker">By <i>Davi Ottenheimer</i></span>
</p>
</div>
<aside class="column">
<a href="https://www.rsaconference.com/experts/davi-ottenheimer-3" class="button is-text">
<span class="icon is-small">
<img src="/assets/img/fontawesome-free-5.11.2-web/svgs/solid/link.svg" alt="[]" />
</span>
<span>Visit website</span>
</a>
</aside>
</div>
</div>
<div class="talk">
<div class="columns">
<div class="column is-two-thirds">
<p>
<small>2020-02-07</small>
</p>
<p>
<a href="https://indico.cern.ch/e/CERN-Solid-brainstorming" class="is-size-4 is-uppercase">
Solid CERN
</a>
<br />
<span class="speaker">By <i>Maria Dimou, Sarven Capadisli, and Mitzi László</i></span>
</p>
</div>
<aside class="column">
<a href="https://indico.cern.ch/e/CERN-Solid-brainstorming" class="button is-text">
<span class="icon is-small">
<img src="/assets/img/fontawesome-free-5.11.2-web/svgs/solid/link.svg" alt="[]" />
</span>
<span>Visit website</span>
</a>
</aside>
</div>
</div>
<div class="talk">
<div class="columns">
<div class="column is-two-thirds">
<p>
<small>2020-02-12</small>
</p>
<p>
<a href="https://www.knvi.nl/agenda/5e1b2ec705aac30110b2fe90/Je-persoonlijke-data-beheren-met-Solid?backUrl=%2Fagenda" class="is-size-4 is-uppercase">
KNVI
</a>
<br />
<span class="speaker">By <i>Pieter van Everdingen</i></span>
</p>
</div>
<aside class="column">
<a href="https://www.knvi.nl/agenda/5e1b2ec705aac30110b2fe90/Je-persoonlijke-data-beheren-met-Solid?backUrl=%2Fagenda" class="button is-text">
<span class="icon is-small">
<img src="/assets/img/fontawesome-free-5.11.2-web/svgs/solid/link.svg" alt="[]" />
</span>
<span>Visit website</span>
</a>
</aside>
</div>
</div>
<p>There are a few upcoming events where you can learn more and meet others working on Solid:</p>
<div class="talk">
<div class="columns">
<div class="column is-two-thirds">
<p>
<small>2020-04-02</small>
</p>
<p>
<a href="https://meetabit.com/events/4-2-20-bay-area-solid-interest-club-meetup" class="is-size-4 is-uppercase">
Bay Area Solid Interest Club
</a>
<br />
<span class="speaker">By <i>TBD</i></span>
</p>
</div>
<aside class="column">
<a href="https://meetabit.com/events/4-2-20-bay-area-solid-interest-club-meetup" class="button is-text">
<span class="icon is-small">
<img src="/assets/img/fontawesome-free-5.11.2-web/svgs/solid/link.svg" alt="[]" />
</span>
<span>Visit website</span>
</a>
</aside>
</div>
</div>
<p>Have you seen any articles or talks about Solid this week? If you’ve seen any talks, articles, or written blog posts about Solid please do send them over for next week.</p>
<h3 id="solidprojectorg">Solidproject.org</h3>
<p>The landing page has been redesigned, and most other pages have received a small touch-up. Additionally, most content has undergone editing to ensure the information is relevant and free of typos. All in all, the starting point for all things Solid should be more pleasant to use now.</p>
<h3 id="developer-tools"><a href="https://solidproject.org/for-developers/apps/tools">Developer Tools</a></h3>
<ul>
<li><a href="https://github.com/theWebalyst">Mark Hughes</a> is working on <a href="https://github.com/theWebalyst/svelte-with-rdf-libs-webpack">showing how to use various RDF libs with Sveltejs</a> and has rdflib.js and graphy working</li>
<li><a href="https://github.com/jeff-zucker">Jeff Zucker</a>, <a href="https://github.com/bourgeoa">Alain Bourgeois</a>, and <a href="https://github.com/Otto-AA">Otto_AA</a> released <strong><a href="https://github.com/jeff-zucker/solid-file-client">version 1.0.0 of Solid-File-Client</a></strong>, a library of methods to manage Solid files and folders that now has the ability to copy and move entire folder trees from one pod to another or back and forth between a pod and a local file system. It supports both text and binary files and works in either a browser or node/console context. Also new in this version is extensive support for linked resources (.acl and .meta files). <a href="https://forum.solidproject.org/t/announce-major-new-version-of-solid-shell/2561">Read the release announcement.</a></li>
<li><a href="https://github.com/jeff-zucker">Jeff Zucker</a> also released a major new version of <strong><a href="https://github.com/jeff-zucker/solid-shell">Solid-Shell</a></strong>, a tool for handling Solid files and folders from the command-line, in an interactive shell, and using batch-processing. You can automate and test tasks with robust error logging options. Solid Shell is built on top of Solid-File-Client and is therefore able to handle uploading, downloading, copying, moving, linked resources (.acl,.meta) and other Solid-specific features. <a href="https://forum.solidproject.org/t/announce-major-new-version-of-solid-shell/2561">Read the release announcement</a>.</li>
<li><a href="https://angelo.veltens.org/profile/card#me">Angelo Veltens</a> published <a href="https://molid.readthedocs.io/en/latest/">Molid</a>, a mock server</li>
<li><a href="https://github.com/ewingson">Matthias Evering</a> has upgraded <a href="https://solidweb.org">solidweb.org</a>, an experimental server, to 5.2.3</li>
</ul>
<h3 id="apps-pods-and-identity-providers"><a href="https://solidproject.org/use-solid/apps">Apps</a>, <a href="https://solidproject.org/use-solid">Pods, and Identity Providers</a></h3>
<p>If you have any new apps, Pods, or identity providers, or there are updates to existing Solid implementations, make sure to add them to the list so they get included in next week’s edition. Here are a few updates on implementations of Solid:</p>
<ul>
<li><a href="https://scenaristeur.github.io/compagent-tuto/">Social app</a></li>
<li><a href="https://ibex.darcy.is">Darcy Ibex</a> got made in a hackathon. Darcy Ibex is a prototype social media stream based entirely on Solid</li>
<li><a href="https://gitlab.com/angelo-v/pod-homepage">Pod Homepage</a>, a potential homepage for your Solid Pod (<a href="https://angelo.veltens.org/">Live Example</a>).</li>
<li><a href="https://scenaristeur.github.io/solidarity/">Solidarity</a> is the start of a new chat forum project based on LongChat and inbox</li>
<li><a href="https://gca-solid.now.sh/">Golf Course Assistant</a> is an app where golfers can track their score on the course. Built with the solid-react SDK.</li>
<li><a href="https://github.com/steamory/portal">Portal</a> is a competely new data browser that allows you to explore your personal data in SoLiD Pod.<a href="https://useconcept.art/">Concept</a> (<a href="https://github.com/travis/concept">GitHub</a>) is an embarrassingly simple clone of <a href="https://notion.so">notion.so</a> built on Solid. Currently very much in alpha.</li>
<li><a href="https://pmbrull.github.io/solid-webbook/">Webbook</a></li>
</ul>
<h3 id="job-openings">Job Openings</h3>
<ul>
<li><a href="https://www.digita.ai/careers">Digita is hiring</a> a Full Stack Developer and a Linked Data Principal. Email [email protected] for more information</li>
<li><a href="https://inrupt.com/careers">Inrupt is hiring</a> a Head of Business Development, DevOps Engineer, and Senior Front-End Engineer/Architect.)</li>
</ul></content><author><name></name></author><category term="weekly" /><category term="updates" /><summary type="html">Hello and welcome to another edition of This Week in Solid! Solid is a set of open specifications, built on existing open standards, that describes how to build applications in such a way that users can conveniently switch between data storage providers and application providers and take the data generated along. This is a weekly summary of Solid progress. Want something mentioned? Contact the Solid Manager at [email protected]. This Week in Solid is openly developed on GitHub. If you find any errors in this week’s issue please submit a pull request. Want to get involved? Contributions are welcome. Every Thursday there is an hour-long public call where newcomers can introduce themselves, anyone can ask general questions about Solid, and we recap the weeks’ works on Solid. Tune in at this line: on the 2nd January 2020 at 16:00. on the 9th January 2020 at 10:00. on the 16th January 2020 at 16:00. on the 23rd January 2020 at 10:00. (and so on, alternating at 10:00 CET and 16:00 CET, unless otherwise noted here) Updates Press There have been a few new articles about Solid: Jon Henshaw published an article about the work Angelo Veltens has been doing. Read more here. Travis Vachon has published a series of articles about the Solid app prototyping he has been working on. Read a solid foundation for a new web, solid at ground level and writing the web with solid Solid Events are run by people like you, read more about tips on organising a successful Solid Event here or chat with other attendees and organisers. There have been several more Solid Events: 2020-01-07 Solid Khartoum By Ali Siragedien Visit website Watch video 2020-01-30 Solid Amsterdam By Jeroen van Beele Visit website 2020-02-10 Solid Berlin By Christian Buggedei Visit website 2020-02-19 Solid Barcelona - Empathy.co on Solid search By Alex Corvis Visit website View slides Watch video 2020-02-20 Solid San Francisco By Travis Vachon Visit website There have been several talks on Solid around the world: 2020-01-10 P2P By Alice Poggioli Visit website 2020-01-11 P2P By Jonas Smedegaard Visit website 2020-01-27 Workshop on Cloud Services for File Synchronisation and Sharing By Michiel de Jong Visit website 2020-02-24 RSA By Davi Ottenheimer Visit website 2020-02-07 Solid CERN By Maria Dimou, Sarven Capadisli, and Mitzi László Visit website 2020-02-12 KNVI By Pieter van Everdingen Visit website There are a few upcoming events where you can learn more and meet others working on Solid: 2020-04-02 Bay Area Solid Interest Club By TBD Visit website Have you seen any articles or talks about Solid this week? If you’ve seen any talks, articles, or written blog posts about Solid please do send them over for next week. Solidproject.org The landing page has been redesigned, and most other pages have received a small touch-up. Additionally, most content has undergone editing to ensure the information is relevant and free of typos. All in all, the starting point for all things Solid should be more pleasant to use now. Developer Tools Mark Hughes is working on showing how to use various RDF libs with Sveltejs and has rdflib.js and graphy working Jeff Zucker, Alain Bourgeois, and Otto_AA released version 1.0.0 of Solid-File-Client, a library of methods to manage Solid files and folders that now has the ability to copy and move entire folder trees from one pod to another or back and forth between a pod and a local file system. It supports both text and binary files and works in either a browser or node/console context. Also new in this version is extensive support for linked resources (.acl and .meta files). Read the release announcement. Jeff Zucker also released a major new version of Solid-Shell, a tool for handling Solid files and folders from the command-line, in an interactive shell, and using batch-processing. You can automate and test tasks with robust error logging options. Solid Shell is built on top of Solid-File-Client and is therefore able to handle uploading, downloading, copying, moving, linked resources (.acl,.meta) and other Solid-specific features. Read the release announcement. Angelo Veltens published Molid, a mock server Matthias Evering has upgraded solidweb.org, an experimental server, to 5.2.3 Apps, Pods, and Identity Providers If you have any new apps, Pods, or identity providers, or there are updates to existing Solid implementations, make sure to add them to the list so they get included in next week’s edition. Here are a few updates on implementations of Solid: Social app Darcy Ibex got made in a hackathon. Darcy Ibex is a prototype social media stream based entirely on Solid Pod Homepage, a potential homepage for your Solid Pod (Live Example). Solidarity is the start of a new chat forum project based on LongChat and inbox Golf Course Assistant is an app where golfers can track their score on the course. Built with the solid-react SDK. Portal is a competely new data browser that allows you to explore your personal data in SoLiD Pod.Concept (GitHub) is an embarrassingly simple clone of notion.so built on Solid. Currently very much in alpha. Webbook Job Openings Digita is hiring a Full Stack Developer and a Linked Data Principal. Email [email protected] for more information Inrupt is hiring a Head of Business Development, DevOps Engineer, and Senior Front-End Engineer/Architect.)</summary></entry><entry><title type="html">This Week in Solid 2019-12-18</title><link href="https://solidproject.cn//this-week-in-solid/2019-12-18" rel="alternate" type="text/html" title="This Week in Solid 2019-12-18" /><published>2019-12-18T00:00:00+08:00</published><updated>2019-12-18T00:00:00+08:00</updated><id>https://solidproject.cn//this-week-in-solid/this-week-in-solid</id><content type="html" xml:base="https://solidproject.cn//this-week-in-solid/2019-12-18"><h1 id="this-year-in-solid-2019">This Year in Solid 2019</h1>
<p>Hello and welcome to another edition of <a href="https://solidproject.org/this-week-in-solid">This Week in Solid</a>!</p>
<p><a href="https://solidproject.org">Solid</a> is a set of open specifications, built on existing open standards, that allows users to switch between storage and app while taking the data along.</p>
<p>This is the last edition of 2019 so here’s a recap of This Year in Solid to look at the highlights of the year.</p>
<h3 id="solidprojectorg-is-live-and-up-to-date"><a href="https://solidproject.org">solidproject.org</a> is live and up to date</h3>
<p>At the start of the year information about Solid was dispersed over various locations, by different people, sometimes duplicated and even conflicting. Over the year we have come together to collect the information about Solid in a single repository (which was called ‘Information’). This was the base content used to build solidproject.org which was put together with a lot of hard work from the <a href="https://github.com/solid/process/blob/master/creators.md">Creators</a>. This website is being maintained regularly so that it is up to date with the latest information.</p>
<h3 id="a-mailing-list-was-set-up">A mailing list was set up</h3>
<p>This Week in Solid has been set up as a touch point to easily stay in the loop and share information with each other. Rather than having to check many channels and reach out to several people This Week in Solid has meant people working on Solid are more in the loop with what’s going on.</p>
<h3 id="the-process-of-working-in-the-solid-github-was-recorded">The process of working in the Solid GitHub was recorded</h3>
<p>Solid has grown meaning that more and more people are contributing and knowing how to slot in as a newcomer or how to get an overview of what others are working on and how to work together is more complex. Over the year we have worked on <a href="https://github.com/solid/process">recording who works on what and where</a> so that newcomers know how to support others and when to start new projects. In particular, the process for improving the Solid standard has been defined along with teams defined by expertise and responsibility and shared <a href="https://github.com/solid/specification/milestones">milestones</a>.</p>
<h3 id="weekly-recurring-and-well-attended-calls-on-specific-themes-to-develop-solid">Weekly recurring and well-attended calls on specific themes to develop Solid</h3>
<p>Every Thursday there has been a <a href="https://www.w3.org/community/solid/">W3C Solid Community Group</a> alternating between 16:00 CET and 10:00 CET. On top of that, there have been more in-depth calls on specific topics such as authentication, data interoperability, and authorisation. <a href="https://solidproject.org/standardisation">Read more</a> about when these calls are if you are interested in joining.</p>
<h3 id="25-solid-events-60-talks-and-150-articles-mentioning-solid">25 Solid Events, 60+ talks and 150+ articles mentioning Solid</h3>
<p>Over the year there have been more than sixty <a href="https://solidproject.org/press">talks mentioning Solid</a> along with <a href="https://solidproject.org/press">150+ articles</a>. Looking forward to many more in the coming year. Over 2019 we had 25 <a href="https://solidproject.org/events">Solid Events</a> in 18 locations in the USA, Europe, and China. Solid Events have been a great way for local communities to form around their interest in Solid. Thank you to all the hard work by the event organisers for making this happen! Anyone can become a Solid Event organiser. <a href="https://gitter.im/solid/solid-events">Reach out to other Solid Event organisers</a> or contact the Solid Manager if you would like to brainstorm ideas and learn how to make a successful local community.</p>
<h3 id="solid-standardisation-work">Solid standardisation work</h3>
<p>The Solid standard is still a work in progress. At the start of the year, Solid was being worked on in several different repositories asynchronously by many people with a variety of focuses. Now, there is a clear agreed destination where to put the final result as well as defined <a href="https://github.com/solid/specification/milestones">milestones</a>. Work on the test suite which is incorporated into the Solid standard has also started led by Kjetil Kjernsmo.</p>
<h3 id="the-solid-properties-have-been-collected-and-maintained-by-the-administrators">The Solid properties have been collected and maintained by the Administrators</h3>
<p>Solid properties, such as domains, hosting, and chat tools were organised organically by a variety of people meaning that when services needed maintenance it was not clear who was able to carry that out. This year a defined group called the <a href="https://github.com/solid/process/blob/master/administrators.md">Administrators</a> have been carefully collecting and maintaining Solid properties to ensure consistent maintenance and a single touch point to flag issues.</p>
<h3 id="more-extensive-and-organised-documentation-for-developers-working-with-solid">More extensive and organised documentation for developers working with Solid</h3>
<p>As part of the Solid website launch a major effort went underway to collect <a href="https://solidproject.org/for-developers">material for developers</a> as well as mature the content. Some big advances include <a href="https://vincenttunru.gitlab.io/tripledoc/">triple doc</a> and an <a href="https://github.com/inrupt/solid-lib-comparison">exploration of client-side RDF libraries</a>.</p>
<h3 id="course-teaching-how-to-build-a-solid-app-at-university-of-oviedo-led-by-jose-emilio-labra-gayo">Course teaching how to build a Solid app at University of Oviedo led by <a href="http://labra.weso.es">Jose Emilio Labra Gayo</a></h3>
<p>Building a Solid application became part of an assignment for a course in software architecture taught in the second semester of the third year of the Bachelor’s degree in Software Engineering at the School of Computer Science from the University of Oviedo, Spain taught by <a href="http://labra.weso.es">Jose Emilio Labra Gayo</a>. 116 students were grouped in teams of four to eight students to describe the architecture a Solid chat app and to implement a prototype using open-source software. Although the students had previous knowledge of programming languages like Java and JavaScript most of them had no knowledge of RDF or semantic technologies which was also not part of the course. Despite this, fourteen groups managed to develop a Solid chat app. Mitzi László and <a href="http://labra.weso.es">Jose Emilio Labra Gayo</a> assessed the fourteen apps to select a winner based on predefined criteria. At the prize ceremony, Mitzi László gave a talk about Solid, to both the students and several local companies including <a href="https://www.empathy.co">Empathy</a>, <a href="https://www.izertis.com/en/">Izertis</a>, and <a href="https://the-cocktail.com">The Cocktail</a>. <a href="https://www.empathy.co">Empathy</a> went on to employ two of the students on the course to continue working on Solid as part of the company.</p>
<h3 id="several-teams-working-full-time-to-implement-solid-in-practice">Several teams working full time to implement Solid in practice</h3>
<p>The Solid standard needs to be implemented to demonstrate it in practice. Here are few updates from the teams who have been busy with this:</p>
<ul>
<li><a href="https://inrupt.com"><strong>Inrupt</strong></a>:
<strong>React SDK</strong>
January 2019 saw the first release the Solid React SDK v0.1.0. While bare bones it was functional and integrated the LDflex library for reading (and soon after, writing) linked data as well as the Solid React Application Generator. The Solid React Application Generator contained only basic critical functionality such as registration, login, workflow, and a welcome page with a profile image and name. The Solid React Application Generator relied on the Data Browser to actually set the data and integrated the style guide to give the Generator a clean look and feel, and a good jumping-off point for developers. In March, a file uploader was introduced, demonstrating how to upload profile images on the welcome page, along with internationalisation using standard React internationalisation tools to show current best practices for making a website accessible to multiple languages. In April live updates were added allowing applications to be responsive to real-time updates of data. In May, the ShExFormBuilder was released, a component that takes a ShEx shape and renders it as a form. The Profile page was updated to use this new tool as an example of how it could be used in the real world, using an externally hosted ShEx shape. In August, the Tic-Tac-Toe game was released which is a hybrid mashup of the concepts from Solid Chess and the standard React tutorial application. The Tic-Tac-Toe game integrates application data storage, inbox discovery, reading and setting permissions as well as sending real-time notifications. Our latest work is related to Form Language and working with Form Models. This new feature incorporates two main components that convert a ShEx shape into an RDF-based Form Model and dynamically render a form based on an RDF-based Form Model.This new functionality represents a new and highly configurable way of displaying forms within a Solid application. So much so, the Profile page was updated to render the form based on a User Profile form model that was originally created from a ShEx shape.
<strong>Data Browser</strong>
The focus has been to make it easier to develop the project itself via <a href="https://github.com/inrupt/mashlib-dev">mashlib-dev</a>. We’ve
<a href="https://github.com/solid/mashlib/pulls?utf8=%E2%9C%93&amp;q=is%3Apr+is%3Aclosed">also</a>
<a href="https://github.com/solid/solid-panes/pulls?page=2&amp;q=is%3Apr+is%3Aclosed&amp;utf8=%E2%9C%93">fixed</a>
<a href="https://github.com/solid/solid-ui/pulls?page=2&amp;q=is%3Apr+is%3Aclosed&amp;utf8=%E2%9C%93">many</a>
<a href="https://github.com/solid/chat-pane/pulls?page=2&amp;q=is%3Apr+is%3Aclosed&amp;utf8=%E2%9C%93">issues</a>
<a href="https://github.com/solid/contacts-pane/pulls?page=2&amp;q=is%3Apr+is%3Aclosed&amp;utf8=%E2%9C%93">and</a>
<a href="https://github.com/solid/folder-pane/pulls?page=2&amp;q=is%3Apr+is%3Aclosed&amp;utf8=%E2%9C%93">bugs</a>
<a href="https://github.com/solid/issue-pane/pulls?page=2&amp;q=is%3Apr+is%3Aclosed&amp;utf8=%E2%9C%93">in</a>
<a href="https://github.com/solid/meeting-pane/pulls?page=2&amp;q=is%3Apr+is%3Aclosed&amp;utf8=%E2%9C%93">the</a>
<a href="https://github.com/solid/source-pane/pulls?page=2&amp;q=is%3Apr+is%3Aclosed&amp;utf8=%E2%9C%93">related</a>
<a href="https://github.com/solid/pane-registry/pulls?page=2&amp;q=is%3Apr+is%3Aclosed&amp;utf8=%E2%9C%93">projects</a>, as well as contributing to related tools such as <a href="https://github.com/linkeddata/rdflib.js">rdflib</a>. Elements introduced include the header, dashboard, user menu, and <a href="https://github.com/solid/userguide/blob/master/appendix/userroles.md">user roles</a> which allow users to better tailor their experience with the data browser. The code is being migrated to TypeScript to allow for better code maintenance with fewer bugs. The data browser team are always open for a chat on <a href="https://forum.solidproject.org/c/build-a-solid-app/solid-data-browser">on the forum</a> ^_^</li>
<li><a href="https://www.empathy.co"><strong>Empathy</strong></a>: At <a href="https://www.empathy.co">Empathy</a> we envision an e-commerce search based on Solid where user rights including privacy prevail. Data should be stored in Pods so that relevant results depend on contextualised data that is controlled by the user. Therefore, at <a href="https://www.empathy.co">Empathy</a> we are working on a Pod management experience that makes the user feel that is a projection of their self image that they love to use.</li>
<li>[<strong>Startin’blox](https://startinblox.com)</strong>: Startin’blox is a framework of Web components that connect to Solid data sources with an emphasis on ease of use. Our philosophy is to start as quickly as possible to develop a SOLID ecosystem with an application and junior friendly approach. We are creative in our project choices in order to quickly prove the benefits of the decentralized web to as many people as possible. We have already realised four online applications and three are under development and we’re more motivated than ever. 2020 promises to be a particularly intense year for us. We will focus on developing our community, consolidating our framework and multiplying the applications of our technology. Don’t hesitate to contact us, we’ll be delighted :)</li>
<li><a href="https://ontola.io"><strong>Ontola</strong></a> This year was all about linked data. We launched our new RDF based e-democracy app at <a href="https://argu.nl">Argu.nl</a>, published meeting data from <a href="https://openbesluitvorming.nl">120+ Dutch governments</a> as linked data, and we shared various RDF libraries at <a href="https://js.rdf.dev">js.rdf.dev</a>. We also started the <a href="https://github.com/ontola/ontologies/">@ontologies</a> repo, to make it easier to work with ontologies in JS. We worked closely with Inrupt to convert RDFlib.js to Typescript, we started work a new Front-end for Solid (<a href="https://ontola-mash.herokuapp.com/">Mash</a>) and we improved our RDF-in-React library <a href="https://fletcher91.github.io/link-redux/">link-redux</a>. We’re excited for next year, as we have many plans to increase adoption of Solid.</li>
</ul>
<h2 id="wishlist-and-what-to-look-forward-to-in-2020">Wishlist and what to look forward to in 2020</h2>
<p>There’s plenty of work to carry out in the year to come. Here’s a little list of things that people have mentioned they would love to see happen in 2020: stable standard, improved onboarding, user friendly apps, multiple Pod implementations, and better developing tools.</p>
<ul>
<li>At CERN, the birthplace of the web, a group will be meeting to talk about work on Solid. <a href="https://indico.cern.ch/e/CERN-Solid-brainstorming">Read more</a> about the Solid event at CERN.</li>
<li>There are already a few <a href="https://solidproject.org/events">Solid Events</a> and <a href="https://solidproject.org/press">talks</a> about Solid, more coming soon</li>
<li>There will be another course teaching Solid at the University of Oviedo</li>
</ul>
<p>Until next year :)</p>
<p><a href="https://github.com/Mitzi-Laszlo">Mitzi László</a></p></content><author><name>Mitzi László</name></author><category term="weekly" /><category term="updates" /><summary type="html">This Year in Solid 2019 Hello and welcome to another edition of This Week in Solid! Solid is a set of open specifications, built on existing open standards, that allows users to switch between storage and app while taking the data along. This is the last edition of 2019 so here’s a recap of This Year in Solid to look at the highlights of the year. solidproject.org is live and up to date At the start of the year information about Solid was dispersed over various locations, by different people, sometimes duplicated and even conflicting. Over the year we have come together to collect the information about Solid in a single repository (which was called ‘Information’). This was the base content used to build solidproject.org which was put together with a lot of hard work from the Creators. This website is being maintained regularly so that it is up to date with the latest information. A mailing list was set up This Week in Solid has been set up as a touch point to easily stay in the loop and share information with each other. Rather than having to check many channels and reach out to several people This Week in Solid has meant people working on Solid are more in the loop with what’s going on. The process of working in the Solid GitHub was recorded Solid has grown meaning that more and more people are contributing and knowing how to slot in as a newcomer or how to get an overview of what others are working on and how to work together is more complex. Over the year we have worked on recording who works on what and where so that newcomers know how to support others and when to start new projects. In particular, the process for improving the Solid standard has been defined along with teams defined by expertise and responsibility and shared milestones. Weekly recurring and well-attended calls on specific themes to develop Solid Every Thursday there has been a W3C Solid Community Group alternating between 16:00 CET and 10:00 CET. On top of that, there have been more in-depth calls on specific topics such as authentication, data interoperability, and authorisation. Read more about when these calls are if you are interested in joining. 25 Solid Events, 60+ talks and 150+ articles mentioning Solid Over the year there have been more than sixty talks mentioning Solid along with 150+ articles. Looking forward to many more in the coming year. Over 2019 we had 25 Solid Events in 18 locations in the USA, Europe, and China. Solid Events have been a great way for local communities to form around their interest in Solid. Thank you to all the hard work by the event organisers for making this happen! Anyone can become a Solid Event organiser. Reach out to other Solid Event organisers or contact the Solid Manager if you would like to brainstorm ideas and learn how to make a successful local community. Solid standardisation work The Solid standard is still a work in progress. At the start of the year, Solid was being worked on in several different repositories asynchronously by many people with a variety of focuses. Now, there is a clear agreed destination where to put the final result as well as defined milestones. Work on the test suite which is incorporated into the Solid standard has also started led by Kjetil Kjernsmo. The Solid properties have been collected and maintained by the Administrators Solid properties, such as domains, hosting, and chat tools were organised organically by a variety of people meaning that when services needed maintenance it was not clear who was able to carry that out. This year a defined group called the Administrators have been carefully collecting and maintaining Solid properties to ensure consistent maintenance and a single touch point to flag issues. More extensive and organised documentation for developers working with Solid As part of the Solid website launch a major effort went underway to collect material for developers as well as mature the content. Some big advances include triple doc and an exploration of client-side RDF libraries. Course teaching how to build a Solid app at University of Oviedo led by Jose Emilio Labra Gayo Building a Solid application became part of an assignment for a course in software architecture taught in the second semester of the third year of the Bachelor’s degree in Software Engineering at the School of Computer Science from the University of Oviedo, Spain taught by Jose Emilio Labra Gayo. 116 students were grouped in teams of four to eight students to describe the architecture a Solid chat app and to implement a prototype using open-source software. Although the students had previous knowledge of programming languages like Java and JavaScript most of them had no knowledge of RDF or semantic technologies which was also not part of the course. Despite this, fourteen groups managed to develop a Solid chat app. Mitzi László and Jose Emilio Labra Gayo assessed the fourteen apps to select a winner based on predefined criteria. At the prize ceremony, Mitzi László gave a talk about Solid, to both the students and several local companies including Empathy, Izertis, and The Cocktail. Empathy went on to employ two of the students on the course to continue working on Solid as part of the company. Several teams working full time to implement Solid in practice The Solid standard needs to be implemented to demonstrate it in practice. Here are few updates from the teams who have been busy with this: Inrupt: React SDK January 2019 saw the first release the Solid React SDK v0.1.0. While bare bones it was functional and integrated the LDflex library for reading (and soon after, writing) linked data as well as the Solid React Application Generator. The Solid React Application Generator contained only basic critical functionality such as registration, login, workflow, and a welcome page with a profile image and name. The Solid React Application Generator relied on the Data Browser to actually set the data and integrated the style guide to give the Generator a clean look and feel, and a good jumping-off point for developers. In March, a file uploader was introduced, demonstrating how to upload profile images on the welcome page, along with internationalisation using standard React internationalisation tools to show current best practices for making a website accessible to multiple languages. In April live updates were added allowing applications to be responsive to real-time updates of data. In May, the ShExFormBuilder was released, a component that takes a ShEx shape and renders it as a form. The Profile page was updated to use this new tool as an example of how it could be used in the real world, using an externally hosted ShEx shape. In August, the Tic-Tac-Toe game was released which is a hybrid mashup of the concepts from Solid Chess and the standard React tutorial application. The Tic-Tac-Toe game integrates application data storage, inbox discovery, reading and setting permissions as well as sending real-time notifications. Our latest work is related to Form Language and working with Form Models. This new feature incorporates two main components that convert a ShEx shape into an RDF-based Form Model and dynamically render a form based on an RDF-based Form Model.This new functionality represents a new and highly configurable way of displaying forms within a Solid application. So much so, the Profile page was updated to render the form based on a User Profile form model that was originally created from a ShEx shape. Data Browser The focus has been to make it easier to develop the project itself via mashlib-dev. We’ve also fixed many issues and bugs in the related projects, as well as contributing to related tools such as rdflib. Elements introduced include the header, dashboard, user menu, and user roles which allow users to better tailor their experience with the data browser. The code is being migrated to TypeScript to allow for better code maintenance with fewer bugs. The data browser team are always open for a chat on on the forum ^_^ Empathy: At Empathy we envision an e-commerce search based on Solid where user rights including privacy prevail. Data should be stored in Pods so that relevant results depend on contextualised data that is controlled by the user. Therefore, at Empathy we are working on a Pod management experience that makes the user feel that is a projection of their self image that they love to use. [Startin’blox](https://startinblox.com): Startin’blox is a framework of Web components that connect to Solid data sources with an emphasis on ease of use. Our philosophy is to start as quickly as possible to develop a SOLID ecosystem with an application and junior friendly approach. We are creative in our project choices in order to quickly prove the benefits of the decentralized web to as many people as possible. We have already realised four online applications and three are under development and we’re more motivated than ever. 2020 promises to be a particularly intense year for us. We will focus on developing our community, consolidating our framework and multiplying the applications of our technology. Don’t hesitate to contact us, we’ll be delighted :) Ontola This year was all about linked data. We launched our new RDF based e-democracy app at Argu.nl, published meeting data from 120+ Dutch governments as linked data, and we shared various RDF libraries at js.rdf.dev. We also started the @ontologies repo, to make it easier to work with ontologies in JS. We worked closely with Inrupt to convert RDFlib.js to Typescript, we started work a new Front-end for Solid (Mash) and we improved our RDF-in-React library link-redux. We’re excited for next year, as we have many plans to increase adoption of Solid. Wishlist and what to look forward to in 2020 There’s plenty of work to carry out in the year to come. Here’s a little list of things that people have mentioned they would love to see happen in 2020: stable standard, improved onboarding, user friendly apps, multiple Pod implementations, and better developing tools. At CERN, the birthplace of the web, a group will be meeting to talk about work on Solid. Read more about the Solid event at CERN. There are already a few Solid Events and talks about Solid, more coming soon There will be another course teaching Solid at the University of Oviedo Until next year :) Mitzi László</summary></entry><entry><title type="html">This Week in Solid 2019-12-12</title><link href="https://solidproject.cn//this-week-in-solid/2019-12-12" rel="alternate" type="text/html" title="This Week in Solid 2019-12-12" /><published>2019-12-12T00:00:00+08:00</published><updated>2019-12-12T00:00:00+08:00</updated><id>https://solidproject.cn//this-week-in-solid/this-week-in-solid</id><content type="html" xml:base="https://solidproject.cn//this-week-in-solid/2019-12-12"><p>Hello and welcome to another edition of This Week in Solid!</p>
<p><a href="https://solidproject.org">Solid</a> is a set of open specifications, built on existing open standards, that describes how to build applications in such a way that users can conveniently switch between data storage providers and application providers and take the data generated along.</p>
<p>This is a weekly summary of Solid progress.</p>
<p>Want something mentioned? Contact the Solid Manager at [email protected]. This Week in Solid is openly developed <a href="http://github.com/solid/solidproject.org/blob/master/_posts/this-week-in-solid/next.md">on GitHub</a>. If you find any errors in this week’s issue please <a href="https://github.com/solid/solidproject.org/pulls">submit a pull request</a>.</p>
<p>Want to get involved? <a href="https://solidproject.org/standardisation">Contributions are welcome.</a></p>
<p>Every Thursday there is an hour-long public call where newcomers can introduce themselves, anyone can ask general questions about Solid, and we recap the weeks’ works on Solid.</p>
<p>Tune in at <a href="https://zoom.us/j/261297657">this line</a>:</p>
<ul>
<li>on the 2nd January 2020 at 16:00.</li>
<li>on the 9th January 2020 at 10:00.</li>
<li>on the 16th January 2020 at 16:00.</li>
<li>on the 23rd January 2020 at 10:00.</li>
<li>(and so on, alternating at 10:00 CET and 16:00 CET, unless otherwise noted here)</li>
</ul>
<h2 id="press"><a href="https://solidproject.org/press">Press</a></h2>
<p>There are a few upcoming events where you can learn more and meet others working on Solid:</p>
<ul>
<li>2019-12-11 <a href="https://www.meetup.com/es-ES/MyData-Madrid/events/tpmwjryzqbqb/">MyData Madrid</a> by Alejandro Juan García</li>
<li>2019-01-30 <a href="https://www.pilod.nl/wiki/2nd_Solid_Amsterdam_Meetup_%E2%80%93_January_30th,_2020">Solid Amsterdam</a></li>
<li>2020-02-07 <a href="https://indico.cern.ch/e/CERN-Solid-brainstorming">This CERN internal event</a> may bring the place where Sir Tim invented the Web to the heart of the Web’s future by Maria Dimou</li>
</ul>
<p>Solid Events are run by people like you, read more about tips on organising a successful Solid Event <a href="https://solidproject.org/events">here</a> or <a href="https://forum.solidproject.org/c/solid-events">chat</a> with other attendees and organisers.</p>
<p>Have you seen any articles or talks about Solid this week? If you’ve seen any talks, articles, or written blog posts about Solid please do send them over for next week.</p>
<h2 id="job-openings">Job Openings</h2>
<ul>
<li><a href="https://www.digita.ai/careers">Digita is hiring</a> a Full Stack Developer and a Linked Data Principal. Email [email protected] for more information</li>
<li><a href="https://inrupt.com/careers">Inrupt is hiring</a> a Head of Business Development, Project Manager, DevOps Engineer, and Senior Front-End Engineer/Architect.</li>
</ul>
<p>Until next week!</p>
<p><a href="https://github.com/Mitzi-Laszlo">Mitzi László</a></p></content><author><name>Mitzi László</name></author><category term="weekly" /><category term="updates" /><summary type="html">Hello and welcome to another edition of This Week in Solid! Solid is a set of open specifications, built on existing open standards, that describes how to build applications in such a way that users can conveniently switch between data storage providers and application providers and take the data generated along. This is a weekly summary of Solid progress. Want something mentioned? Contact the Solid Manager at [email protected]. This Week in Solid is openly developed on GitHub. If you find any errors in this week’s issue please submit a pull request. Want to get involved? Contributions are welcome. Every Thursday there is an hour-long public call where newcomers can introduce themselves, anyone can ask general questions about Solid, and we recap the weeks’ works on Solid. Tune in at this line: on the 2nd January 2020 at 16:00. on the 9th January 2020 at 10:00. on the 16th January 2020 at 16:00. on the 23rd January 2020 at 10:00. (and so on, alternating at 10:00 CET and 16:00 CET, unless otherwise noted here) Press There are a few upcoming events where you can learn more and meet others working on Solid: 2019-12-11 MyData Madrid by Alejandro Juan García 2019-01-30 Solid Amsterdam 2020-02-07 This CERN internal event may bring the place where Sir Tim invented the Web to the heart of the Web’s future by Maria Dimou Solid Events are run by people like you, read more about tips on organising a successful Solid Event here or chat with other attendees and organisers. Have you seen any articles or talks about Solid this week? If you’ve seen any talks, articles, or written blog posts about Solid please do send them over for next week. Job Openings Digita is hiring a Full Stack Developer and a Linked Data Principal. Email [email protected] for more information Inrupt is hiring a Head of Business Development, Project Manager, DevOps Engineer, and Senior Front-End Engineer/Architect. Until next week! Mitzi László</summary></entry><entry><title type="html">This Week in Solid 2019-12-05</title><link href="https://solidproject.cn//this-week-in-solid/2019-12-05" rel="alternate" type="text/html" title="This Week in Solid 2019-12-05" /><published>2019-12-05T00:00:00+08:00</published><updated>2019-12-05T00:00:00+08:00</updated><id>https://solidproject.cn//this-week-in-solid/this-week-in-solid</id><content type="html" xml:base="https://solidproject.cn//this-week-in-solid/2019-12-05"><p>Hello and welcome to another edition of This Week in Solid!</p>
<p><a href="https://solidproject.org">Solid</a> is a set of open specifications, built on existing open standards, that describes how to build applications in such a way that users can conveniently switch between data storage providers and application providers and take the data generated along.</p>
<p>This is a weekly summary of Solid progress.</p>
<p>Want something mentioned? Contact the Solid Manager at [email protected]. This Week in Solid is openly developed <a href="http://github.com/solid/solidproject.org/blob/master/_posts/this-week-in-solid/next.md">on GitHub</a>. If you find any errors in this week’s issue please <a href="https://github.com/solid/solidproject.org/pulls">submit a pull request</a>.</p>
<p>Want to get involved? <a href="https://solidproject.org/standardisation">Contributions are welcome.</a></p>
<p><a href="https://github.com/solid/solidproject.org/blob/master/_posts/this-week-in-solid/2019-12-18-this-week-in-solid.md">This Year in Solid 2019</a> is being co-created to give an overview of the highlights. If there is something you’d like to mention make sure to <a href="https://github.com/solid/solidproject.org/blob/master/_posts/this-week-in-solid/2019-12-18-this-week-in-solid.md">submit a pull request</a> or contact [email protected].</p>
<p>Every Thursday there is an hour-long public call where newcomers can introduce themselves, anyone can ask general questions about Solid, and we recap the weeks’ works on Solid.</p>
<p>Important! The Solid weekly call on the 5th of December is canceled.</p>
<p>Tune in at <a href="https://zoom.us/j/261297657">this line</a>:</p>
<ul>
<li>on the 12th December at 10:00 CET.</li>
<li>on the 19th December at 16:00 CET.</li>
<li>No call on the 26th December due to Boxing Day.</li>
<li>on the 2nd January 2020 at 16:00.</li>
<li>on the 9th January 2020 at 10:00.</li>
<li>on the 16th January 2020 at 16:00.</li>
<li>on the 23rd January 2020 at 10:00.</li>
<li>(and so on, alternating at 10:00 CET and 16:00 CET, unless otherwise noted here)</li>
</ul>
<h2 id="press"><a href="https://solidproject.org/press">Press</a></h2>
<p>There are a few upcoming events where you can learn more and meet others working on Solid:</p>
<ul>
<li>2019-12-10 <a href="https://www.pilod.nl/wiki/Solid_Christmas_Meetup_Enschede_-_How_to_Fix_the_Internet!">Solid Enschede</a></li>
<li>2019-12-11 <a href="https://www.meetup.com/es-ES/MyData-Madrid/events/tpmwjryzqbqb/">MyData Madrid</a> by Alejandro Juan García</li>
<li>2019-01-30 <a href="https://www.pilod.nl/wiki/2nd_Solid_Amsterdam_Meetup_%E2%80%93_January_30th,_2020">Solid Amsterdam</a></li>
<li>2020-02-07 <a href="https://indico.cern.ch/e/CERN-Solid-brainstorming">Solid CERN</a> is an internal event that may bring the place where Sir Tim invented the Web to the heart of the Web’s future by Maria Dimou.</li>
</ul>
<p>Solid Events are run by people like you, read more about tips on organising a successful Solid Event <a href="https://solidproject.org/events">here</a> or <a href="https://forum.solidproject.org/c/solid-events">chat</a> with other attendees and organisers.</p>
<p>Have you seen any articles or talks about Solid this week? If you’ve seen any talks, articles, or written blog posts about Solid please do send them over for next week.</p>
<h2 id="job-openings">Job Openings</h2>
<ul>
<li><a href="https://www.digita.ai/careers">Digita is hiring</a> a Full Stack Developer and a Linked Data Principal. Email [email protected] for more information</li>
<li><a href="https://inrupt.com/careers">Inrupt is hiring</a> a Head of Business Development, Project Manager, DevOps Engineer, and Senior Front-End Engineer/Architect.</li>
</ul>
<p>Until next week!</p>
<p><a href="https://github.com/Mitzi-Laszlo">Mitzi László</a></p></content><author><name>Mitzi László</name></author><category term="weekly" /><category term="updates" /><summary type="html">Hello and welcome to another edition of This Week in Solid! Solid is a set of open specifications, built on existing open standards, that describes how to build applications in such a way that users can conveniently switch between data storage providers and application providers and take the data generated along. This is a weekly summary of Solid progress. Want something mentioned? Contact the Solid Manager at [email protected]. This Week in Solid is openly developed on GitHub. If you find any errors in this week’s issue please submit a pull request. Want to get involved? Contributions are welcome. This Year in Solid 2019 is being co-created to give an overview of the highlights. If there is something you’d like to mention make sure to submit a pull request or contact [email protected]. Every Thursday there is an hour-long public call where newcomers can introduce themselves, anyone can ask general questions about Solid, and we recap the weeks’ works on Solid. Important! The Solid weekly call on the 5th of December is canceled. Tune in at this line: on the 12th December at 10:00 CET. on the 19th December at 16:00 CET. No call on the 26th December due to Boxing Day. on the 2nd January 2020 at 16:00. on the 9th January 2020 at 10:00. on the 16th January 2020 at 16:00. on the 23rd January 2020 at 10:00. (and so on, alternating at 10:00 CET and 16:00 CET, unless otherwise noted here) Press There are a few upcoming events where you can learn more and meet others working on Solid: 2019-12-10 Solid Enschede 2019-12-11 MyData Madrid by Alejandro Juan García 2019-01-30 Solid Amsterdam 2020-02-07 Solid CERN is an internal event that may bring the place where Sir Tim invented the Web to the heart of the Web’s future by Maria Dimou. Solid Events are run by people like you, read more about tips on organising a successful Solid Event here or chat with other attendees and organisers. Have you seen any articles or talks about Solid this week? If you’ve seen any talks, articles, or written blog posts about Solid please do send them over for next week. Job Openings Digita is hiring a Full Stack Developer and a Linked Data Principal. Email [email protected] for more information Inrupt is hiring a Head of Business Development, Project Manager, DevOps Engineer, and Senior Front-End Engineer/Architect. Until next week! Mitzi László</summary></entry><entry><title type="html">This Week in Solid 2019-11-28</title><link href="https://solidproject.cn//this-week-in-solid/2019-11-28" rel="alternate" type="text/html" title="This Week in Solid 2019-11-28" /><published>2019-11-28T00:00:00+08:00</published><updated>2019-11-28T00:00:00+08:00</updated><id>https://solidproject.cn//this-week-in-solid/this-week-in-solid</id><content type="html" xml:base="https://solidproject.cn//this-week-in-solid/2019-11-28"><p>Hello and welcome to another edition of This Week in Solid!</p>
<p><a href="https://solidproject.org">Solid</a> is a set of open specifications, built on existing open standards, that describes how to build applications in such a way that users can conveniently switch between data storage providers and application providers and take the data generated along.</p>
<p>This is a weekly summary of Solid progress.</p>
<p>Want something mentioned? Contact the Solid Manager at [email protected]. This Week in Solid is openly developed <a href="http://github.com/solid/solidproject.org/blob/master/_posts/this-week-in-solid/next.md">on GitHub</a>. If you find any errors in this week’s issue please <a href="https://github.com/solid/solidproject.org/pulls">submit a pull request</a>.</p>
<p>Want to get involved? <a href="https://solidproject.org/standardisation">Contributions are welcome.</a></p>
<p>Every Thursday there is an hour-long public call where newcomers can introduce themselves, anyone can ask general questions about Solid, and we recap the weeks’ works on Solid.</p>
<p>Tune in at <a href="https://zoom.us/j/261297657">this line</a>:</p>
<ul>
<li>on the 2nd January 2020 at 16:00.</li>
<li>on the 9th January 2020 at 10:00.</li>
<li>on the 16th January 2020 at 16:00.</li>
<li>on the 23rd January 2020 at 10:00.</li>
<li>(and so on, alternating at 10:00 CET and 16:00 CET, unless otherwise noted here)</li>
</ul>
<h2 id="press"><a href="https://solidproject.org/press">Press</a></h2>
<p>Check out a recap of the talk at ECP from last week <a href="https://www.pldn.nl/index.php/Jaarcongres_ECP_2019_-_Solid_Session_Summary">here</a>.</p>
<p>There’s also a article that mentions Solid on the <a href="https://blogs.lse.ac.uk/businessreview/2019/11/20/how-to-turn-trust-into-a-competitive-advantage/">LSE Business Review</a></p>
<p>There are a few upcoming events where you can learn more and meet others working on Solid:</p>
<ul>
<li>2019-12-10 <a href="https://www.pilod.nl/wiki/Solid_Christmas_Meetup_Enschede_-_How_to_Fix_the_Internet!">Solid Enschede</a></li>
<li>2019-01-30 <a href="https://www.pilod.nl/wiki/2nd_Solid_Amsterdam_Meetup_%E2%80%93_January_30th,_2020">Solid Amsterdam</a></li>
</ul>
<p>Solid Events are run by people like you, read more about tips on organising a successful Solid Event <a href="https://solidproject.org/events">here</a> or <a href="https://forum.solidproject.org/c/solid-events">chat</a> with other attendees and organisers.</p>
<p>Have you seen any articles or talks about Solid this week? If you’ve seen any talks, articles, or written blog posts about Solid please do send them over for next week.</p>
<h3 id="solid-tools-for-developers">Solid Tools for Developers</h3>
<p>A new library for writing Solid applications was announced: <strong><a href="https://vincenttunru.gitlab.io/tripledoc/">Tripledoc</a></strong>. Its primary target audience is front-end developers unfamiliar with Linked Data, and documentation is one of its primary focus areas. Read <a href="https://forum.solidproject.org/t/are-you-a-front-end-developer-interested-in-solid-but-unfamiliar-with-linked-data-try-tripledoc/2421">the full announcement</a> for more details.</p>
<h2 id="job-openings">Job Openings</h2>
<ul>
<li><a href="https://www.digita.ai/careers">Digita is hiring</a> a Full Stack Developer and a Linked Data Principal. Email [email protected] for more information</li>
<li><a href="https://inrupt.com/careers">Inrupt is hiring</a> a Head of Business Development, Project Manager, DevOps Engineer, and Senior Front-End Engineer/Architect.</li>
</ul>
<p>Until next week!</p>
<p><a href="https://github.com/Mitzi-Laszlo">Mitzi László</a></p></content><author><name>Mitzi László</name></author><category term="weekly" /><category term="updates" /><summary type="html">Hello and welcome to another edition of This Week in Solid! Solid is a set of open specifications, built on existing open standards, that describes how to build applications in such a way that users can conveniently switch between data storage providers and application providers and take the data generated along. This is a weekly summary of Solid progress. Want something mentioned? Contact the Solid Manager at [email protected]. This Week in Solid is openly developed on GitHub. If you find any errors in this week’s issue please submit a pull request. Want to get involved? Contributions are welcome. Every Thursday there is an hour-long public call where newcomers can introduce themselves, anyone can ask general questions about Solid, and we recap the weeks’ works on Solid. Tune in at this line: on the 2nd January 2020 at 16:00. on the 9th January 2020 at 10:00. on the 16th January 2020 at 16:00. on the 23rd January 2020 at 10:00. (and so on, alternating at 10:00 CET and 16:00 CET, unless otherwise noted here) Press Check out a recap of the talk at ECP from last week here. There’s also a article that mentions Solid on the LSE Business Review There are a few upcoming events where you can learn more and meet others working on Solid: 2019-12-10 Solid Enschede 2019-01-30 Solid Amsterdam Solid Events are run by people like you, read more about tips on organising a successful Solid Event here or chat with other attendees and organisers. Have you seen any articles or talks about Solid this week? If you’ve seen any talks, articles, or written blog posts about Solid please do send them over for next week. Solid Tools for Developers A new library for writing Solid applications was announced: Tripledoc. Its primary target audience is front-end developers unfamiliar with Linked Data, and documentation is one of its primary focus areas. Read the full announcement for more details. Job Openings Digita is hiring a Full Stack Developer and a Linked Data Principal. Email [email protected] for more information Inrupt is hiring a Head of Business Development, Project Manager, DevOps Engineer, and Senior Front-End Engineer/Architect. Until next week! Mitzi László</summary></entry><entry><title type="html">This Week in Solid 2019-11-21</title><link href="https://solidproject.cn//this-week-in-solid/2019-11-21" rel="alternate" type="text/html" title="This Week in Solid 2019-11-21" /><published>2019-11-21T00:00:00+08:00</published><updated>2019-11-21T00:00:00+08:00</updated><id>https://solidproject.cn//this-week-in-solid/this-week-in-solid</id><content type="html" xml:base="https://solidproject.cn//this-week-in-solid/2019-11-21"><p>Hello and welcome to another edition of This Week in Solid!</p>
<p><a href="https://solidproject.org">Solid</a> is a set of open specifications, built on existing open standards, that describes how to build applications in such a way that users can conveniently switch between data storage providers and application providers and take the data generated along.</p>
<p>This is a weekly summary of Solid progress.</p>
<p>Want something mentioned? Contact the Solid Manager at [email protected]. This Week in Solid is openly developed <a href="http://github.com/solid/solidproject.org/blob/master/_posts/this-week-in-solid/next.md">on GitHub</a>. If you find any errors in this week’s issue please <a href="https://github.com/solid/solidproject.org/pulls">submit a pull request</a>.</p>
<p>Want to get involved? <a href="https://solidproject.org/standardisation">Contributions are welcome.</a></p>
<p>Every Thursday there is an hour-long public call where newcomers can introduce themselves, anyone can ask general questions about Solid, and we recap the weeks’ works on Solid.</p>
<p>Tune in at <a href="https://zoom.us/j/261297657">this line</a>:</p>
<ul>
<li>on the 2nd January 2020 at 16:00.</li>
<li>on the 9th January 2020 at 10:00.</li>
<li>on the 16th January 2020 at 16:00.</li>
<li>on the 23rd January 2020 at 10:00.</li>
<li>(and so on, alternating at 10:00 CET and 16:00 CET, unless otherwise noted here)</li>
</ul>
<p>There are a few upcoming events where you can learn more and meet others working on Solid:</p>
<ul>
<li>2019-11-21 Solid Montreal, organised by <a href="https://github.com/vid">David H Manson</a></li>
<li>2019-12-10 <a href="https://www.pilod.nl/wiki/Solid_Christmas_Meetup_Enschede_-_How_to_Fix_the_Internet!">Solid Enschede</a></li>
<li>2019-01-30 <a href="https://www.pilod.nl/wiki/2nd_Solid_Amsterdam_Meetup_%E2%80%93_January_30th,_2020">Solid Amsterdam</a></li>
</ul>
<p>Solid Events are run by people like you, read more about tips on organising a successful Solid Event <a href="https://solidproject.org/events">here</a> or <a href="https://forum.solidproject.org/c/solid-events">chat</a> with other attendees and organisers.</p>
<p>Have you seen any articles or talks about Solid this week? If you’ve seen any talks, articles, or written blog posts about Solid please do send them over for next week.
Job Openings</p>
<ul>
<li><a href="https://www.digita.ai/careers">Digita is hiring</a> a Full Stack Developer and a Linked Data Principal. Email [email protected] for more information</li>
<li><a href="https://inrupt.com/careers">Inrupt is hiring</a> a Head of Business Development, Project Manager, DevOps Engineer, and Senior Front-End Engineer/Architect.</li>
</ul>
<p>Until next week!</p>
<p><a href="https://github.com/Mitzi-Laszlo">Mitzi László</a></p></content><author><name>Mitzi László</name></author><category term="weekly" /><category term="updates" /><summary type="html">Hello and welcome to another edition of This Week in Solid! Solid is a set of open specifications, built on existing open standards, that describes how to build applications in such a way that users can conveniently switch between data storage providers and application providers and take the data generated along. This is a weekly summary of Solid progress. Want something mentioned? Contact the Solid Manager at [email protected]. This Week in Solid is openly developed on GitHub. If you find any errors in this week’s issue please submit a pull request. Want to get involved? Contributions are welcome. Every Thursday there is an hour-long public call where newcomers can introduce themselves, anyone can ask general questions about Solid, and we recap the weeks’ works on Solid. Tune in at this line: on the 2nd January 2020 at 16:00. on the 9th January 2020 at 10:00. on the 16th January 2020 at 16:00. on the 23rd January 2020 at 10:00. (and so on, alternating at 10:00 CET and 16:00 CET, unless otherwise noted here) There are a few upcoming events where you can learn more and meet others working on Solid: 2019-11-21 Solid Montreal, organised by David H Manson 2019-12-10 Solid Enschede 2019-01-30 Solid Amsterdam Solid Events are run by people like you, read more about tips on organising a successful Solid Event here or chat with other attendees and organisers. Have you seen any articles or talks about Solid this week? If you’ve seen any talks, articles, or written blog posts about Solid please do send them over for next week. Job Openings Digita is hiring a Full Stack Developer and a Linked Data Principal. Email [email protected] for more information Inrupt is hiring a Head of Business Development, Project Manager, DevOps Engineer, and Senior Front-End Engineer/Architect. Until next week! Mitzi László</summary></entry></feed>