IndieWeb post types
This content type is full of IndieWeb post types, which are all content types which allow me to take greater ownership of my own data. These are likely unrelated to my blog posts. You can find a better breakdown by actual post kind below:
Liked
GitHub - InoUno/yaml-ls-check

Post details
Contribute to InoUno/yaml-ls-check development by creating an account on GitHub.
Liked
Adapting Illustrations to Dark Mode

Post details
I want to share with you a quick way to make illustrations on your website work in both light and dark mode: .dark .invert-on-dark { filter: invert(1) hue-rotate(180deg); } Try it! Toggle dark mode in the navigation bar and see the cover photo swi...

Between and I took 8330 steps.
Listened to
OpenTF for an open Terraform with Josh Padnick (Changelog Interviews #556)

Post details
This week we’re talking about the launch of OpenTF and what it’s going to take to successfully fork HashiCorp’s Terraform. We’re joined by Josh Padnick to discuss what exactly happened, how HashiCorp’s license change changes things, who has been impacted by this change, and ultimately what they are doing about it.

Liked
Terence Eden (@Edent@mastodon.social)

Post details
Attached: 1 image It occasionally feels like my blog's error messages are trolling me.

Liked
jwz (@jwz@mastodon.social)
Post details
@malwaretech@infosec.exchange Starting to think that maybe using a web browser owned by the world's largest advertising company might be a bad idea.
Liked
Matt Haughey 🦣 (@mathowie@xoxo.zone)
Post details
I hate it when you follow a link to a really great blog post and you're two paragraphs in thinking oh my god this is really good but then a modal popup window from substack asks you to subscribe to this newsletter and you have to hit "continue reading" to finish and then you wonder if this great blog entry will last on someone else's service that may not be around in a few years
Liked
Jessica (@jessicab@hachyderm.io)

Post details
Attached: 1 image Hey I'm Jessica 👋 Previously Jess White, and have moved to a new account as I got married and changed my surname ✨ A few bullet points about me: - Day job is Senior Principal Architect - Director and co-founder of @dddem@mastodon.me.uk Conference - On the Board of Directors for the .NET Foundation - 4 X Microsoft MVP - Occasionally do the public speaking thing But I post about home life as well as tech life. Nice to meet you 😊

Liked
Taylor Barnett-Torabi (@taylor_atx@hachyderm.io)
Post details
welcome to DevRel: your work is often invisible and you'll question whether you should go back to engineering on a monthly basis. ✌️
Listened to
Ep136: Dan Moore by The Geek Within

Post details
Today's guest is Dan Moore. He is the head of Devrel at FusionAuth and the author of "Letters To A New Developer", which is subtitled, What I Wish I Had Known When Starting My Development Career. Episode 136 on YouTube: https://youtu.be/1C1q-o6DtPU You can engage Dan here: LinkedIn - https://www.linkedin.com/in/mooreds/ Website - https://letterstoanewdeveloper.com/ Book - https://www.amazon.com/Letters-New-Developer-Starting-Development-ebook/dp/B08FD7DG943 Substack - https://ciamweekly.substack.com The Geek Within can be found on several podcast platforms - https://www.polywork.com/posts/W0IZQ1lu List of past episodes: https://tgwlink.net/episodes

This sounds like an interesting side project to work on 👀
Liked
Chris Siebenmann (@cks@mastodon.social)
Post details
Current status: looking around for a test server that gives you scratch accounts that you can then enable TOTP MFA for, so you can test TOTP MFA clients so you can understand them and the tricks you can pull for TOTP authentication. There are public expendable-account test servers for email, but I imagine the MFA TOTP case is more obscure (and maybe requires more backend work).
Liked
Xe :verified: (@cadey@pony.social)
Post details
ffmpreg
Super excited that it's only a couple of weeks to go to #DevOpsDays London! There are still some tickets available, hit me up if you want a discount 👀
It's such a great conference, regardless of the fact that I'm speaking 🤓
Liked
How to Write a Secure JWT Library If You Absolutely Must

Post details
I am famously not a fan of JSON Web Tokens (JWT). Like most cryptography and security experts familiar with JWT, I would much rather you use something else if you can. I even proposed a secure alte…

Liked
Terence Eden (@Edent@mastodon.social)

Post details
Attached: 4 images Earlier this year we stayed at a hotel in Berlin. They had a little sign that said if we opted not to have our towels washed, they'd give us a present. On our last day, we were given a little packet of mixed seeds to plant when we got home. The results so far have been delightful 🥰 #BloomScrolling

Liked
Graham Sutherland / Polynomial (@gsuberland@chaos.social)
Post details
this docker container could've been a shell script
Listened to
A portrait of the best worst programmer (Changelog News #60)

Post details
Dan North tells the tale of Tim, the worst programmer he’s worked with (who also is a heck of a programmer), Kevin Lin declares that OpenTelemetry delivers on its promise for open observability, Justin Garrison details Terraform vs GitOps vs System Initiative, Inc. writes how Apple beats burnout & Aline Lerner’s ad...

Liked
mnl mnl mnl mnl mnl (@mnl@hachyderm.io)
Post details
worse than touch interfaces are touchscreen interfaces. not only are they even more annoying because they usually have badly calibrated touch, but they all but promise that your UI will look like dated fugliness one year in. he rants, trying to hit the pixelated water symbol on a TFT with wonky LED backlight on what looks like a new coffee maker.
Between and I took 6296 steps.
Liked
Ian Cooper (@ICooper@hachyderm.io)
Post details
I am helping out on project at work. I worked on the project when it started, and one decision we made was to store ADRs for design decisions local to the project within the repo Two years later, re-reading these is really helping me get up to speed on why some things work the way they do. In particular we had a mob exploration of the codespace and questions popped up which were answered by these ADRs.
Liked
UnclePJ (@unclepj@zirk.us)
Post details
It’s hard to believe that I’m from a generation that paid for ringtones when should this stupid glass rectangle make a single noise now, I’d smash it to bits.
Liked
Alex :yikes: (@amorphophalex@mastodon.social)
Post details
i still maintain that misinformation/disinformation are terrible terms and we should all go back to saying "being wrong," "ignorant," and "lying"
Liked
Josh Collinsworth (@collinsworth@hachyderm.io)

Post details
Attached: 1 image I took this photo of my kid playing with his blocks the other day, and when I realized it reminded me of something, well...I had to make this.

Liked
Why to prefer `t.Cleanup` to `defer` in tests with subtests using `t.Parallel`
Post details
Go’s <code>defer</code> and <code>t.Cleanup</code> have similar semantics, but there’s a good reason to prefer the use of <code>t.Cleanup</code> specifically in the presence of parallel subtests.