import ReactMarkdown from 'react-markdown'; import ReadmeMd from '../README.md'; import License from '../LICENSE.txt'; import Layout from '../components/layout'; function AboutPage() { return (

Paul's Personal Website. I go by @LambdaPaul on GitHub and @lambda_paul on X/Twitter.

I also have a Gitea server at git.paulw.xyz and a Pleroma (ActivityPub/Mastodon-compatible) server at social.paulw.xyz as back-ups for my GitHub and X/Twitter.

Why did I create this? Why do I have the back-ups?

The original motivation was to just play with Next.js as it pretty much did the things I wanted web pages to do. But it came at the cost of needless complexity. As I use the JavaScript/ECMAScript/Whatever-you-want-to-call-it-script more and more, I am convinced that it is not a platform worth pursuing because the more complex it gets, the less control I have over what it does and this platform and its users seems to be okay with that sort of loss. I have been instead pivoting toward things that impressed and got me interested in working with computers.

Most services/products are keen on going against what Steph Ango calls File over app, a philosophy in which you prioritize data over software, and anticipate and embrace the eventual death of software. People instead want subscription services that barely support open formats and sometimes do not support exporting data to commonly used formats. The goal here is to avoid storing artifacts under locations that are easily not accessible, not under my control, and does not lock me out of using it with other software. The only reason I have not completely abandoned this is thanks to my decision to rely on Markdown files alone. Had it been reliant on any cloud software, I would have started over.

Got any questions, concerns, or issues? Contact me via email: contact [at] paulw [dot] xyz.


Source for this site is available on GitHub: github.com/LambdaPaul/www and git.paulw.xyz/LambdaPaul/www

Relevant information regarding the source is available on the repo and is also provided below.

README

{ReadmeMd.replace(/^#{1,5} /g, (s: string) => { return `#${s}` })}

LICENSE

{License}
); } export default AboutPage;