this post was submitted on 25 Jul 2026
207 points (91.9% liked)

memes

22450 readers
2783 users here now

Community rules

1. Be civilNo trolling, bigotry or other insulting / annoying behaviour

2. No politicsThis is non-politics community. For political memes please go to !politicalmemes@lemmy.world

3. No recent repostsCheck for reposts when posting a meme, you can only repost after 1 month

4. No botsNo bots without the express approval of the mods or the admins

5. No Spam/Ads/AI SlopNo advertisements or spam. This is an instance rule and the only way to live. We also consider AI slop to be spam in this community and is subject to removal.

A collection of some classic Lemmy memes for your enjoyment

Sister communities

founded 3 years ago
MODERATORS
207
TessNote (lemmy.world)
submitted 1 month ago* (last edited 1 month ago) by Grimy@lemmy.world to c/memes@lemmy.world
 
you are viewing a single comment's thread
view the rest of the comments
[–] lime@feddit.nu 70 points 1 month ago (5 children)

the regexes are insultingly bad, on top of everything else.

it should obviously be ^(?:[Ww]holesome)?[Yy]uri

[–] realitaetsverlust@piefed.zip 38 points 1 month ago

Bold of you to assume that someone with enough time to compile such a massive list has any useful skill. Whoever made that list is the embodiment of "touch grass"

[–] Tanoh@lemmy.world 7 points 1 month ago (1 children)

Perhaps their regex engine is insultingly bad. But I assume they would use the basic js/ts which is not that bad.

Some croak on just about anything except basic matching, look ahead, look behind, no capture groups, etc.. pfft. Too advanced

[–] lime@feddit.nu 4 points 4 weeks ago

if it doesn't have the recursion operator it's an inferior regex flavour

[–] olenkoVD@lemmy.dbzer0.com 6 points 1 month ago

Mayybe, the regex matching was case insensitive?

[–] StumblingWasabi@lemmy.today 6 points 1 month ago (2 children)
[–] Abyssian@lemmy.world 32 points 1 month ago (1 children)

It's easy, if you're on windows just hit the window key and type "regedit". It will ask if you're sure, just say yes bc you want to learn.

After that just start clicking on things and changing values to see what happens. Learn by doing. You got this!

[–] 30p87@feddit.org 5 points 1 month ago (1 children)

I suggest deleting everything and starting from scratch

[–] Abyssian@lemmy.world 8 points 1 month ago

I just sort of assume most people will end up coming to that conclusion on their own once they see all the nonsense and gibberish it's full of. You can save thousands of bytes of hard drive space clearing all that crap out, and with the price of drives these days it's kind of crazy not to.

[–] underscores@lemmy.zip 5 points 1 month ago

checkout regex101

[–] CallMeButtLove@lemmy.world 4 points 4 weeks ago

I always just use (?i) at the beginning of everything I don't care about case for. Is that inadvisable compared to this?