-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (43 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<title>The Secret Lives of Data</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link href="styles/bootstrap/bootstrap-3.0.2.css" rel="stylesheet">
<script src="scripts/jquery/jquery-2.0.3.min.js"></script>
<script src="scripts/bootstrap/bootstrap-3.0.2.min.js"></script>
</head>
<body>
<header id="header">
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="/">
Visualize the world
</a>
</div>
</div>
</nav>
</header>
<div class="container">
<div class="row">
<div class="col-md-12">
<h2><u>Visualizations</u></h2>
<h3><a href="/paxos/basic-paxos">Basic-Paxos: The ancestor of consensus algorithm</a></h3>
<h3><a href="/paxos/multi-paxos">Multi-Paxos: A round of negotiation led to consensus on multiple Proposals</a></h3>
<h3><a href="/raft">Raft: Understandable Distributed Consensus</a></h3>
<h3><a href="/kafka/basics">Basic-Kafka</a></h3>
</div>
</div>
</div>
<div class="container" style="margin-top:40px">
<div class="row">
<div class="col-md-12">
<em>This project refers to <a href="https://github.com/benbjohnson/thesecretlivesofdata" target="_blank">The Secret Lives of Data</a>.</em>
<br/>
<em>For questions and comments please visit our <a href="https://github.com/shihuili1218/visual" target="_blank">Github page</a>.</em>
</div>
</div>
</div>
</body>
</html>