Skip to content

Commit 77000c6

Browse files
committed
updated schedule
1 parent 179e391 commit 77000c6

File tree

3 files changed

+109
-2
lines changed

3 files changed

+109
-2
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"cells": [],
3+
"metadata": {},
4+
"nbformat": 4,
5+
"nbformat_minor": 5
6+
}

Untitled.ipynb

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "code",
5+
"execution_count": 3,
6+
"id": "859a1444",
7+
"metadata": {},
8+
"outputs": [
9+
{
10+
"name": "stdout",
11+
"output_type": "stream",
12+
"text": [
13+
"tv\n",
14+
"UD\n",
15+
"xz\n",
16+
"None\n"
17+
]
18+
}
19+
],
20+
"source": [
21+
"def ct(s):\n",
22+
" t = ''\n",
23+
" for i in range(3):\n",
24+
" t = s[0] + s[-1]\n",
25+
" s = s[1:-1]\n",
26+
" print(t.lower() if (i % 2 == 0) else t.upper())\n",
27+
"print(ct('TUXZDV'))"
28+
]
29+
},
30+
{
31+
"cell_type": "code",
32+
"execution_count": null,
33+
"id": "0199240f",
34+
"metadata": {},
35+
"outputs": [],
36+
"source": []
37+
}
38+
],
39+
"metadata": {
40+
"kernelspec": {
41+
"display_name": "Python 3 (ipykernel)",
42+
"language": "python",
43+
"name": "python3"
44+
},
45+
"language_info": {
46+
"codemirror_mode": {
47+
"name": "ipython",
48+
"version": 3
49+
},
50+
"file_extension": ".py",
51+
"mimetype": "text/x-python",
52+
"name": "python",
53+
"nbconvert_exporter": "python",
54+
"pygments_lexer": "ipython3",
55+
"version": "3.10.6"
56+
}
57+
},
58+
"nbformat": 4,
59+
"nbformat_minor": 5
60+
}

src/components/Schedule.js

Lines changed: 43 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,15 @@ const fridaySchedule = () => {
3939
<p>9:00 - 9:30 PM</p>
4040
</div>
4141
<div class="col">
42-
<p>Workshop A / Team Match B</p>
42+
<p>Workshop A</p>
43+
</div>
44+
</div>
45+
<div class="schedule-event workshop">
46+
<div class="col">
47+
<p>9:00 - 9:25 PM</p>
48+
</div>
49+
<div class="col">
50+
<p>Team Matching B/ Cup Stacking (MLH)</p>
4351
</div>
4452
</div>
4553
<div class="schedule-event workshop">
@@ -50,6 +58,23 @@ const fridaySchedule = () => {
5058
<p>Workshop B</p>
5159
</div>
5260
</div>
61+
<div class="schedule-event workshop">
62+
<div class="col">
63+
<p>9:30 - 10:00 PM</p>
64+
</div>
65+
<div class="col">
66+
<p>Orbital Edge Computing | Machine Learning (GDSC)</p>
67+
<p class="details">Interested in learning TensorFlow? Come <a href="https://gdsc.community.dev/events/details/developer-student-clubs-carnegie-mellon-university-presents-gdsc-presents-machine-learning-in-tensorflow-a-hackcmu-workshop/" class="custom-link">attend our workshop</a> with GDSC!</p>
68+
</div>
69+
</div>
70+
<div class="schedule-event workshop">
71+
<div class="col">
72+
<p>10:00 - 10:25 PM</p>
73+
</div>
74+
<div class="col">
75+
<p>Meet the Team (ACM) | Capture the Flag (picoCTF)</p>
76+
</div>
77+
</div>
5378
<div class="schedule-event workshop">
5479
<div class="col">
5580
<p>10:30 - 11:00 PM</p>
@@ -64,7 +89,7 @@ const fridaySchedule = () => {
6489
</div>
6590
<div class="col">
6691
<p>Midnight Snack</p>
67-
<p class="details">Among Us / Scavengar Hunt</p>
92+
<p class="details">Scavengar Hunt!</p>
6893
</div>
6994
</div>
7095
</div>
@@ -84,6 +109,22 @@ const saturdaySchedule = () => {
84109
<p class="details">Get breakfast after a long night of hacking!</p>
85110
</div>
86111
</div>
112+
<div class="schedule-event foods">
113+
<div class="col">
114+
<p>10:00 - 10:30 AM</p>
115+
</div>
116+
<div class="col">
117+
<p>The Trade Desk Info Session</p>
118+
</div>
119+
</div>
120+
<div class="schedule-event foods">
121+
<div class="col">
122+
<p>10:30 - 11:00 AM</p>
123+
</div>
124+
<div class="col">
125+
<p>Sandia National Labs Info Session</p>
126+
</div>
127+
</div>
87128
<div class="schedule-event workshop">
88129
<div class="col">
89130
<p>10:00 - 11:30 PM</p>

0 commit comments

Comments
 (0)