HN user

CloudYeller

221 karma
Posts1
Comments56
View on HN

What would happen if that part was removed and 100 years from now, another group tried to claim Israel as their self-determined government?

Every time Jewish people try to be a peaceful minority inside someone else's society, they face discrimination, exile, or pogroms. And it just happens that many government leaders of neighboring countries have repeatedly declared their intention (or heck, literally tried) to mass murder them.

Have you even read the actual legal text [1] for the Nation-State law? It basically just says that Israel will always retain certain elements of Jewish culture such as the flag, anthem, holidays, and official language. No one is preventing non-Jews from partaking in those cultural artifacts, just like how no one is preventing Mexican Americans from celebrating the 4th of July and no one prevents them from speaking Spanish.

Is every country now required to sing Kumbaya and officially honor every major culture within a 1000km radius? Can they not officially declare that certain cultural things are more important to them than others?

[1] https://en.m.wikipedia.org/wiki/Basic_Law:_Israel_as_the_Nat...

TIL. But even if you count nationality-based mistreatment as apartheid, Israel contains many Palestinians: https://en.m.wikipedia.org/wiki/Palestinian_citizens_of_Isra...

To be fair, Israel was doing some bad stuff to them within its borders in the 1960s but "In 1966, martial law was lifted completely, and the government set about dismantling most of the discriminatory laws, while Arab citizens were granted the same rights as Jewish citizens under law".

It seems like the main issue today is treating people differently based on whether they currently live on the other side of a national border. Ex: apparently marriage to an Israeli is no longer a path to Israeli citizenship for Palestinians residing outside Israel- https://www.reuters.com/world/middle-east/israels-knesset-pa...

But many, if not most, countries have policies that similarly punish people outside their borders so I don't see how that is particularly damning for Israel.

I dislike repeating myself but once again, per Wikipedia, apartheid is a "system of institutionalised racial segregation".

That Amnesty article contradicts that definition. It's talking about mistreating people in East Jerusalem, aka The West Bank, which again, is not part of Israel, has its own government, etc. And what is the primary race of those people in the West Bank? Arab. And Arabs comprise how much of the Israeli population? Around 20%. And are those Israeli Arabs being systemically mistreated, as though by apartheid? If they are, then this "apartheid" not only directly opposes Israel's declaration of independence, but it's a strange type of Apartheid that is highly supportive of Arabs becoming doctors at roughly double the expected rate per capita in Israel.

Yes, Israel is treating people differently, but it's not based on skin color or race. It's based on whether they live inside its national borders.

This is a complex and nuanced situation but please try to understand that it's dangerous to unilaterally redefine words the way that Amnesty does in that article. There's a huge difference between widespread systemic racism and some bad apples illegally occupying land outside a nation's borders.

TBF- Mosiuoa Lekota, who literally went to jail with Nelson Mandela, should probably be listened to more than the random journalist you cited.

I read the article though and it basically is saying that right wing extremism in Israel is doing some things reminiscent of Apartheid South Africa. That doesn't sound systemic - more like a warning that people need to stand up to the right wing extremism is Israel. Fair point. But definitely does not lend credence to the claim that there is widespread systemic Apartheid.

I disagree on the apartheid claim and so does former anti-apartheid activist and South African politician Mosiuoa Lekota [1].

Per Wikipedia, Apartheid is a "system of institutionalised racial segregation", and Israel's citizens include many Arab Muslims and even Palestinians, all of whom have equal rights. Israel's declaration of independence explicitly supported "equality...without distinction of race, creed, or sex" [2]. Arabs are 20% of the Israeli population and yet they are 40% of doctors [3].

The West bank and Gaza are basically separate countries with their own governments. The extremist Israeli settlers should leave those areas since they are not part of Israel, but I am just stating disagreement with the "apartheid" label. The concept of systemic Apartheid is unrelated to a few bad apples occupying and illegally settling in areas outside their national borders.

[1] https://thesouthafrican.net/2023/09/28/israel-is-not-an-apar...

[2] https://www.jta.org/archive/full-text-of-israels-proclamatio...

[3] https://www.israel21c.org/the-small-israeli-village-where-ev...

Separate world: definitely. I remember a random real estate agent inviting my friend to a party and saying "bring your good looking friends" while giving me the stink eye from a distance. I have an older neighbor who is tall and handsome, and his wife was saying how, when they were younger, women would walk past him then turn around and make some excuse to talk to him.

I can't believe how much I deluded myself when I was younger about the nature of social hierarchies. There was some research (can't find it now) about childhood aggression showing how, if a kid is better looking, then aggression actually improves their social standing, while if the kid was not good looking, the opposite happens.

I had a manager who was obsessed with "velocity" and I spent 4 hours per week on time estimates. None of it was accurate except tasks like tiny CSS changes. Yeah, if you want to reduce morale, force everyone to waste half a day per week on pointless BS.

I think multiple inheritance will always scare me. What order do the superclass inits run in? What happens if they do conflicting things? What if some superclasses call super().__init__ and others don't?

