this post was submitted on 21 Nov 2023
1 points (100.0% liked)

Programming Horror

1888 readers
1 users here now

Welcome to Programming Horror!

This is a place to share strange or terrible code you come across.

For more general memes about programming there's also Programmer Humor.

Looking for mods. If youre interested in moderating the community feel free to dm @[email protected]

Rules

Credits

founded 1 year ago
MODERATORS
 
top 6 comments
sorted by: hot top controversial new old
[–] [email protected] 0 points 1 year ago

I mean I get it that it's a Long function, line wise, but it reads like every single line has just the minimum amount of information it needs to have to be legible and to make sense for it to exist.

I would say that this is more readable than those leet programmer regex hacks that work magic in 3 lines of code but require a fucking PhD to decipher.

[–] [email protected] 0 points 1 year ago (1 children)

Any guide on how to write effective logs? I'm starting to write scripts to automate some processes at my job and want to start logging the process to debugging or troubleshooting in the future.

[–] [email protected] 0 points 1 year ago (1 children)

The most useful thing you can do for simple scripts is never use the same log string in two locations in your code. If you reuse strings it can become very confusing where a specific log line printed from. In addition, write logs that let you trace the execution of the program, down to some kind of identifier that allows you to determine (for example) the exact iteration of a loop that caused an error.

[–] [email protected] 0 points 1 year ago

I'd use logger that prints the file and line number when logging, to avoid the question of: "where is the log coming from"

[–] [email protected] 0 points 1 year ago (1 children)

I may put this on a slide for the Code Smells part of Refactoring lecture I have coming up.

[–] [email protected] 0 points 1 year ago* (last edited 1 year ago)

There's a semi-global r that is declared in a completely normal file and almost every file adds to it in some way.