hhmx.de

Föderation EN Fr 29.03.2024 15:28:23

what would you call a git commit that can no longer be reached from any branch or reference (for example because you ran `git commit --amend` or `git rebase`), but that you can still get to from `git reflog`?

I've considered "orphan", "dangling", and "unreachable" but none of these seem right:
- orphan has another meaning in git
- dangling only refers to the "tip" commits
- "unreachable" means that you can't reach it at all

would love a term that's already used, I don't like inventing terms

Föderation EN Fr 29.03.2024 17:32:12

@julian Did you know your post included a perfect illustration for the topic?

@b0rk @mahryekuh

Medien: 1

Föderation · Fr 29.03.2024 17:39:06

@nikclayton@mastodon.social @b0rk@social.jvns.ca @mahryekuh@fosstodon.org completely unintentional!


But no real head detachment was meant to be implied lol


Föderation EN Fr 29.03.2024 17:46:52

@julian @b0rk @mahryekuh This is an interesting issue though. Why are your mentions of Julia resolving as though a link to her profile was included in the status? Is this a known NodeBB -> Mastodon issue?

Föderation · Fr 29.03.2024 17:55:34

@nikclayton@mastodon.social sort of. It's not anything NodeBB is doing explicitly. Mastodon searches the note content for links, any links it can find, and turns them into a preview.


Specifically, Mastodon won't do it to mentions if you have some specific classes attached to the anchor (microformats). NodeBB doesn't do this, so Mastodon doesn't ignore it.


It's rather annoying behaviour on behalf of Mastodon, and one I'm not keen to bend over backwards to fix.


It'd be better form if Mastodon explicitly listened to the attachment property, as specified by the ActivityPub specification instead of departing from it in an odd way.


Föderation EN Fr 29.03.2024 18:04:35

@julian Is there an open Mastodon issue for this? Or more details about the microformats that are missing?

As a client developer this is a poor experience for my users, which is why I'm digging into it to see what I can fix.

Föderation EN Fr 29.03.2024 18:08:10

@julian hmm, github.com/mastodon/mastodon/i looks related. Is it the same root cause?