@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. 😅
2020-08
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
Patreon CEO shares his most epic failures
Jack Conte, CEO of Patreon, talks about failures. Instead of focusing only on the one thing that is eventually successful, he talks about all his failures. About music videos, on which he spent half his fortune, but which were then unsuccessful and how he kept on trying and trying and trying. A really worth seeing talk.
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.
I cancelled my 1+ Nord pre-order
Shortly after the official announcement I pre-ordered the 12 GB version of OnePlus Nord on Amazon for 499€ minus 30€ Prime discount. It should have been shipped tomorrow and arrived at my place on Wednesday. However, I cancelled the pre-order today after I came across an article about display problems with this and other OnePlus devices (this is apparently not a rare problem with 1+).
My July ‘20 in Review
Meanwhile the seventh month of this year is over and so here is my monthly review of July 2020.
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.