#
I've fixed a crash in #DungeonPlanner which happened whenever a Dungeon with an empty chamber was exported. Also updated the dependencies while I was at it.
Personal Blog about anything - mostly programming, cooking and random thoughts
I've fixed a crash in #DungeonPlanner which happened whenever a Dungeon with an empty chamber was exported. Also updated the dependencies while I was at it.
Unfinished thought:
People argue that AI will replace all these workers as there work is easily automated. Simultaneously they will not be replaced as there is so much more to their job than the thinks they type into their keyboard.
There is a disconnect where people judge the work of others only by the observable output while recognizing that there own work is worth more than the output visible by others.
Similar to surveys about UBI (universal basic income):
Am I the only one who finds it weird that #wwdc24 is such a big event, followed by that many people?
Added two flags to #owl-blogs to allow setting location of the database and bind address.
#todo change reply from article to note on ActivityPub, as the main usage is short replies.
#indieweb How do you deal with postings in different languages? I normally write in English, but occasionally switch to German if the main audience is German.
Next Milestone for #ActivityPub support in owl-blogs: being able to play fedi-games :D
I've started owl-blogs to explore the #IndieWeb space. At the moment I'm "only" using #microformats and #webmention.
I've tried to implement #micropub in the past, but found it provided to little value for me.
Anything I should try out next?
If you want to have hashtags compatible with #Mastodon use: https://docs.joinmastodon.org/spec/activitypub/#Hashtag
When using go-ap/jsonld, to extend the context by a term use:
jsonld.WithContext(
jsonld.Context{
{IRI: jsonld.IRI(vocab.ActivityBaseURI)},
{Term: jsonld.Term("Hashtag"), IRI: jsonld.IRI("https://www.w3.org/ns/activitystreams#Hashtag")},
},
)
Instead of:
var ApEncoder = jsonld.WithContext(
jsonld.IRI(vocab.ActivityBaseURI),
jsonld.Context{
{Term: jsonld.Term("Hashtag"), IRI: jsonld.IRI("https://www.w3.org/ns/activitystreams#Hashtag")},
},
)
The latter ignores the terms.