…from people who seem to refuse to install paredit or coloring plugins for either? ps lisp syntax ftw, it’s a feature!

  • xmunk@sh.itjust.works
    link
    fedilink
    arrow-up
    0
    ·
    1 month ago

    Who hates s-expressions? They’re elegant as fuck…

    Python, on the other hand, deserves all the hate it gets for making whitespace syntactically significant - I even prefer Go’s hamfisted go fmt approach to a forced syntax to python’s bullshit.

    • eestileib@sh.itjust.works
      cake
      link
      fedilink
      arrow-up
      0
      ·
      1 month ago

      I dgaf about induces starting at 0 or 1, I can deal with case-insensitivity, but syntactically significant whitespace drives me up the wall.

      • Diplomjodler@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        1 month ago

        What’s so hard to understand about it? It’s how you should format your code anyway. Only it’s enforced.

        • slice1@lemmy.ml
          link
          fedilink
          arrow-up
          0
          ·
          1 month ago

          Yeah, it is a completely nonsensical thing to complain about. I hate to go around matching curly brackets like some braindead nematode. If you use more than two levels you should rewrite the code in most cases… just use advanced indexing and vectorization (by pythonic ;p). Or you can loop around like a freaking peasent in your inefficient garbage code that nobody can read because it is cluttered with comments explaining basic stuff. There is a reason Python is popular… and it is not because no one can read it. Same goes for dynamic typing - it is a blessing for most tasks. I do not want to explain to the machine what every temporary variables means…

        • magic_lobster_party@kbin.run
          link
          fedilink
          arrow-up
          0
          ·
          1 month ago

          It’s quite often I have to second guess whether the code is correctly intended or not. Is this line supposed to be part of this if block or should I remove that extra indentation? It’s not always entirely obvious. Extra troublesome during refactors.

          In other languages it’s always obvious when a line is incorrectly indented.

        • vrighter@discuss.tchncs.de
          cake
          link
          fedilink
          arrow-up
          0
          ·
          1 month ago

          sometimes, a script needs to be edited in a plain text editor, without having access to an lsp or any other dev tools.

        • Lysergid@lemmy.ml
          link
          fedilink
          arrow-up
          0
          ·
          1 month ago

          No it’s how Python wants you to format. Many times I want to separate two logical sections in one function and can’t coz Python go crazy

          • Diplomjodler@lemmy.world
            link
            fedilink
            arrow-up
            0
            ·
            1 month ago

            Just put them in separate functions. If you have too many levels of indent, your code is convoluted. Sticking to the line length limit sometimes forces you to write more lines than you’d like to. But it makes everything so much more readable that it’s 100% worth the trade off

            • xmunk@sh.itjust.works
              link
              fedilink
              arrow-up
              0
              ·
              1 month ago

              What if the logic is more readable in one function?

              I use whitespace to make my code more legible, python forces more whitespace consistency but it comes at the cost of limiting the legibility.

          • AdamBomb@lemmy.sdf.org
            link
            fedilink
            English
            arrow-up
            0
            ·
            1 month ago

            Are you saying that you want to separate your two logical sections by having different levels of indentation and that’s what makes Python go crazy?

    • muntedcrocodile@lemm.ee
      link
      fedilink
      English
      arrow-up
      0
      ·
      1 month ago

      I hate em cos regardless of language auto formatter takes care of everything. So now im typing extra characters and fucking shit up and confusing myself when moving code between scopes.

    • pkill@programming.devOP
      link
      fedilink
      arrow-up
      0
      ·
      1 month ago

      I agree but still you can oftentimes expect that the average person’s initial reaction to be somehow reluctant… until they understand it. it’s like those foods and drinks that you might need to try a couple times before you start enjoying them.

    • TheHarpyEagle@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      1 month ago

      You take that back, python is my homie!

      In all seriousness, I freely admit that I’m biased towards python because it was my first language and remains my favorite. I use an IDE for anything but the simplest scripts, so I’ve very rarely had any issues with spacing.

    • best_username_ever@sh.itjust.works
      link
      fedilink
      arrow-up
      0
      ·
      1 month ago

      In 20 years of using Python, I never had one issue with the indentation. Use spaces all the time, use PyCharm, and that’s it.

      Whitespace is statistically insignificant in Python.

      • Barbarian@sh.itjust.works
        link
        fedilink
        arrow-up
        0
        ·
        1 month ago

        As long as the next line also has 5 spaces, that’s fine. Python only complains about inconsistency, not the exact number of spaces/tabs.

          • smeg@feddit.uk
            cake
            link
            fedilink
            English
            arrow-up
            0
            ·
            1 month ago

            What, you don’t like tabs and spaces being syntactically different?

            • Buddahriffic@lemmy.world
              link
              fedilink
              arrow-up
              0
              ·
              1 month ago

              (Sarcasm/deadpan detected but I’ll respond anyways).

              Not when they are visibly the same and the spaces have no other meaning in that context.

              Not to mention tabs being annoying in general because of how badly it works to adjust the distance of tab stops. That doesn’t really affect this particular case, but it’s why I generally use spaces instead of tabs.

              Most of the annoyance is from vim recognizing that spaces are an error in makefile recipes but still using them unless I copy paste a tab in, including when I hit enter on a line that is using a tab already. It matches the indentation but uses spaces instead of tabs. I’m sure there’s a way to adjust vim config to fix this, but I have yet to acquire the esoteric knowledge required to do so.

              • ugo@feddit.it
                link
                fedilink
                arrow-up
                0
                ·
                1 month ago

                If by vim you mean neovim

                vim.api.nvim_create_autocmd(“fileType”, {
                    group = file_type_group,
                    pattern = “make”,
                    command = “setlocal ts=4 sts=4 sw=4 noexpandtab”,
                })
                

                Slap this in your config, done

  • Litanys@lem.cochrun.xyz
    link
    fedilink
    English
    arrow-up
    0
    ·
    22 days ago

    But s-expressions give you power that other syntax doesn’t. Data and code as one. Besides there is no other syntax than simply that so it becomes much easier to remember random extra things.

    Whitespace on the other hand, I hate with fiber of my being.

    • pkill@programming.devOP
      link
      fedilink
      arrow-up
      0
      ·
      17 days ago

      Yes definitely. However Rust manages to become extensible and capable of constructing powerful DSLs out of it’s macros without using S-expressions. But I still find them prettier than Rust’s syntax.

  • ornery_chemist@mander.xyz
    link
    fedilink
    arrow-up
    0
    ·
    1 month ago

    This post made me go try something in clojure again and man I forgot just how fucking good the language is. Everything fits together so nicely.

  • luciole@beehaw.org
    link
    fedilink
    arrow-up
    0
    ·
    1 month ago

    It’s fascinating how s-expressions are both data type and language syntax. Such power. Only other time I saw something remotely like this was XSLT & XML, which I admittedly do not miss one bit.

  • umbraroze@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    1 month ago

    Clearly, the superiour mode is to just use keyword based scoping (à la Ruby do ... end). When I was a kid I read an OBSCENE MAGAZINE where I saw a Forth program go dup dup dup and I was like “ok so what’s the problem here? Things happen and everything is just keywords?” and my young mind was corrupted forever I guess

  • sajran@lemmy.ml
    link
    fedilink
    English
    arrow-up
    0
    ·
    1 month ago

    So I’m going to say what I always say when people complain about semantic whitespace: Your code should be properly indented anyway. If it’s not, it’s a bad code.

    I’m not saying semantic whitespace is superior to brackets or parentheses. It’s clearly not. But it’s not terrible either.

    As someone who codes in Python pretty much everyday for years, I NEVER see indentation errors. I didn’t see them back when I started either. Code without indentation is impossible to read for me anyway so it makes zero difference whether the whitespace has semantic meaning or not. It will be there either way.

    • TechNom (nobody)@programming.dev
      link
      fedilink
      English
      arrow-up
      0
      ·
      edit-2
      1 month ago

      Python decided to use a single convention (semantic whitespace) instead of two separate ones for machine decodeable scoping and manual/visual scoping. That’s part of Python’s design principle. The program should behave exactly like what people expect it to (without strenuous reasoning exercises).

      But some people treat it as the original sin. Not surprised though. I’ve seen developers and engineers nurture weird irrational hatred towards all sorts of conventions. It’s like a phobia.

      Similar views about yaml. It may not be the most elegant - it had to be the superset of JSON, after all. But Yaml is a semi-configuration language while JSON is a pure serialization language. Try writing a kubernetes manifest or a compose file in pure JSON without whitespace alignment or comments (which pure JSON doesn’t support anyway). Let’s see how pleasant you find it.

    • eluvatar@programming.dev
      link
      fedilink
      arrow-up
      0
      ·
      1 month ago

      The number of times I move code around and can just press a hotkey to fix indentation though. Not possible with Python.

    • Crisps@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      edit-2
      1 month ago

      This leads to weird bugs when you change indentation and miss a line or reorder lines. The logic changes. Not too bad when you’re on your own, as Python seems to be intended for. Add multiple developers and git merges and it is a recipe for disaster. With end tags at least you just end up with poorly formatted working code.

      • sajran@lemmy.ml
        link
        fedilink
        English
        arrow-up
        0
        ·
        1 month ago

        Of course, but when indentation has a syntactic meaning the formatter often won’t be able to fix it.

  • lorty@lemmy.ml
    link
    fedilink
    arrow-up
    0
    ·
    1 month ago

    No, YAML can fuck right off. I hate that this shit format is used for cloud stuff.

      • RecluseRamble@lemmy.dbzer0.com
        link
        fedilink
        arrow-up
        0
        ·
        1 month ago

        OK, that’s excessively “convenient” for booleans. But I don’t get the passionate YAML hate, seems like a simple enough language for config. Didn’t have the pleasure (“pleasure”?) to work with it though, so what’s why else is it shitty?

        • CaptPretentious@lemmy.world
          link
          fedilink
          arrow-up
          0
          ·
          1 month ago

          Do a search for ‘why yaml is bad’ and you’ll get a lot of stories.

          Constant passing problems, especially when the yaml gets very large and complex. After I implemented a new feature I was pulled into a call with 12-15 people demanding to know why it didn’t work. The new feature worked fine, The guys yaml had the wrong amount of white space and so it didn’t parse.

        • lorty@lemmy.ml
          link
          fedilink
          arrow-up
          0
          ·
          1 month ago

          White space in the wrong place? Fails Wrong amount of tabs? Fail

          Working in a big configuration file that has a lot of nesting? Good luck.

          Best part is that most of these things don’t throw errors or anything, it just doesn’t work and you are left scratching your head as to why your deploy only fails in the production environment.

        • magic_lobster_party@kbin.run
          link
          fedilink
          arrow-up
          0
          ·
          1 month ago

          A property can have the wrong indentation and it would still be a syntactically correct yaml. It’s hard to distinguish whether a line is wrongly indented or not. Copy and paste a line and mistakenly use the wrong indentation, and the entire production breaks.

          In json it’s much harder to do similar mistakes.

    • AdamBomb@lemmy.sdf.org
      link
      fedilink
      English
      arrow-up
      0
      ·
      1 month ago

      Since it’s a superset of JSON, couldn’t you just use the JSON notation if you hate the semantic whitespace?

  • umbrella@lemmy.ml
    link
    fedilink
    arrow-up
    0
    ·
    1 month ago

    one of my least favorite things about python is semantic whitespace. no need to comment on yaml.

    fuck it, parenthesis all the way.