diff --git a/public/js/carousel.js b/public/js/carousel.js index 4daaa464..08f98663 100644 --- a/public/js/carousel.js +++ b/public/js/carousel.js @@ -6,7 +6,7 @@ function initCarousel(container, options = {}) { const buttonContainer = container.querySelector('.carousel-buttons'); let current = 0; - function activateCarousel(i) { + function activateCarousel(i, silent = false) { const items = document.querySelectorAll('.carousel-item'); for (const item of items) { item.classList.remove('active'); @@ -29,7 +29,9 @@ function initCarousel(container, options = {}) { current = i; - onChange(current); + if (!silent) { + onChange(current); + } } function activateNext() { @@ -67,7 +69,7 @@ function initCarousel(container, options = {}) { buttonContainer.appendChild(button); } - activateCarousel(0); + activateCarousel(0, true); return { next: activateNext, diff --git a/src/config/types.go b/src/config/types.go index 2235476f..c67a8961 100644 --- a/src/config/types.go +++ b/src/config/types.go @@ -75,12 +75,11 @@ type DiscordConfig struct { OAuthClientID string OAuthClientSecret string - GuildID string - MemberRoleID string - ShowcaseChannelID string - LibraryChannelID string - StreamsChannelID string - JamShowcaseChannelID string + GuildID string + MemberRoleID string + ShowcaseChannelID string + LibraryChannelID string + StreamsChannelID string } type TwitchConfig struct { diff --git a/src/hmndata/jams.go b/src/hmndata/jams.go index 6ed88228..96a7f1bd 100644 --- a/src/hmndata/jams.go +++ b/src/hmndata/jams.go @@ -8,6 +8,7 @@ import ( "git.handmade.network/hmn/hmn/src/db" "git.handmade.network/hmn/hmn/src/models" "git.handmade.network/hmn/hmn/src/oops" + "git.handmade.network/hmn/hmn/src/utils" ) type Jam struct { @@ -27,8 +28,8 @@ var WRJ2021 = Jam{ var WRJ2022 = Jam{ Name: "Wheel Reinvention Jam 2022", Slug: "WRJ2022", - StartTime: time.Date(2022, 8, 15, 0, 0, 0, 0, time.UTC), - EndTime: time.Date(2022, 8, 22, 0, 0, 0, 0, time.UTC), + StartTime: time.Date(2022, 8, 15, 8, 0, 0, 0, utils.Must1(time.LoadLocation("America/Los_Angeles"))), + EndTime: time.Date(2022, 8, 22, 8, 0, 0, 0, utils.Must1(time.LoadLocation("America/Los_Angeles"))), } var AllJams = []Jam{WRJ2021, WRJ2022} diff --git a/src/templates/src/wheeljam_2022_index.html b/src/templates/src/wheeljam_2022_index.html index 49d6a1b7..ad25c520 100644 --- a/src/templates/src/wheeljam_2022_index.html +++ b/src/templates/src/wheeljam_2022_index.html @@ -156,6 +156,11 @@ text-decoration: underline; } + .emphasized { + padding-left: 1rem; + border-left: 0.3rem solid white; + } + .flex-fair { flex-basis: 1px; flex-grow: 1; @@ -268,12 +273,23 @@ {{ template "header.html" . }} + {{ $discordInviteURL := "https://discord.gg/zFt8Rf59?event=1004511448107602031" }} +
- These screenshots and videos were shared in #jam-showcase on our Discord. Join us! + These screenshots and videos were shared by jam participants in #project-showcase on our Discord. Join us and share what you're working on!
{{ else }} -- Post-jam text + These screenshots and videos were shared by jam participants in #project-showcase on our Discord during the jam. Join us and chat about your favorites!
{{ end }} @@ -329,111 +345,141 @@- We had many incredible entries last year. Here are a few of our favorites: -
+ {{ if gt .DaysUntilStart 0 }} ++ We had many incredible entries last year. Here are a few of our favorites: +
-- Scroll is an experimental new typesetting format and editor. The document structure is inherently non-textual; in fact, even words within paragraphs are individual nodes that can easily be selected and moved as a whole. It's a great proof-of-concept of what "word processors" could be—and it even has a PDF export. -
- Full Submission ➜ - Recap Interview ➜ ++ Scroll is an experimental new typesetting format and editor. The document structure is inherently non-textual; in fact, even words within paragraphs are individual nodes that can easily be selected and moved as a whole. It's a great proof-of-concept of what "word processors" could be—and it even has a PDF export. +
+ Full Submission ➜ + Recap Interview ➜ ++ Near (or Near Manager) is an experimental file viewer that breaks away from a plain hierarchy. By allowing you to flatten folder hierarchies, create custom groups, and reorder your files, Near allows you to tame any complex file structure and view it in a way that works for you. +
+ Full Submission ➜ + Recap Interview ➜ ++ This project extended an existing personal project with a unique way of exploring Twitter threads. When the author found existing layout algorithms insufficient, he decided to roll his own. The project submission is an insightful look at why you sometimes need to do things yourself. +
++ This project was featured as a demo at Handmade Seattle 2021. +
+ Full Submission ➜ + Recap Interview ➜ + Handmade Seattle Demo ➜ ++ This project explores a new way of querying SQL databases, by throwing away SQL in favor of a visual node graph. It allows you to incrementally build queries, seeing the data at every point along the way, and to reuse smaller queries in a way SQL cannot. +
+ Full Submission ➜ + Recap Interview ➜ +- Near (or Near Manager) is an experimental file viewer that breaks away from a plain hierarchy. By allowing you to flatten folder hierarchies, create custom groups, and reorder your files, Near allows you to tame any complex file structure and view it in a way that works for you. -
- Full Submission ➜ - Recap Interview ➜ -- This project extended an existing personal project with a unique way of exploring Twitter threads. When the author found existing layout algorithms insufficient, he decided to roll his own. The project submission is an insightful look at why you sometimes need to do things yourself. -
-- This project was featured as a demo at Handmade Seattle 2021. -
- Full Submission ➜ - Recap Interview ➜ - Handmade Seattle Demo ➜ -- This project explores a new way of querying SQL databases, by throwing away SQL in favor of a visual node graph. It allows you to incrementally build queries, seeing the data at every point along the way, and to reuse smaller queries in a way SQL cannot. -
- Full Submission ➜ - Recap Interview ➜ -The jam takes place from Monday, August 15 through Sunday, August 21. Here's how you can participate:
-- Find a project idea that excites you! Whether there's a project you've always wanted to start, or you're looking for inspiration, join the conversation over on our Wishlist, brainstorm project ideas, and find a team. -
++ Find a project idea that excites you! Join the conversation over on our Wishlist, brainstorm ideas in #jam on Discord, or just invite some friends to jam with you. +
+- Create a personal Handmade Network project to track your work. Then, build your program over the course of the week. Sharing your work in progress is highly recommended - you can share WIP content in #project-showcase on Discord, or directly from your project page. -
++ {{ if eq .DaysUntilStart 0 }} + Create a Handmade Network project + {{ else }} + After the jam starts, create a Handmade Network project + {{ end }} + to track your work. Then, build your program! Share your work in progress in #project-showcase on Discord, or directly from your project page. +
+- Your Handmade Network project acts as your submission. Fill out the project description, making sure to explain the goals of the project and how it improves on what came before. Also consider posting an update on the project with video of your program in action! -
++ Your Handmade Network project is your submission. Fill out the project description, making sure to explain the goals of the project and how it improves on what came before. Also consider posting an update with video of your program in action! +
+ {{ if and (eq .DaysUntilStart 0) (gt .DaysUntilEnd 0) }} ++ Submissions close . +
+ {{ else if eq .DaysUntilEnd 0 }} ++ Submissions are now closed. +
+ {{ end }} +There are no explicit winners, but we will be selecting a few of our favorite projects to highlight in a recap stream following the jam.
+ ++ {{ with .SubmittedProjectUrl }} + Your Handmade Network project + {{ else }} + Your Handmade Network project + {{ end }} + is your submission. We will be looking at the project's description and any extra updates you share toward the end of the jam. +
Submit your work by the end of August 21 in your local timezone.
-- Your description must contain multiple screenshots of your software in action. You should ideally also share a project update with a demo video. -
-- We recommend Mārtiņš Možeiko's wcap for recording desktop video on Windows. On Mac, just press ⌘-Option-5 and record a video, or use QuickTime. -
-