-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathresources.html
378 lines (336 loc) · 12.5 KB
/
resources.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
<!DOCTYPE html>
<html>
<style>
.text{
visibility: visible;
}
body {
font-family: Arial, Helvetica, sans-serif;
margin: 0;
}
html {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
.column {
float: left;
width: 25%;
margin-bottom: 16px;
padding: 0 8px;
}
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
margin: 8px;
}
.about-section {
padding: 50px;
background-color: #5a2320;
color: white;
}
.container {
padding: 0 16px;
}
.container::after, .row::after {
content: "";
clear: both;
display: table;
}
.title {
color: grey;
}
.button {
border: none;
outline: 0;
display: inline-block;
padding: 8px;
color: white;
background-color: #5a2320;
text-align: center;
cursor: pointer;
width: 100%;
}
.button:hover {
background-color: rgb(107, 78, 78);
}
.collapsible {
background-color: #5a2320;
color: white;
margin-left: 10%;
margin-right: 10%;
cursor: pointer;
padding: 18px;
width: 80%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
}
.active, .collapsible:hover {
background-color: rgb(177, 106, 106);
}
.content {
padding: 0 18px;
display: none;
margin-left: 10%;
color:black;
margin-right: 10%;
width: 80%;
overflow: hidden;
background-color: #f1f1f1;
}
.collapsible:after {
color: white;
content: "+"; /* Unicode character for "plus" sign (+) */
font-size: 20px;
float: right;
margin-left: 5px;
}
.padbottom{
margin-bottom: 5%;
}
@media screen and (max-width: 650px) {
.column {
width: 100%;
display: block;
}
}
/* Add a black background color to the top navigation */
.topnav {
background-color: #5a2320;
overflow: hidden;
}
/* Style the links inside the navigation bar */
.topnav a {
float: left;
color: #ffffff;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
/* Change the color of links on hover */
.topnav a:hover {
background-color: #7a3333;
color: rgb(255, 255, 255);
}
/* Add a color to the active/current link */
.topnav a.active {
background-color: #7a3333;
color: rgb(255, 255, 255);
}
.about-section .heading{
font-size: 32px;
font-weight: 1000;
}
.about-section .paragraph{
padding-top: 15px;
font-size: 17px;
}
@media only screen and (max-device-width: 1024px) {
.topnav a{
font-size: 37px;
}
.column {
width: 50%;
display: block;
}
.about-section .heading {
font-size: 75px;
}
.about-section .paragraph {
padding-top: 20px;
font-size: 40px;
}
h1{
font-size: 75px;
}
h2 {
font-size: 50px;
}
p {
font-size: 40px;
}
button{
font-size: 35px;
}
.collapsible{
font-size: 35px;
margin-left: 5%;
margin-right: 5%;
width: 90%;
}
.collapsible:after {
font-size: 45px;
}
}
</style>
<title>Stuy Quantum</title>
<link rel="shortcut icon" type="image/jpg" href="img/stuy_quantum_logo_tr.png" />
<body>
<div class="topnav">
<a href="index.html">Home</a>
<a href="content.html">Content</a>
<a href="aboutus.html">About Us</a>
<a class="active" href="resources.html">Resources</a>
<a href="hackathons.html">Hackathons</a>
</div>
<div class="about-section">
<div class="heading" style="text-align:center">Resources</div>
<div class="paragraph" style="text-align:center">For additional information about
quantum computing topics and the field in general check out
resources below.</div>
</div>
<h2 style="text-align:center">Textbooks</h2>
<div class="row">
<div class="column">
<div class="card">
<img src="img/qiskittext.png" alt="cover" style="width:100%">
<div class="container">
<h2>Qiskit Textbook by IBM</h2>
<p>The Qiskit Textbook is a free digital resource for those
learning about quantum algorithms and computations. It is
very suitable for beginners and can be found in an
interactive form that allows one to search for specific
topics.</p>
<p><a href="https://qiskit.org/learn"><button class="button">Learn More</button></a></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="img/quantumforthecurious.webp" alt="cover" style="width:100%">
<div class="container">
<h2>Quantum Computing for the Quantum Curious</h2>
<p>This is a free digital textbook that will teach you the concepts
of quantum computing while you learn to use the Qiskit SDK. It
uses simple language with the only prerequisite being high school
physics.</p>
<p><a href="https://link.springer.com/book/10.1007/978-3-030-61601-4"><button class="button">Learn More</button></a></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="img/anappliedapproach.jpeg" alt="cover" style="width:100%">
<div class="container">
<h2>Quantum Computing: An Applied Approach</h2>
<p>The first book to give hands-on coding instruction approach on quantum computing.
It teaches the foundations of quantum computing through the lense of code.</p>
<p><a href="https://link.springer.com/book/10.1007/978-3-030-23922-0"><button class="button">Learn More</button></a></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="img/quantumforeveryone.webp" alt="cover" style="width:100%">
<div class="container">
<h2>Quantum Computing for Everyone</h2>
<p>A book designed for the general reader that provides an accessible introduction to
a new area of study: quantum computing.
</p>
<p><a href="https://mitpress.mit.edu/9780262539531/quantum-computing-for-everyone/"><button class="button">Learn More</button></a></p>
</div>
</div>
</div>
</div>
<h2 style="text-align:center;">Videos</h2>
<div class="row">
<div class="column">
<div class="card">
<img src="img/richardwang.png" alt="cover" style="width:100%">
<div class="container">
<h2>Introduction to Quantum Computing Series by Richard Wang</h2>
<p>In these lectures Richard Wang covers the basics of quantum
computing and some of the applications of the topics learned.
</p>
<p><a href="https://youtu.be/7qbavq8wFZM?si=8XjlJApynSMShYJs"><button class="button">Learn More</button></a></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="img/quantumcompexplain.jpeg" alt="cover" style="width:100%">
<div class="container">
<h2>Quantum Computers Explained - Limits of Human Technology</h2>
<p>This video by Kurzgesat gives a very brief overview of what quantum
computing is, but explains it in a very understandable manner and
covers the importance of this field.
</p>
<p><a href="https://www.youtube.com/watch?v=JhHMJCUmq28&t=7s"><button class="button">Learn More</button></a></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="img/ryan.jpeg" alt="cover" style="width:100%">
<div class="container">
<h2>Quantum Computation and Information at CMU</h2>
<p>Ryan O'Donnell is a professor at Carnegie Mellon University and
teaches a college course on quantum computing. He has a playlist
on Youtube of his recorded lectures for the semester and it covers
many of the major quantum computing topics from the basics.
</p>
<p><a href="https://www.youtube.com/watch?v=78tSf2R1huk&list=PLm3J0oaFux3YL5qLskC6xQ24JpMwOAeJz&pp=iAQB"><button class="button">Learn More</button></a></p>
</div>
</div>
</div>
<div class="column">
<div class="card">
<img src="img/lectureseries.jpg" alt="cover" style="width:100%">
<div class="container">
<h2>Nathan Wiebe's Quantum Computing Videos</h2>
<p>Nathan Wiebe is a researcher in quantum computing at the Univeristy of Washington who focuses on
quantum methods for machine learning and simulation of physical
systems. On Youtube, he has a series of lectures that covers many key
quantum computing topics.
</p>
<p><a href="https://www.youtube.com/@nathanwiebe5305/videos"><button class="button">Learn More</button></a></p>
</div>
</div>
</div>
</div>
<h2 style="text-align:center;">FAQ</h2>
<div class="padbottom">
<button class="collapsible">What is Quantum Computing?</button>
<div class="content">
<p>Quantam computing is a field that combines computer science, physics,
and mathematics to solves complex problems faster than possible for
classical computers. It ueses topics in quantum mechanics and linear
algebra as its foundation and the coding is done through Python.
</p>
</div>
<button class="collapsible">Is prior experience necessary?</button>
<div class="content">
<p>Absolutely no prior experience is necessary. We accept members of
any skill level and you will learn everything you need to know here. That
being said, members from any grade level are also welcome.
</p>
</div>
<button class="collapsible" ">Does StuyQuantum participate in Hackathons?</button>
<div class="content">
<p>Yes, it does! We participate in the annual MIT iQuHack competition and in
teh 2023-2024 school year we participated in Qiskit Fall Fest, which was
similiar in nature to a hackathon. More information is available at the Fall
Test tab of the navigation bar.
</p>
</div>
</div>
<script>
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.display === "block") {
content.style.display = "none";
} else {
content.style.display = "block";
}
});
}
</script>
</body>
</html>