twopn/site-src/index.mdx

45 lines
1.7 KiB
Text

---
description: mehbark's website for anything
tags: special
---
export function PostLink({post}) {
const tags = post.data.tags.filter(t => t != "post");
const two_digits = n => n.toString().padStart(2, "0");
const time = `${two_digits(post.date.getHours())}:${two_digits(post.date.getMinutes())}`;
return <>
<a href={post.url}>
{post.data.title}
</a>
{" "}
({tags.join(", ")})
{" "}
(<time dateTime={post.date.toISOString()} title={`started at about ${time}`}>
{post.date.toDateString()}
</time>)
</>
}
# About me
- [I go by mehbark](/awesomebark) on the internet!
- I did get this domain just for the pun, but alas, I can't claim to be <span title="I think that's maybe Vriska?">the number one Terezi fan</span>.
- I put code on [my Forgejo instance](https://g.pyrope.net) and [my GitHub](https://github.com/mehbark).
- I had fun making posts on [cohost](https://cohost.org) before it died;
I enjoyed making [CSS crimes](https://cohost.org/mehbark/tagged/css%20crimes) the most, of course.
- I occasionally enjoy making bad video games and putting them on [my itch.io](https://mehbark.itch.io)
If you want to play the best thing I have ever made, and possibly the best thing I *will ever* make, check out [Elo Worldle](https://elo-worldle.pyrope.net)!
If you want to do something else on your browser AS SOON AS POSSIBLE, check out [my page of fun web stuff](/fun-web-stuff)!
If you want longer-form stuff of even less consistent quality, check out [my blog](https://b.pyrope.net)!
---
# Latest posts
<ul>
{props.collections.post.toReversed().map(p =>
<li key={p.url}><PostLink post={p} /></li>
)}
</ul>