index: Updated main page
This commit is contained in:
parent
bd1e0681d3
commit
6508182f2a
1 changed files with 74 additions and 32 deletions
106
src/index.html
106
src/index.html
|
@ -41,48 +41,90 @@
|
|||
help of my amazing friends :3
|
||||
</p>
|
||||
<p>
|
||||
btw, i use
|
||||
<a href="https://archlinux.org">
|
||||
<img src="badges/archlinux.png" alt="archlinux"
|
||||
/></a>
|
||||
on my computers. just thought you should know. (i am not
|
||||
flexing) (it's just for your information)
|
||||
i like spending time on the internet, and seeing what the cute
|
||||
people of the fediverse post. when i'm not doing that, i like to
|
||||
write code and do silly projects! <br />
|
||||
i also have a
|
||||
<a href="https://blog.kemonomimi.gay/yukijoou/">blog</a>, though
|
||||
it's quite empty for now...
|
||||
</p>
|
||||
|
||||
<h2>talk to me. i dare u.</h2>
|
||||
<p>
|
||||
i'm available on matrix: @yukijoou:catgirl.cloud
|
||||
<br />
|
||||
i also have a temporary email, while i figure out how to host an
|
||||
email server:
|
||||
i have a fedi account:
|
||||
<a href="https://fedi.kemonomimi.gay/yukijoou"
|
||||
>@yukijoou@fedi.kemonomimi.gay</a
|
||||
>
|
||||
<br />
|
||||
i also have a selfhosted email:
|
||||
<a href="#" id="email">[SHOW EMAIL]</a>
|
||||
|
||||
<noscript>
|
||||
<p>
|
||||
<b>Please enable javascript to see my email :3</b> (only
|
||||
using it as an anti-scraper thing). if you really don't
|
||||
want to, here is my base64-encoded email:
|
||||
eXVraWpvb3VAa2Vtb25vbWltaS5nYXk=
|
||||
</p>
|
||||
</noscript>
|
||||
<script>
|
||||
const email = atob("eXVraWpvb3VAa2Vtb25vbWltaS5nYXk=");
|
||||
const emailDisplay = document.getElementById("email");
|
||||
emailDisplay.addEventListener(
|
||||
"click",
|
||||
(event) => {
|
||||
emailDisplay.href = "mailto:" + email;
|
||||
emailDisplay.innerText = email;
|
||||
event.preventDefault();
|
||||
},
|
||||
{ once: true },
|
||||
);
|
||||
</script>
|
||||
</p>
|
||||
|
||||
<address><a href="#" id="email">[SHOW EMAIL]</a></address>
|
||||
<noscript>
|
||||
Please enable javascript :3 if you really don't want to, here is
|
||||
my base64-encoded email: eWlraWpvb3VAbGFwb3N0ZS5uZXQ=
|
||||
</noscript>
|
||||
|
||||
<script>
|
||||
const email = atob("eWlraWpvb3VAbGFwb3N0ZS5uZXQ=");
|
||||
const emailDisplay = document.getElementById("email");
|
||||
emailDisplay.addEventListener(
|
||||
"click",
|
||||
(event) => {
|
||||
emailDisplay.href = "mailto:" + email;
|
||||
emailDisplay.innerText = email;
|
||||
event.preventDefault();
|
||||
},
|
||||
{ once: true },
|
||||
);
|
||||
</script>
|
||||
|
||||
<h1>silly projects</h1>
|
||||
<p>more coming soon here!</p>
|
||||
<p>the things i do at my computer :3</p>
|
||||
|
||||
<h2>convertablet</h2>
|
||||
<p>
|
||||
i'm working on getting more services on
|
||||
<a href="https://kemonomimi.gay">kemonomimi.gay</a>, and
|
||||
bringing some web things i've already done to this website!
|
||||
it's a dameon to get 2-in-1 laptop/tablet convertible devices to
|
||||
work well using wlroots-based compositors on linux. for now it's
|
||||
more or less specifically made for my own lenovo miix-320icr,
|
||||
but the goal is to make it so that all laptops that can act as
|
||||
tablets work smoothly on linux+wlroots.
|
||||
</p>
|
||||
<p>
|
||||
currently hosted at
|
||||
<a href="https://git.kemonomimi.gay/yukijoou/convvertablet"
|
||||
>yukijoou/convertablet</a
|
||||
>, no proper documentation yet, but if you want to get it
|
||||
working on your device, please get in touch! i'll be more than
|
||||
happy to make it work, and will include support for your device
|
||||
once i get it in a working state!
|
||||
</p>
|
||||
|
||||
<h2>kemonomimi.gay</h2>
|
||||
<p>
|
||||
i do sysadmin work to keep the websites and services we host
|
||||
running! most of my work is behind the scene, and shoudln't be
|
||||
noticeable (i hope). at some point, i want to opensource most of
|
||||
the scripts i use to manage this infrastructure so that other
|
||||
people can see how it all works, and be inclined to selfhost
|
||||
their stuff ^_^
|
||||
</p>
|
||||
|
||||
<h2>reduced motion in opensource projects</h2>
|
||||
<p>
|
||||
i'm on a crusade to get as much of the software i'm using as
|
||||
possible to be reduced-motion friendly. as i'm quite
|
||||
motion-sensitive, i really don't like stuff that moves arounde
|
||||
everywhere, so i try to make websites and apps not have it when
|
||||
the "reduced motion" setting is enabled! <br />
|
||||
i don't have any page where i track this sort of thing, i just
|
||||
mostly do one-off contribution to projects and hope they accept
|
||||
it
|
||||
</p>
|
||||
</main>
|
||||
|
||||
|
|
Loading…
Reference in a new issue