index.html
HTML document, ASCII text
1{% extends "_layout.html" %} 2{% block Head %} 3{{super()}} 4<meta property="og:title" content="Index" /> 5<meta property="og:type" content="website" /> 6<meta property="og:url" content="https://steve0greatness.nekoweb.org/" /> 7{% endblock %} 8{% block title %}Homepage{% endblock %} 9{% block breadcrumbs %}{% endblock %} 10{% block content %} 11<h1>Steve0Greatness</h1> 12<p> 13Hey there! I'm <i>Steve0Greatness</i>(<a href="/blog/name.html">About my username</a>). 14I'm a <a href="https://en.wikipedia.org/wiki/Human">human being</a> in the 15<a href="https://en.wikipedia.org/wiki/Milky_Way">Milky Way galaxy</a>. 16</p> 17<p> 18I'm interested in various programming/computer science topics, including (but not limited to) 19<a href="https://www.python.org/">Python</a>, <a href="https://go.dev/">Go(lang)</a>, and 20<a href="https://www.rust-lang.org/">Rust</a>. I also have an interest in 21<a href="https://en.wikipedia.org/wiki/Front-end_web_development">front-end web development</a>, mainly, an 22interest in limiting the usage of <a href="https://en.wikipedia.org/wiki/JavaScript">JavaScript</a> in the frontend. 23I use JavaScript very sparingly, only when it's required to do what I want it to. This website is (mostly) devoid of 24JavaScript, the only exception being the <a href="/extras.html">extras</a>. 25</p> 26<p> 27Speaking of which, <em>welcome to my website!</em> 28</p> 29<h2 id="cool-people-projects">Cool People & Projects!</h2> 30<div class="ticker-wrapper pauseonhover"> 31<div class="ticker cool-people-prj"> 32<a href="https://tauon.dev/"> 33<img 34src="https://tauon.dev/images/88x31/lily.png" 35alt="Lily" title="Lily" 36width="88" height="31" 37/> 38</a> 39<a href="https://dimden.dev/"> 40<img 41src="https://dimden.dev/services/images/88x31.gif" 42width="88" height="31" 43alt="dimden" title="dimden" 44/> 45</a> 46<a href="https://nekoweb.org/"> 47<img 48src="https://nekoweb.org/assets/buttons/button5.gif" 49width="88" height="31" alt="Nekoweb" 50/> 51</a> 52<a href="https://districts.nekoweb.org/"> 53<img 54src="https://districts.nekoweb.org/img/districts002.png" 55height="31" width="88" alt="Nekoweb Districts" 56/> 57</a> 58<a href="https://gen1x.is-a.dev/"> 59<img 60alt="Gen1x/G1nx" 61src="/buttons/Gen1x.webp" 62height="31" width="88" 63/> 64</a> 65<a href="http://devilmayquake.com"> 66<img 67alt="Ultrakill" 68src="/buttons/UltrakillButton.webp" 69height="31" width="88" 70/> 71</a> 72<a rel="nofollow" href="https://x.com/Garn47"> 73<img 74alt="Garn47's Cool House" 75src="/buttons/garn47scoolhouse.webp" 76height="31" width="88" 77/> 78</a> 79<a href="https://kinggizzardandthelizardwizard.com/"> 80<img 81alt="King Gizzard and the Lizard Wizard" 82src="/buttons/Gizzard.webp" 83height="31" width="88" 84/> 85</a> 86<a href="https://andreaborman2.blogspot.com/"> 87<img 88alt="Andrea Sites." 89src="/buttons/AndreaSites.webp" 90width="88" height="31" 91/> 92</a> 93<a href="https://breakfast.pages.gay"> 94<img 95src="https://breakfast.pages.gay/media/buttons/breakfast.png" 96width="81" height="33" 97alt="the breakfast house" title="the breakfast house" 98/> 99</a> 100<a href="https://wiki.nekoweb.org/"> 101<img 102src="https://wiki.nekoweb.org/button.png" 103width="81" height="33" alt="Nekoweb Wiki" 104/> 105</a> 106</div> 107</div> 108<h2>Webrings</h2> 109<table class="ZeroGreatnessWebring"> 110<tr> 111<td> 112<a 113href="https://steve0greatness.github.io/webring/sites/steve0greatness/prev.xhtml" 114>Prev</a> 115</td> 116<td> 117<a 118href="https://steve0greatness.github.io/webring" 119> 120<img 121src="0GreatnessWebring.png" 122width="100" 123height="42" 124alt="0Greatness Webring" 125/> 126</a> 127</td> 128<td> 129<a 130href="https://steve0greatness.github.io/webring/sites/steve0greatness/next.xhtml" 131>Next</a> 132</td> 133</tr> 134</table> 135<h2>Some other cool stuff</h2> 136<iframe width="90" height="90" style="border:none" src="https://dimden.neocities.org/navlink/" name="neolink"></iframe> 137<h2>My button!</h2> 138<p>Link to my site with this silly little button!</p> 139<a href="https://steve0greatness.nekoweb.org"> 140<img 141src="/button.webp" 142title="Steve0Greatness" 143alt="Steve0Greatness" 144width="88" 145height="31" 146style="image-rendering: pixelated" 147/> 148</a> 149<textarea 150class="button-hotlink" 151readonly="readonly" 152placeholder="button hotlink" 153name="button-hotlink" 154><a href="https://steve0greatness.nekoweb.org"> 155<img 156src="https://steve0greatness.nekoweb.org/button.webp" 157title="Steve0Greatness" 158alt="Steve0Greatness" 159width="88" 160height="31" 161style="image-rendering: pixelated" 162/> 163</a></textarea> 164{% endblock %} 165