2022-05-26 22:09:31 -07:00
<!DOCTYPE html>
< html lang = "en" >
<!--
2022-06-12 13:51:47 -07:00
Gilroy Hacks Website Source Code -> HTML (https://gilroyhacks.com)
2022-05-26 22:09:31 -07:00
2022-07-23 18:24:23 -07:00
Web-Designed by James Dinh ᓚᘏᗢ from scratch using HTML, CSS, and JS
2022-05-26 22:09:31 -07:00
For more info, contact jamesdinh77 (at) protonmail (dot) com
2022-06-12 13:51:47 -07:00
Copyright Disclaimer: This Source Code is Copyright (c) 2022 Gilroy Hacks All Rights Reserved.
2022-05-26 22:09:31 -07:00
-->
< head >
< meta charset = "utf-8" / >
< meta name = "viewport" content = "width=device-width, initial-scale=1, shrink-to-fit=no" >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" >
< title > Gilroy Hacks< / title >
< link href = "css/general.css" rel = "stylesheet" type = "text/css" media = "all" >
2022-05-29 16:50:10 -07:00
< link href = "css/scroll_nav.css" rel = "stylesheet" type = "text/css" media = "all" >
2022-06-06 20:44:54 -07:00
< link rel = "stylesheet" href = "css/leaflet.css" / >
2022-06-01 00:54:16 -07:00
< link rel = "icon" href = "img/Gilroy-Hacks-Logo-icon-tp.ico" >
2022-07-25 18:14:03 -07:00
< link rel = "apple-touch-icon" href = "img/Gilroy_Hacks_Logo_app.png" >
2022-06-13 17:33:43 -07:00
2022-05-26 22:09:31 -07:00
< meta name = "author" content = "Gilroy Hacks" >
< meta name = "copyright" content = "This site and its pages are Copyright (c) 2022 Gilroy Hacks All Rights Reserved." >
2022-07-19 01:01:21 -07:00
< meta name = "description" content = "Gilroy Hacks is a student-led organization focused on promoting community engagement and improving STEM exposure for local middle/high school students." >
2022-05-26 22:09:31 -07:00
< meta name = "keywords" content = "Gilroy Hacks, GilroyHacks, Gilroy, hackathon, Bay Area, GECA, Dr. TJ Owens Gilroy Early College Academy" >
2022-06-13 17:33:43 -07:00
2022-07-17 22:55:34 -07:00
<!-- JavaScript Refs -->
< script defer src = "js/leaflet.js" > < / script >
< script defer src = "js/map.js" > < / script >
< script defer src = "js/general.js" > < / script >
2022-06-13 17:33:43 -07:00
< script defer data-domain = "gilroyhacks.com" src = "https://plausible.gilroyhacks.com/js/plausible.js" > < / script >
2022-05-26 22:09:31 -07:00
< style >
@font-face {
font-family: "Glacial Indifference";
src: url("font/GlacialIndifference-Regular.otf") format('opentype');
font-display: swap;
}
body {
position: relative;
2022-06-02 12:13:07 -07:00
background-color: #0d1117 !important;
2022-05-26 22:09:31 -07:00
color: #f2f1ef !important;
font-family: "Glacial Indifference";
}
2022-07-08 23:14:11 -07:00
2022-07-03 22:13:21 -07:00
/* width */
::-webkit-scrollbar {
width: 15px;
}
/* Track */
::-webkit-scrollbar-track {
2022-07-04 00:17:00 -07:00
box-shadow: inset 0 0 2px grey;
2022-07-03 22:13:21 -07:00
background-color: rgb(12, 14, 26);
}
/* Handle */
::-webkit-scrollbar-thumb {
background: rgb(38, 45, 75);
border-radius: 5px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: rgb(31, 36, 61);
}
2022-05-26 22:09:31 -07:00
< / style >
2022-07-18 22:11:49 -07:00
<!-- For icons, go here: https://iconsvg.xyz/ or https://icomoon.io/app/#/select -->
2022-07-23 18:01:46 -07:00
<!-- Compress Images: https://imageresizer.com/image - compressor -->
2022-05-26 22:09:31 -07:00
< / head >
2022-05-31 20:04:23 -07:00
< body >
2022-05-29 16:50:10 -07:00
<!-- Nav -->
< nav id = "navBar" >
2022-05-29 22:39:53 -07:00
< a id = "nav-logo-a" href = "./" >
2022-07-25 18:14:03 -07:00
< img id = "nav-logo" src = "img/Gilroy_Hacks_Logo_Summer_wide_2.png" alt = "logo" / >
2022-05-29 16:50:10 -07:00
< / a >
2022-06-27 12:50:52 -07:00
< div id = "banner" >
2022-06-29 11:38:57 -07:00
< p id = "banner-text" > < a class = "navlink" id = "timer-link" href = "#timeline" > Opening Ceremony< / a > in
2022-07-21 18:27:04 -07:00
< span id = "timer" > ---< / span >
2022-06-29 11:38:57 -07:00
< / p >
2022-06-27 12:50:52 -07:00
< / div >
2022-05-29 22:39:53 -07:00
< div id = "nav-links-container" >
2022-07-26 00:49:00 -07:00
< input type = "checkbox" id = "check" >
2022-05-29 22:39:53 -07:00
< label for = "check" class = "checkbtn" >
< img src = "img/bars.png" loading = "lazy" height = "17" width = "25" alt = "Bars" / >
< / label >
2022-06-16 16:39:15 -07:00
< a onclick = "check('01'); save();" target = "_blank" href = "https://forms.gle/coK7q43RwBV2f15i7" > < div id = "sign-up" > SIGN UP< / div > < / a >
2022-06-22 02:06:21 -07:00
< ul id = "navList" >
2022-06-20 02:33:38 -07:00
< li > < a class = "navlink" onclick = "uncheck('check')" href = "#event" > Event< / a > < / li >
2022-07-23 16:47:05 -07:00
< li > < a class = "navlink" onclick = "uncheck('check')" href = "#workshops" > Workshops< / a > < / li >
2022-06-20 02:33:38 -07:00
< li > < a class = "navlink" onclick = "uncheck('check')" href = "#prizes" > Prizes< / a > < / li >
< li > < a class = "navlink" onclick = "uncheck('check')" href = "#team" > Team< / a > < / li >
2022-07-26 14:01:33 -07:00
< li > < a class = "navlink" onclick = "uncheck('check')" href = "rules.html" > Rules< svg class = "new-tab-icon" xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 512 512" > <!-- ! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --> < path d = "M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z" / > < / svg > < / a > < / li >
2022-05-29 22:39:53 -07:00
< / ul >
< / div >
2022-05-29 16:50:10 -07:00
< / nav >
<!-- Front Page -->
2022-05-26 22:09:31 -07:00
< header >
2022-05-29 16:50:10 -07:00
< div id = "header-background" >
2022-06-18 11:50:21 -07:00
< div id = "header-gradient" >
< div id = "header" >
2022-07-25 18:14:03 -07:00
< img id = "logo" src = "img/Gilroy_Hacks_Logo_Summer.png" height = "400" width = "400" alt = "logo" / >
2022-06-18 11:50:21 -07:00
< hr id = "line-header" >
2022-07-23 22:19:23 -07:00
< a class = "link tooltip header-link" id = "header-tooltip" target = "_blank" href = "https://calendar.google.com/calendar/render?action=TEMPLATE&dates=20220812T230000Z%2F20220814T233000Z&details=Participate%20in%20a%20weekend-long%20hackathon%20to%20strengthen%20your%20coding%20skills%20and%20earn%20some%20cool%20prizes%21&location=Gilroy%20Library&text=Gilroy%20Hacks%20Hackathon" > < h2 id = "header-subtitle-date" > < svg class = "header-icon" xmlns = "http://www.w3.org/2000/svg" width = "23" height = "23" viewBox = "0 0 24 24" fill = "none" stroke = "#ffffff" stroke-width = "2" stroke-linecap = "round" stroke-linejoin = "round" > < rect x = "3" y = "4" width = "18" height = "18" rx = "2" ry = "2" > < / rect > < line x1 = "16" y1 = "2" x2 = "16" y2 = "6" > < / line > < line x1 = "8" y1 = "2" x2 = "8" y2 = "6" > < / line > < line x1 = "3" y1 = "10" x2 = "21" y2 = "10" > < / line > < / svg > Aug 12 - 14< / h2 > < / a >
< a class = "link tooltip header-link" id = "spots-tooltip" target = "_blank" href = "https://forms.gle/coK7q43RwBV2f15i7" > < div id = "spots-container" >
2022-06-18 11:50:21 -07:00
< div class = "blob green" aria-hidden = "true" > < / div >
2022-07-26 00:36:50 -07:00
< h2 id = "header-subtitle-spots" > 20 spots remaining< / h2 >
2022-07-23 22:19:23 -07:00
< / div > < / a >
2022-06-18 11:50:21 -07:00
< div id = "entrance-arrow" >
< a href = "#event" id = "arrow-link" >
Event
< svg id = "arrow" xmlns = "http://www.w3.org/2000/svg" width = "30" height = "30" viewBox = "0 0 24 24" fill = "none" stroke = "#fff" stroke-width = "2" stroke-linecap = "round" stroke-linejoin = "round" > < path d = "M6 9l6 6 6-6" / > < / svg >
< / a >
< / div >
2022-05-29 16:50:10 -07:00
< / div >
2022-05-26 22:09:31 -07:00
< / div >
< / div >
< / header >
2022-06-09 22:02:33 -07:00
<!-- Main -->
2022-05-29 16:50:10 -07:00
< main >
2022-05-30 00:43:44 -07:00
< section id = "event" >
< h2 class = "topic" > Hackathon Event< / h2 >
< hr class = "line" >
< div id = "event-container" >
< article id = "event-description" >
2022-07-17 22:55:34 -07:00
< h2 id = "description-heading" > Our Mission & Important Info< / h2 >
2022-06-01 21:02:59 -07:00
< div id = "event-main-box" >
2022-07-04 23:22:07 -07:00
< div id = "description-content" > Gilroy Hacks is a student-led organization focused on promoting community engagement and improving STEM exposure for local middle/high school students.< / div >
2022-06-04 23:43:19 -07:00
< hr class = "line" >
2022-07-25 18:22:26 -07:00
< div class = "list" >
< p > "Strengthen your skills and collaborate with others to create something useful."< br >                 - GHacks Team< / p >
2022-07-17 22:55:34 -07:00
< h3 class = "desc-title" > Main Events< / h3 >
2022-07-25 18:22:26 -07:00
< ul class = "desc-list" >
< ul >
2022-07-17 22:55:34 -07:00
< li > < span class = "emphasis-text" > Aug 12< / span > -> Opening Ceremony< / li >
< li > < span class = "emphasis-text" > Aug 13< / span > -> Web Dev + Python Workshops< / li >
< li > < span class = "emphasis-text" > Aug 14< / span > -> Project Presentations< / li >
2022-06-01 21:02:59 -07:00
< / ul >
2022-07-25 18:22:26 -07:00
< / ul >
2022-07-17 22:55:34 -07:00
< h3 class = "desc-title" > Details< / h3 >
2022-07-25 18:22:26 -07:00
< ul class = "desc-list" >
< ul >
< li > < u > Hybrid model< / u > - you may choose to code online or in-person< / li >
< li > Signups are limited to < u > middle and high school students only< / u > < / li >
< li > Workshops are < u > fully open to the public< / u > (as space allows)< / li >
< / ul >
2022-07-17 22:55:34 -07:00
< / ul >
2022-07-25 18:22:26 -07:00
< / div >
2022-06-01 21:02:59 -07:00
< / div >
2022-05-31 00:57:35 -07:00
<!-- Timeline src: https://codepen.io/cjl750/pen/MXvYmg -->
< div id = "timeline" >
< h2 id = "timeline-heading" > Timeline< / h2 >
2022-06-03 18:51:23 -07:00
< span class = "caption" > Click on each dot for more info< / span >
2022-05-31 00:57:35 -07:00
< div class = "flex-parent" >
< div class = "input-flex-container" >
2022-06-07 12:12:50 -07:00
< div id = "timeline-left-arrow" > < svg xmlns = "http://www.w3.org/2000/svg" width = "30" height = "30" viewBox = "0 0 24 24" fill = "none" stroke = "#ffffff" stroke-width = "2" stroke-linecap = "round" stroke-linejoin = "round" > < path d = "M15 18l-6-6 6-6" / > < / svg > < / div >
2022-06-07 01:40:29 -07:00
< input id = "t1" class = "timeline-input" type = "radio" name = "timeline-dot" data-description = "1" checked >
2022-06-09 16:55:46 -07:00
< div onclick = "check('t1')" class = "dot-info" data-description = "1" >
2022-06-03 19:24:44 -07:00
< span class = "year" > 8/12 4:00pm< / span >
2022-05-31 00:57:35 -07:00
< span class = "label" > Opening Ceremony< / span >
< / div >
2022-06-07 01:40:29 -07:00
< input id = "t2" class = "timeline-input" type = "radio" name = "timeline-dot" data-description = "2" >
2022-06-09 16:55:46 -07:00
< div onclick = "check('t2')" class = "dot-info" data-description = "2" >
2022-06-03 19:24:44 -07:00
< span class = "year" > 8/12 5:00pm< / span >
2022-05-31 00:57:35 -07:00
< span class = "label" > Hacking Begins< / span >
< / div >
2022-06-07 01:40:29 -07:00
< input id = "t3" class = "timeline-input" type = "radio" name = "timeline-dot" data-description = "3" >
2022-06-09 16:55:46 -07:00
< div onclick = "check('t3')" class = "dot-info" data-description = "3" >
2022-06-22 02:06:21 -07:00
< span class = "year" > 8/14 2:00pm< / span >
2022-07-04 00:27:27 -07:00
< span class = "label" > Projects Due< / span >
2022-05-31 00:57:35 -07:00
< / div >
2022-06-07 01:40:29 -07:00
< input id = "t4" class = "timeline-input" type = "radio" name = "timeline-dot" data-description = "4" >
2022-06-09 16:55:46 -07:00
< div onclick = "check('t4')" class = "dot-info" data-description = "4" >
2022-06-22 02:06:21 -07:00
< span class = "year" > 8/14 2:30pm< / span >
2022-05-31 00:57:35 -07:00
< span class = "label" > Project Presentations< / span >
< / div >
2022-06-07 01:40:29 -07:00
< input id = "t5" class = "timeline-input" type = "radio" name = "timeline-dot" data-description = "5" >
2022-06-09 16:55:46 -07:00
< div onclick = "check('t5')" class = "dot-info" data-description = "5" >
2022-06-12 13:51:47 -07:00
< span class = "year" > 8/14 4:00pm< / span >
2022-05-31 00:57:35 -07:00
< span class = "label" > Awards Ceremony< / span >
< / div >
2022-06-07 12:12:50 -07:00
< div id = "timeline-right-arrow" > < svg xmlns = "http://www.w3.org/2000/svg" width = "30" height = "30" viewBox = "0 0 24 24" fill = "none" stroke = "#ffffff" stroke-width = "2" stroke-linecap = "round" stroke-linejoin = "round" > < path d = "M9 18l6-6-6-6" / > < / svg > < / div >
2022-05-31 00:57:35 -07:00
< div id = "timeline-descriptions-wrapper" >
2022-06-09 22:02:33 -07:00
< div class = "timeline-desc" data-description = "1" >
< div class = "bracket" id = "bracket-1" >
< div class = "left" > < / div >
< div class = "right" > < / div >
< / div >
2022-06-03 18:51:23 -07:00
< h3 > Opening Ceremony< / h3 >
2022-07-19 13:14:06 -07:00
< h4 class = "timeline-description-subtitle" > 8/12 | 4:00pm - 4:45pm< / h4 >
2022-06-07 18:03:01 -07:00
< br >
2022-07-25 20:02:20 -07:00
< div >
< p class = "timeline-description" > The official start of the hackathon where we deliver the opening presentation along with the finalized teams, prompts, rules, and timeline.< / p >
< ul class = "timeline-description-list" >
< li > Along with the in-person event held at the < u > Community Room< / u > at the Gilroy Library, we will be streaming the event on Zoom< / li >
< li > < span class = "important-text" > =IMPORTANT=< / span > DO NOT START CODING during this period< / li >
< li > After this event, participants will < u > head back home< / u > to start coding< / li >
< / ul >
< div class = "timeline-links" >
2022-07-26 16:58:27 -07:00
< a class = "tooltip zoom-tooltip" href = "https://us06web.zoom.us/j/84398429896?pwd=b0ZUZ2pieXFKeUwxTVY0NVE1MTNxdz09" target = "_blank" > < div class = "timeline-button zoom-link" > < img class = "timeline-icon" loading = "lazy" src = "img/zoom.png" alt = "Zoom" > < / div > < / a >
2022-07-25 20:02:20 -07:00
< / div >
< / div >
2022-05-31 00:57:35 -07:00
< / div >
2022-06-09 22:02:33 -07:00
< div class = "timeline-desc" data-description = "2" >
< div class = "bracket" id = "bracket-2" >
< div class = "left" > < / div >
< div class = "right" > < / div >
< / div >
2022-06-03 18:51:23 -07:00
< h3 > Hacking Begins< / h3 >
2022-06-03 19:24:44 -07:00
< h4 class = "timeline-description-subtitle" > 8/12 | 5:00pm< / h4 > < br >
2022-07-25 20:02:20 -07:00
< div class = "timeline-description" > Now's your time to shine! Start working with your team to build your project. No strings attached!
2022-05-31 00:57:35 -07:00
< ul class = "timeline-description-list" >
2022-07-22 00:40:43 -07:00
< li > < span class = "important-text" > =IMPORTANT=< / span > Your project must follow one of the given prompts; otherwise, your team may lose a lot of points for unrelated topic deductions< / li >
2022-07-25 17:56:10 -07:00
< li > < u > Hybrid model< / u > - you may either code online or in-person at the Library< / li >
2022-07-04 23:22:07 -07:00
< li > Remember, you only have 46 hours to complete your project... Use your time wisely< / li >
2022-05-31 00:57:35 -07:00
< / ul >
2022-07-22 00:40:43 -07:00
< div class = "timeline-links" >
< a target = "_blank" href = "https://docs.google.com/document/d/1g0NyLcNGcteaXelcNRLpGSzd0l6Mky78ohbBQgQTDQY/edit?usp=sharing" > < div class = "timeline-button" > View the Rubric< / div > < / a >
< / div >
2022-07-25 20:02:20 -07:00
< / div >
2022-05-31 00:57:35 -07:00
< / div >
2022-06-09 22:02:33 -07:00
< div class = "timeline-desc" data-description = "3" >
< div class = "bracket" id = "bracket-3" >
< div class = "left" > < / div >
< div class = "right" > < / div >
< / div >
2022-07-04 00:27:27 -07:00
< h3 > Projects Due< / h3 >
2022-06-07 18:03:01 -07:00
< h4 class = "timeline-description-subtitle" > 8/14 | 2:00pm< / h4 > < br >
2022-07-04 23:22:07 -07:00
< p class = "timeline-description" > STOP coding! Your 46 hours of intense stress and turmoil are finally up! We hope you learned some valuable skills and made some new friends along the way.< br >
2022-05-31 00:57:35 -07:00
< ul class = "timeline-description-list" >
2022-07-22 09:28:39 -07:00
< li > < span class = "important-text" > =IMPORTANT=< / span > Make sure you turn in your project BEFORE the deadline at 2:00pm. You can find the submission form on the Discord server or < a class = "link tooltip" id = "submit-tooltip" href = "https://forms.gle/bpoXvyjP2TcsrELX8" target = "_blank" > Submit Here< / a > < / li >
2022-07-04 23:22:07 -07:00
< li > From now until Project Presentations (2:30pm), your team will have around 30 mins to prepare for your presentation. Get back to work!< / li >
2022-05-31 00:57:35 -07:00
< / ul >
2022-07-22 00:40:43 -07:00
< div class = "timeline-links" >
< a target = "_blank" href = "https://docs.google.com/document/d/1g0NyLcNGcteaXelcNRLpGSzd0l6Mky78ohbBQgQTDQY/edit?usp=sharing" > < div class = "timeline-button" > View the Rubric< / div > < / a >
< / div >
2022-05-31 00:57:35 -07:00
< / p >
< / div >
2022-06-09 22:02:33 -07:00
< div class = "timeline-desc" data-description = "4" >
< div class = "bracket" id = "bracket-4" >
< div class = "left" > < / div >
< div class = "right" > < / div >
< / div >
2022-06-03 18:51:23 -07:00
< h3 > Project Presentations< / h3 >
2022-06-07 18:03:01 -07:00
< h4 class = "timeline-description-subtitle" > 8/14 | 2:30pm - 3:30pm< / h4 > < br >
2022-05-31 00:57:35 -07:00
< p class = "timeline-description" > This is where your team will present your product to our honored judges.< br >
< ul class = "timeline-description-list" >
2022-07-17 23:20:19 -07:00
< li > Be Creative! Make your product stand out by including a demo or showing its function across multiple applications< / li >
2022-05-31 00:57:35 -07:00
< li > Presentations will occur in order of team number (i.e. Team 1 will go first)< / li >
2022-07-04 23:22:07 -07:00
< li > < span class = "important-text" > =IMPORTANT=< / span > Your team's presentation is NOT ALLOWED to go above 5 minutes... Use your time wisely.< / li >
2022-05-31 01:15:35 -07:00
< li > Your team will be graded on both the product and presentation as per the rubric< / li >
2022-05-31 00:57:35 -07:00
< / ul >
2022-07-22 00:40:43 -07:00
< div class = "timeline-links" >
2022-07-26 16:58:27 -07:00
< a class = "tooltip zoom-tooltip" href = "https://us06web.zoom.us/j/84398429896?pwd=b0ZUZ2pieXFKeUwxTVY0NVE1MTNxdz09" target = "_blank" > < div class = "timeline-button zoom-link" > < img class = "timeline-icon" loading = "lazy" src = "img/zoom.png" alt = "Zoom" > < / div > < / a >
2022-07-22 00:40:43 -07:00
< a target = "_blank" href = "https://docs.google.com/document/d/1g0NyLcNGcteaXelcNRLpGSzd0l6Mky78ohbBQgQTDQY/edit?usp=sharing" > < div class = "timeline-button" > View the Rubric< / div > < / a >
< / div >
2022-05-31 00:57:35 -07:00
< / p >
< / div >
2022-06-09 22:02:33 -07:00
< div class = "timeline-desc" data-description = "5" >
< div class = "bracket" id = "bracket-5" >
< div class = "left" > < / div >
< div class = "right" > < / div >
< / div >
2022-06-03 18:51:23 -07:00
< h3 > Awards Ceremony< / h3 >
2022-06-12 13:51:47 -07:00
< h4 class = "timeline-description-subtitle" > 8/14 | 4:00pm - 4:30pm< / h4 > < br >
< p class = "timeline-description" > Congratuations! Judge scores are tallied and here's where we announce the 1st, 2nd, and 3rd place teams along with constructive feedback for each in the < u > Community Room< / u > .< br >
2022-05-31 00:57:35 -07:00
< ul class = "timeline-description-list" >
2022-06-12 13:51:47 -07:00
< li > < u > Winners< / u > : we will contact you via Email about your prizes; allow up to 2 days for a response< / li >
2022-07-23 00:44:55 -07:00
< li > For Questions, ask in the Discord server (#ask-questions), or contact tech support at < a class = "link tooltip email-link email-replace-tech" target = "_blank" href = "mailto:tech@gilroyhacks.com" > tech@gilroyhacks.com< / a > < / li >
2022-05-31 00:57:35 -07:00
< / ul >
2022-07-22 00:40:43 -07:00
< div class = "timeline-links" >
2022-07-26 16:58:27 -07:00
< a class = "tooltip zoom-tooltip" href = "https://us06web.zoom.us/j/84398429896?pwd=b0ZUZ2pieXFKeUwxTVY0NVE1MTNxdz09" target = "_blank" > < div class = "timeline-button zoom-link" > < img class = "timeline-icon" loading = "lazy" src = "img/zoom.png" alt = "Zoom" > < / div > < / a >
2022-07-22 00:40:43 -07:00
< / div >
2022-05-31 00:57:35 -07:00
< / p >
< / div >
< / div >
< / div >
< / div >
< / div >
2022-05-30 13:55:20 -07:00
< / article >
2022-06-03 01:42:59 -07:00
< article id = "signup-article" >
2022-06-04 23:43:19 -07:00
< div id = "signup-title" >
2022-07-25 18:38:24 -07:00
< h2 class = "signup-header" > Signup Checklist< / h2 >
2022-06-04 23:43:19 -07:00
< span class = "caption" > Click each step to cross it out!< / span >
< / div >
2022-05-30 00:43:44 -07:00
< div id = "steps-card" >
2022-07-26 00:34:26 -07:00
< div class = "signup-container" id = "signup-checklist" >
2022-05-30 13:55:20 -07:00
< div class = " outer " >
< div class = "card" >
< div class = "info" >
2022-06-03 15:38:07 -07:00
<!-- Checklist src: https://codepen.io/milanraring/pen/QWbqBGo -->
2022-07-25 18:38:24 -07:00
< div class = "checklist" >
2022-06-05 02:23:40 -07:00
< input id = "01" onclick = "save()" type = "checkbox" name = "r" value = "1" >
2022-06-03 15:09:59 -07:00
< label for = "01" >
2022-07-18 16:46:17 -07:00
< p class = "title" > 1. Sign up w/ this < a onclick = "check('01'); save()" class = "link tooltip" id = "signup-link" target = "_blank" href = "https://forms.gle/coK7q43RwBV2f15i7" > form< / a > < / p >
2022-06-07 01:40:29 -07:00
< / label >
< label for = "01" >
< p class = "step-desc" > - These questions are used to gauge your experience and skills so we can pair you with others< / p >
2022-06-03 15:09:59 -07:00
< / label >
< / div >
2022-05-30 13:55:20 -07:00
< / div >
< / div >
< div class = "card" >
< div class = "info" >
2022-07-25 18:38:24 -07:00
< div class = "checklist" >
2022-06-05 02:23:40 -07:00
< input id = "02" onclick = "save()" type = "checkbox" name = "r" value = "2" >
2022-06-03 15:09:59 -07:00
< label for = "02" >
2022-07-18 16:46:17 -07:00
< p class = "title" > 2. Join the < a onclick = "check('02'); save()" class = "link tooltip" id = "discord-link" target = "_blank" href = "https://discord.gg/nkTDKMcYbr" > Discord< / a > < / p >
2022-06-07 01:40:29 -07:00
< / label >
< label for = "02" >
< p class = "step-desc" > - Please change your nickname to your First and Last name< / p >
2022-06-03 15:09:59 -07:00
< / label >
< / div >
2022-05-30 13:55:20 -07:00
< / div >
< / div >
< div class = "card" >
< div class = "info" >
2022-07-25 18:38:24 -07:00
< div class = "checklist" >
2022-06-05 02:23:40 -07:00
< input id = "03" onclick = "save()" type = "checkbox" name = "r" value = "3" >
2022-06-03 15:09:59 -07:00
< label for = "03" >
< p class = "title" > 3. Create/join a team< / p >
< / label >
2022-06-07 01:40:29 -07:00
< label for = "03" >
< p class = "step-desc" > - Join teams in the Discord Server!< / p >
< / label >
2022-06-03 15:09:59 -07:00
< / div >
2022-05-30 13:55:20 -07:00
< / div >
< / div >
< div class = "card" >
< div class = "info" >
2022-07-25 18:38:24 -07:00
< div class = "checklist" >
2022-06-05 02:23:40 -07:00
< input id = "04" onclick = "save()" type = "checkbox" name = "r" value = "4" >
2022-06-03 15:09:59 -07:00
< label for = "04" >
2022-06-30 22:46:03 -07:00
< p class = "title" > 4. Start preparing< / p >
2022-06-03 15:09:59 -07:00
< / label >
2022-06-07 01:40:29 -07:00
< label for = "04" >
< p class = "step-desc" >
2022-06-30 22:46:03 -07:00
- Between now and the start of the hackathon is a great time to download any software you may need
2022-06-07 01:40:29 -07:00
< br >
- However, you can't start working on the project until the hackathon begins
< / p >
< / label >
2022-06-03 15:09:59 -07:00
< / div >
2022-05-30 13:55:20 -07:00
< / div >
< / div >
< div class = "card" >
< div class = "info" >
2022-07-25 18:38:24 -07:00
< div class = "checklist" >
2022-06-05 02:23:40 -07:00
< input id = "05" onclick = "save()" type = "checkbox" name = "r" value = "5" >
2022-06-03 15:09:59 -07:00
< label for = "05" >
< p class = "title" > 5. Wait for the hackathon to start!< / p >
< / label >
2022-06-07 01:40:29 -07:00
< label for = "05" >
< p class = "step-desc" > - Mark your calendars, Aug 12 - 14< / p >
< / label >
2022-06-03 15:09:59 -07:00
< / div >
2022-05-30 13:55:20 -07:00
< / div >
< / div >
< / div >
< / div >
2022-05-30 00:43:44 -07:00
< / div >
2022-06-04 23:43:19 -07:00
< div id = "sponsor-title" >
< h2 id = "sponsor-heading" > Sponsors< / h2 >
2022-06-23 01:34:37 -07:00
< span class = "caption" > Thank you to these amazing sponsors!< / span >
2022-06-04 23:43:19 -07:00
< / div >
2022-06-04 19:02:18 -07:00
< div id = "sponsor-container" >
< a href = "https://sccld.org/" target = "_blank" >
2022-07-01 20:59:47 -07:00
< img id = "gilroy-library-logo" src = "img/SCCLD_logo.png" alt = "Gilroy Library logo" >
2022-06-04 19:02:18 -07:00
< / a >
2022-07-01 20:59:47 -07:00
< a href = "https://www.gavilan.edu/" target = "_blank" >
< img id = "gavilan-college-logo" src = "img/gavilan_college.png" alt = "Gavilan College logo" >
< / a >
2022-07-17 22:55:34 -07:00
< a href = "https://www.gavengineering.club/" target = "_blank" >
2022-07-01 20:59:47 -07:00
< img id = "gear-club-logo" src = "img/gear_logo.png" alt = "GEAR Club logo" >
2022-07-17 22:55:34 -07:00
< / a >
2022-06-04 19:02:18 -07:00
< / div >
2022-05-30 00:43:44 -07:00
< / article >
< / div >
2022-07-25 18:38:24 -07:00
< div id = "map-article" >
2022-06-16 16:39:15 -07:00
< div id = "cal-parent" >
< article id = "cal-container" >
< h2 class = "map-title" > Calendar< / h2 >
< div class = "cal-card" >
< div class = "cal-entry" >
< div class = "cal-date" id = "fri" >
< span class = "day-of-week" > FRI< / span >
< span class = "cal-subtitle" > 8/12< / span >
< / div >
< div class = "vertical-line" > < / div >
< div class = "cal-desc" >
< h3 class = "cal-title" > Community Room< / h3 >
< div class = "event-list" >
< div class = "event-entry" >
< div class = "time-column" >
< span class = "event-time" > 4-5pm< / span >
< / div >
< div class = "event-column" >
< span class = "event-title" > Opening Ceremony< / span >
< / div >
2022-06-07 14:46:42 -07:00
< / div >
2022-06-06 20:44:54 -07:00
< / div >
< / div >
< / div >
< / div >
2022-06-16 16:39:15 -07:00
< div class = "cal-card" >
< div class = "cal-entry" >
< div class = "cal-date" id = "sat" >
< span class = "day-of-week" > SAT< / span >
< span class = "cal-subtitle" > 8/13< / span >
< / div >
< div class = "vertical-line" > < / div >
< div class = "cal-desc" >
2022-07-25 17:56:10 -07:00
< h3 class = "cal-title" > Study Room A< / h3 >
2022-06-16 16:39:15 -07:00
< div class = "event-list" >
< div class = "event-entry" >
< div class = "time-column" >
< span class = "event-time" > 10am-5:30pm< / span >
< / div >
< div class = "event-column" >
< span class = "event-title" > In-Person Hacking Session< / span >
< / div >
2022-06-07 14:46:42 -07:00
< / div >
2022-07-25 17:56:10 -07:00
< h3 class = "cal-title" > Computer Lab< / h3 >
2022-06-16 16:39:15 -07:00
< div class = "event-entry" >
< div class = "time-column" >
< span class = "event-time" > 11am-12pm< / span >
< / div >
< div class = "event-column" >
< span class = "event-title" > Web Dev Workshop< / span >
< / div >
2022-06-07 14:46:42 -07:00
< / div >
2022-06-16 16:39:15 -07:00
< div class = "event-entry" >
< div class = "time-column" >
2022-07-17 22:59:47 -07:00
< span class = "event-time" > 1-2pm< / span >
2022-06-16 16:39:15 -07:00
< / div >
< div class = "event-column" >
< span class = "event-title" > Python Workshop< / span >
< / div >
2022-06-07 14:46:42 -07:00
< / div >
2022-06-06 20:44:54 -07:00
< / div >
< / div >
< / div >
< / div >
2022-06-16 16:39:15 -07:00
< div class = "cal-card" >
< div class = "cal-entry" >
< div class = "cal-date" id = "sun" >
< span class = "day-of-week" > SUN< / span >
< span class = "cal-subtitle" > 8/14< / span >
< / div >
< div class = "vertical-line" > < / div >
< div class = "cal-desc" >
< h3 class = "cal-title" > Community Room< / h3 >
< div class = "event-list" >
< div class = "event-entry" >
< div class = "time-column" >
< span class = "event-time" > 1-2pm< / span >
< / div >
< div class = "event-column" >
< span class = "event-title" > In-Person Hacking Session< / span >
< / div >
2022-06-07 14:46:42 -07:00
< / div >
2022-06-16 16:39:15 -07:00
< div class = "event-entry" >
< div class = "time-column" >
< span class = "event-time" > 2:30-3:30pm< / span >
< / div >
< div class = "event-column" >
< span class = "event-title" > Project Presentations< / span >
< / div >
2022-06-07 14:46:42 -07:00
< / div >
2022-06-16 16:39:15 -07:00
< div class = "event-entry" >
< div class = "time-column" >
< span class = "event-time" > 4-4:30pm< / span >
< / div >
< div class = "event-column" >
< span class = "event-title" > Awards Ceremony< / span >
< / div >
2022-06-07 14:46:42 -07:00
< / div >
2022-06-06 20:44:54 -07:00
< / div >
< / div >
< / div >
< / div >
2022-07-17 22:55:34 -07:00
< p class = "bottom-text" > *All events will be held in-person at the Gilroy Library< / p >
2022-06-16 16:39:15 -07:00
< / article >
< article id = "map-div" >
2022-06-17 01:43:06 -07:00
< h2 class = "map-title" > Location< / h2 >
2022-06-16 16:39:15 -07:00
< div id = "map-container" >
2022-07-21 18:27:04 -07:00
< div id = "map" > Gilroy Library< br > 350 W 6th St, Gilroy, CA 95020< / div >
2022-06-16 16:39:15 -07:00
< / div >
< / article >
2022-06-03 22:00:13 -07:00
< / div >
2022-07-25 18:38:24 -07:00
< / div >
2022-05-30 00:43:44 -07:00
< / section >
2022-07-23 16:47:05 -07:00
< section id = "workshops" >
2022-07-21 18:27:04 -07:00
< h2 class = "topic" > Workshops< / h2 >
< hr class = "line" >
2022-07-23 16:47:05 -07:00
< p id = "workshops-description" > Our workshops are fully open to the public!< / p >
2022-07-21 18:27:04 -07:00
< div class = "flex-container" >
2022-07-22 00:40:43 -07:00
< div class = "workshop-entry" >
2022-07-23 16:47:05 -07:00
< div class = "workshop-header" id = "webdev-workshop" >
< div class = "workshop-title" >
< h3 class = "title-font-weight" > Web Dev Workshop< / h3 >
2022-07-25 15:49:08 -07:00
< h4 > Computer Lab< / h4 >
2022-07-23 16:47:05 -07:00
< / div >
< div class = "workshop-topics" >
2022-07-23 18:01:46 -07:00
< span class = "tooltip" id = "git-tooltip" > < img class = "workshop-img" loading = "lazy" src = "img/git.png" alt = "Git" > < / span >
< span class = "tooltip" id = "html-tooltip" > < img class = "workshop-img" loading = "lazy" src = "img/html.png" alt = "HTML" > < / span >
2022-07-23 16:47:05 -07:00
< / div >
< / div >
< div class = "workshop-date" >
2022-07-25 18:38:24 -07:00
< a class = "link tooltip cal-tooltip workshop-link" target = "_blank" href = "https://calendar.google.com/calendar/render?action=TEMPLATE&dates=20220813T180000Z%2F20220813T190000Z&details=A%20chance%20for%20you%20to%20learn%20the%20world%27s%20most%20common%20version%20control%20system%3A%20Git%20--%20and%20how%20to%20create%20your%20own%20website%21&location=Gilroy%20Library&text=Web%20Dev%20Workshop" > < div > < svg class = "workshop-icon" xmlns = "http://www.w3.org/2000/svg" width = "20" height = "20" viewBox = "0 0 24 24" fill = "none" stroke = "#ffffff" stroke-width = "2" stroke-linecap = "round" stroke-linejoin = "round" > < rect x = "3" y = "4" width = "18" height = "18" rx = "2" ry = "2" > < / rect > < line x1 = "16" y1 = "2" x2 = "16" y2 = "6" > < / line > < line x1 = "8" y1 = "2" x2 = "8" y2 = "6" > < / line > < line x1 = "3" y1 = "10" x2 = "21" y2 = "10" > < / line > < / svg > Aug 13< / div > < / a >
2022-07-23 16:47:05 -07:00
< div > < svg class = "workshop-icon" xmlns = "http://www.w3.org/2000/svg" width = "20" height = "20" viewBox = "0 0 24 24" fill = "none" stroke = "#ffffff" stroke-width = "2" stroke-linecap = "round" stroke-linejoin = "round" > < circle cx = "12" cy = "12" r = "10" > < / circle > < polyline points = "12 6 12 12 16 14" > < / polyline > < / svg > 11am - 12pm< / div >
< div > < svg class = "workshop-icon" xmlns = "http://www.w3.org/2000/svg" width = "20" height = "20" viewBox = "0 0 24 24" fill = "none" stroke = "#ffffff" stroke-width = "2" stroke-linecap = "round" stroke-linejoin = "round" > < circle cx = "12" cy = "10" r = "3" / > < path d = "M12 21.7C17.3 17 20 13 20 10a8 8 0 1 0-16 0c0 3 2.7 6.9 8 11.7z" / > < / svg > Gilroy Library< / div >
2022-07-23 00:51:50 -07:00
< / div >
2022-07-24 11:31:52 -07:00
< div class = "workshop-difficulty" > < p > Beginner-Friendly< / p > < p > Open to public< / p > < / div >
2022-07-23 00:51:50 -07:00
< div class = "workshop-desc" >
2022-07-23 16:47:05 -07:00
< h4 > Description< / h4 >
2022-07-23 18:28:54 -07:00
< p > A chance for you to learn the world's most common version control system: Git -- and how to create your own website!< / p > < br >
2022-07-26 15:31:45 -07:00
< div class = "workshop-slides" >
< div class = "workshop-topics-covered" >
< h4 > Topics Covered:< / h4 >
< ul style = "margin-left: 20px" >
< li > Git Version Control< / li >
< li > Web Dev Basics< / li >
< li > HTML< / li >
< li > CSS< / li >
< li > JavaScript< / li >
< li > Domains< / li >
< / ul > < br >
< / div >
< div class = "workshop-presentation" >
< h4 > Slides Presentation:< / h4 >
< div class = "slides-thumbnail" >
< a class = "tooltip" id = "webdev-slides-tooltip" href = "https://docs.google.com/presentation/d/19sgQbGn7sqNV1A_LlYYiCNZF2GlHGuc-pFoWAdAEtV0/edit?usp=sharing" target = "_blank" > < img class = "slides-element" src = "img/webdev_slides.jpg" > < / a >
< / div >
< / div >
< / div >
2022-07-25 15:49:08 -07:00
< h4 > Notes< / h4 >
2022-07-23 16:47:05 -07:00
< ul style = "margin-left: 20px" >
2022-07-25 15:49:08 -07:00
< li > Max capacity is around 20 people (first come, first serve)< / li >
< li > Computers are provided (personal laptops recommended)< / li >
2022-07-23 00:51:50 -07:00
< / ul >
< / div >
2022-07-23 16:47:05 -07:00
< div class = "workshop-footer" >
2022-07-23 18:01:46 -07:00
Instructed By: < div class = "workshop-instructor" > < img class = "instructor-img" src = "img/jd.png" loading = "lazy" alt = "profile picture" > < / div > < span class = "emphasis-text" > James Dinh< / span >
2022-07-23 16:47:05 -07:00
< / div >
2022-07-22 00:40:43 -07:00
< / div >
< div class = "workshop-entry" >
2022-07-23 16:47:05 -07:00
< div class = "workshop-header" id = "python-workshop" >
< div class = "workshop-title" >
< h3 class = "title-font-weight" > Python Workshop< / h3 >
2022-07-25 15:49:08 -07:00
< h4 > Computer Lab< / h4 >
2022-07-23 16:47:05 -07:00
< / div >
< div class = "workshop-topics" >
2022-07-23 18:01:46 -07:00
< span class = "tooltip" id = "python-tooltip" > < img class = "workshop-img" loading = "lazy" src = "img/python-logo.webp" alt = "Python" > < / span >
2022-07-23 16:47:05 -07:00
< / div >
< / div >
< div class = "workshop-date" >
2022-07-25 18:38:24 -07:00
< a class = "link tooltip cal-tooltip workshop-link" target = "_blank" href = "https://calendar.google.com/calendar/render?action=TEMPLATE&dates=20220813T200000Z%2F20220813T210000Z&details=Join%20us%20for%20a%20lecture%20on%20Python%20Programming%20basics.%20You%27ll%20learn%20basic%20data%20structures%20and%20be%20able%20to%20code%20your%20own%20programs%21&location=Gilroy%20Library&text=Python%20Workshop" > < div > < svg class = "workshop-icon" xmlns = "http://www.w3.org/2000/svg" width = "20" height = "20" viewBox = "0 0 24 24" fill = "none" stroke = "#ffffff" stroke-width = "2" stroke-linecap = "round" stroke-linejoin = "round" > < rect x = "3" y = "4" width = "18" height = "18" rx = "2" ry = "2" > < / rect > < line x1 = "16" y1 = "2" x2 = "16" y2 = "6" > < / line > < line x1 = "8" y1 = "2" x2 = "8" y2 = "6" > < / line > < line x1 = "3" y1 = "10" x2 = "21" y2 = "10" > < / line > < / svg > Aug 13< / div > < / a >
2022-07-23 16:47:05 -07:00
< div > < svg class = "workshop-icon" xmlns = "http://www.w3.org/2000/svg" width = "20" height = "20" viewBox = "0 0 24 24" fill = "none" stroke = "#ffffff" stroke-width = "2" stroke-linecap = "round" stroke-linejoin = "round" > < circle cx = "12" cy = "12" r = "10" > < / circle > < polyline points = "12 6 12 12 16 14" > < / polyline > < / svg > 1 - 2pm< / div >
< div > < svg class = "workshop-icon" xmlns = "http://www.w3.org/2000/svg" width = "20" height = "20" viewBox = "0 0 24 24" fill = "none" stroke = "#ffffff" stroke-width = "2" stroke-linecap = "round" stroke-linejoin = "round" > < circle cx = "12" cy = "10" r = "3" / > < path d = "M12 21.7C17.3 17 20 13 20 10a8 8 0 1 0-16 0c0 3 2.7 6.9 8 11.7z" / > < / svg > Gilroy Library< / div >
< / div >
2022-07-24 11:31:52 -07:00
< div class = "workshop-difficulty" > < p > Beginner-Friendly< / p > < p > Open to public< / p > < / div >
2022-07-23 16:47:05 -07:00
< div class = "workshop-desc" >
< h4 > Description< / h4 >
< p > Join us for a lecture on Python Programming basics. You'll learn basic data structures and be able to code your own programs!< / p > < br >
2022-07-26 15:31:45 -07:00
< div class = "workshop-slides" >
< div class = "workshop-topics-covered" >
< h4 > Topics Covered:< / h4 >
< ul style = "margin-left: 20px" >
< li > Input/Output< / li >
< li > Variables, Math< / li >
< li > Booleans/if statements< / li >
< li > Loops< / li >
< li > Arrays< / li >
< li > Functions< / li >
< / ul > < br >
< / div >
< div class = "workshop-presentation" >
< h4 > Slides Presentation:< / h4 >
< div class = "slides-thumbnail" >
< a class = "tooltip" id = "python-slides-tooltip" href = "https://docs.google.com/presentation/d/1nSepXdvXbz1ZaOXXQgIr0wWG9QS4FvW_wJ4KKt2zS7k/edit?usp=sharing" target = "_blank" > < img class = "slides-element" src = "img/python_slides.jpg" > < / a >
< / div >
< / div >
< / div >
2022-07-25 15:49:08 -07:00
< h4 > Notes< / h4 >
2022-07-23 16:47:05 -07:00
< ul style = "margin-left: 20px" >
2022-07-25 15:49:08 -07:00
< li > Max capacity is around 20 people (first come, first serve)< / li >
< li > Computers are provided (personal laptops recommended)< / li >
2022-07-23 16:47:05 -07:00
< / ul >
< / div >
< div class = "workshop-footer" >
2022-07-25 18:14:03 -07:00
Instructed By: < div class = "workshop-instructor" > < img class = "instructor-img default-pfp" src = "img/Gilroy_Hacks_Logo_icon_tp_podium.png" loading = "lazy" alt = "profile picture" > < / div > < span class = "emphasis-text" > Clement Boiteux< / span >
2022-07-23 16:47:05 -07:00
< / div >
2022-07-22 00:40:43 -07:00
< / div >
2022-07-21 18:27:04 -07:00
< / div >
2022-07-23 16:47:05 -07:00
< / section >
2022-05-30 00:43:44 -07:00
< section id = "prizes" >
< h2 class = "topic" > Prizes< / h2 >
< hr class = "line" >
2022-05-31 18:02:11 -07:00
< div id = "prizes-container" >
2022-07-25 18:38:24 -07:00
< div class = "prize-column" >
2022-06-01 00:54:16 -07:00
< div class = "podium-description" >
2022-06-03 15:38:07 -07:00
< div class = "prize-desc" id = "second-place" >
2022-07-14 17:59:51 -07:00
< div class = "prize-text" >
2022-07-17 22:55:34 -07:00
< span class = "prize-title" > 2nd< / span >
2022-07-18 11:12:47 -07:00
< div class = "prize-content" > $210< / div >
2022-07-14 17:59:51 -07:00
< / div >
2022-06-02 16:33:08 -07:00
< img class = "prize-laurel" src = "img/silver-laurel.png" loading = "lazy" alt = "silver laurel" >
2022-07-17 22:55:34 -07:00
< img class = "prize-img" src = "img/NEHEME_drone.png" loading = "lazy" alt = "NEHEME Drone" >
2022-07-14 17:59:51 -07:00
< div class = "prize-subtitle" > NEHEME NH525 Foldable Drone (x4)< / div >
2022-06-02 16:33:08 -07:00
< / div >
2022-06-01 18:54:41 -07:00
< div class = "podium-edge" > < / div >
2022-06-01 00:54:16 -07:00
< div id = "second-podium" > < / div >
< / div >
2022-07-25 18:38:24 -07:00
< / div >
< div class = "prize-column" >
2022-06-01 00:54:16 -07:00
< div class = "podium-description" >
2022-06-03 15:38:07 -07:00
< div class = "prize-desc" id = "first-place" >
2022-07-14 17:59:51 -07:00
< div class = "prize-text" >
< span class = "prize-title" > 1st< / span > < br >
2022-07-18 11:12:47 -07:00
< span class = "prize-content" > $360< / span >
2022-07-14 17:59:51 -07:00
< / div >
2022-06-02 16:33:08 -07:00
< img class = "prize-laurel" src = "img/gold-laurel.png" loading = "lazy" alt = "gold laurel" >
2022-07-17 22:55:34 -07:00
< img class = "prize-img" src = "img/pixoo_sling_bag.png" loading = "lazy" alt = "NEHEME Drone" >
2022-07-14 17:59:51 -07:00
< div class = "prize-subtitle" > Divoom LED Display Sling Bag (x4)< / div >
2022-06-02 16:33:08 -07:00
< / div >
2022-06-01 18:54:41 -07:00
< div class = "podium-edge" > < / div >
< div id = "first-podium" >
< p class = "podium-label" id = "podium-label-1" > Gilroy< / p >
2022-07-25 18:14:03 -07:00
< img id = "prize-logo" src = "img/Gilroy_Hacks_Logo_icon_tp_podium.png" loading = "lazy" alt = "logo" >
2022-06-01 18:54:41 -07:00
< p class = "podium-label" id = "podium-label-2" > Hacks< / p >
< / div >
2022-06-01 00:54:16 -07:00
< / div >
2022-07-25 18:38:24 -07:00
< / div >
< div class = "prize-column" >
2022-06-01 00:54:16 -07:00
< div class = "podium-description" >
2022-06-03 15:38:07 -07:00
< div class = "prize-desc" id = "third-place" >
2022-07-14 17:59:51 -07:00
< div class = "prize-text" >
< span class = "prize-title" > 3rd< / span > < br >
< span class = "prize-content" > $100< / span >
< / div >
2022-06-02 16:33:08 -07:00
< img class = "prize-laurel" src = "img/bronze-laurel.png" loading = "lazy" alt = "bronze laurel" >
2022-07-17 22:55:34 -07:00
< img class = "prize-img" src = "img/Kunodi_speaker.png" loading = "lazy" alt = "NEHEME Drone" >
2022-07-14 17:59:51 -07:00
< div class = "prize-subtitle" > Kunodi Bluetooth 5.0 Portable Speaker (x4)< / div >
2022-06-02 16:33:08 -07:00
< / div >
2022-06-01 18:54:41 -07:00
< div class = "podium-edge" > < / div >
2022-06-01 00:54:16 -07:00
< div id = "third-podium" > < / div >
< / div >
2022-07-25 18:38:24 -07:00
< / div >
2022-05-31 18:02:11 -07:00
< / div >
2022-06-30 22:46:03 -07:00
< div id = "prize-box" >
2022-07-14 17:59:51 -07:00
Prizes will be in the form of these (very snazzy) items (amounts above are the estimated total value):< br >
2022-06-30 22:46:03 -07:00
< ul id = "prize-list" >
2022-07-14 17:59:51 -07:00
< li > < span class = "emphasis-text" > 1st Place< / span > : Divoom LED Display Sling Bag (x4)< / li >
< li > < span class = "emphasis-text" > 2nd Place< / span > : NEHEME NH525 Foldable Drone (x4)< / li >
2022-07-17 22:55:34 -07:00
< li > < span class = "emphasis-text" > 3rd Place< / span > : Kunodi Bluetooth 5.0 Portable Speaker (x4)< / li >
2022-06-30 22:46:03 -07:00
< / ul >
< br >
< h4 > < u > Terms & Conditions< / u > < / h4 >
2022-07-14 17:59:51 -07:00
- We will deliver prizes at the end of the event (we may need to deliver some prizes after the event).< br >
2022-06-30 22:46:03 -07:00
- Your team is responsible for equally distributing prizes to team members as per our Code of Conduct.< br >
- Prizes are non-refundable; if you refuse to accept the prize, we will offer it to another team member.< br >
- Gilroy Hacks will not be liable for the prize once it reaches its recipient.
< / div >
2022-05-30 00:43:44 -07:00
< / section >
2022-06-01 18:54:41 -07:00
< section id = "team" >
< h2 class = "topic" > Hackathon Team< / h2 >
2022-05-30 00:43:44 -07:00
< hr class = "line" >
2022-06-01 19:32:00 -07:00
< div id = "team-container" >
2022-06-03 15:38:07 -07:00
< article id = "administration" >
2022-06-01 19:32:00 -07:00
< h3 class = "team-title" > Administration< / h3 >
< div class = "team-entry" >
2022-07-25 18:14:03 -07:00
< div class = "team-picture" > < img src = "img/Gilroy_Hacks_Logo_icon_tp_podium.png" loading = "lazy" alt = "profile picture" > < / div >
2022-06-01 19:32:00 -07:00
< div class = "team-description" >
2022-06-01 23:56:29 -07:00
< h4 class = "person-name" > Aadhavan Magesh< / h4 >
2022-06-23 15:09:53 -07:00
< h5 class = "person-subtitle" > Secretary< / h5 >
2022-07-25 18:38:24 -07:00
< h5 class = "person-contact" > < span class = "tooltip discord" > < svg class = "discord-icon" xmlns = "http://www.w3.org/2000/svg" fill = "currentColor" viewBox = "0 0 16 16" >
2022-07-19 13:14:06 -07:00
< path d = "M13.545 2.907a13.227 13.227 0 0 0-3.257-1.011.05.05 0 0 0-.052.025c-.141.25-.297.577-.406.833a12.19 12.19 0 0 0-3.658 0 8.258 8.258 0 0 0-.412-.833.051.051 0 0 0-.052-.025c-1.125.194-2.22.534-3.257 1.011a.041.041 0 0 0-.021.018C.356 6.024-.213 9.047.066 12.032c.001.014.01.028.021.037a13.276 13.276 0 0 0 3.995 2.02.05.05 0 0 0 .056-.019c.308-.42.582-.863.818-1.329a.05.05 0 0 0-.01-.059.051.051 0 0 0-.018-.011 8.875 8.875 0 0 1-1.248-.595.05.05 0 0 1-.02-.066.051.051 0 0 1 .015-.019c.084-.063.168-.129.248-.195a.05.05 0 0 1 .051-.007c2.619 1.196 5.454 1.196 8.041 0a.052.052 0 0 1 .053.007c.08.066.164.132.248.195a.051.051 0 0 1-.004.085 8.254 8.254 0 0 1-1.249.594.05.05 0 0 0-.03.03.052.052 0 0 0 .003.041c.24.465.515.909.817 1.329a.05.05 0 0 0 .056.019 13.235 13.235 0 0 0 4.001-2.02.049.049 0 0 0 .021-.037c.334-3.451-.559-6.449-2.366-9.106a.034.034 0 0 0-.02-.019Zm-8.198 7.307c-.789 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.45.73 1.438 1.613 0 .888-.637 1.612-1.438 1.612Zm5.316 0c-.788 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.451.73 1.438 1.613 0 .888-.631 1.612-1.438 1.612Z" / >
< / svg > Skymon< span class = "discord-tag" > #0438< / span > < / span > < br > < a class = "link tooltip email-link" id = "email-replace-aadhavan" target = "_blank" href = "mailto:aadhavan.magesh-at-gmail-dot-com" > aadhavan.magesh (at) gmail (dot) com< / a > < / h5 >
2022-06-01 19:32:00 -07:00
< / div >
< / div >
< / article >
2022-06-03 15:38:07 -07:00
< article id = "logistics" >
2022-06-01 19:32:00 -07:00
< h3 class = "team-title" > Logistics< / h3 >
< div class = "team-entry" >
2022-07-25 18:14:03 -07:00
< div class = "team-picture" > < img src = "img/Gilroy_Hacks_Logo_icon_tp_podium.png" loading = "lazy" alt = "profile picture" > < / div >
2022-06-01 19:32:00 -07:00
< div class = "team-description" >
2022-06-02 12:14:36 -07:00
< h4 class = "person-name" > Isaac Hwang< / h4 >
< h5 class = "person-subtitle" > Lead Organizer< / h5 >
2022-07-25 18:38:24 -07:00
< h5 class = "person-contact" > < span class = "tooltip discord" > < svg class = "discord-icon" xmlns = "http://www.w3.org/2000/svg" fill = "currentColor" viewBox = "0 0 16 16" >
2022-07-19 13:14:06 -07:00
< path d = "M13.545 2.907a13.227 13.227 0 0 0-3.257-1.011.05.05 0 0 0-.052.025c-.141.25-.297.577-.406.833a12.19 12.19 0 0 0-3.658 0 8.258 8.258 0 0 0-.412-.833.051.051 0 0 0-.052-.025c-1.125.194-2.22.534-3.257 1.011a.041.041 0 0 0-.021.018C.356 6.024-.213 9.047.066 12.032c.001.014.01.028.021.037a13.276 13.276 0 0 0 3.995 2.02.05.05 0 0 0 .056-.019c.308-.42.582-.863.818-1.329a.05.05 0 0 0-.01-.059.051.051 0 0 0-.018-.011 8.875 8.875 0 0 1-1.248-.595.05.05 0 0 1-.02-.066.051.051 0 0 1 .015-.019c.084-.063.168-.129.248-.195a.05.05 0 0 1 .051-.007c2.619 1.196 5.454 1.196 8.041 0a.052.052 0 0 1 .053.007c.08.066.164.132.248.195a.051.051 0 0 1-.004.085 8.254 8.254 0 0 1-1.249.594.05.05 0 0 0-.03.03.052.052 0 0 0 .003.041c.24.465.515.909.817 1.329a.05.05 0 0 0 .056.019 13.235 13.235 0 0 0 4.001-2.02.049.049 0 0 0 .021-.037c.334-3.451-.559-6.449-2.366-9.106a.034.034 0 0 0-.02-.019Zm-8.198 7.307c-.789 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.45.73 1.438 1.613 0 .888-.637 1.612-1.438 1.612Zm5.316 0c-.788 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.451.73 1.438 1.613 0 .888-.631 1.612-1.438 1.612Z" / >
< / svg > Fesh< span class = "discord-tag" > #5995< / span > < / span > < br > < a class = "link tooltip email-link" id = "email-replace-isaac" target = "_blank" href = "mailto:ihwang125-at-gmail-dot-com" > ihwang125 (at) gmail (dot) com< / a > < / h5 >
2022-06-01 19:32:00 -07:00
< / div >
< / div >
2022-06-09 22:02:33 -07:00
< div class = "team-entry" >
2022-07-25 18:14:03 -07:00
< div class = "team-picture" > < img src = "img/Gilroy_Hacks_Logo_icon_tp_podium.png" loading = "lazy" alt = "profile picture" > < / div >
2022-06-09 22:02:33 -07:00
< div class = "team-description" >
2022-07-07 11:16:59 -07:00
< h4 class = "person-name" > Jonathan Tessmann< / h4 >
2022-06-09 22:02:33 -07:00
< h5 class = "person-subtitle" > Finance Manager< / h5 >
2022-07-25 18:38:24 -07:00
< h5 class = "person-contact" > < span class = "tooltip discord" > < svg class = "discord-icon" xmlns = "http://www.w3.org/2000/svg" fill = "currentColor" viewBox = "0 0 16 16" >
2022-07-19 13:14:06 -07:00
< path d = "M13.545 2.907a13.227 13.227 0 0 0-3.257-1.011.05.05 0 0 0-.052.025c-.141.25-.297.577-.406.833a12.19 12.19 0 0 0-3.658 0 8.258 8.258 0 0 0-.412-.833.051.051 0 0 0-.052-.025c-1.125.194-2.22.534-3.257 1.011a.041.041 0 0 0-.021.018C.356 6.024-.213 9.047.066 12.032c.001.014.01.028.021.037a13.276 13.276 0 0 0 3.995 2.02.05.05 0 0 0 .056-.019c.308-.42.582-.863.818-1.329a.05.05 0 0 0-.01-.059.051.051 0 0 0-.018-.011 8.875 8.875 0 0 1-1.248-.595.05.05 0 0 1-.02-.066.051.051 0 0 1 .015-.019c.084-.063.168-.129.248-.195a.05.05 0 0 1 .051-.007c2.619 1.196 5.454 1.196 8.041 0a.052.052 0 0 1 .053.007c.08.066.164.132.248.195a.051.051 0 0 1-.004.085 8.254 8.254 0 0 1-1.249.594.05.05 0 0 0-.03.03.052.052 0 0 0 .003.041c.24.465.515.909.817 1.329a.05.05 0 0 0 .056.019 13.235 13.235 0 0 0 4.001-2.02.049.049 0 0 0 .021-.037c.334-3.451-.559-6.449-2.366-9.106a.034.034 0 0 0-.02-.019Zm-8.198 7.307c-.789 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.45.73 1.438 1.613 0 .888-.637 1.612-1.438 1.612Zm5.316 0c-.788 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.451.73 1.438 1.613 0 .888-.631 1.612-1.438 1.612Z" / >
2022-07-22 09:59:28 -07:00
< / svg > Alsace< span class = "discord-tag" > #5031< / span > < / span > < br > < a class = "link tooltip email-link" id = "email-replace-jonathan" target = "_blank" href = "mailto:jonathantessmann-at-gmail-dot-com" > jonathantessmann (at) gmail (dot) com< / a > < / h5 >
2022-06-09 22:02:33 -07:00
< / div >
< / div >
2022-06-01 19:32:00 -07:00
< / article >
2022-06-03 15:38:07 -07:00
< article id = "outreach" >
2022-06-01 19:32:00 -07:00
< h3 class = "team-title" > Outreach< / h3 >
2022-06-02 12:14:36 -07:00
< div class = "team-entry" >
2022-07-25 18:14:03 -07:00
< div class = "team-picture" > < img src = "img/Gilroy_Hacks_Logo_icon_tp_podium.png" loading = "lazy" alt = "profile picture" > < / div >
2022-06-02 12:14:36 -07:00
< div class = "team-description" >
< h4 class = "person-name" > Vijay Kethanaboyina< / h4 >
< h5 class = "person-subtitle" > Outreach Manager< / h5 >
2022-07-25 18:38:24 -07:00
< h5 class = "person-contact" > < span class = "tooltip discord" > < svg class = "discord-icon" xmlns = "http://www.w3.org/2000/svg" fill = "currentColor" viewBox = "0 0 16 16" >
2022-07-19 13:14:06 -07:00
< path d = "M13.545 2.907a13.227 13.227 0 0 0-3.257-1.011.05.05 0 0 0-.052.025c-.141.25-.297.577-.406.833a12.19 12.19 0 0 0-3.658 0 8.258 8.258 0 0 0-.412-.833.051.051 0 0 0-.052-.025c-1.125.194-2.22.534-3.257 1.011a.041.041 0 0 0-.021.018C.356 6.024-.213 9.047.066 12.032c.001.014.01.028.021.037a13.276 13.276 0 0 0 3.995 2.02.05.05 0 0 0 .056-.019c.308-.42.582-.863.818-1.329a.05.05 0 0 0-.01-.059.051.051 0 0 0-.018-.011 8.875 8.875 0 0 1-1.248-.595.05.05 0 0 1-.02-.066.051.051 0 0 1 .015-.019c.084-.063.168-.129.248-.195a.05.05 0 0 1 .051-.007c2.619 1.196 5.454 1.196 8.041 0a.052.052 0 0 1 .053.007c.08.066.164.132.248.195a.051.051 0 0 1-.004.085 8.254 8.254 0 0 1-1.249.594.05.05 0 0 0-.03.03.052.052 0 0 0 .003.041c.24.465.515.909.817 1.329a.05.05 0 0 0 .056.019 13.235 13.235 0 0 0 4.001-2.02.049.049 0 0 0 .021-.037c.334-3.451-.559-6.449-2.366-9.106a.034.034 0 0 0-.02-.019Zm-8.198 7.307c-.789 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.45.73 1.438 1.613 0 .888-.637 1.612-1.438 1.612Zm5.316 0c-.788 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.451.73 1.438 1.613 0 .888-.631 1.612-1.438 1.612Z" / >
< / svg > SURPRISE!!< span class = "discord-tag" > #8662< / span > < / span > < br > < a class = "link tooltip email-link" id = "email-replace-vijay" target = "_blank" href = "mailto:vijaykethanaboyina-at-gmail-dot-com" > vijaykethanaboyina (at) gmail (dot) com< / a > < / h5 >
2022-06-02 12:14:36 -07:00
< / div >
< / div >
2022-06-01 19:32:00 -07:00
< / article >
2022-06-03 15:38:07 -07:00
< article id = "tech" >
2022-06-01 19:32:00 -07:00
< h3 class = "team-title" > Tech< / h3 >
< div class = "team-entry" >
2022-07-19 13:14:06 -07:00
< a class = "tooltip" id = "website" target = "_blank" href = "https://jamesdinh.me/" > < div class = "team-picture" > < img id = "jd" src = "img/jd.png" loading = "lazy" alt = "profile picture" > < / div > < / a >
2022-06-01 19:32:00 -07:00
< div class = "team-description" >
2022-06-01 21:02:59 -07:00
< h4 class = "person-name" > James Dinh< / h4 >
< h5 class = "person-subtitle" > Lead Website Designer< / h5 >
2022-07-25 18:38:24 -07:00
< h5 class = "person-contact" > < span class = "tooltip discord" > < svg class = "discord-icon" xmlns = "http://www.w3.org/2000/svg" fill = "currentColor" viewBox = "0 0 16 16" >
2022-07-19 13:14:06 -07:00
< path d = "M13.545 2.907a13.227 13.227 0 0 0-3.257-1.011.05.05 0 0 0-.052.025c-.141.25-.297.577-.406.833a12.19 12.19 0 0 0-3.658 0 8.258 8.258 0 0 0-.412-.833.051.051 0 0 0-.052-.025c-1.125.194-2.22.534-3.257 1.011a.041.041 0 0 0-.021.018C.356 6.024-.213 9.047.066 12.032c.001.014.01.028.021.037a13.276 13.276 0 0 0 3.995 2.02.05.05 0 0 0 .056-.019c.308-.42.582-.863.818-1.329a.05.05 0 0 0-.01-.059.051.051 0 0 0-.018-.011 8.875 8.875 0 0 1-1.248-.595.05.05 0 0 1-.02-.066.051.051 0 0 1 .015-.019c.084-.063.168-.129.248-.195a.05.05 0 0 1 .051-.007c2.619 1.196 5.454 1.196 8.041 0a.052.052 0 0 1 .053.007c.08.066.164.132.248.195a.051.051 0 0 1-.004.085 8.254 8.254 0 0 1-1.249.594.05.05 0 0 0-.03.03.052.052 0 0 0 .003.041c.24.465.515.909.817 1.329a.05.05 0 0 0 .056.019 13.235 13.235 0 0 0 4.001-2.02.049.049 0 0 0 .021-.037c.334-3.451-.559-6.449-2.366-9.106a.034.034 0 0 0-.02-.019Zm-8.198 7.307c-.789 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.45.73 1.438 1.613 0 .888-.637 1.612-1.438 1.612Zm5.316 0c-.788 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.451.73 1.438 1.613 0 .888-.631 1.612-1.438 1.612Z" / >
< / svg > wellfedbison< span class = "discord-tag" > #0607< / span > < / span > < br > < a class = "link tooltip email-link" id = "email-replace-james" target = "_blank" href = "mailto:jamesdinh77-at-protonmail-dot-com" > jamesdinh77 (at) protonmail (dot) com< / a > < / h5 >
2022-06-01 19:32:00 -07:00
< / div >
< / div >
< div class = "team-entry" >
2022-07-25 18:14:03 -07:00
< div class = "team-picture" > < img src = "img/Gilroy_Hacks_Logo_icon_tp_podium.png" loading = "lazy" alt = "profile picture" > < / div >
2022-06-01 19:32:00 -07:00
< div class = "team-description" >
2022-06-01 23:56:29 -07:00
< h4 class = "person-name" > Clement Boiteux< / h4 >
< h5 class = "person-subtitle" > Tech Support< / h5 >
2022-07-25 18:38:24 -07:00
< h5 class = "person-contact" > < span class = "tooltip discord" > < svg class = "discord-icon" xmlns = "http://www.w3.org/2000/svg" fill = "currentColor" viewBox = "0 0 16 16" >
2022-07-19 13:14:06 -07:00
< path d = "M13.545 2.907a13.227 13.227 0 0 0-3.257-1.011.05.05 0 0 0-.052.025c-.141.25-.297.577-.406.833a12.19 12.19 0 0 0-3.658 0 8.258 8.258 0 0 0-.412-.833.051.051 0 0 0-.052-.025c-1.125.194-2.22.534-3.257 1.011a.041.041 0 0 0-.021.018C.356 6.024-.213 9.047.066 12.032c.001.014.01.028.021.037a13.276 13.276 0 0 0 3.995 2.02.05.05 0 0 0 .056-.019c.308-.42.582-.863.818-1.329a.05.05 0 0 0-.01-.059.051.051 0 0 0-.018-.011 8.875 8.875 0 0 1-1.248-.595.05.05 0 0 1-.02-.066.051.051 0 0 1 .015-.019c.084-.063.168-.129.248-.195a.05.05 0 0 1 .051-.007c2.619 1.196 5.454 1.196 8.041 0a.052.052 0 0 1 .053.007c.08.066.164.132.248.195a.051.051 0 0 1-.004.085 8.254 8.254 0 0 1-1.249.594.05.05 0 0 0-.03.03.052.052 0 0 0 .003.041c.24.465.515.909.817 1.329a.05.05 0 0 0 .056.019 13.235 13.235 0 0 0 4.001-2.02.049.049 0 0 0 .021-.037c.334-3.451-.559-6.449-2.366-9.106a.034.034 0 0 0-.02-.019Zm-8.198 7.307c-.789 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.45.73 1.438 1.613 0 .888-.637 1.612-1.438 1.612Zm5.316 0c-.788 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.451.73 1.438 1.613 0 .888-.631 1.612-1.438 1.612Z" / >
2022-07-23 18:34:15 -07:00
< / svg > Spidey< span class = "discord-tag" > #8742< / span > < / span > < br > < a class = "link tooltip email-link" id = "email-replace-ezra" target = "_blank" href = "mailto:ezrabridger27-at-gmail-dot-com" > ezrabridger27 (at) gmail (dot) com< / a > < / h5 >
2022-06-01 19:32:00 -07:00
< / div >
< / div >
< div class = "team-entry" >
2022-07-25 18:14:03 -07:00
< div class = "team-picture" > < img src = "img/Gilroy_Hacks_Logo_icon_tp_podium.png" loading = "lazy" alt = "profile picture" > < / div >
2022-06-01 19:32:00 -07:00
< div class = "team-description" >
2022-06-06 20:44:54 -07:00
< h4 class = "person-name" > Mark Shen< / h4 >
2022-06-01 23:56:29 -07:00
< h5 class = "person-subtitle" > Tech Support< / h5 >
2022-07-25 18:38:24 -07:00
< h5 class = "person-contact" > < span class = "tooltip discord" > < svg class = "discord-icon" xmlns = "http://www.w3.org/2000/svg" fill = "currentColor" viewBox = "0 0 16 16" >
2022-07-19 13:14:06 -07:00
< path d = "M13.545 2.907a13.227 13.227 0 0 0-3.257-1.011.05.05 0 0 0-.052.025c-.141.25-.297.577-.406.833a12.19 12.19 0 0 0-3.658 0 8.258 8.258 0 0 0-.412-.833.051.051 0 0 0-.052-.025c-1.125.194-2.22.534-3.257 1.011a.041.041 0 0 0-.021.018C.356 6.024-.213 9.047.066 12.032c.001.014.01.028.021.037a13.276 13.276 0 0 0 3.995 2.02.05.05 0 0 0 .056-.019c.308-.42.582-.863.818-1.329a.05.05 0 0 0-.01-.059.051.051 0 0 0-.018-.011 8.875 8.875 0 0 1-1.248-.595.05.05 0 0 1-.02-.066.051.051 0 0 1 .015-.019c.084-.063.168-.129.248-.195a.05.05 0 0 1 .051-.007c2.619 1.196 5.454 1.196 8.041 0a.052.052 0 0 1 .053.007c.08.066.164.132.248.195a.051.051 0 0 1-.004.085 8.254 8.254 0 0 1-1.249.594.05.05 0 0 0-.03.03.052.052 0 0 0 .003.041c.24.465.515.909.817 1.329a.05.05 0 0 0 .056.019 13.235 13.235 0 0 0 4.001-2.02.049.049 0 0 0 .021-.037c.334-3.451-.559-6.449-2.366-9.106a.034.034 0 0 0-.02-.019Zm-8.198 7.307c-.789 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.45.73 1.438 1.613 0 .888-.637 1.612-1.438 1.612Zm5.316 0c-.788 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.451.73 1.438 1.613 0 .888-.631 1.612-1.438 1.612Z" / >
< / svg > No Game No life< span class = "discord-tag" > #4534< / span > < / span > < br > < a class = "link tooltip email-link" id = "email-replace-mark" target = "_blank" href = "mailto:markshen00-at-gmail-dot-com" > markshen00 (at) gmail (dot) com< / a > < / h5 >
2022-06-01 19:32:00 -07:00
< / div >
< / div >
2022-06-01 23:56:29 -07:00
< / article >
2022-06-03 15:38:07 -07:00
< article id = "marketing" >
2022-06-01 23:56:29 -07:00
< h3 class = "team-title" > Marketing< / h3 >
2022-06-01 19:32:00 -07:00
< div class = "team-entry" >
2022-07-25 18:14:03 -07:00
< div class = "team-picture" > < img src = "img/Gilroy_Hacks_Logo_icon_tp_podium.png" loading = "lazy" alt = "profile picture" > < / div >
2022-06-01 19:32:00 -07:00
< div class = "team-description" >
2022-06-01 23:56:29 -07:00
< h4 class = "person-name" > Bryce Mankovsky< / h4 >
< h5 class = "person-subtitle" > Marketing Manager< / h5 >
2022-07-25 18:38:24 -07:00
< h5 class = "person-contact" > < span class = "tooltip discord" > < svg class = "discord-icon" xmlns = "http://www.w3.org/2000/svg" fill = "currentColor" viewBox = "0 0 16 16" >
2022-07-19 13:14:06 -07:00
< path d = "M13.545 2.907a13.227 13.227 0 0 0-3.257-1.011.05.05 0 0 0-.052.025c-.141.25-.297.577-.406.833a12.19 12.19 0 0 0-3.658 0 8.258 8.258 0 0 0-.412-.833.051.051 0 0 0-.052-.025c-1.125.194-2.22.534-3.257 1.011a.041.041 0 0 0-.021.018C.356 6.024-.213 9.047.066 12.032c.001.014.01.028.021.037a13.276 13.276 0 0 0 3.995 2.02.05.05 0 0 0 .056-.019c.308-.42.582-.863.818-1.329a.05.05 0 0 0-.01-.059.051.051 0 0 0-.018-.011 8.875 8.875 0 0 1-1.248-.595.05.05 0 0 1-.02-.066.051.051 0 0 1 .015-.019c.084-.063.168-.129.248-.195a.05.05 0 0 1 .051-.007c2.619 1.196 5.454 1.196 8.041 0a.052.052 0 0 1 .053.007c.08.066.164.132.248.195a.051.051 0 0 1-.004.085 8.254 8.254 0 0 1-1.249.594.05.05 0 0 0-.03.03.052.052 0 0 0 .003.041c.24.465.515.909.817 1.329a.05.05 0 0 0 .056.019 13.235 13.235 0 0 0 4.001-2.02.049.049 0 0 0 .021-.037c.334-3.451-.559-6.449-2.366-9.106a.034.034 0 0 0-.02-.019Zm-8.198 7.307c-.789 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.45.73 1.438 1.613 0 .888-.637 1.612-1.438 1.612Zm5.316 0c-.788 0-1.438-.724-1.438-1.612 0-.889.637-1.613 1.438-1.613.807 0 1.451.73 1.438 1.613 0 .888-.631 1.612-1.438 1.612Z" / >
< / svg > bmank52< span class = "discord-tag" > #1664< / span > < / span > < br > < a class = "link tooltip email-link" id = "email-replace-bryce" target = "_blank" href = "mailto:brycemankovsky-at-gmail-dot-com" > brycemankovsky (at) gmail (dot) com< / a > < / h5 >
2022-06-01 19:32:00 -07:00
< / div >
< / div >
< / article >
< / div >
2022-05-30 00:43:44 -07:00
< / section >
2022-05-29 16:50:10 -07:00
< / main >
2022-05-30 00:43:44 -07:00
<!-- Footer -->
< footer >
2022-06-30 13:19:56 -07:00
< div id = "footer-container" >
2022-07-25 18:38:24 -07:00
< div id = "footer-desc" >
2022-07-25 18:14:03 -07:00
< div id = "footer-logo-div" > < img id = "footer-logo" src = "img/Gilroy_Hacks_Logo_Summer_wide_2.png" alt = "logo" / > < / div >
2022-06-30 13:19:56 -07:00
< p >
2022-07-04 23:22:07 -07:00
Gilroy Hacks is a student-led organization focused on promoting community engagement and improving STEM exposure for local middle/high school students.
2022-06-30 13:19:56 -07:00
< / p >
< div id = "socials" >
2022-07-22 09:45:32 -07:00
< div > < a class = "tooltip" id = "facebook" target = "_blank" href = "https://www.facebook.com/profile.php?id=100082498013066" > < svg xmlns = "http://www.w3.org/2000/svg" width = "24" height = "24" viewBox = "0 0 24 24" fill = "#ffffff" > < path d = "M12 0c6.627 0 12 5.373 12 12s-5.373 12-12 12S0 18.627 0 12 5.373 0 12 0zm4 7.278V4.5h-2.286c-2.1 0-3.428 1.6-3.428 3.889v1.667H8v2.777h2.286V19.5h2.857v-6.667h2.286L16 10.056h-2.857V8.944c0-1.11.572-1.666 1.714-1.666H16z" / > < / svg > < / a > < / div >
< div class = "socials-icon" > < a class = "tooltip" id = "instagram" target = "_blank" href = "https://www.instagram.com/gilroyhacks/" > < svg xmlns = "http://www.w3.org/2000/svg" width = "24" height = "24" viewBox = "0 0 24 24" fill = "#ffffff" > < path d = "M12 0c6.6274 0 12 5.3726 12 12s-5.3726 12-12 12S0 18.6274 0 12 5.3726 0 12 0zm3.115 4.5h-6.23c-2.5536 0-4.281 1.6524-4.3805 4.1552L4.5 8.8851v6.1996c0 1.3004.4234 2.4193 1.2702 3.2359.7582.73 1.751 1.1212 2.8818 1.1734l.2633.006h6.1694c1.3004 0 2.389-.4234 3.1754-1.1794.762-.734 1.1817-1.7576 1.2343-2.948l.0056-.2577V8.8851c0-1.2702-.4234-2.3589-1.2097-3.1452-.7338-.762-1.7575-1.1817-2.9234-1.2343l-.252-.0056zM8.9152 5.8911h6.2299c.9072 0 1.6633.2722 2.2076.8166.4713.499.7647 1.1758.8103 1.9607l.0063.2167v6.2298c0 .9375-.3327 1.6936-.877 2.2077-.499.4713-1.176.7392-1.984.7806l-.2237.0057H8.9153c-.9072 0-1.6633-.2722-2.2076-.7863-.499-.499-.7693-1.1759-.8109-2.0073l-.0057-.2306V8.885c0-.9073.2722-1.6633.8166-2.2077.4712-.4713 1.1712-.7392 1.9834-.7806l.2242-.0057h6.2299-6.2299zM12 8.0988c-2.117 0-3.871 1.7238-3.871 3.871A3.8591 3.8591 0 0 0 12 15.8408c2.1472 0 3.871-1.7541 3.871-3.871 0-2.117-1.754-3.871-3.871-3.871zm0 1.3911c1.3609 0 2.4798 1.119 2.4798 2.4799 0 1.3608-1.119 2.4798-2.4798 2.4798-1.3609 0-2.4798-1.119-2.4798-2.4798 0-1.361 1.119-2.4799 2.4798-2.4799zm4.0222-2.3589a.877.877 0 1 0 0 1.754.877.877 0 0 0 0-1.754z" / > < / svg > < / a > < / div >
2022-06-30 13:19:56 -07:00
< / div >
< hr id = "footer-line" >
< p id = "footer-copyright" >
© 2022 Gilroy Hacks. All Rights Reserved
< / p >
2022-07-25 18:38:24 -07:00
< / div >
2022-06-30 13:19:56 -07:00
< article id = "footer-links" >
2022-07-23 16:47:05 -07:00
< h3 class = "footer-title" > Links< / h3 >
2022-06-30 13:19:56 -07:00
< ul >
2022-07-18 22:11:49 -07:00
< li > < a class = "link" onclick = "check('02'); save()" target = "_blank" href = "https://discord.gg/nkTDKMcYbr" title = "Discord Invite Link" > Discord< svg class = "new-tab-icon" xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 512 512" > <!-- ! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --> < path d = "M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z" / > < / svg > < / a > < / li >
< li > < a class = "link" onclick = "check('01'); save();" target = "_blank" href = "https://forms.gle/coK7q43RwBV2f15i7" > Signup Form< svg class = "new-tab-icon" xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 512 512" > <!-- ! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --> < path d = "M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z" / > < / svg > < / a > < / li >
< li > < a class = "link" target = "_blank" href = "https://sccl.bibliocommons.com/events/62acbe100685eb4200c37c48" title = "Gilroy Library Event" > Library Event Entry< svg class = "new-tab-icon" xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 512 512" > <!-- ! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --> < path d = "M384 320c-17.67 0-32 14.33-32 32v96H64V160h96c17.67 0 32-14.32 32-32s-14.33-32-32-32L64 96c-35.35 0-64 28.65-64 64V448c0 35.34 28.65 64 64 64h288c35.35 0 64-28.66 64-64v-96C416 334.3 401.7 320 384 320zM488 0H352c-12.94 0-24.62 7.797-29.56 19.75c-4.969 11.97-2.219 25.72 6.938 34.88L370.8 96L169.4 297.4c-12.5 12.5-12.5 32.75 0 45.25C175.6 348.9 183.8 352 192 352s16.38-3.125 22.62-9.375L416 141.3l41.38 41.38c9.156 9.141 22.88 11.84 34.88 6.938C504.2 184.6 512 172.9 512 160V24C512 10.74 501.3 0 488 0z" / > < / svg > < / a > < / li >
2022-07-26 00:39:50 -07:00
< li > < a class = "link" href = "rules.html" title = "Rules" > Rules & Liability< / a > < / li >
2022-06-30 17:13:22 -07:00
< li > < a class = "link" href = "licenses.html" title = "Licenses" > Licenses< / a > < / li >
2022-07-06 15:51:50 -07:00
< li > < a class = "link" href = "contact.html" title = "Contact" > Contact Form< / a > < / li >
2022-06-30 13:19:56 -07:00
< / ul >
< / article >
2022-07-06 15:51:50 -07:00
< article id = "footer-location" >
2022-07-23 16:47:05 -07:00
< h3 class = "footer-title" > Location< / h3 >
2022-06-30 13:45:55 -07:00
< ul >
< li > Gilroy Library< br > 350 W 6th St, Gilroy, CA 95020< / li >
< / ul >
< / article >
2022-06-30 13:19:56 -07:00
< / div >
2022-05-30 00:43:44 -07:00
< / footer >
2022-05-26 22:09:31 -07:00
< / body >
< / html >