For some of my notes from long ago I find it helpful to quickly check what weekday a certain date was. I don’t want to go to a website for it that shows me, of which there are several.
I do like making tiny personal tools though.

So I wrote a tiny php script with a webform for my local web server, to tell me the weekday for a given date.

Such small things give me a suprisingly large amount of pleasure to make and see it work. Next step is to do this over the command line or through Alfred, rather than a web interface. Update: found an Alfred workflow that I adapted, which either shows the day or puts it on the clipboard for pasting.

The code is easy as PHP has a function for it.

if ($_POST) {

$dag = $_POST['dag'];
$maand = $_POST['maand'];
$jr = $_POST['jaar'];

$jd=gregoriantojd($maand,$dag,$jr); /*NB this function uses the awkward US date format m/d/y */
echo $dag."-".$maand."-".$jr." was een ".jddayofweek($jd,1);
}

It seems using Micropub to publish to a Gutenberg WordPress site no longer works. For my company’s site, where we use Gutenberg, pushing a new blogpost through Micropub now causes a fatal error and lets the site crash. Removing the offending post fixes it. May well have to do with our use of other plugins for page design (such as Avada). It doesn’t seem like the IndieWeb MicroPub plugin is getting a lot of attention (not a criticism, just an observation). On my own blog, where I don’t use Gutenberg everything’s fine.

I use MicroPub to publish directly from within my local markdown notes, which reduces friction to write quite a bit. Having to write or copy paste stuff into the WP back-end is something I’d rather avoid.

In reply to Kann man die Twitter-Uhr zurückstellen? Zum Bluesky-Hype im österreichischen Journalismus by Heinz Wittenbrink

Du hast denke ich recht Heinz das der Umzug von Journalisten in Richtung Bluesky eine verpasste Chance ist. Aber nicht nur für die Journalisten selbst als individuelle Professionals. Ich verstehe nicht warum Zeitungen und Medien nicht selbst eine kleine Fediverse-Instanz ins Leben rufen. Damit kann man direkt und unangreifbar die Authentizität eines Accounts belegen, da sie verbunden ist mit der eigenen Internetdomäne. Sowie zB hier in den Niederlanden der Mastodon Server der Verwaltung auf social.overheid.nl läuft, und overheid.nl die Domäne ist für alle Verwaltungsinformationen. Strategisch ist eine verpasste Chance mMn das Zeitungen das Potential für Handlungsfreiheit im offenen Web nicht beachten, und das den einzelnen Reportern als Wahl überlassen. Obwohl man sich regelmässig darüber beklagt das BigTech ihnen Handlungsfreihet wegnimmt (sowohl bei online Äusserungen wie bei Werbung und Besucherzuleitung über Suchmashinen). Man erinnert sich anscheinend nicht das es Journalisten und Politiker waren die Twitter über die Tech-Szene hinaus groß gemacht haben als Nachrichtenquelle, und verpaßt jetzt diese (vierte?) Macht anzuwenden, und verliert sich aufs neue in einen Silo betreut von Miljardäre, VCs und Crypto-bros. Nur weil freier Zugang und hypothetische Federation (pinky promise) über den Eingang steht. Tech geht immer schneller wie man sagt, und ich nehme an das diese Beschleunigung auch eine schnellere Enshittification (Verscheißifikation?) bedeuten wird. In den Niederlanden gibt’s die Initiative Public Spaces, gestartet durch öffentlichen Medien und in Zusammenarbeit mit anderen Organisationen die ein offenes Web und öffentlicher Diskurs stärken wollen. Mit praktischen Mitteln, eine jährliche Konferenz usw. bringen die das voran. Vielleicht ist es möglich da auch in .at was zu bewegen, so wie du das in 2008 mittels dem Politcamp auch bez. politische online Kommunikation getan hast.

Die Gruppe, die jetzt zu Bluesky gewechselt ist, wäre sicher in der Lage, Einrichtung und Betreuung eines kleinen Mastodon-Servers zu organisieren. Ich weiss aus den Erfahrungen bei graz.social, dass der Aufwand überschaubar ist. Es gibt in Österreich Organisationen wie den Presseclub Concordia, die die Trägerschaft übernehmen könnten.

Heinz Wittenbrink

Bookmarked Tools for Thought Library in Zotero (by Chris Aldrich)

This large and interesting collection of books, writings, quotes and other artefacts on note making and personal knowledge management, tools for thought in short, through the ages is something to explore at leisure. It seems to have been put together by Chris Aldrich some two years ago. Great stuff. Came across it in Chris’s Hypothes.is stream, and didn’t immediately realise it was a reference to his own collection.

Obsidian has released a Webclipper for a variety of browsers. Making it easy to get stuff into your notes from your browser is a key thing to make as frictionless as possible. So this is a laudable step.

I’ve been using the Markdownload webclipper for 4 years.

Both allow you to precisely template what gets saved and in which way when you save a page or a selection on a page. That way I can ensure it ends up in my Obsidian notes tool in a shape that is immediately useful inside that environment.

A key difference is that Markdownload saves to the file system, it simply puts a text file with an .md file extension in a folder I designated, and that is the same folder Obsidian looks for my notes. It can also save through Obsidian though. It’s independent and useful regardless of Obsidian, because of it.

The Obsidian webclipper saves through Obsidian, I suspect so you can leverage whatever you have set up in Obsidian for incoming material. It brings Obsidian to the front and does the saving, and if you want opens the note to continue there. In my case it meant the default template for new notes got applied by the templater plugin, overwriting the material I tried to save. The settings of the Obsidian webclipper does not have the option to save to a folder, bypassing Obsidian.
This to me introduces an unneeded dependency (and the need to figure out suppressing my default template inside Obsidian so it doesn’t overwrite incoming webclippings). To me the fact that Obsidian is a viewer on top of regular text notes on my hard drive is valuable because I can use the files and manipulate them in other tools. I daily read and write those notes outside of Obsidian. It seems many others don’t realise this fully as there is the strong tendency to want and expect Obsidian to do everything (even though the dev team handily shifted that urge to the developers of plugins).

I will stick with the Markdownload webclipper for now.