Skip to content

Commit

Permalink
Fix: Changed all 2024 to 2025, Prizes section removed, Dino image upd…
Browse files Browse the repository at this point in the history
…ated
  • Loading branch information
anagha166 committed Jan 18, 2025
1 parent 9e494a9 commit 02e61af
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2024 Data Science Student Society at UCSD
Copyright (c) 2025 Data Science Student Society at UCSD

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# DataHacks 2024
Repository to host and store website for DataHacks 2024.
# DataHacks 2025
Repository to host and store website for DataHacks 2025.

## License
This project is licensed under the MIT license. For more information see `LICENSE`.
4 changes: 2 additions & 2 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ window.addEventListener('load', async () => {
if (calculateTimeDifference(times['end']) < 0) { // After the end
clearInterval(x);
countdown.innerHTML = `
<h3>DataHacks 2024 has concluded!</h3>
<h3>DataHacks 2025 has concluded!</h3>
<button onclick="location.href='https://www.ds3ucsd.com/'">Join us next year and check out DS3!</button><br>
`;
countdown.style.display = 'block';
countdown.style.textAlign = 'center';
} else { // Between start and end
targetTime = times['end']
countdown.insertAdjacentHTML('beforebegin', "<h3>DataHacks 2024 has begun!</h3>")
countdown.insertAdjacentHTML('beforebegin', "<h3>DataHacks 2025 has begun!</h3>")
tillMsg.innerHTML = 'till DataHacks ends!'
distance = calculateTimeDifference(targetTime)
}
Expand Down
Binary file added assets/imgs/newDatasaur.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"signupLink": "https://tally.so/r/mOzlYa",
"faq": {
"Will there be food/drink served?": "Yes, thanks to our sponsor Quokka, there will be energy drinks and coffee. In addition, there will be meals provided.",
"Who is the event host?": "DataHacks 2024 is hosted by Data Science Student Society at UC San Diego.",
"Who is the event host?": "DataHacks 2025 is hosted by Data Science Student Society at UC San Diego.",
"What size can teams be?": "Teams can be anywhere between 1-4 people!",
"Any experience required?": "Absolutely no experience is required to participate in DataHacks!",
"Will hardware be provided?": "Unfortunately, we will not be able to provide any hardware to participants and instead encourage those to bring their own hardware.",
Expand Down
12 changes: 7 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DataHacks 2024 | DS3 at UCSD</title>
<title>DataHacks 2025 | DS3 at UCSD</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="assets/imgs/datahacks-logo.png">
<script src="app.js"></script>
Expand All @@ -30,7 +30,7 @@

<!-- Title View -->
<section id="title">
<h1>DATAHACKS 2024</h1>
<h1>DATAHACKS 2025</h1>
<div id="countdown">
<div class="timebox">
<span id="days">x</span>
Expand All @@ -53,18 +53,19 @@ <h4 id="until-msg">till DataHacks begins!</h4>
</section>

<section id="about">
<h2>Welcome to DS3 DataHacks 2024!</h2>
<h2>Welcome to DS3 DataHacks 2025!</h2>
<div id="about-wrap">
<img src="assets/imgs/dino2.png">
<img src="assets/imgs/newDatasaur.png">
<p>DataHacks is a hackathon event held at UC San Diego that encourages students of all experience levels to leave the safety of their Jupyter Notebook and delve deeper into Data Science. Created out of pure passion, DataHacks hopes to educate those interested about the realm Data Science and its potential. Those participating in DataHacks will have the opportunity to create a project using data given to them or wrangled and will compete against their peers for the best project.</p>
</div>
</section>

<!-- Prizes -->
<section id="prizes">
<h2>Prizes</h2>
<p>To be Announced!</p>
<!--
<p>Here are some prizes made possible by our generous sponsors! For more prizes, see our devpost!</p>

<div id="prize-row">
<div class="prize-card" id="prize-second">
<div class="round-place">2nd</div>
Expand Down Expand Up @@ -96,6 +97,7 @@ <h3>3rd Place</h3>
</div>
</div>
</div>
-->
</section>

<!-- Sponsors -->
Expand Down
2 changes: 1 addition & 1 deletion styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ section h2 {
margin: 2rem auto;
}
#about img {
max-width: 15%;
max-width: 25%;
height: auto;
object-fit: contain;
}
Expand Down

0 comments on commit 02e61af

Please sign in to comment.