• 0 Posts
  • 26 Comments
Joined 2 years ago
cake
Cake day: August 8th, 2023

help-circle




  • No I didn’t mix it up, I included the Amish, could have included Romani, and specified that I was talking about geographically dispersed ethnicities in general.

    Yes, some Jewish people have ties to what is Israel today, and no it really doesn’t open a can of worms. I was very clear that displacing any group of people is wrong: Hence, the state of Israel should never have been created, but now that it exists, we need to figure out a solution that doesn’t involve displacing any more people.

    To answer the “how far back” etc: Quite simply put, everyone today (sans a couple hundred thousand stateless Palestinian refugees, and a few others) have some citizenship and live on some land. Nobody has the right to displace others to claim that they have “more” of a right to that land. Thus: If you have ties to some land, and someone else lives there, you’re shit outta luck unless they want to negotiate with you. If, like the Kurds, your living in the place you have ties to, but don’t have your own state, you have a decent case.

    It really isn’t that complicated: Don’t displace/murder people. Two wrongs don’t make a right.



  • Exactly: I am antizionist because Jews getting a place of their own implicitly means that some other group, which currently has that place, must be displaced.

    Saying that Jews should have a place of their own is not comparable to saying that Italians should have a place of their own, because being Italian is tied to having hereditary ties to the place that is Italy, whereas being a Jew has no tie to a specific piece of land. It is rather comparable to saying that Christians, Muslims, the Amish, or some other group of people that are dispersed and unified by beliefs not tied to a place should have their own place, and that if such a place does not exist it is legitimate to displace others to establish it.

    I firmly believe that Israel should never have been created. As do many Jews (often ultra orthodox ones). However, I recognise the reality on the ground, that the state now exists and that many of those that moved there have now lived there for up to several generations. I do not believe that two wrongs make a right, and as such, I’m not a proponent of dissolving the state of Israel and displacing the Jews that now live there to make room for those displaced following 1948. However, I do believe that the displaced Palestinians should be allowed to return and have equal rights within the now existing state of Israel.




  • You are aware that what Israel is doing in Gaza is comparable to the nazi treatment of e.g. the Warsaw ghettos… right?

    Take a step back, and look at the Israeli soldiers mocking Palestinian dead, mistreating the wounded and captured, and shooting at clearly unarmed civilians for fun. All this while they brag about it on video. Look at that and tell me that it doesn’t give you a sick feeling to your stomach of the type you haven’t had since you saw photos of concentration camps.

    There are dozens of children that have literally STARVED TO DEATH in Gaza because of Israel’s actions. They’re dying the same deaths that Jews were put through in concentration camps. Don’t you see the horrifying irony in this?

    Israel is at a point where humanitarian workers from recognised international organisations have been targeted and killed, and they brush it off as a “mistake”.

    I cannot think about anything in the past 70 years that compares to what Israel is doing, and I hope beyond hope that some force will smite their government and armed forces such that the slaughter will stop. Because it is a slaughter. It’s not a war when Israel is counting its dead on its fingers, while there are enough missing Palestinians in the rubble to fill a football stadium. It’s just Israel wilfully bombing, burning and slaughtering, with nobody stopping them.

    All this, and you have the fucking audacity to talk about antisemitism? Take a look at the world, and ask yourself how calling for an end to this can have anything to do with the religious beliefs of the perpetrators.



  • Oh, I definitely get that the major appeal of excel is a close to non-existent barrier to entry. I mean, an elementary school kid can learn the basics(1) of using excel within a day. And yes, there are definitely programs out there that have excel as their only interface :/ I was really referring to the case where you have the option to do something “from scratch”, i.e. not relying on previously developed programs in the excel sheet.

    (1) I’m aware that you can do complex stuff in excel, the point is that the barrier to entry is ridiculously low, which is a compliment.



  • You are neglecting the cost-benefit of temporarily jumping to the wrong conclusion while waiting for more conclusive evidence though. Not doing anything because evidence that this is bad is too thin, and being wrong, can have severe long-term consequences. Restricting tiktok and later finding out that it has no detrimental effects has essentially zero negative consequences. We have a word for this principle in my native language - that if you are in doubt about whether something can have severe negative consequences, you are cautious about it until you can conclude with relative certainty that it is safe, rather than the other way around, which would be what you are suggesting: Treating something as safe until you have conclusive evidence that it is not, at which point a lot of damage may already be done.




  • I am very fond of the idea of “stateless” code, which may seem strange coming from a person that likes OOP. When I say “stateless”, I am really referring to the fact that no class method should ever have any side-effect. Either it is an explicit set method, or it shouldn’t affect the output from other methods of the object. Objects should be used as convenient ways of storing/manipulating data in predictable/readable ways.

    I’ve seen way too much code where a class has methods which will only work"as expected" if certain other methods have been called first.


  • Sounds reasonable to me: With what I’ve written I don’t think I’ve ever been in a situation like the one you describe, with an algorithm split over several classes. I feel like a major point of OOP is that I can package the data and the methods that operate on it, in a single encapsulated package.

    Whenever I’ve written in C, I’ve just ended up passing a bunch of structs and function pointers around, basically ending up doing “C with classes” all over again…



  • This makes sense to me, thanks! I primarily use Python, C++ and some Fortran, so my typical programs / libraries aren’t really “pure” OOP in that sense.

    What I write is mostly various mathematical models, so as a rule of thumb, I’ll write a class to represent some model, which holds the model parameters and methods to operate on them. If I write generic functions (root solver, integration algorithm, etc.) those won’t be classes, because why would they be?

    It sounds to me like the issue here arises more from an “everything is a nail” type of problem than anything else.