-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
171 lines (157 loc) · 5.98 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<meta name="description" content="An Experimental Web Based User Agent" />
<meta name="theme-color" content="wheat" />
<title>Capyloon - Reclaim Your Web!</title>
<link rel="icon" href="images/logo_64.png" />
<link rel="stylesheet" href="style.css" />
<script src="main.js" type="module"></script>
</head>
<body>
<div id="top">
<header class="header">
<div class="title">Capyloon</div>
<div class="subtitle">Reclaim Your Web!</div>
</header>
<div class="filler"></div>
<a href="https://matrix.to/#/#capyloon:matrix.org" title="Chat On Matrix">
<img
width="32px"
alt="Chat On Matrix"
src="images/matrix-favicon.png"
/>
</a>
<a href="https://github.com/capyloon" title="Code On Github">
<img
width="32px"
alt="Code On Github"
src="images/GitHub-Mark-64px.png"
/>
</a>
<a rel="me" href="https://fosstodon.org/@capyloon" title="Follow Us On Mastodon">
<img
width="32px"
alt="Follow Us On Mastodon"
src="images/mastodon.svg"
/>
</a>
<a href="https://twitter.com/capyloon" title="Follow Us On Twitter">
<img
width="32px"
alt="Follow Us On Twitter"
src="images/2021 Twitter logo - black.png"
/>
</a>
</div>
<div id="content">
<p class="better-web">
We believe that a better Web is possible, for the benefit of all: end
users, content creators, service developers.
</p>
<p class="pitch">
<span class="capyloon">Capyloon</span> is an experimental user agent
that aims to give you what you deserve: privacy and control through
freedom from the constraints imposed by OS vendors and service providers
who decide what you can or can't do online, and how.
</p>
<p>
Modern mobile OSes like to present themselves as paragons of user
friendliness and power. That can't be less true however: for instance,
why can't you easily know what song was playing at a given point of a
cycling route once home? Of course you can't expect applications to all
know about each other - but the current OSes are failing to bridge that
gap for you.
</p>
<p>
Both for business reasons and because of their dated design, the
incumbents mobile OSes favor silos bundling applications code with their
data.
</p>
<p>
Instead, you should to be able to make the most of the data you create
and consume when using these services, on your own terms.
</p>
<p>
Fortunately we have solid foundations to build on: the Web as an
application platform offers unique strengths to remedy to these
problems. A Web runtime has unrivaled capabilities to leverage your
online activity for your benefit. That's why
<span class="capyloon">Capyloon</span> is built as a Web based OS,
re-using and extending <a href="https://github.com/b2gOS">b2gOS</a>.
</p>
<p>
It's still early days and we don't have all the answers, so it's
important to keep an open mind and to experiment with new ideas. The
current prototype starts to explore some: support for the IPFS protocol
and for privacy respecting Web Assembly plugins to bring code to your
data instead of the other way around.
</p>
<p>
Can these technologies (and others!) fit together to provide user
control alongside the creation of an ecosystem for creators of content
and plugins? What kind of payment system can fit in? What are the UX
challenges?
</p>
<h3>Try it!</h3>
<h4>Desktop builds</h4>
<div id="desktop-carousel" class="screenshots"></div>
<p>
You can download the latest Debian package
<a href="releases.html">here</a>.
</p>
<h4>Device builds</h4>
<div id="mobile-carousel" class="screenshots"></div>
<p>You can download the latest image <a href="releases.html">here</a>.</p>
<h3>Join Us</h3>
<p>
The code is available on
<a href="https://github.com/capyloon">github</a>. The main repositories
are:
</p>
<ul>
<li>
<a href="https://github.com/capyloon/nutria">Nutria</a> : This is
<span class="capyloon">Capyloon</span> set of Web apps. If you are a
front-end developer, you will find everything you need in this
repository.
</li>
<li>
<a href="https://github.com/capyloon/api-daemon">api-daemon</a> : Non
standard apis exposed to the UI. The
<code
><a
href="https://github.com/capyloon/api-daemon/tree/main/services/contentmanager"
>contentmanager</a
></code
>
service is specific to <span class="capyloon">Capyloon,</span> and
provides the data management layer.
</li>
<li>
<a href="https://github.com/capyloon/B2G">B2G</a> : Gonk based
devices. The Pixel 3a and Android Generic System Images are currently
supported.
</li>
</ul>
<p>
Feel free to join the discussion in our
<a href="https://matrix.to/#/#capyloon:matrix.org">Matrix chat room</a>,
or to <a href="mailto:[email protected]">email us</a> for any
inquiry.
</p>
<footer>
<div>© 2023 Capyloon LLC.</div>
<div id="privacy-link" tabindex="0">Privacy Policy</div>
</footer>
<div id="privacy-policy" tabindex="0">
We don't track you and use analytics by
<a href="https://plausible.io/" target="_blank" rel="noopener"
>Plausible</a
>.
</div>
</div>
</body>
</html>