Skip to content

Commit 905c37e

Browse files
authored
Merge pull request #26 from codingandcommunity/schedule-patch
Event details
2 parents 798b575 + 443bded commit 905c37e

File tree

3 files changed

+131
-3
lines changed

3 files changed

+131
-3
lines changed

Diff for: src/components/launchpad/Prizes.jsx

+4
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ const Prize = () => (
5757
<p>This award is given to a team that shows perseverence and learns new skills while tackling a difficult challenge.</p>
5858
</div>
5959
</PrizeContent>
60+
<Header title='Scavenger Hunt Challenge' />
61+
<PrizeContent>
62+
<p>New this year, we will have a collection of programming problems of varying difficulty. Teams or individuals can earn points by solving them. Whoever scores the most points will win the Scavenger Hunt Award.</p>
63+
</PrizeContent>
6064
</PrizeSection>
6165
);
6266

Diff for: src/components/launchpad/Schedule.jsx

+98-2
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,55 @@ const Schedule = () => (
8787
9:00 am
8888
</td>
8989
<td>
90-
Get Started
90+
Intro, Form Teams
91+
</td>
92+
</tr>
93+
<tr>
94+
<td>
95+
9:30 am
96+
</td>
97+
<td>
98+
Start Hacking!
99+
</td>
100+
</tr>
101+
<tr>
102+
<td>
103+
10:00 am
104+
</td>
105+
<td>
106+
Workshop: Python in 60 minutes or less
107+
</td>
108+
</tr>
109+
<tr>
110+
<td>
111+
11:30 am
112+
</td>
113+
<td>
114+
Workshop: Basic Web Development
115+
</td>
116+
</tr>
117+
<tr>
118+
<td>
119+
12:00 pm
120+
</td>
121+
<td>
122+
Lunch break
123+
</td>
124+
</tr>
125+
<tr>
126+
<td>
127+
1:00 pm
128+
</td>
129+
<td>
130+
Workshop: Art with Computer Science
131+
</td>
132+
</tr>
133+
<tr>
134+
<td>
135+
2:30 pm
136+
</td>
137+
<td>
138+
Workshop: Version Control with Git
91139
</td>
92140
</tr>
93141
<tr>
@@ -121,12 +169,60 @@ const Schedule = () => (
121169
Resume Hacking
122170
</td>
123171
</tr>
172+
<tr>
173+
<td>
174+
09:30 am
175+
</td>
176+
<td>
177+
Workshop: Web APIs
178+
</td>
179+
</tr>
180+
<tr>
181+
<td>
182+
10:30 am
183+
</td>
184+
<td>
185+
Workshop: Cryptography
186+
</td>
187+
</tr>
188+
<tr>
189+
<td>
190+
12:00 pm
191+
</td>
192+
<td>
193+
Lunch break
194+
</td>
195+
</tr>
196+
<tr>
197+
<td>
198+
1:00 pm
199+
</td>
200+
<td>
201+
Workshop: Pitching
202+
</td>
203+
</tr>
204+
<tr>
205+
<td>
206+
2:00 pm
207+
</td>
208+
<td>
209+
Guest Speaker
210+
</td>
211+
</tr>
212+
<tr>
213+
<td>
214+
3:00 pm
215+
</td>
216+
<td>
217+
Project Pitches, Judging
218+
</td>
219+
</tr>
124220
<tr>
125221
<td>
126222
4:00 pm
127223
</td>
128224
<td>
129-
Project Submission Deadline
225+
Awards Presentation, Wrap-up!
130226
</td>
131227
</tr>
132228
</tbody>

Diff for: src/components/launchpad/Workshops.jsx

+29-1
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,36 @@ const Workshop = () => (
4848
Workshops to be announced soon!
4949
</h3>
5050
<WorkshopContent>
51+
<div>
52+
<h3>Python in 60 minutes or less</h3>
53+
<p>Never programmed before? Start here! We'll get you started in a common introductory programming language used by professionals around the world. No outside software required!</p>
54+
</div>
55+
<div>
56+
<h3>Basic Web Dev</h3>
57+
<p>How does a website work? How do I make one? Find out at this workshop, which will show you the three pillars of web development: HTML, CSS, and Javascript.</p>
58+
</div>
59+
<div>
60+
<h3>Art with CS</h3>
61+
<p>Code is often beautiful. Learn how to show your creative side with the Processing API, a toolkit designed for making beautiful visualizations programmatically.</p>
62+
</div>
63+
<div>
64+
<h3>Version Control with Git</h3>
65+
<p>Have you ever spent hours on a word doc only to forget to save it? We can't help with that, but Git can help you keep your code organized and understandable.</p>
66+
</div>
67+
<div>
68+
<h3>Web APIs</h3>
69+
<p>Want to find all the restaurants within a mile of your home? Google Maps can do it for you, with your own code! Learn how to get your programs communicating with the tools of the internet.</p>
70+
</div>
71+
<div>
72+
<h3>Cryptography</h3>
73+
<p>Take a peek at cybersecurity through the science of secret codes. Learn some historical ciphers, how to crack them, and ways computers keep your information safe.</p>
74+
</div>
75+
<div>
76+
<h3>Pitching</h3>
77+
<p>So you've made a project, how do you get other people excited about it? This workshop will get you ready to show your project off for judging.</p>
78+
</div>
5179
</WorkshopContent>
5280
</WorkshopSection>
5381
);
5482

55-
export default Workshop;
83+
export default Workshop;

0 commit comments

Comments
 (0)