-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathabout.html
59 lines (57 loc) · 3.7 KB
/
about.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
---
layout: default
title: About
permalink: /about/
---
<div class="container" style="margin-top: 1em;">
<div class="row">
<div class="col-sm">
<h1>About Us</h1>
<p>Berkeley is one of the cradles of modern theoretical computer science. Over the last thirty years, our students and professors have contributed to fundamental progress in complexity theory, optimization, algorithmic game theory, cryptography, quantum computing and more. Within these areas, we see a thriving interest among undergraduates that is stronger than it has been before, but at the same time, many of our classmates also find these areas largely unapproachable.</p>
<p>From students who are still taking CS70 to those who have already finished graduate seminar courses in theory, our goal is to create a broader community for students of all interests and backgrounds to learn and get involved in theoretical computer science. Through social events, study groups, talks, seminars, and annual decals, we hope to explore the mathematical foundations of CS as well as its intrinsic connections other studies: economics through computational game theory and mechanism design, physics through random structures and quantum computing, biology, and mathematics.</p>
<p>We try to make our events not only educative and enlightening, but also approachable and fun. If you're interested, here are some ways you can get involved!</p>
</div>
</div>
<hr>
<div class="row">
<div class="col-sm">
<h4>Meet our Members</h4>
<table class="table members-table">
{# <tr class="row">
<td class="col-sm-4 members-cell">
<img class="members-image" src="/assets/img/members/member-jonathan-1.png">
<div class="members-name">Jonathan Liu</div>
<div class="members-role">President</div>
<div class="members-email">liujon23 (at) berkeley.edu</div>
<div class="members-description">Fourth-year Math/CS student. Holds as the core tenet of modern civilization that all foods can be classified as soup, salad, and/or sandwich.</div>
</td>
<td class="col-sm-4 members-cell">
<img class="members-image" src="/assets/img/members/member-jeff-1.jpg">
<div class="members-name">Jeff Xu</div>
<div class="members-role">Vice President</div>
<div class="members-email">jeffxusichao (at) berkeley.edu</div>
<div class="members-description">Third year CS and Math major and believer in the "so and so" optimality <img src="https://i.imgur.com/7qttfnm.gif" style="height: 15px; width: 15px;">.</div>
</td>
<td class="col-sm-4 members-cell">
<img class="members-image" src="/assets/img/members/member-antaresc-1.jpg">
<div class="members-name">Antares Chen</div>
<div class="members-role">Member in Spirit</div>
<div class="members-email">antaresc (at) berkeley.edu</div>
<div class="members-description">Do you ever stare at your toaster and wonder, "why ducks?"</div>
</td>
</tr>
<tr class="row"> #}
{% for member in site.members %}
<td class="col-sm-4 members-cell">
<img class="members-image" src="{{ member.img }}">
<div class="members-name">{{ member.name }}</div>
<div class="members-role">{{ member.role }}</div>
<div class="members-email">{{ member.email }}</div>
<div class="members-description">{{ member.description }}</div>
</td>
{% endfor %}
</tr>
</table>
</div>
</div>
</div>