news section for web site

This commit is contained in:
ohsqueezy 2023-12-21 23:49:40 -05:00
parent 66043aa393
commit 33beb9df6f
12 changed files with 392 additions and 66 deletions

3
.gitignore vendored
View File

@ -20,3 +20,6 @@ www/scrapeboard_new.gif
kicad/*/*-backups
scrapeboard_hat*.zip
_autosave-*
www/Scrapeboard_Cyber_Monday_auction.webp
www/Scrapeboard_Cyber_Monday_auction_long.webp
www/Scrapeboard_auction_flyer_with_stream.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

View File

@ -2,16 +2,19 @@
#
# It requires custom hardware to play but can be tested in keyboard mode without
# the hardware. For more information on setting up and running the game, see
# README.md, or for the game in general, visit <https://scrape.nugget.fun/>.
# README.md. For information on the game in general, see <https://scrape.nugget.fun/>.
#
# Full open source code is available at <https://git.nugget.fun/scrape/scrapeboard>.
#
# This module can be imported and used to check on the status of connections between four GPIO
# inputs on the Raspberry Pi for detecting the pads in Scrapeboard.
#
# When run as a script, it prints connections detected between the input GPIO pins.
# It can also be run as a diagnostic script, in which case it prints connections detected between
# the input GPIO pins. Use the `-h` flag to print the options.
#
# Original algorithm by Dr. Clement Shimizu is translated from Arduino code in serial/serial.ino
# $ python3 gpio.py -h
#
# Original algorithm by Dr. Clement Shimizu is taken from his Arduino code in serial/serial.ino
import time, itertools, argparse
import RPi.GPIO as GPIO

Binary file not shown.

After

Width:  |  Height:  |  Size: 364 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

BIN
www/cat.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 262 KiB

BIN
www/hoop.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

View File

@ -24,22 +24,64 @@
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="description" content="Scrapeboard is a new kind of arcade game played on a skateboard deck and four pads that combines elements of rhythm, racing, and fighting games to create a unique, challenging, and physically demanding boss rush experience." />
<meta name="keywords" content="arcade, arcade games, diy arcade cabinets, alt ctrl, alternative controllers, video games, indie game, indie games, indie dev, gamedev, game dev, game programming">
<meta property="og:url" content="https://scrape.nugget.fun">
<meta property="og:title" content="Scrapeboard">
<meta property="og:description" content="Scrapeboard is a new kind of arcade game played on a skateboard deck and four pads that combines elements of rhythm, racing, and fighting games to create a unique, challenging, and physically demanding boss rush experience.">
<meta name="twitter:title" content="Scrapeboard 🛹💥">
<meta property="og:image" content="https://scrape.nugget.fun/www/open_graph_card.jpg">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@diskmem">
<meta name="twitter:creator" content="@diskmem">
<title>Scrapeboard</title>
<meta property="og:url" content="https://scrape.nugget.fun">
<meta property="og:title" content="Scrapeboard 🛹💥">
<meta property="og:description" content="Scrapeboard is a new kind of arcade game played on a skateboard deck and four pads that combines elements of rhythm, racing, and fighting games to create a unique, challenging, and physically demanding boss rush experience.">
<meta property="og:image" content="https://scrape.nugget.fun/www/open_graph_card.jpg">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="1292">
<meta property="og:image:height" content="646">
<meta property="og:type" content="website">
<title>Scrapeboard 🛹💥</title>
<link rel="stylesheet" href="www/style.css" type="text/css" />
</head>
<body>
<!-- AUTOPLAY HEADER VIDEO -->
<!-- ************************************************************ NEWS POP-UP ***************************************************************** -->
<style>
div#banner
{
background: yellow;
padding: 5px;
border-bottom: 3px double #000;
}
/* landscape */
@media (min-width: 800px)
{
div#banner
{
font-size: 22px;
text-align: center;
}
}
/* portrait */
@media (max-width: 800px)
{
div#banner
{
font-size: 16px;
text-align: justify;
}
}
</style>
<!--
<div id="banner">
Scrapeboard <b>CYBER MONDAY auction</b> is <i><a href="https://www.ebay.com/itm/235303327614">now live</a></i>! Watch the ending here and <a href="https://www.twitch.tv/snakesandrews">on Twitch</a> <i>11/27 6pm - 10pm EST</i> <a href="#news">📰</a>
</div>
-->
<!-- ****************************************************** AUTOPLAY HEADER VIDEO ************************************************************* -->
<style>
@ -148,7 +190,7 @@
<img src="www/koolMan.gif" />
</div>
<!-- ONE LINE DESCRIPTION -->
<!-- ************************************************************ ONE LINE DESCRIPTION ******************************************************** -->
<style>
@ -210,7 +252,7 @@
<img id="head_2" src="www/ad_head_transparent_2.png" />
</div>
<!-- GIFS -->
<!-- **************************************************************** GIFS ************************************************************** -->
<style>
@ -258,7 +300,7 @@
<a href="www/Boarding_3.gif" id="boarding_4"><img src="www/Boarding_3_thumb.gif" /></a>
</div>
<!-- HOW TO PLAY -->
<!-- ********************************************************** HOW TO PLAY *************************************************************** -->
<style>
@ -375,7 +417,163 @@
<img src="www/ad_description_transparent_3.png" />
</div>
<!-- CALENDAR -->
<!-- *************************************************************** NEWS ********************************************************* -->
<style>
div#news
{
background: rgb(88.0, 192.0, 64.0);
text-align: justify;
color: #222;
margin: 0px;
}
div#auction_flyer
{
display: grid;
justify-content: center;
align-items: center;
margin: 0px;
}
img.stretch
{
width: 100%;
aspect-ratio: 10 / 1;
margin: 0px;
}
div#auction_flyer img
{
width: 100%;
}
div#auction_flyer video
{
width: 70%;
}
/* landscape */
@media (min-width: 800px)
{
div#news
{
padding: 10px 15%;
padding-top: 27px;
font-size: 22px;
}
div#auction_flyer
{
grid-template-columns: 1fr 1fr;
}
}
/* portrait */
@media (max-width: 800px)
{
div#news
{
padding: 6px 3%;
font-size: 18px;
}
div#auction_flyer
{
grid-gap: 20px;
}
div#news img#auction_flyer
{
display: block;
width: 100%;
margin-bottom: 10px;
border-radius: 12px;
}
}
</style>
<img class="stretch" src="www/hoop.gif" />
<div id="news">
<div id="auction_flyer">
<video controls loop>
<source src="www/Scrapeboard_Cyber_Monday_auction.mp4">
</video>
<a href="https://www.eventbrite.com/e/barnyardia-direct-cyber-monday-the-first-scrapeboard-kit-auction-live-tickets-754801209737"><img id="auction_flyer" src="www/Scrapeboard_auction_flyer.png" /></a>
</div>
</p>
<p>
<b><i>Monday, November 27th, 2024</i></b>
</p>
<p>
Deals are upon us! It's the one and only Cyber Monday, and the first Scrapeboard for home and shared use is officially going to sell at 9PM EST tonight. We appreciate your support and hope to be able to provide all of you with kits in 2024. You have pushed the price past the cost of materials, which is beyond what we were expecting for the first sale. Tune in for the ending at <a href="https://twitch.tv/snakesandrews">https://twitch.tv/snakesandrews</a> live from 6PM to 9PM EST tonight.
</p>
<ul>
<li><a href="https://www.ebay.com/itm/235303327614"><b>Auction is now live on eBay</b></a> 📈</li>
<li><a href="https://www.eventbrite.com/e/barnyardia-direct-cyber-monday-the-first-scrapeboard-kit-auction-live-tickets-754801209737"><b>Free RSVPs for party and tournament</b></a> 🎟</li>
</ul>
<p>
For reference, this is the current cost of materials, which we are still working on reducing for 2024, so you can see the value you are getting and confidently <a href="https://www.ebay.com/itm/235303327614">bid on this cyber deal</a>.
</p>
<p>
<pre>
Birch plywood $68
Raspberry Pi 4 2GB $45
Raspberry Pi power adapter $11
Aluminum plates $30
Skatedeck $25
32GB micro SD card $4
Micro HDMI to HDMI adapter $8
----
total $191
</pre>
</p>
<p>
We're going to make one last push up to the closing, and we'll start by announcing that we're going to add another piece of equipment: <b>a generously donated Arduino</b> given to us by <a href="https://artfail.com">JP Bruneau</a>! Our custom adapter fits into both Raspberry Pi and Arduino, so in addition to TV or projector, you will also be able to play on your own computer and even modify the open source software and electronics code using this Arduino.
</p>
<p>
We also want to mention that <b>10% of the purchase will be donated</b> to Boshi's Place, a Brooklyn co-working and event space for independent games where we are hosting <a href="https://www.eventbrite.com/e/barnyardia-direct-cyber-monday-the-first-scrapeboard-kit-auction-live-tickets-754801209737">the live event</a> tonight.
</p>
<p>
And we are offering <b>free pickup</b> from New York City or MAGFest 2024.
</p>
<p>
Thanks again for your bids and happy Cyber Monday!
</p>
<p>
<b><i>Monday, November 6th, 2024</i></b>
</p>
<p>
We're good and tickled to share with you some exciting news which is also an opportunity for you and that is that <b>we are auctioning off
the first at-home Scrapeboard kit this CYBER MONDAY live online</b> and hosted in-person in Brooklyn with special guest appearances and
an open entry tournament!
</p>
<p>
There will be prizes, a countdown, and a dance party -- please join us, and share the event with others. For those interested
in participating: you can join a tournament, talk to us about Scrapeboard on stream, or place a bid for a Scrapeboard kit.
</p>
<p>
The kit builds the same model as our wood and metal platform which has been <i>played over 1,500 times this year</i>. Included in the kit are four pre-assembled
panels which combine to create the platform. The panels will come already wired to connect to an included Raspberry Pi which will run the game
automatically. A ready to use Scrapeboard will be included.
</p>
<p>
The kit also comes with guaranteed set up support and maintenance for one year, with any necessary replacements provided for free, meaning the
winner of the auction is guaranteed a running Scrapeboard system for one year or longer.
</p>
<p>
Scrapeboard is great for personal use, shared use, and it also comes licensed to be modified and/or used commercially.
</p>
<p>
Follow <a href="https://twitter.com/diskmem">@diskmem</a>, <a href="https://twitter.com/snakesandrews">@snakesandrews</a>, and
<a href="https://twitch.tv/snakesandrews">twitch.tv/snakesandrews</a> for event, auction, and stream announcements and tune in at
<a href="https://scrape.nugget.fun">scrape.nugget.fun</a> on Nov. 27th, Cyber Monday, from 6pm - 10pm.
</p>
</div>
<img class="stretch" src="www/cat.gif" />
<!-- ***************************************************************** CALENDAR ************************************************************* -->
<style>
/* landscape */
@ -451,30 +649,46 @@
Thu. - Sun.
</div>
<div class="day">
Jan. 18 - 21
Jan. 18th - 21st
</div>
<div class="year">
2024
</div>
<div class="location">
<a href="https://super.magfest.org/">
MAGFest, Maryland
MAGFest, National Harbor, MD
</a>
</div>
</div>
<div class="date current">
<div class="date past">
<div class="day-of-week">
Mon.
</div>
<div class="day">
Nov. 27th
</div>
<div class="year">
2023
</div>
<div class="location">
<a href="https://twitter.com/boshisplace">
Boshi's Place, Brooklyn, NY
</a>
</div>
</div>
<div class="date past">
<div class="day-of-week">
Fri. - Sun.
</div>
<div class="day">
Oct. 27 - 29
Oct. 27th - 29th
</div>
<div class="year">
2023
</div>
<div class="location">
<a href="https://derpycon.com/">
Derpy Con, NJ
Derpy Con, New Brunswick, NJ
</a>
</div>
</div>
@ -483,14 +697,14 @@
Sat. & Sun.
</div>
<div class="day">
Aug. 5 & 6
Aug. 5th & 6th
</div>
<div class="year">
2023
</div>
<div class="location">
<a href="https://play-nyc.com/">
Play NYC
Play NYC, New York, NY
</a>
</div>
</div>
@ -499,14 +713,14 @@
Tue.
</div>
<div class="day">
Jun. 20
Jun. 20th
</div>
<div class="year">
2023
</div>
<div class="location">
<a href="https://www.wonderville.nyc/events/brooklyn-altctrl-showcase">
Wonderville, NYC
Wonderville, Brooklyn, NY
</a>
</div>
</div>
@ -515,14 +729,14 @@
Fri. & Sat.
</div>
<div class="day">
Jun. 16 & 17
Jun. 16th & 17th
</div>
<div class="year">
2023
</div>
<div class="location">
<a href="https://derpycon.com/anime-night-out/">
Anime Night Out, NJ
Anime Night Out, New Brunswick, NJ
</a>
</div>
</div>
@ -531,14 +745,14 @@
Sat. - Sun.
</div>
<div class="day">
Apr. 15 & 16
Apr. 15th & 16th
</div>
<div class="year">
2023
</div>
<div class="location">
<a href="https://www.egdcollective.org/wafflegames2023">
Waffle Games, NYC
Waffle Games, New York, NY
</a>
</div>
</div>
@ -547,14 +761,14 @@
Fri.
</div>
<div class="day">
Mar. 24
Mar. 24th
</div>
<div class="year">
2023
</div>
<div class="location">
<a href="https://www.eventbrite.com/e/bar-grill-with-pool-table-tickets-588671491277">
Shovels Bar and Grill, San Francisco
Shovels Bar & Grill, San Francisco, CA
</a>
</div>
</div>
@ -563,29 +777,29 @@
Tue.
</div>
<div class="day">
Mar. 21
Mar. 21st
</div>
<div class="year">
2023
</div>
<div class="location">
<a href="https://www.eventbrite.com/e/indie-byog-bring-your-own-game-gdc-2023-by-sub-zero-sound-tickets-532872615337">
Buzzworks, San Francisco
Buzzworks, San Francisco, CA
</a>
</div>
</div>
<div class="date past">
<div class="day-of-week">
Thu - Sun
Thu. - Sun.
</div>
<div class="day">
Jan. 5 - 8
Jan. 5th - 8th
</div>
<div class="year">
2023
</div>
<div class="location">
<a href="https://super.magfest.org">MAGFest, Maryland</a>
<a href="https://super.magfest.org">MAGFest, National Harbor, MD</a>
</div>
</div>
<div class="date past">
@ -593,121 +807,228 @@
Mon
</div>
<div class="day">
Dec. 5
Dec. 5th
</div>
<div class="year">
2022
</div>
<div class="location">
<a href="https://wonderville.nyc">Wonderville, NYC</a>
<a href="https://wonderville.nyc">Wonderville, Brooklyn, NY</a>
</div>
</div>
<div class="date past">
<div class="day-of-week">
Sat
Sat.
</div>
<div class="day">
Nov. 5
Nov. 5th
</div>
<div class="year">
2022
</div>
<div class="location">
<a href="https://www.play-nyc.com/">Play NYC</a>
<a href="https://www.play-nyc.com/">Play NYC, New York, NY</a>
</div>
</div>
<div class="date past">
<div class="day-of-week">
Sun
Sun.
</div>
<div class="day">
Jul. 10
Jul. 10th
</div>
<div class="year">
2022
</div>
<div class="location">
<a href="https://wonderville.nyc">Wonderville, NYC</a>
<a href="https://wonderville.nyc">Wonderville, Brooklyn, NY</a>
</div>
</div>
<div class="date past">
<div class="day-of-week">
Fri
Fri.
</div>
<div class="day">
Jun. 10
Jun. 10th
</div>
<div class="year">
2022
</div>
<div class="location">
<a href="https://www.eventbrite.com/e/the-12th-annual-interactive-show-cursed-technology-shop-masksvax-req-tickets-331933611367">NYC Resistor</a>
<a href="https://www.eventbrite.com/e/the-12th-annual-interactive-show-cursed-technology-shop-masksvax-req-tickets-331933611367">
Resistor, Brooklyn, NY
</a>
</div>
</div>
<div class="date past">
<div class="day-of-week">
Sat
Sat.
</div>
<div class="day">
May 28
May 28th
</div>
<div class="year">
2022
</div>
<div class="location">
<a href="https://ra.co/events/1534719">Wonderville, NYC</a>
<a href="https://ra.co/events/1534719">
Wonderville, Brooklyn, NY
</a>
</div>
</div>
<div class="date past">
<div class="day-of-week">
Wed - Fri
Wed. - Fri.
</div>
<div class="day">
Mar. 23 - 25
Mar. 23rd - 25th
</div>
<div class="year">
2022
</div>
<div class="location">
<a href="https://gdconf.com">GDC, San Francisco</a>
<a href="https://gdconf.com">GDC, San Francisco, CA</a>
</div>
</div>
<div class="date past">
<div class="day-of-week">
Thu - Sun
Thu. - Sun.
</div>
<div class="day">
Jan. 6 - 9
Jan. 6th - 9th
</div>
<div class="year">
2022
</div>
<div class="location">
<a href="https://super.magfest.org">MAGFest, Maryland</a>
<a href="https://super.magfest.org">MAGFest, National Harbor, MD</a>
</div>
</div>
<div class="date past">
<div class="day-of-week">
Sunday
Sun.
</div>
<div class="day">
Oct. 31
Oct. 31st
</div>
<div class="year">
2020
</div>
<div class="location">
<a href="https://wonderville.nyc">Wonderville, NYC</a>
<a href="https://wonderville.nyc">Wonderville, Brooklyn, NY</a>
</div>
</div>
<div class="date past">
<div class="day-of-week">
Sun.
</div>
<div class="day">
Oct. 31st
</div>
<div class="year">
2020
</div>
<div class="location">
<a href="https://wonderville.nyc">Wonderville, Brooklyn, NY</a>
</div>
</div>
<div class="date past">
<div class="day-of-week">
Thu. - Sun.
</div>
<div class="day">
Jan. 3rd - 6th
</div>
<div class="year">
2019
</div>
<div class="location">
<a href="https://withfriends.co/event/1057219/electroconcierge_babycastles_indie_arcade_at_magfest">
MAGFest, National Harbor, MD
</a>
</div>
</div>
<div class="date past">
<div class="day-of-week">
Mon.
</div>
<div class="day">
Dec. 31st
</div>
<div class="year">
2018
</div>
<div class="location">
<a href="https://withfriends.co/event/1037435/nye_201x_new_year">
Babycastles, New York, NY
</a>
</div>
</div>
<div class="date past">
<div class="day-of-week">
Sat. & Sun.
</div>
<div class="day">
Sep. 22nd & 23rd
</div>
<div class="year">
2018
</div>
<div class="location">
<a href="https://makerfaire.com/maker/entry/68090/">
Maker Faire, Queens, NY
</a>
</div>
</div>
<div class="date past">
<div class="day-of-week">
Fri.
</div>
<div class="day">
Aug. 3rd
</div>
<div class="year">
2018
</div>
<div class="location">
<a href="https://withfriends.co/event/517242/multiplay_closing_party">
Babycastles, New York, NY
</a>
</div>
</div>
<div class="date past">
<div class="day-of-week">
Thu. - Sun.
</div>
<div class="day">
Jan. 4th - 7th
</div>
<div class="year">
2018
</div>
<div class="location">
<a href="https://super.magfest.org">
MAGFest, National Harbor, MD
</a>
</div>
</div>
<div class="date past">
<div class="day-of-week">
Sun.
</div>
<div class="day">
Dec. 31st
</div>
<div class="year">
2017
</div>
<div class="location">
<a href="https://withfriends.co/event/160142/absrdst_babycastles_new_years_eve_party_2018">
Babycastles, New York, NY
</a>
</div>
</div>
<!--
<p>
<i>If you are interested in having Scrapeboard at your event, bar, arcade, office, school, or home,
contact <a href="mailto:scrape@nugget.fun">scrape@nugget.fun</a></i>
</p>
-->
</div>
<script>
@ -759,7 +1080,7 @@
d(⌒ー⌒) (❁´◡`❁) ヽ(^Д^)ノ (。>‿‿<。 (*´∇`)ノ (●⌒v⌒●) ´・ᴗ・` (✿^-^) ヾ(^ヮ^) d(⌒ー⌒) (❁´◡`) (^Д^) (。>‿‿< (*´∇`)
</p>
<!-- PROMO VIDEO -->
<!-- ************************************************************ PROMO VIDEO **************************************************************** -->
<div id="comedy">
<iframe src="https://www.youtube.com/embed/ai9WlJdfbvI" frameborder="0"
@ -824,7 +1145,7 @@
</iframe>
-->
<!-- FOLLOW BUTTONS -->
<!-- ************************************************************ FOLLOW BUTTONS ************************************************************* -->
<p id="credits-heading">
Follow the developers!

Binary file not shown.

After

Width:  |  Height:  |  Size: 307 KiB

View File

@ -103,7 +103,6 @@ div#description
{
display: grid;
margin: auto;
margin-bottom: 40px;
}
div#description img