this post was submitted on 02 Sep 2024
223 points (98.3% liked)

Programming

17020 readers
238 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS
 

There are a couple I have in mind. Like many techies, I am a huge fan of RSS for content distribution and XMPP for federated communication.

The really niche one I like is S-expressions as a data format and configuration in place of json, yaml, toml, etc.

I am a big fan of Plaintext formats, although I wish markdown had a few more features like tables.

you are viewing a single comment's thread
view the rest of the comments
[–] seth@lemmy.world 6 points 2 weeks ago* (last edited 1 week ago) (2 children)

Oddly having several variants rather than a standard despite "regular" being in the name: everyone I work with eschews regex but after finally taking the time to learn more than just the basics of it a few years ago I find it so incredibly useful almost daily.

[–] dependencyinjection@discuss.tchncs.de 3 points 2 weeks ago (1 children)

What resource did you use to master it? As every time I have to use regex I want to cry.

[–] seth@lemmy.world 1 points 1 week ago

regex101.com has a convenient searchable cheat sheet for all the somewhat odd but powerful functions like negative lookbehind/lookahead with a brief explanation of each, a regex pattern input with checkable boxes that helps you get down single replacements vs global replacements, a large input that lets you dump text to test against the pattern, an explanation on the right of what each symbol is trying to match, and the left side lets you switch between the different flavors to see some of the variants between languages/standards. I still have a lot to learn before I'll consider it mastered, but I have enough common stuff memorized now that it works great for me!

[–] cyclohexane@lemmy.ml 2 points 2 weeks ago

Very much the same. I was terrified of regex, now I love it