-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
93 lines (93 loc) · 5.24 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<title>Minus Twelve</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..600;1,300..600&display=swap" rel="stylesheet">
</head>
<body>
<a href="https://hackclub.com" target="_blank" rel="noopener noreferrer">
<img id="flag" src="assets/flag-orpheus-left-bw.svg" />
</a>
<center id="hero">
<p id="huddle">This event is over!</p>
<h1><span id="minus">minus</span> <span id="twelve">twelve</span></h1><img id="twelve_gon" src="assets/12-gon.svg" />
<h4><span id="you_ship">Make a useful tool —</span> <span id="we_ship">Get a microcontroller</span></h4>
<a id="gallery_link" href="/gallery.html">Gallery</a>
</center>
<center id="arrow_container">
<img id="arrow" src="assets/arrow-down.svg">
</center>
<main>
<div class="section">
<h2>what is this?</h2>
<p>
<b>Minus Twelve</b> is a <a href="https://ysws.hackclub.com" target="_blank">You Ship, We Ship</a> event about <i>tools.</i>
<br>
Use <b>JavaScript</b> or <b>TypeScript</b> to design a useful piece of software, and we'll send you a shiny new <i>microcontroller board</i> to help you design some useful hardware!
</p>
</div>
<div class="section">
<h2>what's a tool?</h2>
<p>A <i>tool</i> is something that helps you and other hackers <i>solve a problem</i>. It should be easy for people to use, and it should be usable by lots of different people.</p>
<p>For this YSWS, you should aim to spend <b>12 hours or less</b> designing your tool. You can spend more time on it if you need to, but the focus is on <i>smaller projects</i> — it doesn't have to be perfect!</p>
<p>Consider the following questions:</p>
<ol>
<li>What is something I've had to write code for over and over again that can be <i>abstracted</i> to make it easier to do?</li>
<li>Is there something I've had to do in the past that I can <i>improve</i> by solving a certain problem?</li>
</ol>
<p>If you have an answer for either of these, there's probably a good tool in there somewhere!</p>
<p>Still stuck? Here are a few examples of great tools:</p>
<ul>
<li><a href="https://github.com/sporeball/tentamen" target="_blank">tentamen</a>, which helps you test JavaScript code (by <a href="https://hackclub.slack.com/team/U01G0Q9K998" target="_blank">@lux</a>)</li>
<li><a href="https://github.com/sindresorhus/pretty-ms" target="_blank">pretty-ms</a>, which helps you make time values look nice (by <a href="https://github.com/sindresorhus" target="_blank">@sindresorhus</a>)</li>
<li><a href="https://github.com/visionmedia/node-progress" target="_blank">progress</a>, which helps you draw text-based progress bars (by <a href="https://github.com/visionmedia" target="_blank">@visionmedia</a>)</li>
</ul>
</div>
<div class="section">
<h2>what do i need to do?</h2>
<ol>
<li>
<b>Create a tool.</b>
<br>
This must be written in <b>JavaScript</b> or <b>TypeScript</b>, but can do anything you want. <i>Be creative!</i>
<br>
It also needs to include a <i>well-written description</i> of how you're supposed to use it. Look at the examples above for ideas!
</li>
<li>
<b>Make it public.</b>
<br>
Your tool must live in a <i>public GitHub repository</i> so that other hackers can find it and look at your code.
<br>
It also needs to be published to a JavaScript <i>package manager</i>, such as <a href="https://www.npmjs.com" target="_blank">npm</a>.
</li>
<li>
<b>Tell us about it.</b>
<br>
Join <a href="https://hackclub.slack.com/archives/C087S82MNFR" target="_blank">#minus-twelve</a> on the Hack Club Slack and tell us about your tool!
<br>
If you want to hack on your tool with others, we will also be running <i>two huddles</i> in this channel <i>every day</i> — one at <b>12PM EST</b> for US/EU and one at <b>10PM EST</b> for APAC!
</li>
<li>
<b>Get a microcontroller!</b>
<br>
If you finish creating your tool and <b>submit it</b> by <b>January 27, 2025</b> at <b>11:59PM EST</b>, we'll send you a microcontroller to help kickstart your next project!
<br>
We might even send some extra accessories, too. Stay tuned...
</li>
</ol>
</div>
</main>
<footer>
<center id="footer">
<p><span class="muted">(c)</span> 2025 <a href="https://hackclub.com" target="_blank" rel="noopener noreferrer">Hack Club</a></p>
<p>Made with <img id="love" src="assets/heart.svg"> by <a href="https://github.com/sporeball" target="_blank">@lux</a></p>
</center>
</footer>
<script src="script.js"></script>
</body>
</html>