this post was submitted on 19 Jan 2024
14 points (79.2% liked)

Asklemmy

43396 readers
1398 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy πŸ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~

founded 5 years ago
MODERATORS
 

I want to discuss a better means of organizing tags for websites that use a generic tagging system. I propose a tag hierarchy.

Basically, if I search for #dog, I should find posts with #puppy, #pug, #baby_pugs, #cute_dogs, etc.

But, if I search for #pug, I should only get posts with #pug, or other tags like #baby_pugs, #cute_pugs, etc.

This would make adding 50+ similar tags to a post irrelevant and allow for normal people to put a single obscure tag and still gain visibility.

I want to bring this idea up to more people. Where should I discuss this? You can suggest any website, community, or Lemmy instance where I could possibly develop this further.

I'm happy to discuss this here as well.

[Edit for clarity]: I am not just talking about tags for the federation and Mastodon. I am talking about improving any and all websites with a generic tagging system. Twitter, Instagram, Facebook, etc. etc.

top 20 comments
sorted by: hot top controversial new old
[–] scrubbles@poptalk.scrubbles.tech 6 points 8 months ago (1 children)

I don't think Lemmy or Mastodon would be a good place to start necessarily. Don't be discouraged, I just mean that I think this should be something separate, like a library, that other systems like Mastodon or Lemmy could then use. As a code library it could be maintained elsewhere and let these folks keep working on their projects.

However, the large architecture issue is that those tags must be added in secret - or dozens of queries would have to go off. Either:

  • When someone comments #pug you also need to add on all possible permutations of pug so it's queryable or
  • When someone searches for #pug you need to do a much more complex query for all possible permuations of pug.

It would be possible to do a lookup table in sql for this, but again that requires maintenance and again every instance keeping track of their own set of known lookups. Anyone else have alternative architectures?

I don't think Lemmy or Mastodon would be a good place to start necessarily. Don't be discouraged, I just mean that I think this should be something separate, like a library,

True. I meant suggesting this idea for generally any website that uses tagging. Will update post to show this better.

As a code library it could be maintained elsewhere and let these folks keep working on their projects.

We would need a group like the Wiki Foundation to set this up. Though I wouldn't know how to pitch this.

[–] OhNoMoreLemmy@lemmy.ml 6 points 8 months ago* (last edited 8 months ago) (1 children)

If you don't know about it, check out https://wordnet.princeton.edu/

It's a great starting point for any English word hierarchy.

I didn't know about it, thank you for showing me this.

[–] Swaziboy@lemmy.world 5 points 8 months ago (1 children)

Structurally the idea has some merit. I think the challenge that you will encounter especially in a federated environment is gaining agreement on how to fill that structure and the hierarchy that you're implying and demonstrating. Using the pug example, you'll likely find very little argument on a good hierarchy, but using a more contentious example, let's say gender, how will you gain agreement across instances on what the hierarchy within the data should represent?

[–] actual_patience@programming.dev 2 points 8 months ago (1 children)

That is more of an argument involving the implementation of tags in general within the federation. But to answer your question:

Let's say a group of people were to make a post on Mastodon with the tag #girls_night. How will all instances agree on the tag being correct?

The simple answer is they won't. If a tag is contentious, it will be like any other drama between instances.

It's the same for implementing tag hierarchy. Let's say there is a default setup. Then if a tag or a tree of tags is contentious, each instance can include or exclude as they see fit.

[–] Swaziboy@lemmy.world 0 points 8 months ago* (last edited 8 months ago)

Ok I got ya. Doesn't that then limit the effective use of the hierarchy to the instance you're on and the hierarchy you're familiar with? In that the further removed you are from your home instance's hierarchy the less likely things will match up. So ultimately searches loose effectiveness I think?

Anyhow like someone else said, not trying to disparage the idea - it's interesting and I'm enjoying the various input and thoughts folks are bringing.

[–] CannotSleep420@lemmygrad.ml 3 points 8 months ago (1 children)

Two new tables for "tags" would be required. One for instance wide tags and one for community tags.

a curated list of tags users can attach to their posts. The list of tags can be maintained by both admins and moderators allowing for each community to tailor tags to their specific needs.

It's not what I was suggesting, but this should definitely be implemented for Lemmy.

I'm talking about how some tags should directly relate to one another, and how this should not always be the case in vice-versa. The system I'm suggesting is less useful when you limit the scope of tags (as the RFC does), but you can't really do that for user-centric websites like Mastodon.

I think I'll make an edit to clarify this in post.

[–] Illecors@lemmy.cafe 3 points 8 months ago (1 children)
[–] kplaceholder@lemmy.world 3 points 8 months ago

And all I can say is this:

image

[–] sin_free_for_00_days@sopuli.xyz 2 points 8 months ago (1 children)

I like the idea, but I have no idea how to help.

[–] willya@lemmyf.uk 1 points 8 months ago* (last edited 8 months ago)
[–] neidu2@feddit.nl 1 points 8 months ago* (last edited 8 months ago) (1 children)

I don't have an actual answer to your question, but imma use the opportunity to let my age show.

Seeing as we're not on instagram or twitter, and seeing as this space is somewhat more techy than the average platform, could we please do tagging without precomiler instructions (or perl inline comments if that's more your thing)?

"#" deserves better than being referred to as "the hash tag sign".

[–] actual_patience@programming.dev 1 points 8 months ago (1 children)

This place is more techy, but please don't assume. I have no idea what you're arguing for.

[–] Helix@feddit.de 2 points 8 months ago (1 children)

I think they meant that # is used in many other ways than "the hash tag sign" and you should refer to it as such, e.g. as hash sign, pound sign or number sign.

[–] neidu2@feddit.nl 3 points 8 months ago

Correct. Today I learned that putting it at the start of a line here makes it looks like you're yelling random statements.

[–] leanleft@lemmy.ml 0 points 8 months ago (1 children)

How does my point relate to HTML tag metadata?