a lil bee 🐝

  • 0 Posts
  • 14 Comments
Joined 1 year ago
cake
Cake day: July 18th, 2023

help-circle





  • All kinds of ideologies are viewed as fascism by all kinds of people, but that’s not a source. Just because you yourself are Jewish does not mean you have an understanding of Jewish people as a whole. If you want to assert something about Jewish views on Zionism, you need to provide a real source. It also doesn’t tie directly to your followup with “affluent Jews are why universities are invested in Israel”. Why would one follow the other at all?

    I also know what Israel is and how it was founded. Your wording this time is much more palatable! “Puppet state” has connotations that I agree with, but would not say if I was trying to be neutral. On a different thread, I think that’s entirely fair. Again though, when people ask for raw info, I think it’s only fair to provide that from as neutral a standpoint as possible.



  • I think we would need stats before making that first conclusion. I’ve seen a lot of favorability polls of Israel amongst Jewish people, but not sure I’ve ever seen an explicit ask for Zionism or its definition. I’m sure it’s out there, but I wouldn’t expect the OP to take that for granted without a source.

    Your second sentence is arguably correct, but lacking a lot of context and really not presented from a neutral standpoint like the other commentor and I were trying to strike. I think when people are looking for raw information, it’s fair to provide that with as little bias as possible, especially on a heated current issue. And fwiw, I likely agree with you on that issue.


  • I think this covers everything except for one last question the OP might have had. Israel was, and still is, a US ally. Trading is generally pretty open with those allies, so citizens are fairly free to invest with any company headquartered in those countries. Investing in an Israeli company was no different than investing in an Australian or UK company. Offshore investment can be smart too, as they can potentially insulate you from the effects of economic shocks in America (in the short term). I’m sure someone much more versed in economics or finances could give you a better summary of that end though.

    Just in case they’re wondering whether/why it’s possible/common to have foreign investments in the first place. Your comment is a great explanation for why Israel specifically.


  • a lil bee 🐝@lemmy.worldtoProgramming@programming.dev...
    link
    fedilink
    arrow-up
    2
    ·
    edit-2
    6 months ago

    I found that the tradeoff came in the form of being more explicit, thus requiring fewer comments and less explicit readmes. Developers who normally struggled with naming things well would do better in PowerShell since it kinda “forced” them into the habit and structure. I know fans of Go (myself included) generally like that it takes that concept to the extreme. It fit my needs well at a time when I had a team of juniors to manage and teach.

    Overall though, nothing wrong hating that strictness or verbosity! Lots of good options that support the reverse extreme and more moderate ones.


  • You’re right that Bash is among the worst options available, but it is common and what our friend above indicated he had experience with. I think your points are all valid, but I also find that most professional situations don’t offer much choice in the matter anyway. I used PowerShell because it was my company’s standard and there were 10 years of technical debt built around it. I got to know its ins and outs because of that and find some of them neat.

    I don’t think anyone should take any of my messages as saying PowerShell is best in class for any particular use cases, but I do enjoy using it. I’m all Python and Golang now anyway 🙃


  • a lil bee 🐝@lemmy.worldtoProgramming@programming.dev...
    link
    fedilink
    arrow-up
    8
    arrow-down
    1
    ·
    6 months ago

    Oh and that’s somewhere where PowerShell really shines! Check out the examples on the docs page for some examples and see how easy they are to read and write compared to sed/awk/etc.

    I also think PowerShell being object-based instead of string-based gives it flexibility for those of us who have experience with object-oriented programming languages. Being able to ship around objects to functions, splatting, etc are huge value adds for me personally.

    Again though, sooooo subjective! Some people will legit hate that it’s object-based and hate the syntax. The world supports all kinds of developers and we’re all making cool stuff, so it’s all good!


  • a lil bee 🐝@lemmy.worldtoProgramming@programming.dev...
    link
    fedilink
    arrow-up
    17
    arrow-down
    1
    ·
    edit-2
    6 months ago

    Not hating, but you should really try it out before forming an opinion. PowerShell Core is multi platform and if you value readable scripts at all, PowerShell is heads and shoulders over bash. I know all of us admins are proud of our bash scripts, but bash reads like hieroglyphics to anyone who didn’t write it. PowerShell has noun verb syntax and just heaps of syntax sugar. Scripts, even more than code imo, needs that readability for fast debugging and maintenance.

    But hey, opinions on languages and such are highly, highly subjective. No skin off my nose if you just don’t like it at all.