Hello, World š

Blogging again
My first entry on tbeseda.com. I canāt remember all the places Iāve published content, but Iām motivated to centralize it. It may not always look like this, but it will always be here.
The impetus being: the tire fire that is Twitter, a move to federated social networks, and a recent call to action: Bring Back Blogging.
Varying topics and content
Iām a fan of many things and a fanatic about being a fan of things.
For work, I write a lot about software and the web. Docs and articles about the tools we build, standards, accessibility, new protocols, etc.
I do think I will write about those topics here as theyāre of great interest to me. But I hope to also publish about other interests:
- Hobbies: leatherwork, classic pickups, game design
- Media, film, and journalism
- Local (to me) issues and politics
Platform
Iām deploying this handmade website to a series of AWS Lambdas (swapping to Begin soon as we roll out the new platform over there).
Iāve built several dynamic web apps backed by Markdown content. So Iāve been able to re-use a lot of that knowledge. Luckily, much of that experience is encapsulated in Arcdown and can be easily combined with Enhance to create a serverless web-publishing application.
Iām keeping an eye toward web standards and accessibility. Serving fast HTML documents with progressive enhancement where desired.
Features
Iāve already mixed in IndieWeb elements, like microformats. This post is a h-entry and I have implemented an h-card on my homepage and at /h-card.
This screenshot is from a useful browser extension called Microformats Reader that will inspect the current tabās standard microformat data. Hereās the current articleās details:
[hmm, static assets seem to be broken in production]
Oh, and the favicon is a random emoji on each request. š²
Code blocks
Iām likely to use this site to publish code snippets and examples.
Arcdown ships with highlight.js to provide syntax highlighting for code blocks. An example:
// render some .md to HTML with Arcdown
const arcdown = new Arcdown({
pluginOverrides: {
markdownItToc: {
containerClass: 'toc mb2 ml-2',
listType: 'ul',
},
},
plugins: [],
hljs: {
sublanguages: { javascript: ['xml', 'css'] },
plugins: [new HljsLineWrapper({ className: 'line' })],
},
})
const articleMd = readFileSync('./hello-world.md', 'utf-8')
const article = await arcdown.render(articleMd)
Todo: RSS, more IndieWeb, ActivityPub
RSS has to be done. Like yesterday.
More ideas:
- Photo viewer Web Component
- webmention implementation
- A link blog. I read a ton.
- ActivityPub inbox/outbox
- a āblogrollā (remember those?!)
- IndieAuth
- transfering some old, existing content
- article āļøs via Mastodon
- Gemini could be cool
Additionally, Iād like to have a place for hand-built web experiments (code, visualizations, games, long-form crafting guides, automotive build logs; things that donāt fit well into a .md
file) ā probably under /knowledge.
Itās Christmas and Santa is likely to be here soon. So Iāll leave it at that for now.