-
Notifications
You must be signed in to change notification settings - Fork 8
/
apps.html
500 lines (387 loc) · 34.4 KB
/
apps.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
<!doctype html>
<html>
<head>
<title>Solid Applications · Solid</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link
rel="shortcut icon"
type="image/x-icon"
href="/favicon.ico?"
/>
<link rel="stylesheet" href="/assets/css/main.css" />
</head>
<body>
<header>
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="/">
<img
src="/assets/img/solid-emblem.svg"
alt="[Solid logo]"
/>
</a>
<a class="navbar-item navbar-brand-name is-uppercase is-size-4" href="/">
Solid
</a>
</div>
<div class="navbar-menu is-hidden-mobile">
<div class="navbar-end is-hidden-mobile">
<a
class="navbar-item is-size-6 is-size-5-tablet is-hidden-mobile"
href="/developers"
>Developers</a>
<a
class="navbar-item is-size-6 is-size-5-tablet is-hidden-mobile"
href="/users"
>Users</a>
<a
class="navbar-item is-size-6 is-size-5-tablet is-hidden-mobile"
href="/newsletter"
>Newsletter</a>
<a
class="navbar-item is-size-6 is-size-5-tablet is-hidden-mobile"
href="/events"
>Events</a>
<a
class="navbar-item is-size-6 is-size-5-tablet is-hidden-mobile"
href="/specification"
>Specification</a>
</div>
</div>
</nav>
</header>
<div id="draft-warning"></div>
<script>
if (
document.location.hostname === 'localhost'
|| document.location.hostname === 'solid.github.io'
|| document.location.hostname.substring(document.location.hostname.length - 10) === "vercel.app"
) {
const draftWarningElement = document.getElementById('draft-warning')
draftWarningElement.innerHTML = `
<div class="message is-danger is-large" role="alert">
<div class="message-body">
You are currently viewing a draft version of the Solid website. If you are looking for reliable information, visit the live site at <a href="https://solidproject.org/apps" title="The official Solid website">SolidProject.org</a>.
</div>
</div>
`;
}
</script>
<nav id="breadcrumb" class="breadcrumb">
<div class="container">
<ul>
<li>
<a href="/">
Home
</a>
</li>
<li>
<a href="">
Solid Applications
</a>
</li>
</ul>
</div>
</nav>
<main id="main">
<div class="container">
<div class="columns">
<div class="column is-two-thirds">
<article class="section content">
<p>These Solid-compatible apps will store your data on <a href="/use-solid">your own Pod</a>.</p>
<h1 id="solid-apps">Solid Apps</h1>
<h2 id="show-case">Show Case</h2>
<ul>
<li><a href="https://noeldemartin.github.io/media-kraken/">Media Kraken</a> let’s you track your media and never miss a beat. 2020. <a href="https://noeldemartin.com">Noel De Martin</a>. <a href="https://github.com/NoelDeMartin/media-kraken/tree/main/docs">documentation</a> and <a href="https://github.com/NoelDeMartin/media-kraken">source code</a> which is under GNU General Public License v3.0. Give feedback about the app via <a href="https://forum.solidproject.org/t/media-kraken-keep-track-of-your-media-in-your-pod/3333">this thread</a>.</li>
<li><a href="https://scenaristeur.github.io/solidarity/">Solidarity</a>. <a href="https://github.com/scenaristeur/solidarity">source code</a> is under <a href="https://github.com/scenaristeur/shighl/blob/master/LICENSE">MIT License Copyright (c) 2019</a><a href="http://smag0.blogspot.com/2013/12/smag0-le-projet.html">David Faveris</a></li>
<li><a href="https://notepod.vincenttunru.com/">Notepod</a> is a simple note-taking app that stores notes in your Solid Pod. It was created as a demonstration of how to create Solid apps — inspect <a href="https://gitlab.com/vincenttunru/notepod/commits/master">its commit messages</a> for more detailed guidance on <a href="https://gitlab.com/vincenttunru/notepod/commit/5c534abdd2d6ed18be8ddc256427fb7bc0baae71">reading data</a>, <a href="https://gitlab.com/vincenttunru/notepod/commit/f42f8ae6e55f1a1996050d5061252b5ac615b5aa">authenticating</a>, and more.</li>
<li><a href="https://vincenttunru.gitlab.io/poddit/">Poddit</a>. 2019. Vincent Tunru.</li>
<li><a href="https://pheyvaer.github.io/solid-chess/">Solid Chess</a> decentralised chess game <a href="https://github.com/pheyvaer/solid-chess">Source code</a> <a href="https://github.com/pheyvaer/solid-chess/blob/master/LICENSE.md">MIT License Copyright (c) 2018</a> <a href="https://github.com/pheyvaer">Pieter Heyvaert</a></li>
<li><a href="https://noeldemartin.github.io/solid-focus/">Solid Focus</a> keep track of your to do list. <a href="https://github.com/NoelDeMartin/solid-focus">Source code</a> <a href="https://github.com/NoelDeMartin/solid-focus/blob/master/LICENSE">GNU General Public License v3.0 (c) 2018</a> <a href="https://github.com/NoelDeMartin">Noel de Martin</a></li>
<li><a href="https://markbook.org">Mark Book</a> is for creating bookmarks. <a href="https://github.com/melvincarvalho/solid-bookmark">Source code</a> <a href="https://github.com/melvincarvalho/solid-bookmark/blob/gh-pages/LICENSE">MIT License Copyright (c) 2018</a> <a href="https://github.com/melvincarvalho">Melvin Carvalho</a></li>
<li><a href="https://pheyvaer.github.io/tadanime/index.html">Tadanime</a> helps you rate your anime series and movies. <a href="https://github.com/pheyvaer/tadanime">Tadanime</a> <a href="https://github.com/pheyvaer/tadanime/blob/master/LICENSE.md">MIT License Copyright (c) 2018</a> <a href="https://github.com/pheyvaer">Pieter Heyvaert</a></li>
<li><a href="https://scenaristeur.github.io/holon/">Holon</a> playing with ShEx Shapes. Creates a form from a remote shape and store data on your Pod. <a href="https://github.com/scenaristeur/holon">Holon source code</a></li>
<li><a href="https://dokie.li">Dokieli</a> is a client side editor for decentralised article publishing, annotations, and social interactions. <a href="https://github.com/linkeddata/dokieli">Dokieli</a> <a href="https://github.com/linkeddata/dokieli/blob/master/LICENSE">Apache License v2.0 2012</a> <a href="https://github.com/csarven">Sarven Capadisli</a></li>
</ul>
<h2 id="social">Social</h2>
<ul>
<li><a href="https://solid-chat.5apps.com/">LongChat</a>, the default chat pane of Solid OS. <a href="https://github.com/solid/chat-pane">source code</a> under <a href="https://github.com/solid/chat-pane/blob/master/LICENSE.md">MIT License Copyright (C) 2020</a></li>
<li><a href="https://ibex.darcy.is/feed">Darcy</a></li>
<li><a href="https://electrapro-pk.github.io/SNS/">SNS</a> A social network based on Solid build on core JavaScript by <a href="https://github.com/jaxoncreed">Jackson Morgan</a></li>
<li><a href="https://scenaristeur.github.io/solidarity/">Solidarity</a>. <a href="https://github.com/scenaristeur/solidarity">source code</a> is under <a href="https://github.com/scenaristeur/shighl/blob/master/LICENSE">MIT License Copyright (c) 2019</a><a href="http://smag0.blogspot.com/2013/12/smag0-le-projet.html">David Faveris</a></li>
<li><a href="https://chat.o.team">OChat</a>. <a href="https://github.com/jaxoncreed/o-chat">source code</a> from 2019 by <a href="https://github.com/jaxoncreed">Jackson Morgan</a>.</li>
<li><a href="https://arquisoft.github.io/course1920.html#StudentProjects">Solid Chat Challenge Student Projects</a> source code under MIT License Copyright (c) 2019 by students of <a href="http://www.uniovi.es">University de Oviedo</a> course led by <a href="http://labra.weso.es">Professor Jose Emilio Labra Gayo</a></li>
<li><a href="https://friend-requests-exploration.inrupt.app/">Friend Requests Exploration</a>. <a href="https://github.com/inrupt/friend-requests-exploration">source code</a> under <a href="https://github.com/inrupt/friend-requests-exploration/blob/master/LICENSE">MIT License Copyright (c) 2019</a> <a href="https://github.com/inrupt">Inrupt</a></li>
<li><a href="https://profiles.veltens.org">Solid Profile Viewer</a> is a react app to view and browse Solid WebID profiles. <a href="https://gitlab.com/angelo-v/solid-profile-viewer">source code</a> is under <a href="https://gitlab.com/angelo-v/solid-profile-viewer/blob/master/LICENSE">MIT License Copyright (c) 2018</a> by <a href="https://angelo.veltens.org/profile/card#me">Angelo Veltens</a>)</li>
<li><a href="https://taisukef.github.io/solid-addfriend/">Taisukef</a> add friends. <a href="https://github.com/taisukef/solid-addfriend/tree/master">source code</a> from 2018 by <a href="https://github.com/taisukef">Taisuke Fukuno</a>.</li>
<li><a href="https://linkeddata.github.io/contacts/">Contacts</a> mobile friendly vCard contact management. <a href="https://github.com/linkeddata/contacts">Source code</a> <a href="https://github.com/linkeddata/contacts/blob/master/LICENSE">MIT License Copyright (c) 2015</a> <a href="https://github.com/deiu">Andrei Sambra</a></li>
<li><a href="https://linkeddata.github.io/profile-editor/">WebID Profile editor</a> <a href="https://github.com/linkeddata/profile-editor">Source code</a> <a href="https://github.com/linkeddata/profile-editor/blob/master/LICENSE">MIT License Copyright (c) 2015</a><a href="https://github.com/deiu">Andrei Sambra</a></li>
<li><a href="https://github.com/solid/solid-signup">Solid Signup app</a> for creating WebID accounts with Solid compatible providers. <a href="https://github.com/solid/solid-signup">Source code</a> <a href="https://github.com/solid/solid-signup/blob/gh-pages/LICENSE.md">MIT License Copyright (c) 2015</a> <a href="https://github.com/deiu">Andrei Sambra</a></li>
<li><a href="http://youid.openlinksw.com">OpenLink YouID</a> identity and credentials document generator that creates X.509 certificates and saves WebID-Profile documents in any Solid Pod and sets up the relations required for WebID-TLS and WebID-TLS+Delegation. Copyright © 2013-2016 <a href="http://openlinksw.com">OpenLink Software Inc</a>.</li>
<li><a href="https://gitlab.com/angelo-v/solid-groups">Solid Groups</a> lets you form social groups on a Solid Pod. Under <a href="https://gitlab.com/angelo-v/solid-groups/-/blob/main/LICENSE">MIT License Copyright (c) 2020</a> by <a href="https://angelo.veltens.org/profile/card#me">Angelo Veltens</a>.</li>
</ul>
<h2 id="games">Games</h2>
<ul>
<li><a href="https://gca-solid.now.sh/login">Golf Companion Assistant</a>. <a href="https://github.com/michaud/gca-solid">source code</a> under <a href="https://github.com/michaud/gca-solid/blob/master/LICENCE">GNU Affero General Public License (c) 2020</a> <a href="https://github.com/michaud">Michaud</a></li>
<li><a href="https://pheyvaer.github.io/solid-chess/">Solid Chess</a> decentralised chess game <a href="https://github.com/pheyvaer/solid-chess">Source code</a> <a href="https://github.com/pheyvaer/solid-chess/blob/master/LICENSE.md">MIT License Copyright (c) 2018</a> <a href="https://github.com/pheyvaer">Pieter Heyvaert</a></li>
</ul>
<h2 id="rating">Rating</h2>
<ul>
<li><a href="https://ozcanseker.github.io/Social-linked-beer/">Linked Beer</a> search for and rate beers listed by brewery. 2019. Özcan Seker. <a href="https://github.com/ozcanseker/Social-linked-beer">source code</a></li>
<li><a href="https://pheyvaer.github.io/tadanime/index.html">Tadanime</a> helps you rate your anime series and movies. <a href="https://github.com/pheyvaer/tadanime">Tadanime</a> <a href="https://github.com/pheyvaer/tadanime/blob/master/LICENSE.md">MIT License Copyright (c) 2018</a> <a href="https://github.com/pheyvaer">Pieter Heyvaert</a></li>
<li><a href="https://factsmission.github.io/twee-fi/">Twee-Fi</a> helps you review claims and rate trustworthiness of tweets. <a href="https://github.com/factsmission/twee-fi">Twee-Fi</a> <a href="https://github.com/factsmission/twee-fi/blob/master/LICENSE">MIT License Copyright (c) 2018</a> <a href="https://factsmission.com">FactsMission</a></li>
<li><a href="https://markbook.org">Mark Book</a> is for creating bookmarks. <a href="https://github.com/melvincarvalho/solid-bookmark">Source code</a> <a href="https://github.com/melvincarvalho/solid-bookmark/blob/gh-pages/LICENSE">MIT License Copyright (c) 2018</a> <a href="https://github.com/melvincarvalho">Melvin Carvalho</a></li>
</ul>
<h2 id="movies">Movies</h2>
<ul>
<li><a href="https://noeldemartin.github.io/media-kraken/">Media Kraken</a> let’s you track your media and never miss a beat. 2020. <a href="https://noeldemartin.com">Noel De Martin</a>. <a href="https://github.com/NoelDeMartin/media-kraken/tree/main/docs">documentation</a> and <a href="https://github.com/NoelDeMartin/media-kraken">source code</a> which is under GNU General Public License v3.0. Give feedback about the app via <a href="https://forum.solidproject.org/t/media-kraken-keep-track-of-your-media-in-your-pod/3333">this thread</a>.</li>
</ul>
<h2 id="project-management">Project Management</h2>
<ul>
<li><a href="https://git.happy-dev.fr/startinblox/applications/risefor-mobilisation">RiseFor Mobilisation</a> (deployed as <a href="https://referendum.signons.fr">Referendum Signons</a>) is an app for organising referenda; it uses Solid under the hood.</li>
<li><a href="https://app.solidbase.info">Solidbase</a> agricultural project management. <a href="https://lab.allmende.io/solidbase/solidbase">source code</a> is under <a href="https://lab.allmende.io/solidbase/solidbase/blob/master/LICENSE">GNU AGPL3 (c) 2017</a> <a href="https://lab.allmende.io">Allmende Lab</a></li>
</ul>
<h2 id="blogs">Blogs</h2>
<ul>
<li><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 in early alpha.</li>
<li><a href="https://notepod.vincenttunru.com/">Notepod</a> is a simple note-taking app that stores notes in your Solid Pod. <a href="https://github.com/Vinnl/notepod">source code</a> by <a href="https://github.com/Vinnl">Vincent Tunru</a></li>
<li><a href="https://edit.o.team">OEdit</a> an editor app for raw files using the vs interface. <a href="https://github.com/jaxoncreed/o-edit">source code</a> by <a href="https://github.com/jaxoncreed">Jackson Morgan</a>.</li>
<li><a href="https://noeldemartin.github.io/solid-focus/">Solid Focus</a> keep track of your to do list. <a href="https://github.com/NoelDeMartin/solid-focus">Source code</a> <a href="https://github.com/NoelDeMartin/solid-focus/blob/master/LICENSE">GNU General Public License v3.0 (c) 2018</a> <a href="https://github.com/NoelDeMartin">Noel de Martin</a></li>
<li><a href="https://thewebalyst.solidcommunity.net/plume/">Plume</a> blogging platform. <a href="https://github.com/theWebalyst/solid-plume/">Source code</a> <a href="https://github.com/theWebalyst/solid-plume/blob/gh-pages/LICENSE">MIT License Copyright (c) 2015</a> <a href="https://github.com/deiu">Andrei Sambra</a></li>
<li><a href="https://dokie.li">Dokieli</a> is a client side editor for decentralised article publishing, annotations, and social interactions. <a href="https://github.com/linkeddata/dokieli">Dokieli</a> <a href="https://github.com/linkeddata/dokieli/blob/master/LICENSE">Apache License v2.0 2012</a> <a href="https://github.com/csarven">Sarven Capadisli</a></li>
</ul>
<h2 id="finance">Finance</h2>
<ul>
<li><a href="https://michiels-nlt-kit.herokuapp.com">Snap</a></li>
<li><a href="https://github.com/firefly-iii/firefly-iii">Firefly-iii</a>. <a href="https://github.com/firefly-iii/firefly-iii">source code</a> is under <a href="https://github.com/firefly-iii/firefly-iii/blob/master/LICENSE">GNU General Public License v3.0 9c0 2017</a> by <a href="https://github.com/JC5">James Cole</a></li>
</ul>
<h2 id="health">Health</h2>
<ul>
<li><a href="https://github.com/jasonpaulos/solid-health">Solid Health</a></li>
</ul>
<h2 id="geolocation">Geolocation</h2>
<ul>
<li><a href="https://github.com/SharonStrats/SOLIDLBSPrototype">Solid LBS</a> (deployed as <a href="https://sigmafied.com">Sigmafied</a>). 2019. <a href="https://github.com/SharonStrats">Sharon Statsianis</a>.</li>
<li><a href="https://arquisoft.github.io/course1920.html#SolidChallen2020">Solid Geolocation Challenge Entries</a></li>
</ul>
<h2 id="other">Other</h2>
<ul>
<li><a href="https://spoggy.herokuapp.com/">Spoggy</a></li>
<li><a href="https://bitbucket.org/dylanmartin/solidweatherapp/src/master/">Solid Weather</a> uses the national weather service API so it is currently only able to fetch weather in the United States.2019. Dylan Martin.</li>
<li><a href="https://bitbucket.org/dylanmartin/solidcalendar/src/master/">Solid Calendar</a> is a way to create, store, and query events using a user’s card. 2019. Dylan Martin.</li>
<li><a href="https://applications.linkedpipes.com/">Linked Pipes</a>. 2019. <a href="https://github.com/aorumbayev">@aorumbayev</a></li>
<li><a href="https://melvincarvalho.github.io/helloworld/">Hello World</a> <a href="https://github.com/melvincarvalho/helloworld">Source code</a> <a href="https://github.com/melvincarvalho/helloworld/blob/gh-pages/LICENSE">MIT License Copyright (c) 2015</a> <a href="https://github.com/melvincarvalho">Melvin Carvalho</a></li>
</ul>
<h2 id="pod-management">Pod Management</h2>
<ul>
<li><a href="https://inox.app">Inox</a> helps you see what happened to your data accross multiple pods.</li>
<li><a href="https://solid-notify.5apps.com/">Solid Notify</a> sends you a desktop notification when a Solid resource changes.</li>
<li><a href="https://github.com/kezike/solid-vc">SolidVC</a> is a <a href="https://w3c.github.io/vc-data-model/">Verifiable Credentials</a> framework developed within the context of Solid.</li>
<li><a href="https://scenaristeur.github.io/solid-vue-panes">PoPock</a> Your POds in the POCKet a very modular SoLiD application that is based on webcomponents, vuejs, vue-bootstrap, using community libs like solid-file-client, ldflex-query, tripledoc switching. <a href="https://github.com/scenaristeur/solid-vue-panes">source</a></li>
<li><a href="https://ohmypod.netlify.com/login">OhMyPod!</a> is an app to manage your Pod. <a href="https://github.com/empathyco/oh-my-pod">source code</a> is under <a href="https://github.com/empathyco/oh-my-pod/blob/master/LICENSE">GNU Lesser General Public License v3.0 (2) 2020</a> by <a href="https://www.empathy.co/">Empathy</a></li>
<li><a href="https://formrouter.solidcommunity.net/public/FileExtraction/">File Extractor</a> is an app to sign into your Pod and extract all data. An HTML page allows your to sign in to a Solid Pod and extract a HexBin file from an RDF file there. <a href="https://github.com/dconorozzo/Solid-RDF-HexBin-File-Extraction">Source code</a> <a href="https://github.com/dconorozzo/Solid-RDF-HexBin-File-Extraction/blob/master/LICENSE">MIT License Copyright (c) 2019</a> <a href="https://github.com/dconorozzo">David Conorozzo</a></li>
<li><a href="https://bourgeoa.solidcommunity.net/public/tiddlywiki">Tiddlywiki</a> is a Pod store. <a href="https://github.com/bourgeoa/tiddlywiki-node-solid-server">Source code</a> <a href="https://github.com/bourgeoa/tiddlywiki-node-solid-server/blob/master/LICENSE">MIT License Copyright (c) 2019</a> <a href="https://github.com/bourgeoa">Alain Bourgeois</a></li>
<li><a href="https://github.com/dconorozzo/Solid-RDF-HexBin-File-Extraction">File Extractor for Pods</a> extract files from Pods. <a href="">Source code</a> <a href="https://github.com/dconorozzo/Solid-RDF-HexBin-File-Extraction/blob/master/LICENSE">MIT License Copyright (c) 2019</a> <a href="https://www.formrouter.com">FormRouter, Inc.</a></li>
<li><a href="https://www.formrouter.com/solid-project-pod-pdf-form-integration/online_forms_solid_pod.htm">Form Integration</a> is an app to submit online form data to your Pod. Using a FormRouter Account, it is now possible to setup an online form that can route directly into a Solid Pod. This allows any person with a Solid Pod to get a copy of the form data they filled out. The submission may include a copy of the form as a PDF if so configured. This currently supports PDF, HTML and Excel form formats. (c) 2019 <a href="https://www.formrouter.com">FormRouter Inc</a></li>
<li><a href="https://otto-aa.github.io/solid-filemanager/">Solid File Manager</a> is an Solid app that help you manages files in your Pod. <a href="https://github.com/Otto-AA/solid-filemanager">Source code</a> <a href="https://github.com/Otto-AA/solid-filemanager/blob/master/LICENSE">MIT License Copyright (c) 2019</a> <a href="https://github.com/Otto-AA">Otto AA</a></li>
<li><a href="http://osde.openlinksw.com">OpenLink Structured Data Editor (OSDE)</a> RDF editor that can save content to any Solid Pod. (c) 2019 <a href="http://www.openlinksw.com">OpenLink Software</a></li>
<li><a href="http://ods.openlinksw.com/wiki/ODS/OdsBriefcase">ODS-Briefcase</a> – a module of <a href="http://ods.openlinksw.com/wiki/ODS/">OpenLink Data Spaces (ODS)</a>, ODS-Briefcase includes <a href="https://medium.com/virtuoso-blog/d25ab3dd27d9">Dynamic Extended Type (DET) WebDAV/LDP Folder</a> support for Solid Pods, enabling read/write access for any WebDAV-compliant client, subject to Briefcase-managed ACLs. (Briefcase connects to the Pod as the Pod Owner, so has full privileges.) (c) 2019 <a href="http://www.openlinksw.com">OpenLink Software</a></li>
<li><a href="http://osds.openlinksw.com">OpenLink Structured Data Sniffer (OSDS)</a> extracts Metadata in a variety of notations from HTML docs and enables storage to any Solid Pod via “Save As” feature. (c) 2019 <a href="http://www.openlinksw.com">OpenLink Software</a></li>
<li><a href="http://linkeddata.uriburner.com/sparql">URIBurner</a> SPARQL Query Service Endpoint that supports WebID-OIDC for authenticating WebIDs en route to functionality that isn’t granted to the un-authenticated Public; e.g., “generating descriptions of any Web-Accessible Document in RDF, and publishing said description in 5-Star Linked Data form” (c) 2019 <a href="http://www.openlinksw.com">OpenLink Software</a></li>
<li><a href="https://launcher-exploration.inrupt.app/">Launcher Exploration</a> (code on https://github.com/inrupt/launcher-exploration)</li>
<li><a href="https://vincenttunru.gitlab.io/poddit/">Poddit</a>. 2019. Vincent Tunru.</li>
<li><a href="https://bourgeoa.solidcommunity.net/public/solid-file-widget/">Solid authorization Widget</a> component for web app. <a href="https://github.com/bourgeoa/solid-file-widget">source code</a> is under <a href="https://github.com/bourgeoa/solid-file-widget/blob/master/LICENSE">MIT License Copyright (c) 2019 </a> by <a href="https://github.com/bourgeoa/solid-file-widget/blob/master/LICENSE">Bourgeoa</a></li>
<li><a href="http://osdb.openlinksw.com">OpenLink Smart Data Bot (OSDB)</a> distills actions from API documentation constructed using RDF or OpenAPI; supports WebID-OIDC for authentication (c) 2019 <a href="http://www.openlinksw.com">OpenLink Software</a></li>
<li><a href="https://github.com/jeff-zucker/solid-shell">Solid Shell</a> command-line tool and interactive shell. <a href="https://github.com/jeff-zucker/solid-shell">Source code</a> <a href="https://github.com/jeff-zucker/solid-shell/blob/master/LICENSE">MIT License Copyright (c) 2019</a> <a href="https://github.com/jeff-zucker">Jeff Zucker</a></li>
<li><a href="https://bourgeoa.solidcommunity.net/public/solid-file-widget/">Solid File Widget</a> widget authorisation. <a href="https://github.com/bourgeoa/solid-file-widget">source code</a> is under <a href="https://github.com/bourgeoa/solid-file-widget/blob/master/LICENSE">MIT License Copyright (c) 2019</a> by <a href="https://github.com/bourgeoa">Alain Bourgeois</a></li>
<li><a href="https://jeff-zucker.github.io/solid-ide/">Solid IDE</a> file manager and IDE. <a href="https://github.com/jeff-zucker/solid-ide">Source code</a> <a href="https://github.com/jeff-zucker/solid-ide/blob/master/LICENSE">MIT License Copyright (c) 2018</a> <a href="https://github.com/jeff-zucker">Jeff Zucker</a></li>
<li><a href="https://graphmetrix.net/#/">graphMetrix</a> allows you to browse your Solid Pod offering multiple views of information including overview, graph, doc, gallery and grid as well as easy to use Solid collaboration control and file management. 30 day free trial followed by a $10 per user/per month. 2018 <a href="https://graphmetrix.com/#/solid">graphMetrix</a></li>
<li>LinkedPipes Applications create your own visualisers based on linked data. <a href="https://github.com/linkedpipes/applications">Source code</a> <a href="https://github.com/linkedpipes/applications/blob/master/LICENSE">Apache License 2.0 (c) 2018</a> <a href="https://github.com/jakubklimek">Jakub Klimek</a></li>
<li><a href="https://jeff-zucker.github.io/sparql-fiddle/">SPARQL Fiddle</a> online fiddle to run SPARQL against Pods. <a href="https://github.com/jeff-zucker/sparql-fiddle">Source code</a> <a href="https://github.com/jeff-zucker/sparql-fiddle/blob/master/LICENSE">MIT License Copyright (c) 2018</a> <a href="https://github.com/jeff-zucker">Jeff Zucker</a></li>
<li><a href="https://linkeddata.github.io/warp/">Warp</a> file browser. <a href="https://github.com/linkeddata/warp">Source code</a> MIT License Copyright (c) 2014](https://github.com/linkeddata/warp/blob/gh-pages/LICENSE) <a href="https://github.com/deiu">Andrei Samba</a></li>
</ul>
<h1 id="historical-solid-apps">Historical Solid Apps</h1>
<ul>
<li><a href="https://github.com/solid/solid-inbox">Inbox</a> processes notifications. <a href="https://github.com/solid/solid-inbox/">Source code</a><a href="https://github.com/solid/solid-inbox/blob/gh-pages/LICENSE.md">MIT License Copyright (c) 2015</a><a href="https://github.com/deiu">Andrei Sambra</a></li>
</ul>
<h1 id="apps-inclusion-and-exclusion-criteria">Apps inclusion and exclusion criteria</h1>
<p>The criteria for an app to be Solid-compatible are:</p>
<ul>
<li>If identifying users is necessary, they must be able to login using their WebID and pointing to the Identity Provider of their choice</li>
<li>Data consumed by the app should be fetched from Solid Pods if possible</li>
<li>Data generated by the app should be stored in Solid Pods</li>
<li>The interaction between the app, pods, and Identity Provider(s) must be compliant with the Solid specification</li>
</ul>
<p>Please note that apps falling into the following categories will not be listed on this page, even if they match the criteria above:</p>
<ul>
<li>Apps intentionally or indirectly causing harm to anyone</li>
<li>Apps with a purpose that could be widely considered unethical</li>
<li>Apps designed to enable the generation and/or dissemination of hate speech</li>
<li>Apps encouraging stereotypes or violent behaviours towards any person or group</li>
<li>Apps having malicious intent, such as data theft</li>
<li>Apps designed to fullfill illegal purposes, such as drug traffic, stolen information exchange, extorsion…</li>
<li>Apps sharing users’ information with any third-party without user consent</li>
<li>Apps that have been reported to have important technical or security issues that compromise its users’ Pods</li>
</ul>
<p>Want to add an eligible Solid-compatible app to this list? Contact the Solid Manager via info@solidproject.org or submit a <a href="https://github.com/solid/solidproject.org/edit/staging/pages/use-solid/apps.md">submit a pull request</a>.</p>
<p>Disclaimer: The list above does not represent an endorsement by the Solid Project. The apps on the list do not undergo any testing at this time, and there is no guarantee of security or quality implied by their inclusion on this list. The goal of the list is to showcase the vibrancy of the Solid community and encourage early app builders to collaborate and learn from each other. If you believe one of the apps below is insecure or non-functional and should be removed from the list, please raise an issue <a href="https://github.com/solid/solidproject.org/issues">here</a> and tag the app’s creator or maintainer. If the creator or maintainer of the app does not respond within 24 hours to indicate that they will fix the problem, a Solid Creator will remove the app from the listing.</p>
</article>
</div>
<aside id="sidebar" class="column is-one-third is-hidden-mobile section">
<div class="menu is-large">
<ul class="menu-list">
<li><a href="#solid-apps">Solid Apps</a>
<ul>
<li><a href="#show-case">Show Case</a></li>
<li><a href="#social">Social</a></li>
<li><a href="#games">Games</a></li>
<li><a href="#rating">Rating</a></li>
<li><a href="#movies">Movies</a></li>
<li><a href="#project-management">Project Management</a></li>
<li><a href="#blogs">Blogs</a></li>
<li><a href="#finance">Finance</a></li>
<li><a href="#health">Health</a></li>
<li><a href="#geolocation">Geolocation</a></li>
<li><a href="#other">Other</a></li>
<li><a href="#pod-management">Pod Management</a></li>
</ul>
</li>
<li><a href="#historical-solid-apps">Historical Solid Apps</a></li>
<li><a href="#apps-inclusion-and-exclusion-criteria">Apps inclusion and exclusion criteria</a></li>
</ul>
</div>
</aside>
</div>
</div>
</main>
<footer id="footer" class="footer">
<div class="container">
<div class="columns">
<div class="column">
<ul>
<li>
<a class="title is-size-5" href="/">Home</a>
</li>
<li>
<a class="is-size-5" href="/users">Using Solid</a>
</li>
<li>
<a class="is-size-5" href="/users/get-a-pod">Get a Pod</a>
</li>
<li>
<a class="is-size-5" href="/apps">Solid Apps</a>
</li>
<li>
<a class="is-size-5" href="/team">Team</a>
</li>
<li>
<a class="is-size-5" href="/labs">Research Labs</a>
</li>
<li>
<a class="is-size-5" href="/faqs">FAQs</a>
</li>
</ul>
</div>
<div class="column">
<ul>
<li>
<span class="title is-size-5">What's New</span>
</li>
<li>
<a class="is-size-5" href="/newsletter">This Month in Solid</a>
</li>
<li>
<a class="is-size-5" href="/events">Solid Events</a>
</li>
<li>
<a class="is-size-5" href="/press">Press</a>
</li>
</ul>
</div>
<div class="column">
<ul>
<li>
<a class="title is-size-5" href="/developers">Developers</a>
</li>
<li>
<a class="is-size-5" href="/developers/tutorials/getting-started">Getting Started</a>
</li>
<li>
<a class="is-size-5" href="/self-hosting">Self-hosting</a>
</li>
<li>
<a class="is-size-5" href="/funding">Funding</a>
</li>
<li>
<a class="is-size-5" href="https://forum.solidproject.org">Forum</a>
</li>
</ul>
</div>
<div class="column">
<ul>
<li>
<span class="title is-size-5">More</span>
</li>
<li>
<a class="is-size-5" href="/specification">Specification</a>
</li>
<li>
<a class="is-size-5" href="/license">License</a>
</li>
<li>
<a class="is-size-5" href="/logo-usage-guidelines">Logo usage guidelines</a>
</li>
<li>
<a class="is-size-5" href="https://github.com/solid/solidproject.org/issues/new">Website feedback</a>
</li>
</ul>
</div>
</div>
</div>
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="/">
<img
src="/assets/img/solid-emblem.svg"
alt="[Solid logo]"
/>
</a>
<a class="navbar-item is-hidden-mobile" href="mailto:info@solidproject.org">
info@solidproject.org
</a>
<a class="navbar-item is-size-3-mobile is-hidden-tablet" href="mailto:info@solidproject.org" aria-label="info@solidproject.org">
@
</a>
<a class="navbar-item" href="https://github.com/solid/" title="Solid on GitHub">
<span class="image is-24x24">
<img
src="/assets/img/fontawesome-free-5.11.2-web/svgs/brands/github.svg"
alt="GitHub"
class="brand-icon"
/>
</span>
</a>
<a class="navbar-item" href="https://twitter.com/project_solid" title="Solid on Twitter">
<span class="image is-24x24">
<img
src="/assets/img/fontawesome-free-5.11.2-web/svgs/brands/twitter.svg"
alt="Twitter"
class="brand-icon"
/>
</span>
</a>
<a class="navbar-item" href="https://vimeo.com/solidworld" title="Solid on Vimeo">
<span class="image is-24x24">
<img
src="/assets/img/fontawesome-free-5.11.2-web/svgs/brands/vimeo-v.svg"
alt="Vimeo"
class="brand-icon"
/>
</span>
</a>
</div>
</nav>
</footer>
</body>
</html>