website/website/index.html
Soph :3 b33ce4a0d7
All checks were successful
/ test (push) Successful in 13s
i added particles!
2024-07-27 04:22:44 +03:00

107 lines
4.3 KiB
HTML

__TEMPLATE_HEAD__
<script type="module" src="scripts/blog.js"></script>
<script type="module" src="scripts/status_cafe.js"></script>
<script type="module" src="scripts/particles.js"></script>
<script>
window.addEventListener("load", () => {
const stickers = document.getElementById("stickers");
const binkies = document.getElementById("binkies");
if (!stickers) return;
for (const sticker of __STICKERS__) {
const img = document.createElement("img");
img.src = "assets/stickers/" + sticker;
stickers.appendChild(img);
}
})
</script>
<link rel="stylesheet" href="assets/style.css">
</head>
<body class="repeating-bg">
<div class="order">
<div class="paper details">
<h1><span class="emoji">☹️☹️☹️</span>.ovh</h1>
<p>I'm Latvian, 17. My name's Sophie <small>meows a lot</small>. I love listening to music.</p>
<p>I love to play games with peeps! My favorite games recently have been Minecraft and Stardew Valley! DM me
if you wanna play with me ^w^
</p>
<p><a href="https://files.sad.ovh/public/midis">Did you know that I have a 6 gigabyte big MiDi collection?
(empty password/username)</a></p>
<p>
DNI:
<br>
Interact: Any person ever
</p>
<h2>contact</h2>
<p>Contact me at <a href="https://matrix.to/#/@yourfriend:bark.lgbt">matrix</a>, <a
href="https://discord.com/users/845374523263811614">discord</a>, <a
href="https://github.com/fucksophie">github (view projects here)</a>, <a
href="https://git.sad.ovh/sophie">sadgit</a>, or <a
href="https://bark.lgbt/@yourfriend">mastodon.</a>
</p>
<p>E-mail: (run in JS) <span class="e-mail">new TextDecoder().decode(new Uint8Array([115, 111, 102, 105,
106, 97, 64,
100, 117, 99, 107, 46, 99, 111, 109]))</span></p>
<a href="assets/key.txt">Signing PGP key downloadable here.</a>
<h2>Include my 88x31 into your website!</h2>
<pre>
&lt;a href="https://sad.ovh"&gt;
&lt;img src="https://sad.ovh/assets/binkies/sadovh.png"&gt;
&lt;/a&gt;
</pre>
</div>
<div class="paper donations">
<h1>donations</h1>
<ul>
<li>BTC <strong>bc1q83jdukjn4a2qm0rmn9tqcfkcq60la22lqy2shx</strong>
</li>
<li>ETH/BSC/USDT/USDC (send via BSC) <strong>0xc691cd8950Fdf96Faa2aCA1CA9b4B3Fd5B2a44BB</strong>
</li>
<li>SOL <strong>79NKoiXaPzbwbsD5MFKKwmoeEPKtTsoQFfx64MHmULF7</strong>
</li>
<li>XMR
<strong>
42iW3icQrybKYieQNSrm76dXetuXD6HaxZDijajXkge7GTSKVG4NefxBj3mbWudpY62dxRTihm4beJgy36X8xFKCTWpVAjS
</strong>
</li>
<li>
<a href="https://ko-fi.com/sophskofi">Ko-fi</a>, Paypal (DM or Email me)
</li>
</ul>
</div>
<div class="paper skills">
<h1>Skills</h1>
<!--replace this with Code::Stats once I've actually gotten some time on there-->
<ul>
<li>Around 8 years of near constant JS/TS development. Full-Stack, including discord bots.</li>
<li>3 years of TSX</li>
<li>SQL and PostgreSQL(pSQL) since I started development.</li>
<li>Lots of webdev build tools and more. <a href="https://git.sad.ovh/sophie/website">This site uses my
own build tools.</a></li>
<li>9 years of Java development. Mostly Minecraft plugins and MC related projects.</li>
</ul>
</div>
<div class="paper blog" id="root"></div>
<div class="paper stickers" id="stickers"></div>
<div class="paper status" id="status"></div>
<div class="paper binkies">
<a href="https://sad.ovh">
<img src="/assets/binkies/sadovh.png">
</a>
<a href="https://oon.nz/">
<img src="/assets/binkies/onzecki.png">
</a>
</div>
</div>
</body>
</html>