0 points

@alphacyberranger@sh.itjust.works This is why I have my VSCodium set to highlight all indentation levels in my settings.json

To see the editor indent guides, set “editor.guides.indentation”: true and “editor.guides.highlightActiveIndentation”: true.

editorIndentGuide.background: Color of the editor indentation guides. editorIndentGuide.activeBackground: Color of the active editor indentation guide.

https://code.visualstudio.com/api/references/theme-color

permalink
report
reply
0 points

Actually had a colleague who determined distances on microscopy images that way. She would measure the scale bar included in the image with her ruler on the screen, measure the distance she was interested in and calculate the distance using the rule of three. I mean, why bother using the measuring tool included in the software.

permalink
report
reply
0 points

Better than counting curly braces.

permalink
report
reply
0 points

You don’t usually count them. They just have to form a neat diagonal.

permalink
report
parent
reply
0 points

Even vim can show you that
^(fucking nano user)

permalink
report
parent
reply
0 points

Obligatory mirco is better.

permalink
report
parent
reply
0 points

Is mirco a little man sitting on your SSD flipping bits manually as you dictate him?

permalink
report
parent
reply
0 points

Let me introduce you to YAML, you’ll love it!

permalink
report
reply
0 points

Ugh, there’s some parts of YAML I love, but ultimately it’s a terrible format. It’s just too easy to confuse people. At least it has comments though. It’s so dumb that JSON doesn’t officially have comments. I’ve often parsed “JSON” as YAML entirely for comments, without using a single other YAML feature.

YAML also supports not quoting your strings. Seems great at first, but it gets weird of you want a string that looks like a different type. IIRC, there’s even a major version difference in the handling of this case! I can’t remember the details, but I once had a bug happen because of this.

Performance wise, both YAML and JSON suck. They’re fine for a config file that you just read on startup, but if you’re doing a ton of processing, it will quickly show the performance hit. Binary formats work far better (for a generic one, protobuffers has good tooling and library support while being blazing fast).

permalink
report
parent
reply
0 points

It’s so dumb that JSON doesn’t officially have comments.

So much this.

Used to work at a company where I sometimes had to manually edit the configuration of devices which were written and read in JSON. Super inconvenient if you have to document all changes externally. As a “hack” I would sometimes add extra objects to store strings (the comments). But that’s super dicey as you don’t know if it somehow breaks the parsing. You’re also not guaranteed the order of objects so if the configuration gets read, edited and rewritten your comment might no longer be above/below the change you made.

Always found it baffling that such a basic feature is missing from a spec that is supposed to cover a broad range of use cases.

permalink
report
parent
reply
0 points

Python syntax is the absolute worst

permalink
report
reply
0 points

Why do you believe that?

permalink
report
parent
reply
0 points

Not the previous commenter, but using indentation as syntax rather than an aid to understanding tge program structure is just painful when you come from any more conventionally structured language. The meme above may be an exaggeration, but it’s not much of one. An IDE can probably help, but needing one just to be able to more easily read the code is excessive.

That said, it’s a popular language and there are plenty of useful libraries, so sometimes the trade off is worth it.

permalink
report
parent
reply
0 points

I even coded my first few python programs in nano text editor without any annoying indentation issues. I use TABs btw. Problems usually happen when people mix tabs with spaces

permalink
report
parent
reply

Programmer Humor

!programmer_humor@programming.dev

Create post

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

  • Keep content in english
  • No advertisements
  • Posts must be related to programming or programmer topics

Community stats

  • 6.4K

    Monthly active users

  • 712

    Posts

  • 9.9K

    Comments