-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (102 loc) · 5.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="keywords" content="">
<meta name="author" content="">
<title>
Home · ClawIO
</title>
<link rel="stylesheet" href="/docs.css">
<!-- Favicons -->
<link rel="apple-touch-icon-precomposed" href="/img/icon.png">
<link rel="icon" href="/favicon.ico">
</head>
<body>
<header class="masthead">
<div class="container">
<a href="/" class="masthead-logo">
<!--<span class="mega-octicon octicon-package"></span>-->
<img src="/img/icon.png" height="33px" width="150px">
</a>
<nav class="masthead-nav">
<!--a href="/manifesto">Manifesto</a>-->
<a href="https://www.gitbook.com/book/clawio/clawio/details">Documentation</a>
<a href="https://github.com/clawio" target="_blank">GitHub</a>
</nav>
</div>
</header>
<div class="jumbotron">
<div class="container">
<div class="columns">
<div class="one-half left">
<p>Cloud Synchronisation Benchmarking Framework</p>
<a href="https://clawio.gitbooks.io/clawio/content/getting/index.html" class="btn btn-reverse">
Getting started
</a>
</div>
<p class="lead" style="color:yellow">“ClawIO benchmarks cloud synchronisation protocols in order to help organisations to choose the right data backend”</p>
</div>
</div>
</div>
</div>
<div class="container about-that">
<div class="columns">
<div class="one-fourth column">
<h2>Composable</h2>
<p>ClawIO follows the micro service design and every component is encapsulated into a single logical unit. Every component is described in a Dockerfile and follows the 12 Factor App principles for coniguration</p>
</div>
<div class="one-fourth column">
<h2>Universal</h2>
<p>ClawIO is built on top of two universal technologies: HTTP and gRPC. HTTP is used for binary data handling and gRPC for inter component communication through Protocol Buffers.</p>
</div>
<div class="one-fourth column">
<h2>Language agnostic</h2>
<p>Are you a Gopher? Do you like PHP ? Node ? Rust? Haskell? Perl? You can extend the logical components of ClawIO as long as your language has libraries for creating HTTP and gRPC connections.</p>
</div>
<div class="one-fourth column">
<h2>Powerful Design</h2>
<p>ClawIO has been designed with scalability in mind. Its design is based on EOS and CERNBox, the components that power the synchronisation and sharing of the LHC data.</p>
</div>
</div>
</div>
<div class="container">
<footer class="footer centered">
<b>Copyright ClawIO 2015</b>
</footer>
</div>
<script src="/js/anchor.min.js"></script>
<script>
var selector = '.markdown-body h2, .markdown-body h3';
anchors.options = {
placement: 'left',
class: 'anchor-link'
};
anchors.add(selector);
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-67279725-1', 'auto');
ga('send', 'pageview');
</script>
<script type="text/javascript">
!function(){var analytics=window.analytics=window.analytics||[];if(!analytics.initialize)if(analytics.invoked)window.console&&console.error&&console.error("Segment snippet included twice.");else{analytics.invoked=!0;analytics.methods=["trackSubmit","trackClick","trackLink","trackForm","pageview","identify","reset","group","track","ready","alias","page","once","off","on"];analytics.factory=function(t){return function(){var e=Array.prototype.slice.call(arguments);e.unshift(t);analytics.push(e);return analytics}};for(var t=0;t<analytics.methods.length;t++){var e=analytics.methods[t];analytics[e]=analytics.factory(e)}analytics.load=function(t){var e=document.createElement("script");e.type="text/javascript";e.async=!0;e.src=("https:"===document.location.protocol?"https://":"http://")+"cdn.segment.com/analytics.js/v1/"+t+"/analytics.min.js";var n=document.getElementsByTagName("script")[0];n.parentNode.insertBefore(e,n)};analytics.SNIPPET_VERSION="3.1.0";
analytics.load("71HWLcdl4ZvwxRgiEdO4UtOK7cvwZTsS");
analytics.page()
}}();
</script>
<script>
!function(g,s,q,r,d){r=g[r]=g[r]||function(){(r.q=r.q||[]).push(
arguments)};d=s.createElement(q);q=s.getElementsByTagName(q)[0];
d.src='//d1l6p2sc9645hc.cloudfront.net/tracker.js';q.parentNode.
insertBefore(d,q)}(window,document,'script','_gs');
_gs('GSN-745963-O');
</script>
</body>
</html>