292
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
this post was submitted on 19 Nov 2023
292 points (93.5% liked)
Technology
59080 readers
3757 users here now
This is a most excellent place for technology news and articles.
Our Rules
- Follow the lemmy.world rules.
- Only tech related content.
- Be excellent to each another!
- Mod approved content bots can post up to 10 articles per day.
- Threads asking for personal tech support may be deleted.
- Politics threads may be removed.
- No memes allowed as posts, OK to post as comments.
- Only approved bots from the list below, to ask if your bot can be added please contact us.
- Check for duplicates before posting, duplicates may be removed
Approved Bots
founded 1 year ago
MODERATORS
You can use the regex:
/\bx\b/i
It'll catch 'x' surrounded by word boundaries (stuff like spaces, dashes/hyphens, commas, etc.) but not 'x' with other letters on either side, so it won't match e.g. "sax" or "boxer", but it'll match "x.com" and "Elon's X" and stuff. It's probably not perfect though, so use with caution.
Stuff about X-rays will be filtered, for example. You could probably go a little safer with the regex.
Now you have two problems.
Yeah, there's room for improvement. I did say, though, that it probably wasn't perfect. I'm sure someone more patient than me can come up with a much more effective regex.
It's sadly not perfect as @Mananasi@feddit.nl also states, and since I like maths related stuff too and science it'll likely filter out too much stuff. But I appreciate your efforts. An ai algorithm or a community created blacklist is probably the only solution.
Yeah, good points. I did note, though, that it probably wasn't perfect. I kinda figured it would probably catch other stuff too but I couldn't think of anything specific at the time.