-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
131 lines (123 loc) · 5.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>CrypDist</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
/* Remove the navbar's default margin-bottom and rounded borders */
.navbar {
margin-bottom: 0;
border-radius: 0;
}
/* Add a gray background color and some padding to the footer */
footer {
background-color: #f2f2f2;
padding: 25px;
}
</style>
</head>
<body>
<div class="jumbotron">
<div class="container text-center">
<h1>CrypDist</h1>
<p>An Encrypting Distribution System</p>
</div>
</div>
<div class="container-fluid bg-3 text-center">
<h3>Description</h3><br>
<div style="left:25%; right:25%;"class="row">
<p style="font-size: 18px; text-align: justify; padding-left:5%; padding-right:5%;">
Data sharing is crucial for genomics research as it facilitates discovery of recurrent mutations that may contribute to human disease. However, as noted by the Cancer Gene Trust Network and the Global Alliance for Genomics & Health, shared data must be safe from being removed from databases by financial or political reasons. Here we introduce, CrypDist, a fully decentralized system based on the blockchain technology that enables synchronized data sharing among researchers with protection against data removal. It also provides version tracking for future updates to the data, avoids third-party access using cryptographic data structures, and it maintains URL links to large amounts of additional data sets, which are not feasible to distribute, to be kept within an existing content delivery network.
</p>
</div>
</div><br>
<div class="container-fluid bg-3 text-center">
<h3>Project Team</h3><br>
<div class="container-fluid bg-4 text-center ">
<div class="col-md-2 col-md-offset-1">
<img src="images/gizem.png" class="img-circle" style="width:80%" alt="Image">
<p style="font-size: 16px;">Gizem Çaylak is interested in computer vision, bioinformatics and distributed systems. Her hobbies
are playing violin, travelling, and reading.
</p>
</div>
<div class="col-md-2">
<img src="images/oguz.png" class="img-circle" style="width:80%" alt="Image">
<p style="font-size: 16px;">Oguz Demir is interested in distributed systems, parallel computing and cloud architecture.
His hobby is playing guitar.
</p>
</div>
<div class="col-md-2">
<img src="images/kaan.png" class="img-circle" style="width:80%" alt="Image">
<p style="font-size: 16px;">Kaan Elgin is interested in computer vision and parallel and distributed systems. His hobbies
are reading, listening to music, swimming, and fitness.
</p>
</div>
<div class="col-md-2">
<img src="images/mfs.png" class="img-circle" style="width:80%" alt="Image">
<p style="font-size: 16px;">Mehmet Furkan Sahin is interested in distributed systems, databases and cloud architecture.
He enjoys competing in programming competitions. His hobbies are hiking, travelling, listening to music, and swimming.
</p>
</div>
<div class="col-md-2">
<img src="images/onur.png" class="img-circle" style="width:80%" alt="Image">
<p style="font-size: 16px;">Onur Uygur is interested in database systems, machine learning and distributed systems.
His hobbies are playing chess and doing windsurfing.
</p>
</div>
</div>
</div><br>
<div style="left:40%;right:40%;"class="container-fluid bg-6 text-center">
<div class="col-md-6">
<h3>Supervisor</h3><br>
<div class="container-fluid bg-6 text-center ">
<div class="col-md-12">
<img src="images/calkan.png" class="img-circle" style="width:30%" alt="Image">
<p style="font-size: 20px;">Asst. Prof. Can Alkan
<br>
Bilkent University
</p>
</div>
</div>
</div>
<div class="col-md-6">
<h3>Innovation Expert</h3><br>
<div class="container-fluid bg-6 text-center ">
<div class="col-md-12">
<img src="images/utku.png" class="img-circle" style="width:30%" alt="Image">
<p style="font-size: 20px;">Utku Azman
<br>
<a href="https://www.citusdata.com">Citus Data</a></p>
</div>
</div>
</div>
</div>
<br>
<div style="left:20%;right:20%;" class="container-fluid bg-6 text-center">
<h3>Jury Members</h3><br>
<div class="col-md-6">
<img src="images/ercument.png" class="img-circle" style="width:30%" alt="Image">
<p style="font-size: 20px;">Asst. Prof. Ercument Cicek
<br>
Bilkent University
</p>
</div>
<div class="col-md-6">
<img src="images/korpe.png" class="img-circle" style="width:30%" alt="Image">
<p style="font-size: 20px;">Prof. Ibrahim Korpeoglu
<br>
Bilkent University
</p>
</div>
</div>
<br>
<footer style="margin-bottom:0px; bottom:0px;left:0px;right:0px;"class="container-fluid text-center">
<p>This project is created and maintained by the Team CrypDist as a Senior Project in Bilkent University</p>
<br/>
<p><a href="https://github.com/CrypDist/"> Source codes are available in GitHub! </a></p>
</footer>
</body>
</html>