-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (85 loc) · 4.84 KB
/
index.html
File metadata and controls
93 lines (85 loc) · 4.84 KB
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
<!-- Garrett Webb 2023 -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Home page for my various projects. I code random things from small games to Discord bots.">
<meta name="keywords" content="programming, webbgamers, python, game jam, projects, discord bots, c#, coding">
<meta name="robots" content="index,follow">
<title>webbgamers.tech</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>webbgamers<span style="font-size: 50%; color: #666666">.tech</span></h1>
</header>
<nav>
<ul>
<li><a href="index.html">Projects</a></li>
<li><a href="index.html">About</a></li>
<li><a href="https://vault.webbgamers.tech">Vault</a></li>
<li style="float: right;"><a href="index.html">Social</a></li>
</ul>
</nav>
<p>Website is WIP, come back soon for a more complete and improved website!</p>
<section>
<h2>Projects</h2>
<div id="projects">
<div>
<h3><a href="https://github.com/webbgamers/aoc2022">Advent of Code 2022</a></h3>
<p>My attempt at the <a href="https://adventofcode.com/2022">2022 Advent of Code</a> programming challenge. Did it in Rust for no good reason and only got about 10 days in. Might come bacm to it sometime.</p>
</div>
<div>
<h3><a href="https://github.com/webbgamers/GuildMaster">GuildMaster</a></h3>
<p>A multipurpose Discord bot written in Python with <a href="https://github.com/Rapptz/discord.py">discord.py</a> designed with customization in mind.</p>
</div>
<div>
<h3><a href="https://github.com/webbgamers/webbgamers.tech">webbgamers.tech</a></h3>
<p>A hub for my projects and lets me share what I am doing. This is my first real exploration into web development.</p>
</div>
<div>
<h3><a href="https://github.com/webbgamers/admin-shuffle">Admin Shuffle</a></h3>
<p>A Discord bot to run a social experiment where random members are given admin. <a href="https://discord.com/invite/mYgh94r3pm">Join the server!</a></p>
</div>
<div>
<h3><a href="https://github.com/webbgamers/IIoWParser">IIoW Parser</a></h3>
<p>A C# library and eventually website for modifying save files for <a href="https://store.steampowered.com/app/1162470/IIslands_of_War/">IIslands of WAR</a>.</p>
</div>
<div>
<h3><a href="https://www.shadertoy.com/view/fdlGWB">Mandelbrot Shader</a></h3>
<p>This is my first exploration into fractals. It is a shader is written in GLSL that visualizes the Mandelbrot set in several different ways.</p>
</div>
<div>
<h3><a href="https://www.shadertoy.com/view/7sB3Rz">Julia Sets with Color</a></h3>
<p>After making the Mandelbrot shader, I modified someone elses implementation of the Julia set to add color similar to my shader.</p>
</div>
<div>
<h3><a href="https://github.com/webbgamers/GreenThumb">Green Thumb</a></h3>
<p>This is the game I made for the <a href="https://ldjam.com/events/ludum-dare/46">Ludum Dare 46</a> game jam. I used Unity and Blender to make it in 72 hours which was quite a challenge being my first game.</p>
</div>
<div>
<h3><a href="https://github.com/webbgamers/WeekendJam2">Weekend Jam 2</a></h3>
<p>My submission for the <a href="https://itch.io/jam/weekend-jam-2">Weekend Jam 2</a>, and my second game. It's a 2D shooter that I wrote the code for, and my friend created the music.</p>
</div>
<div>
<h3><a href="https://github.com/webbgamers/WeekendJam3">Weekend Jam 3</a></h3>
<p>A tower defense game for the <a href="https://itch.io/jam/weekend-jam-3">Weekend Jam 3</a>. Again I wrote the code and my friend did the music.</p>
</div>
<div>
<h3><a href="https://github.com/webbgamers/WeekendJam3">ImagetoText</a></h3>
<p>A project to try and learn C#, intended to convert an image into ASCII art but I currently haven't gotten around to finishing it.</p>
</div>
<div>
<h3><a href="https://github.com/webbgamers/webbot">webbot</a></h3>
<p>My first discord bot, been abandoned in favor of GuildMaster but I might recycle the name in the future.</p>
</div>
</div>
</section>
<footer>
<p><small>
© Copyright 2023, Garrett Webb <br>
<a href="https://github.com/webbgamers/webbgamers.tech">Source</a>
</small></p>
</footer>
</body>
</html>