@bekopharm Yeah, that shirt is really cool ☺️👍 But I wouldn’t wear it myself, I am already asked far too often things that you can easily find on Google DuckDuckGo. 😅
💬 Micro
This section is for short notes, thoughts or IndieWeb interactions.
It was a nice evening yesterday with interesting discussions about different IndieWeb topics! I also used the writing hour to write some code for my custom CMS and it’s progressing well…

🖼️ View
Answer to a comment by a reader on my last post: I know that there’s an active modding community for the Xiaomi Mi A1. However, I don’t want to use any custom ROM as long as possible, because it usually makes using banking apps etc. a lot harder and I don’t have any alternative to them. And Android 9 is still recent enough that all apps (I need) work fine. I used LineageOS on my Moto G 3rd Gen. and the Moto E 1 Gen. I had before.
Is it just my feeling or is there way less talk about custom ROMs these days? I already thought about this in 2018.
This day is successful: I created a recursive SQL CTE in SQLite even before noon. 🤓
with recursive f (i, fp, tp) as (select 1, fromPath, toPath
from redirects
where fromPath = ?
union all
select f.i + 1, r.fromPath, r.toPath
from redirects as r
join f on f.tp = r.fromPath)
select tp
from f
order by i desc
limit 1
This is for my new CMS project.
It was a nice HWC on Wednesday. (I already wanted to post this photo yesterday, but had to repair my Micropub media endpoint first…)

🖼️ View
Today I will participate again at the HWC Europe/London (remotely, but this time with a webcam). I am looking forward to some nice discussions. Until then I’m going to program a little bit on my own CMS.
I’ll join my first IndieWeb event today! Quite excited and slightly confused by the British time zone (it’s -1 hour to my time), but I’m sure it will be fun talking to other IndieWeb people. 😌
Finally I have an external wireless mouse and keyboard (Logitech MK235) for my work computer, so I can connect it to my monitor at home. Hopefully this will have a positive effect on my eyes and my posture, always working on a laptop is quite exhausting.
Beautiful poem and so true, Henrique! Even as someone who has so far attached less importance to physical contact, I can now absolutely understand how important it is.
Physical contact is much more important than it seems to us. Yes, emotional connections are important. But emotional connections with physical contact reach cosmic proportions.
Now that most IndieWeb meetings are on video, maybe I should consider joining one as well. 🤔 I just have to overcome my shyness of speaking in English in front of other people. 🙈 And I need to implement RSVPs in my blog theme.