Skip to content

Event details #26

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Sep 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/components/launchpad/Prizes.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ const Prize = () => (
<p>This award is given to a team that shows perseverence and learns new skills while tackling a difficult challenge.</p>
</div>
</PrizeContent>
<Header title='Scavenger Hunt Challenge' />
<PrizeContent>
<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>
</PrizeContent>
</PrizeSection>
);

Expand Down
100 changes: 98 additions & 2 deletions src/components/launchpad/Schedule.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,55 @@ const Schedule = () => (
9:00 am
</td>
<td>
Get Started
Intro, Form Teams
</td>
</tr>
<tr>
<td>
9:30 am
</td>
<td>
Start Hacking!
</td>
</tr>
<tr>
<td>
10:00 am
</td>
<td>
Workshop: Python in 60 minutes or less
</td>
</tr>
<tr>
<td>
11:30 am
</td>
<td>
Workshop: Basic Web Development
</td>
</tr>
<tr>
<td>
12:00 pm
</td>
<td>
Lunch break
</td>
</tr>
<tr>
<td>
1:00 pm
</td>
<td>
Workshop: Art with Computer Science
</td>
</tr>
<tr>
<td>
2:30 pm
</td>
<td>
Workshop: Version Control with Git
</td>
</tr>
<tr>
Expand Down Expand Up @@ -121,12 +169,60 @@ const Schedule = () => (
Resume Hacking
</td>
</tr>
<tr>
<td>
09:30 am
</td>
<td>
Workshop: Web APIs
</td>
</tr>
<tr>
<td>
10:30 am
</td>
<td>
Workshop: Cryptography
</td>
</tr>
<tr>
<td>
12:00 pm
</td>
<td>
Lunch break
</td>
</tr>
<tr>
<td>
1:00 pm
</td>
<td>
Workshop: Pitching
</td>
</tr>
<tr>
<td>
2:00 pm
</td>
<td>
Guest Speaker
</td>
</tr>
<tr>
<td>
3:00 pm
</td>
<td>
Project Pitches, Judging
</td>
</tr>
<tr>
<td>
4:00 pm
</td>
<td>
Project Submission Deadline
Awards Presentation, Wrap-up!
</td>
</tr>
</tbody>
Expand Down
30 changes: 29 additions & 1 deletion src/components/launchpad/Workshops.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,36 @@ const Workshop = () => (
Workshops to be announced soon!
</h3>
<WorkshopContent>
<div>
<h3>Python in 60 minutes or less</h3>
<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>
</div>
<div>
<h3>Basic Web Dev</h3>
<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>
</div>
<div>
<h3>Art with CS</h3>
<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>
</div>
<div>
<h3>Version Control with Git</h3>
<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>
</div>
<div>
<h3>Web APIs</h3>
<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>
</div>
<div>
<h3>Cryptography</h3>
<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>
</div>
<div>
<h3>Pitching</h3>
<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>
</div>
</WorkshopContent>
</WorkshopSection>
);

export default Workshop;
export default Workshop;