top 50 comments

sorted by: hot top controversial new old
[–] 73 points 2 years ago (3 children)

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.

  • source
  • hideshow 5 child comments
  • [–] 47 points 2 years ago (6 children)

    I've heard of people printing out charts, then cutting out the part they wanted to calculate an integral of, then weighing the paper.

  • source
  • parent
  • hideshow 9 child comments
  • [–] 26 points 2 years ago (1 child)

    I've heard of it too. You would need an analytical balance to get accurate measurements weighing a piece of paper. Just cut out the part you want to take an integral of, then cut out a piece of paper with known size (or cut several pieces with different sizes to get more accurate results) and weigh each of them. I guess this used to be cheaper and faster than using computers when computers were big and expensive.

  • source
  • parent
  • hideshow 1 child comment
  • load more comments (1 reply)
  • load more comments (3 replies)
  • load more comments (1 reply)
    [–] 70 points 2 years ago (13 children)

    Better than counting curly braces.

  • source
  • hideshow 18 child comments
  • [–] 48 points 2 years ago (2 children)
  • [–] 29 points 2 years ago (1 child)

    Me too, any day. I hate everything where indentation matters. Let me just throw my garbage there and YOU sort it out, you are the fucking computer, not me. You do the work.

    So fuck you, YAML! All my homies love JSON!

  • source
  • parent
  • hideshow 2 child comments
  • [–] 15 points 2 years ago (1 child)

    Yup.

    Spaces? Tabs? Don't care, works regardless.
    Copied some code from somewhere else? No problem, 9/10 times it just works. Bonus: a smart IDE will let you quick-format the entire code to whatever style you configured at the click of a button even if it was a complete mess to begin with, as long as all the curly braces are correct.

    Also, in any decent IDE you will very rarely need to actually count curly braces, it finds the pair for you, and even lets you easily navigate between them.

    The inconsistent way that whitespace is handled across applications makes interacting with code outside your own code files incredibly finicky when your language cares so much about the layout.

    There's an argument to be made for the simplicity of python-style indentation and for its aesthetic merits, but IMO that's outweighed by the practical inconvenience it brings.

  • source
  • parent
  • hideshow 1 child comment
  • load more comments (1 reply)
  • [–] 27 points 2 years ago (5 children)

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

  • source
  • parent
  • hideshow 6 child comments
  • [–] 14 points 2 years ago (2 children)

    There's a joke here about using echo "some python code" > main.py in here somewhere but I can't find it. Imagine I did instead.

  • source
  • parent
  • hideshow 4 child comments
  • load more comments (4 replies)
  • load more comments (8 replies)
    [–] 38 points 2 years ago (11 children)

    People here are taking this way too seriously lol. I love Python, and I never really had any issues with the indentation being used instead of curly braces or something. This is just a silly meme, not a personal attack

  • source
  • hideshow 14 child comments
  • load more comments (8 replies)
    [–] 33 points 2 years ago (4 children)

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

  • source
  • hideshow 5 child comments
  • [–] 15 points 2 years ago (2 children)

    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).

  • source
  • parent
  • hideshow 3 child comments
  • [–] 8 points 2 years ago

    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.

  • source
  • parent
  • load more comments (1 reply)
  • load more comments (3 replies)
    [–] 27 points 2 years ago (2 children)

    @alphacyberranger
    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

  • source
  • hideshow 2 child comments
  • load more comments (2 replies)
    [–] 23 points 2 years ago* (8 children)

    Programming languages that use white space to delimit structure are annoying at best. I get annoyed at yaml too, but I'm ok once I have a few templates set up.

  • source
  • hideshow 9 child comments
  • [–] 21 points 2 years ago (1 child)

    YAML comes with its own unique pains in the ass https://ruudvanasseldonk.com/2023/01/11/the-yaml-document-from-hell

    These things actually matter, come up often enough to actually be annoying, and are a bit difficult to explain and learn into people. You’re basically fine if you just string quote everything that you can, but nobody does that.

  • source
  • parent
  • hideshow 2 child comments
  • load more comments (7 replies)
    [–] 19 points 2 years ago* (7 children)

    Most disingenuous post ever.

    The image shown is a dude with a browser dev console, probably measuring a div for the its CSS size (which do support centimeters and inches).

    In python, 4 spaces is just enough spacing between indent levels. And if your levels get too deep it's a sign that you're not being pythonic. Nesting too deep is the problem, not the whitespacing being significant.

  • source
  • hideshow 8 child comments
  • load more comments (6 replies)
    [–] 15 points 2 years ago (11 children)
  • [–] 13 points 2 years ago (3 children)

    Tabs. But really with modern IDE it's irrelevant. Whatever the tech lead says I guess.

  • source
  • parent
  • hideshow 4 child comments
  • load more comments (2 replies)
  • load more comments (7 replies)
    [–] 10 points 2 years ago

    I don't think this is a huge problem with a correctly set up text editor and the right techniques to limit code nesting. Doesn't change my dislike of python tho.

  • source
  • [–] 8 points 2 years ago (1 child)

    He could wrap a rubber band around the screen

  • source
  • hideshow 1 child comment
  • load more comments (1 reply)
    load more comments
    view more: next ›