-
Notifications
You must be signed in to change notification settings - Fork 1
/
learn.html
107 lines (87 loc) · 4.63 KB
/
learn.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Hyper Hyper Space</title>
<meta name="description" content="Open-data p2p apps running inside a web browser.">
<meta name="author" content="Santiago Bazerque">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/cavepaint.css">
<link rel="stylesheet" href="css/hhs.css">
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
</head>
<body class="black inner-gutter-top starfield">
<nav id="nav" class="bar fixed top inner-page-width black padding no-padding-top no-padding-bottom gutter-bottom">
<div class="relative">
<h1 class="no-margin-top no-margin-bottom"><a href="/" class="no-underline"><img src="logos/HHS_Logo_small.png" alt="Hyper Hyper Space"></a></h1>
<div class="absolute top right text-margin-top">
<ul class="no-list-style">
<li class="float-left margin-right"><a href="./index.html">Intro</a></li>
<li class="float-left margin-right">Learn More</li>
<li class="float-left"><a href="https://github.com/hyperhyperspace/hyperhyperspace-core">Code</a></li>
</ul>
</div>
</div>
</nav>
<br class="">
<div class="nav placeholder gutter-bottom"></div>
<section class="padding gutter-top gutter-bottom inner-page-width">
<div class="no-padding-top gutter-bottom"> <!-- inner-gutter -->
<p class="big text-center black">
How does all this work?
</p>
<section class="no-margin inner-text-width">
<p>
The Hyper Hyper Space <a href="https://github.com/hyperhyperspace/" target="_blank">open source libraries</a> provide the building blocks to create new types of
spaces. Internally, a space is represented as an <span class="light yellow text-padding">immutable append-only DAG</span>. This DAG is used
to encode cryptographically secure commutative operations, that allow the space contents to change
(an extension of the ideas used in CRDTs).
</p>
<p class="gutter-bottom">
This enables all the synchronization protocols to work regardless of the type of the space. After
creating HHS-valid datatypes, a <span class="light yellow text-padding">peer-to-peer network overlay</span> will synchronize them automatically.
The library can be run as a <span class="light yellow text-padding">standalone program</span>, or <span class="light yellow text-padding">inside a web browser</span> (using IndexedDB for
storage and WebRTC and WebSockets as transports). Thus, a space can be opened just by visiting
a static website, that becomes a full peer in Hyper Hyper Space.
</p>
</section>
</div>
<footer class="gutter-top text-center text-width tablet margin-auto gutter-bottom">
<a href="https://github.com/hyperhyperspace/hyperhyperspace-core" class="button base-color big padding margin-bottom" target="_blank"> <!--bright warm teal-->Get the code</a>
</footer>
</section>
</section>
</div>
<footer class="padding inner-page-width light warm black">
<div class="three-column trailing desktop">
<div>
<h6>Contribute</h6>
<ul>
<li>
<a href="https://github.com/hyperhyperspace/hyperhyperspace-core/">Core library</a>
</li>
<li>
<a href="https://github.com/hyperhyperspace/">All HHS modules</a>
</li>
<li>
<a href="https://github.com/hyperhyperspace/hyperhyperspace-core/issues">Open issues</a>
</li>
</ul>
</div>
<div>
<h6>Join HHS</h6>
<ul>
<li>
<a href="https://hyperhyper.space/chat-window#/room/en/suburb-suburb-awake" target="_blank">Live chat</a>
</li>
</ul>
</div>
<div>
<p>HHS is committed to building a better internet for everyone.</p>
<p>Site built with <a href="https://cavepaint.github.io/cavepaintcss/">Cavepaint</a>.</p>
</div>
</div>
</footer>
</div>
</body>
</html>