this post was submitted on 14 Feb 2025
878 points (98.5% liked)

Programmer Humor

20735 readers
711 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
(page 2) 23 comments
sorted by: hot top controversial new old
[–] [email protected] 2 points 1 week ago

I think he found the Road Runner.

[–] [email protected] 2 points 1 week ago

Ffs just rewrite it

[–] [email protected] 2 points 1 week ago* (last edited 1 week ago)

Elisp has a nice notation for maintainably composing regexes like any other programming expression. Only language I've seen offer that. So instead of "/\\*\\(?:[^*]\\|\\*[^/]\\)*\\*+/", the regular expression to match C block comments could be expressed (with inline comments)

(rx "/*"                          ; Initial /*
    (zero-or-more
     (or (not (any "*"))          ;  Either non-*,
         (seq "*"                 ;  or * followed by
              (not (any "/")))))  ;  non-/
    (one-or-more "*")             ; At least one star,
    "/")                          ; and the final /
[–] [email protected] 1 points 1 week ago (1 children)

This would honestly be a lot easier

[–] [email protected] 2 points 1 week ago

I don't know any hieroglyphs, but I do know cuneiform. Would rather read cuneiform than regex!

load more comments
view more: ‹ prev next ›