• 0 Posts
  • 81 Comments
Joined 1 year ago
cake
Cake day: September 9th, 2023

help-circle



  • Python is just glorified shell scripting

    Absolutely not, python is an actual programming language with sane error handling and arbitrarily nestable data structures.

    I don’t like the indentation crap

    Don’t be so superficial. When learning something, go with the flow and try to work with the design choices, not against them.

    Python simply writes a bit differently: you do e.g. more function definitions and list comprehensions.






  • Huh, I really like code like that. Having a multi-step process split up into sections like that is amazing to reason about actual dependencies of the individual sections. Granted, that only applies if the individual steps are kinda independently meaningful

    To adapt your example to what I mean:

    Baz do_stuff(int count, boolean cond) {
    	Foo part1 = function1(count);
    	Bar part2 = function2(cond);
    	return function3(part1, part2);
    }
    

    This allows you to immediately see that part1 and part2 are independently calculated, and what goes into calculating them.

    There are several benefits, e.g.:

    1. if there is a problem, you can more easily narrow down where it is (e.g. if part2 calculates as expected and part1 doesn’t, the problem is probably in function1, not function2 or function3). If you have to understand the whole do_stuff before you can effectively debug it, you waste time.
    2. if the function needs to be optimized, you know immediately that function1 and function 2 can probably run in parallel, and even if you don’t want to do that, the slow part will show up in a flame graph.








  • flying_sheep@lemmy.mltovegan@lemmy.worldBarf.
    link
    fedilink
    English
    arrow-up
    2
    ·
    3 months ago

    There’s various textures tofu comes in

    • coarse tofu is like a more spongy, less fatty feta. Not great, but it exists to be pressed, marinated, and fried, which can make it amazing
    • silk tofu is very tender, texture is something between jello and pudding. Great as cubes in soup.
    • you can but deep fried tofu, which is great

    There’s probably more



  • I usually write “POSIXy shell” but I thought that was clear from context this time.

    The problem is that exit statuses !=0 aren’t treated as error by default (with a way to turn that off for individual expressions). Instead you have to set multiple settings and avoid certain constructs in bash/ZSH/…

    Everything that works like a modern programming language by default is fine of course