forked from vole/vole.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
258 lines (242 loc) · 9.66 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
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
---
layout: default
title: Vole.cc
---
<div id="home">
<div class="row">
<div class="offset2 span8">
<div id="hero" class="clearfix">
<img id="hero-img" src="/img/watervole.jpg" />
<h1 id="vole-title">Vole</h1>
</div>
<h3>Peer-to-peer social web</h3>
<p>
Vole is a web-based social network that you use in your browser, without a central server. It's built on the power of Bittorrent, Go and Ember.js.
</p>
<h3>Screenshot</h3>
<img class="img-polaroid" src="/img/vole-screenshot.png" />
<h3>How it works</h3>
<p>
Vole feels and behaves like the web apps you're used to, but it works completely differently. Instead of the web browser sending your data to a central server, it connects to your local machine, saving your data to a folder on your computer.
</p>
<p>
This folder is shared with other Vole users by giving out a read-only key that allows them to see a stream of your posts, updated live on their computers. By exchanging keys with your friends or people who you'd like to follow, you can form a network that is self-supporting and self-controlled.
</p>
<h3>Technical details</h3>
<p>
Vole has a web frontend and a backend. The backend is a simple web server running on your local machine (written in Go). This backend serves data to the browser as JSON over REST endpoints, and writes .json files back to your hard drive in a structured way. Your data is thus available locally as simple text files in JSON format.
</p>
<p>
Because Go applications compile to a single binary file, you don't have to install any dependencies to run Vole. No language runtime or virtual machine. No Ruby On Rails, Python or node.js. This makes Vole easy to run and distribute.
</p>
<p>
The core Vole application doesn't yet manage any of the syncronization, this is handled by Bittorrent Sync and potentially any other folder sync application that you may find suitable.
</p>
<h3>Why another network?</h3>
<p>
To understand why Vole exists, consider some of the drawbacks of existing social web application design:
</p>
<h4>Large server processing power</h4>
<p>
Since every user connects to a central location, the large social networks run server farms that consume huge amounts of bandwidth, energy and space, while often the user's desktop computer and internet connection are underutilized.
</p>
<h4>Single point of failure</h4>
<p>
When the servers go down, the network goes down. This opens up an opportunity for attackers to run denial-of-service attacks and otherwise attempt to disrupt the network by going after the central point. The Vole network is designed to not have a single point of failure.
</p>
<h4>Censorship</h4>
<p>
Existing social networks are typically created and maintained by companies under the jurisdiction of a country's laws. This makes them vulnerable to censorship and political interference. The Internet, however, is global - and so laws that govern one country don't necessarily apply in others. The Vole network has no physical location, no censorship and is resistant to political attempts to block it.
</p>
<h4>Data ownership and legal terms</h4>
<p>
You shouldn't have to agree to a terms-of-service legal document in order to create networks with people. Vole gives you full control and ownership of your data.
</p>
<h3>Vole's approach</h3>
<p>
Vole takes a distributed approach to social networking.
</p>
<h4>Cross-platform</h4>
<p>
Our goal is to be totally cross-platform, and by building on existing open web standards, Vole can be accessed from any device with a web browser. We currently have builds for Mac, Windows and Linux and are using HTML5 best practices in our front-end development.
</p>
<h4>Open source</h4>
<p>
With a liberal MIT license, Vole is available for anyone to use, modify or distribute.
</p>
<h3>Get started!</h3>
<p>
If you're an interested developer, get started right now, we have pre-release builds available and instructions for contributing. Check out the <a href="https://github.com/vole/vole">Vole Github repo</a>.
</p>
<h3>Contact us</h3>
<p>
<ul>
<li>Send a message to the Google group <a href="https://groups.google.com/forum/#!forum/vole-dev">mailing list</a>.</li>
<li>Follow us on <a href="https://twitter.com/volecc">Twitter</a>.</li>
<li>Send us an <a href="mailto:[email protected]">email</a>.</li>
</ul>
</p>
<h3>Current Vole users</h3>
<div class="row span6">
<table class="table">
<thead>
<tr>
<th>Name</th>
<th>Key</th>
</tr>
</thead>
<tbody>
<tr>
<td>Vole team updates</td>
<td>RA32XLBBHXMWMECGJAJSJMMPQ3Z2ZGR7K</td>
</tr>
<tr>
<td>Mark</td>
<td>RSBKDFDKOFJUCBBCS3Y3UXZLDJPHBCFDH</td>
</tr>
<tr>
<td>Aaron</td>
<td>RO62RI5IQPFSY4VCIJTXI62SKSKSETIHD</td>
</tr>
<tr>
<td>TT</td>
<td>R6JW3JFPOLR3JRH746EQ26FJEXQZMEUOA</td>
</tr>
<tr>
<td>Joe Provo</td>
<td>R3JA4MBEOS5JFZEVHYGAMEHIP6Y3CPH2Y</td>
</tr>
<tr>
<td>Dario Castañé</td>
<td>RW2MTVZFHGP5JCOJKCFYZZRWI66GXDCNO</td>
</tr>
<tr>
<td>Doug Belshaw</td>
<td>BNBK7XI7INMFAUQA625WLIL7NIWDHIA3G</td>
</tr>
<tr>
<td>Fil</td>
<td>RC3HYDEQOQWTSHD3K7EX6NGMNZGLSB542</td>
</tr>
<tr>
<td>Nicolas Hoizey</td>
<td>RIHGSN3V2X5WPURMDJWCAEWNYN6C2F6SA</td>
</tr>
<tr>
<td>Frank Taillandier</td>
<td>RIDV53LM6PVOWXSEGNM463NIJNCBAM2TD</td>
</tr>
<tr>
<td>Chris</td>
<td>RRKKHSTIXEWGCQUQV5IJQTZ36VHTYXPPO</td>
</tr>
<tr>
<td>Nicolas Dubois</td>
<td>RCZ7OL4SMMJSZZZVKUL522NTAON2HCXOA</td>
</tr>
<tr>
<td>Maxime Thirouin (@MoOx)</td>
<td>RKIBX4OWDH42VO236R7RB5QAVJCM7SHWW</td>
</tr>
<tr>
<td>Dave Hansen</td>
<td>B6IFC4JDSFHLG73SXG646SDV7ANVOUL4H</td>
</tr>
<tr>
<td>maxlath</td>
<td>BEB4VYX2FUZI6FYX3TRXKNWR4S3KH7VME</td>
</tr>
<tr>
<td>Lucas de Avilla</td>
<td>B774UZH67DTNCYBFQQ7AQQU2P5QPEWIFA</td>
</tr>
<tr>
<td>Carlos Duarte do Nascimento (@chesterbr)</td>
<td>BARX4IIOYKIG4VVNIELWANJ4UOUMHAC3H</td>
</tr>
<tr>
<td>Fabricio Campos Zuardi</td>
<td>BOYYQ536LRCVQATHVL4JTIALHWL7FHNWI</td>
</tr>
<tr>
<td>pitr</td>
<td>BO45PGFGAUT57ESL455QJD7CDD7OUEAIW</td>
</tr>
<tr>
<td>Myles Braithwaite (@mylesb)</td>
<td>BYQB7YDRRJXR6SRISZZKIKYUQHVVOKW5G</td>
</tr>
<tr>
<td>Rivsen Tan (@Rivsen)</td>
<td>BWIRJSEWXRQD4WCKS5PUN2HBFIFF4U5KU</td>
</tr>
<tr>
<td>Mike Manilone (@ekd123)</td>
<td>BES5XB3BKKPNAF2SWLG2IZA5JYDBVBNKF</td>
</tr>
<tr>
<td>Bla Mbin (@blambin)</td>
<td>BVBSY4BRM555TOFIUQFZL4Z4ZRB2CQVPQ</td>
</tr>
<tr>
<td>Vole中文圈 (@VoleChina)</td>
<td>BTE2K4RE3L6PLWWECYVG62PAAWTA6NSQX</td>
</tr>
<tr>
<td>Nils</td>
<td>BFJV3ZWL4LAZZDQE3NSAM44V2NJUBU2RF</td>
</tr>
<tr>
<td>Michael Wheeler (mwheeler.org)</td>
<td>BBUV44HNJG47ELMVO7S5YHIQFGGYKWQKO</td>
</tr>
<tr>
<td>Joe R</td>
<td>B5FSQJ5XS7Y4VJN26UGGSIUWJYC4M43Y7</td>
</tr>
<tr>
<td>Jason</td>
<td>BIF6A3OSCBHQMQDQBWUEBTBTUZXOBZXYJ</td>
</tr>
<tr>
<td>diCoy</td>
<td>BQFD4XJ4VM2GIJJ7O2X226JJKZIAA2SGV</td>
</tr>
<tr>
<td>Chosenken</td>
<td>BPUAVU6VOOTE3O5PQUQYZMNGGT3LCDOBS</td>
</tr>
<tr>
<td>lexoyo (@lexoyo)</td>
<td>BMUOSWOXMFUCTFKM2MRBJW4SV5KVLWV5Y</td>
</tr>
<tr>
<td>csmpls</td>
<td>B64S2JYK2CIVIWQGBU4EULZZQAI4H4MA2</td>
</tr>
<tr>
<td>Mescalinich</td>
<td>BV62NFOU5EWOOWPTT23ZMC5BDNMZLFCSO</td>
</tr>
<tr>
<td>Federico Ramallo</td>
<td>BCKBKGDO2JO6ILBJJSFENZEAUWR42S3GX</td>
</tr>
<tr>
<td>SaucyFox</td>
<td>BZLMJMGALIIY746TQDTKSXF3GSQOWSRG3</td>
</tr>
<tr>
<td>dustincurrie</td>
<td>ACF3LXV6BJGCRQZ3TXWPM43FPVGREQJMS</td>
</tr>
<tr>
<td>SHIMIZU Taku (@takuan_osho)</td>
<td>B7JZA2NTPPAITW3CSL56TI3THKHC5IMBY</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>