This is the first photo (and note) posted from my new phone: A Samsung Galaxy S10 Lite.

š¼ļøĀ View
Tech, life and everything else
This section is for short notes, thoughts or IndieWeb interactions.
This is the first photo (and note) posted from my new phone: A Samsung Galaxy S10 Lite.

š¼ļøĀ View
I took inspiration from Ru and finally added a āfavorite blogsā section to my blogroll. I also sorted the blogs into English and German, so that someone without knowledge of German can ignore the German blogs.
Ru Singh automated her blogroll too.
In July 2020, Jan auĀtoĀmated his blogrollāāāand this valĀiĀdated the idea in my head. Now, my own blogroll is auĀtoĀmated as well!
I think Iām not the first one. If I remember correctly, Jan did this already before.
A key difĀferĀence is that I have my script mark some feeds as recommended based on their feed IDs from my Miniļ¬ux reader. Then, these feeds are shown ļ¬rst as āRecommended Feeds,ā folĀlowed by all the other feeds in a sepĀaĀrate list.
That is a very clever idea! Currently there are 68 blogs in the blogs section on my blogroll, definitely confusing for people searching for the best blogs to follow. Problem: I have to pick a few favorites and thatās a really difficult task.
If anyone is wondering, why thereās no new content on this blog: Iām on vacation in northern Germany at the Baltic Sea!
Iām fine and am (mostly) enjoying the time with no internet. Thereās no WiFi here and also my mobile networkās coverage isnāt optimal (o2 sucks outside of big cities). So Iām more or less forced to do a digital detox. I read books and spend time with my girlfriend instead. š
I also chose the right time for my vacation, now that itās so hot and dry in most parts of Germany. Doing work during this heat wouldnāt be so comfortable. I really hope temperatures are back to normal when Iām back home.
@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. š
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.