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>
13
Hey there! I'm <i>Steve0Greatness</i>(<a href="/blog/name.html">About my username</a>).
14
I'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>
18
I'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
22
interest in limiting the usage of <a href="https://en.wikipedia.org/wiki/JavaScript">JavaScript</a> in the frontend.
23
I use JavaScript very sparingly, only when it's required to do what I want it to. This website is (mostly) devoid of
24
JavaScript, the only exception being the <a href="/extras.html">extras</a>.
25
</p>
26
<p>
27
Speaking 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
34
src="https://tauon.dev/images/88x31/lily.png"
35
alt="Lily" title="Lily"
36
width="88" height="31"
37
/>
38
</a>
39
<a href="https://dimden.dev/">
40
<img
41
src="https://dimden.dev/services/images/88x31.gif"
42
width="88" height="31"
43
alt="dimden" title="dimden"
44
/>
45
</a>
46
<a href="https://nekoweb.org/">
47
<img
48
src="https://nekoweb.org/assets/buttons/button5.gif"
49
width="88" height="31" alt="Nekoweb"
50
/>
51
</a>
52
<a href="https://districts.nekoweb.org/">
53
<img
54
src="https://districts.nekoweb.org/img/districts002.png"
55
height="31" width="88" alt="Nekoweb Districts"
56
/>
57
</a>
58
<a href="https://gen1x.is-a.dev/">
59
<img
60
alt="Gen1x/G1nx"
61
src="/buttons/Gen1x.webp"
62
height="31" width="88"
63
/>
64
</a>
65
<a href="http://devilmayquake.com">
66
<img
67
alt="Ultrakill"
68
src="/buttons/UltrakillButton.webp"
69
height="31" width="88"
70
/>
71
</a>
72
<a rel="nofollow" href="https://x.com/Garn47">
73
<img
74
alt="Garn47's Cool House"
75
src="/buttons/garn47scoolhouse.webp"
76
height="31" width="88"
77
/>
78
</a>
79
<a href="https://kinggizzardandthelizardwizard.com/">
80
<img
81
alt="King Gizzard and the Lizard Wizard"
82
src="/buttons/Gizzard.webp"
83
height="31" width="88"
84
/>
85
</a>
86
<a href="https://andreaborman2.blogspot.com/">
87
<img
88
alt="Andrea Sites."
89
src="/buttons/AndreaSites.webp"
90
width="88" height="31"
91
/>
92
</a>
93
<a href="https://raynecloudy.nekoweb.org" target="_blank">
94
<img
95
src="https://raynecloudy.nekoweb.org/media/buttons/breakfast.png"
96
alt="breakfast"
97
title="rayne cloudy"
98
/>
99
</a>
100
<a href="https://wiki.nekoweb.org/">
101
<img
102
src="https://wiki.nekoweb.org/button.png"
103
width="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
113
href="https://steve0greatness.github.io/webring/sites/steve0greatness/prev.xhtml"
114
>Prev</a>
115
</td>
116
<td>
117
<a
118
href="https://steve0greatness.github.io/webring"
119
>
120
<img
121
src="0GreatnessWebring.png"
122
width="100"
123
height="42"
124
alt="0Greatness Webring"
125
/>
126
</a>
127
</td>
128
<td>
129
<a
130
href="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
141
src="/button.webp"
142
title="Steve0Greatness"
143
alt="Steve0Greatness"
144
width="88"
145
height="31"
146
style="image-rendering: pixelated"
147
/>
148
</a>
149
<textarea
150
class="button-hotlink"
151
readonly="readonly"
152
placeholder="button hotlink"
153
name="button-hotlink"
154
><a href="https://steve0greatness.nekoweb.org">
155
<img
156
src="https://steve0greatness.nekoweb.org/button.webp"
157
title="Steve0Greatness"
158
alt="Steve0Greatness"
159
width="88"
160
height="31"
161
style="image-rendering: pixelated"
162
/>
163
</a></textarea>
164
{% endblock %}
165