forked from cleemit/web3mit
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
554 lines (397 loc) · 21.4 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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>DeSoc@MIT</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- =======================================================
* Template Name: Day - v4.9.0
* Template URL: https://bootstrapmade.com/day-multipurpose-html-template-for-free/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="d-flex align-items-center">
<div class="container d-flex align-items-center justify-content-between">
<h1 class="logo"><a href="index.html">DeSoc@MIT</a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html" class="logo"><img src="assets/img/logo.png" alt="" class="img-fluid"></a>-->
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">Mission</a></li>
<li><a class="nav-link scrollto" href="#team">Faculty</a></li>
<li><a class="nav-link scrollto " href="#why-us">Research pillars</a></li>
<li><a class="nav-link scrollto" href="#services">Courses</a></li>
<li><a class="nav-link scrollto" href="#portfolio">Videos</a></li>
<li><a class="nav-link scrollto" href="#cta">Sign-up</a></li>
<li><a href="index copy.html">Event</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex align-items-center">
<div class="container position-relative" data-aos="fade-up" data-aos-delay="500">
<h1>Decentralized Society<br>
+ Web3 at MIT</h1>
<a href="https://forms.gle/qyP8g5jHixpvxNkx6" class="btn-get-started scrollto" target="_blank">Sign-up for future updates</a>
</div>
</section><!-- End Hero -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="about">
<div class="container">
<div class="row">
<div class="col-lg-6 order-1 order-lg-2" data-aos="fade-left">
<img src="assets/img/about.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-6 pt-4 pt-lg-0 order-2 order-lg-1 content" data-aos="fade-right">
<p>
This October, we’re inviting stakeholders to help shape the creation of a new program at the MIT Media Lab focused on responsibly advancing research and development in decentralized technologies.
</p>
<p>
As with the internet, this next wave of decentralized technologies is likely to reshape society. To ensure we realize the greatest opportunities, and mitigate the greatest risks, of these emerging technologies at scale, we’re bringing together leaders from across the globe including open source communities, technology companies, nonprofits, local, state, and federal governments, as well as researchers in academia and industry. The Media Lab program is currently focused on three emerging areas:
</p>
<ul>
<li><i class="bi bi-check-circle"></i> Digital Currencies </li>
<li><i class="bi bi-check-circle"></i> Decentralized AI </li>
<li><i class="bi bi-check-circle"></i> Computational Privacy and Security</li>
</ul>
<p>
Despite the promise of these technologies, uncertainty remains around crucial use cases, as well as around scalability and security. Proponents envision a future that is designed to be more resilient, equitable, secure, participatory, and open. This future requires a neutral place for public and private-sector leaders to effectively engage with leading academics on a range of complex questions, choices, and trade offs.
</p>
<p>
A lack of coordinated academic leadership could limit the potential of these emerging technologies in the domains of digital health, supply-chain logistics, and climate science, as well as block them from addressing some of the most challenging problems and inequities in our centralized tech platforms and financial systems. Academic leadership will also help address systemic risk in the space.
</p>
<p>
The program will support several scientists and students at MIT. The activities of the program span five areas (1) Research in the three pillars with an emphasis on responsible innovation and shared prosperity (2) Code base and shared data sets among the members (3) APIs, standards and case studies in the emerging areas, (4) Roundtable meetings with stakeholders and events and (5) Entrepreneurial ecosystem of startups, foundations and corporate ventures.
</p>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Team Section ======= -->
<section id="team" class="team">
<div class="container">
<div class="section-title">
<span>Faculty</span>
<h2>Faculty</h2>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="zoom-in">
<div class="member">
<img src="assets/img/team/team-1.png" alt="">
<h4>Ramesh Raskar</h4>
<span>MIT Media Lab</span>
<p>
Associate Director and Associate Professor at MIT Media Lab
</p>
<div class="social">
<a href="https://www.linkedin.com/in/raskar/" target="_blank"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="zoom-in">
<div class="member">
<img src="assets/img/team/team-2.png" alt="">
<h4>Alex 'Sandy' Pentland</h4>
<span>MIT Media Lab</span>
<p>
Director of MIT Connection Science and Professor at MIT Media Lab
</p>
<div class="social">
<a href="https://www.linkedin.com/in/alexsandypentland/" target="_blank"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="zoom-in">
<div class="member">
<img src="assets/img/team/team-3.png" alt="">
<h4>Neha Narula</h4>
<span>Digital Currency Initiative</span>
<p>
Director of the Digital Currency Initiative and a Research Scientist at the MIT Media Lab
</p>
<div class="social">
<a href="https://www.linkedin.com/in/nnarula/" target="_blank"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Team Section -->
<!-- ======= Team Section ======= -->
<section id="team" class="team">
<div class="container">
<div class="section-title">
<span>Affiliate faculty</span>
<h2>Affiliate faculty</h2>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="zoom-in">
<div class="member">
<img src="assets/img/team/joe.png" alt="">
<h4>Joe Jacobson</h4>
<span>MIT Media Lab</span>
<p>
Associate Professor at MIT Media Lab
</p>
<div class="social">
<a href="https://www.linkedin.com/in/joseph-jacobson-b91a76166/" target="_blank"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="zoom-in">
<div class="member">
<img src="assets/img/team/andy.png" alt="">
<h4>Andy Lippman</h4>
<span>MIT Media Lab</span>
<p>
Associate Director at MIT Media Lab
</p>
<div class="social">
<a href="https://www.linkedin.com/in/anlippman/" target="_blank"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch" data-aos="zoom-in">
<div class="member">
<img src="assets/img/team/jinhua.png" alt="">
<h4>Jinhua Zhao</h4>
<span>MIT Mobility Initiative</span>
<p>
Associate Professor at MIT and Director at MIT Mobility Initiative
</p>
<div class="social">
<a href="https://www.linkedin.com/in/jinhuazhao/" target="_blank"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Team Section -->
<!-- ======= Why Us Section ======= -->
<section id="why-us" class="why-us">
<div class="container">
<div class="section-title">
<span>Research pillars</span>
<h2>Research pillars</h2>
</div>
<div class="row">
<div class="col-lg-4 mt-4 mt-lg-0" data-aos="fade-up" data-aos-delay="150">
<div class="box">
<span>01</span>
<h4>Digital Currencies</h4>
<p>The demand for digitizing currency has become imminent with Web3, ushering rapid innovation in the financial sector with the growing popularity of cryptocurrencies. A decentralized society, therefore, must be able to move value across the Internet as seamlessly as it moves information.</p>
</div>
</div>
<div class="col-lg-4 mt-4 mt-lg-0" data-aos="fade-up" data-aos-delay="300">
<div class="box">
<span>02</span>
<h4>Decentralized AI</h4>
<p>The long-term goal of combining Web3 with AI is to develop and deploy a digital solution to answering a specific type of query—one that requires the sharing of edge data, with which computation must be performed, among disconnected and distrusting entities.</p>
</div>
</div>
<div class="col-lg-4" data-aos="fade-up">
<div class="box">
<span>03</span>
<h4>Computational Privacy and Security</h4>
<p>Now that we are beginning to run our entire society on decentralized digital networks, the conventional approaches to security and privacy have proven insufficient. Subsequently, our overarching goal for this research pillar is to develop privacy-preserving techniques for decentralized systems, and address the security concerns around Web3.</p>
</div>
</div>
</div>
</div>
</section><!-- End Why Us Section -->
<section id="contact" class="contact">
<div class="container">
<div class="section-title">
<span>Partner programs</span>
<h2>Partner programs</h2>
</div>
<div class="row" data-aos="fade-up">
<div class="col-lg-3 col-md-6">
<a href="https://dci.mit.edu" target="_blank"> <img src="assets/img/clients/p1.png" class="img-fluid" alt=""></a>
</div>
<div class="col-lg-3 col-md-6">
<a href="https://connection.mit.edu" target="_blank"> <img src="assets/img/clients/p2.png" class="img-fluid" alt=""></a>
</div>
<div class="col-lg-3 col-md-6">
<a href="http://splitlearning.mit.edu" target="_blank"> <img src="assets/img/clients/p3.png" class="img-fluid" alt=""></a>
</div>
<div class="col-lg-3 col-md-6">
<a href="https://www.imaginationinaction.co/buildingtheweb3ecosystem" target="_blank"> <img src="assets/img/clients/p4.png" class="img-fluid" alt=""> </a>
</div>
</div>
</div>
</section><!-- End Contact Section -->
<!-- ======= Portfolio Section ======= -->
<section id="portfolio" class="portfolio">
<div class="container">
<div class="section-title">
<span>Research Deep Dive</span>
<h2>Research Deep Dive</h2>
</div>
<center><iframe src="https://player.vimeo.com/video/765471342?h=280c0ae5d3" width="640" height="360" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe></center>
<p></p>
<p></p>
<div class="section-title">
<span>Videos</span>
<h2>Videos</h2>
</div>
<div class="row portfolio-container" data-aos="fade-up" data-aos-delay="150">
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<img src="assets/img/portfolio/ramesh2.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Web3++ Unspoken opportunities</h4>
<p>Ramesh Raskar</p>
<a href="https://www.youtube.com/watch?v=BEav6MIjmyk&t=1s" class="details-link" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<img src="assets/img/portfolio/neha.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>The future of money</h4>
<p>Neha Narula</p>
<a href="https://www.youtube.com/watch?v=pPgd7Hj3ABQ" class="details-link" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<img src="assets/img/portfolio/alex.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>(Re)Building the Economy</h4>
<p>Alex 'Sandy' Pentland</p>
<a href="https://www.youtube.com/watch?v=_V8c-MYkll0" class="details-link" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<img src="assets/img/portfolio/ramesh1.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Waze for our Pandemic Journey</h4>
<p>Ramesh Raskar</p>
<a href="https://www.youtube.com/watch?v=TutVKpgIa2s&t=113s" class="details-link" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<img src="assets/img/portfolio/demo.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>AI for Impact Demo Day</h4>
<p>Ramesh Raskar</p>
<a href="https://www.youtube.com/watch?v=SgleOksdcaI" class="details-link" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
<div class="col-lg-4 col-md-6 portfolio-item filter-app">
<img src="assets/img/portfolio/imagination.png" class="img-fluid" alt="">
<div class="portfolio-info">
<h4>Imagination in Action Web3 Summit @ MIT</h4>
<p>Imagination in Action</p>
<a href="https://www.youtube.com/watch?v=UftA0VoAtCw" class="details-link" target="_blank" title="More Details"><i class="bx bx-link"></i></a>
</div>
</div>
</div>
</div>
</section><!-- End Portfolio Section -->
<!-- ======= Services Section ======= -->
<section id="services" class="services">
<div class="container">
<div class="section-title">
<span>Courses</span>
<h2>Courses</h2>
</div>
<div class="row">
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-md-0" data-aos="fade-up" data-aos-delay="150">
<a href="https://aiforimpact.github.io" class="btn-buy" target="_blank">
<div class="icon-box">
<div class="icon"><i class="bx bx-globe"></i></div>
<h4><a href="">AI and Web3 for Impact: Venture Studio</a></h4>
<div class="btn-wrap">
<a href="https://aiforimpact.github.io" class="btn-buy" target="_blank">Learn more</a>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-md-0" data-aos="fade-up" data-aos-delay="150">
<a href="https://ocw.mit.edu/courses/mas-s62-cryptocurrency-engineering-and-design-spring-2018/" class="btn-buy" target="_blank">
<div class="icon-box">
<div class="icon"><i class="bx bx-globe"></i></div>
<h4><a href="">Cryptocurrency Engineering and Design</a></h4>
<div class="btn-wrap">
<a href="https://ocw.mit.edu/courses/mas-s62-cryptocurrency-engineering-and-design-spring-2018/" class="btn-buy" target="_blank">Learn more</a>
</div>
</div>
</a>
</div>
<div class="col-lg-4 col-md-6 d-flex align-items-stretch mt-4 mt-lg-0" data-aos="fade-up" data-aos-delay="300">
<a href="https://www.getsmarter.com/products/mit-media-lab-cryptocurrency-online-short-course" class="btn-buy" target="_blank">
<div class="icon-box">
<div class="icon"><i class="bx bx-globe"></i></div>
<h4><a href="">MIT Media Lab Cryptocurrency Course</a></h4>
<div class="btn-wrap">
<a href="https://www.getsmarter.com/products/mit-media-lab-cryptocurrency-online-short-course" class="btn-buy" target="_blank">Learn more</a>
</div>
</div>
</a>
</div>
</div>
</div>
</section><!-- End Services Section -->
<!-- ======= Cta Section ======= -->
<section id="cta" class="cta">
<div class="container" data-aos="zoom-in">
<div class="text-center">
<h3>Sign-up</h3>
<p>Sign-up to receive future updates.</p>
<a class="cta-btn" href="https://forms.gle/qyP8g5jHixpvxNkx6" target="_blank">Sign-up for future updates</a>
</div>
</div>
</section><!-- End Cta Section -->
</main><!-- End #main -->
<!-- ======= Footer ======= -->
<footer id="footer">
<div class="container">
<div class="copyright">
<h4>DeSoc@MIT</h4>
<br>
2022
</div>
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/day-multipurpose-html-template-for-free/ -->
<!-- © Copyright <a href="https://bootstrapmade.com/">BootstrapMade</a> -->
</div>
</div>
</footer><!-- End Footer -->
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<div id="preloader"></div>
<!-- Vendor JS Files -->
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>