zedshaw.games/pages/index.html
2025-09-14 13:33:33 -04:00

89 lines
3.6 KiB
HTML

<h1>Zed's Game Dev Website</h1>
<script src="https://player.twitch.tv/js/embed/v1.js"></script>
<div class="flex flex-col flex-start">
<shape id="twitch-player" class="video bg-gray-950! font-bold gap-8">
</shape>
</div>
<block class="bg-gray-300 dark:bg-gray-800" data-testid="clickblock">
<p class="text-xl">Hi, my name is Zed and this i where I post things about my games that I'm making.</p>
</block>
<block>
<grid class="grid-cols-2">
<img src="/images/buckaroo_bonzai.png" />
<block>
<h3>I stream on Twitch.</h3>
<p>I stream every day at 10AM/10PM EST time. 60% of the time it's a chill laid back stream with only programming and a bit of talking about programming. 30% of the time it's art for games I'm making. 10% of the time it's games I'm playing.</p>
<a href="https://twitch.tv/zedashaw"><button style="--value: 2; --text: 9">Watch me on Twitch</button></a>
</block>
</grid>
</block>
<block class="bg-gray-300 dark:bg-gray-800">
<p class="text-xl">In the year 2025 I decided to finally take all of my skills and apply them tothe challenge of creating games. I figured, "Hey, games are nothing more than paintings and music with code attached. How hard could it be?" Turns out, not only is it challenging but it's <b>fun</b>.</p>
</block>
<block>
<grid class="grid-cols-2">
<block>
<h2>Play My Games</h2>
<p>Are you a fan of retro styled jank but fun games? Me too, so here's my games I've made with that theme. Think "it's the late 80s and nobody knows how to make a game" when you play these and you'll enjoy every minute of it. Hopefully.</p>
<a href="/game/"><button style="--value: 2; --text: 9">Play my Games</button></a>
</block>
<img src="/images/rat_king_emote.gif" />
</grid>
</block>
<block class="bg-gray-300 dark:bg-gray-800">
<p class="text-xl">I try to share all of my code online for people to review. Some of it is open source, but other projects are simply copyright. You're can view and play them if they're published here. I treat programming as a form of self-expression similar to my painting and writing. Given that <a href="https://en.wikipedia.org/wiki/Bernstein_v._United_States">code is speech according to the Supreme Court</a> then I am allowed to publish my code without a license in the same way that I publish my blog posts and paintings without a license.</p>
</block>
<block>
<grid class="grid-cols-2">
<img src="/images/vim_window_clip.jpg" />
<block>
<h2>Checkout my Git</h2>
<p>If you're curious about the code behind my games or anything else I make then take a look at my git. It's like a buffet of half-finished genius.</p>
<a href="https://git.zedshaw.games/games"><button style="--value: 2; --text: 9">View my Git</button></a>
</block>
</grid>
</block>
<block class="bg-gray-300 dark:bg-gray-800">
<h2 class="!text-3xl">Contact Me</h2>
<p>If you'd like to contact me about what you see here then email me at <a href="mailto:help@learncodethehardway.com">help@learncodethehardway.com</a>. It might take me about a day to respond.
</p>
</block>
<block>
<grid class="grid-cols-2">
<div>
<h2>I Like to Paint</h2>
<p>All of the art in my games is original paintings that I process with a bunch of jank imagemagick scripts to give it that "80s/90s retro" look. I frequently do paintings live on Twitch, and I post most of the art here as well.</p>
<a href="/game/"><button style="--value: 2; --text: 9">View my Art</button></a>
</div>
<img src="/images/Hawaii_Truck.jpg" />
</grid>
</block>
<script>
var options = {
width: "100%",
height: "100%",
autoplay: false,
muted: true,
channel: "zedashaw"
};
var player = new Twitch.Player("twitch-player", options);
player.setVolume(0.5);
</script>