No thanks, I'll suffer through reading a few additional lines of:

class SomeBusinessyThing:

  def __init__(self, util, other_util):
    self._util = util
    self._other_util = other_util

  @classmethod
  def create(cls):
    return cls(util_module.Util(), other_module.Other())

  def calculate(self):
    source = self_other_util.get_source()
    return self._util.get_stuff(source)
vs

class SomeBusinessyThing(Utils, Other):

  def __init__(self, \*kwargs):
    # What does this do? No one knows
    super().__init__(self, \*kwargs)

  def calculate(self):
    source = self.get_source()
    return self.get_stuff(source)

I bet humans could have done a lot better than -$881M, and it wouldn't have been very costly to employ them. How many homes did Zillow iBuy in total, 10-20k? If it takes 5 minutes to evaluate a house, that would be 100,000 minutes, which is ~50 people working full time for a week. Spending $100k on that could have saved 100s of millions, plus it might have generated better training data for the model.

Gent is an awesome city! Beautiful cathedrals and castles, a nice downtown riverside area, good art museums, lots of terraced pubs/cafes with excellent beer selections, plenty of smart people doing PhD work at UGent. And while people speak Dutch most of the time, 99% of people are fluent in English.

What about contact tracing apps? Tracing won't work unless you know who was nearby each infected person. It's difficult to find that info unless a big portion of people are using a tracker app. Is that sort of thing happening where you are?

The words "contact" and "tracing" didn't even appear once in the article. Are people outside of Asia not even considering test'n'trace as a possibility? Privacy concerns aside, it seems like an effective way to save lives without forcing everyone to stay home indefinitely.

Not to be a total smartass, but if your Python codebase is not that big yet, then the correct answer is none of the above- rewrite in a compiled language if you find the lack of static checks disturbing.

I have been using "type checked" python for a year and let me tell you, it is not even 10% as good as having a real compiler. Python type checkers are not even close to 100% accuracy.

If you're going to use a python type checker, use the one that has the most dev resources behind it. Which probably means, whichever company has the most internal python code, which is probably Google. So pytype.

But bear in mind, these things are only sensible when you've written so much python code that it's too late to rewrite in a better language. If you're in that situation, even though these checkers are far from perfect, they are a massive improvement over plain python.

I agree. When I'm dropping someone off, I often drive past the intended drop point, let them out across the street, etc, because there is an unreasonably high cost to hitting the exact drop point. It sounds like self driving cars are only allowed to do exact drops, which is an irrational constraint IMO. Clearly there's a trade-off between trip time and drop accuracy, and time is usually 10x more important than accuracy.

Yeah, I too wouldn't want to cycle in that level of air pollution. There's a sweet spot to hit for level of comfort & safety while cycling. I just think safety is the bigger issue, because even if the surrounding environment is comfortable and the terrain is flat and the weather is nice, if cars are making it unsafe to cycle, you're not going to cycle. And further, if we solve safety, that might actually help the environmental side of things too- less air pollution.

In most cities, especially in America, there's a vicious cycle: 0) Cycling is dangerous because there are too many vehicles on the road 1) There are so many vehicles on the road because everyone knows it's dangerous to cycle 2) Go to 0

Breaking out of that loop requires building safe infrastructure for cycling, like indestructable cement dividers between bike lanes and vehicle lanes or no-vehicles-allowed-in-<large area of city> days

I only use Lyft for personal reasons but FWIW Lyft almost certainly uses this type of predatory regularly trip pricing. As I mentioned in another comment, I take the same trip at roughly the same time 1-2x per week. After doing that for awhile, I noticed the price went up 10-20%. When I adjust the locations just a few hundred meters from my usual endpoints, the real time price drops 10-20%.

Lyft is definitely doing it too. I take the same trip at roughly the same time 1-2x per week. After doing that for awhile, i noticed the price went up like 10-20%. When I adjust the locations just a few hundred meters from my usual endpoints, the real time price drops 10-20%.

Write dumb code 8 years ago

I'm not sure if it's more expensive either. The first correct algorithm I can think of, expressed in the programming equivalent of pre-K level English, usually is less buggy and 10X easier to maintain than the advanced-language-feature-filled code that certain engineers love writing. And it takes a fraction of the time to write because it doesn't require much refinement. Is it slower than finely tuned C++? Yes. Does that matter? michael-scott-NO-GOD-NO.gif

It boggles my mind when people who are just building an everyday website decide that querying models from the DB means we need a multi-level class hierarchy that requires a 5 page paper to explain. Or that anything remotely related to math means we need to start overloading operators. Congratulations! Your brain recognizes patterns! Wow, someone should make you the President of all Engineers Everywhere.

The code you're writing now will likely not survive another 2 years, especially if every time there's a bug or even a question like "how does feature X work under condition ABC?", everyone shrugs their shoulders and has to read 1000 lines of horribly nested abstractions.

Do these vulnerabilities affect BTC? Is there any unbiased source of security reports on all the various coins?