@quiet_NaN's banner p

quiet_NaN


				

				

				
0 followers   follows 0 users  
joined 2022 September 05 22:19:43 UTC

				

User ID: 731

quiet_NaN


				
				
				

				
0 followers   follows 0 users   joined 2022 September 05 22:19:43 UTC

					

No bio...


					

User ID: 731

Damn right it is.

In a world where a byte is 6 or 9 bits, octal would be useful. But for obvious reasons world length tend to be powers of two. So we want a basis of 2^(2^n) for some n. The two choices closest to the base widely used by humans are n=2 (base 16) and n=1 (base 4), which can represent a byte in two and four digits, respectively. Relatively speaking, base 16 is closer to base 10 than base 4 is, so it is the obvious choice.

Let us say you are searching for an IPv4 address in a byte-aligned data stream. In hexadecimal, it will always be the same sequence of eight digits, for example 0xc0a810ff. Converting it to dotted quad is simple, network byte order is big endian, 0xff is 255, 0x10 is 16, 0xc0 is 1216 which is 364 which is 192, which tells us that 0xa8 is likely 168.

Now let us try the same in octal. If an oct digit ends with the least significant byte, the string we are looking for is (0o)30052010377. Otherwise, it might also be (0o)60124020776 or (0o)140250041774. Three different representation for the same sequence of bytes! (Yes, you could also use 3 digits to represent each byte separately, at the cost that 0o,000,377 +1 is not 0o,000,477 but 0o,001,000. At this point, the gains over denoting your words bytewise in decimal a la 192.168.16.255 seem slim.)

There are two reasons why programmers in this century might want to be slightly more aware of octal notation than of EBCDIC. Traditional unix file permissions (and umasks) use octal. But using chmod 755 should probably be replaced by the more verbose chmod u=rwx,go=rx (or setfacl) in any case.

The other reason to be aware of it is that it is a pitfall in C, C++. While the prefix K&R chose for hexadecimal numbers, 0x does not collide with common usage elsewhere, they made the terrible decision that octal integer constants should be marked with a leading zero of all things. (I imagine they got into a lot of disputes at gas stations when trying to pay $0060 with a $50 bill.)

Python here does the sane thing and straightforward forbids leading zeros in integer constants, instead telling you to use the 0o prefix if you really want octals.

I completely agree, the general theorem is "build a system that any idiot can use, and only idiots will want to use it."

Relatedly, I believe that command line interfaces are often superior to GUIs in practice because 'users willing to use a CLI' already selects for 'users willing to ignore a certain level of detail provided by the system, unless they have a good reason to care about it'. This allows the devs to provide an adequate level of detail. fsck can confidently mention inodes trusting that users who do not know about them do not will not halt and catch fire upon encountering an unknown term.

For android, the thing which makes the use bearable to me is to lie to the device and claim that I am an android developer. Voila, shell access via adb, no-hassle file transfer from the command line, etc pp. Together with picking a phone whose manufacturer supports OEM unlocks and a custom FW with root access, it almost feels like I actually own my device.

Math isn't a great proxy for Iq anymore.

To be fair, as a math enthusiast, I really dislike how high school "math" worked, which was mostly just training kids into executing algorithms, most of which have no application in real life for almost anyone.

Numeric skills were essential in the era before computers for a lot of people. Today they are not of much practical relevance. I dearly hope that anyone who encounters 332423/234 in their professional life will have the good sense to use a computer instead of trying long division.

I mean, basic numericy is essential. If you only encounter numbers as things which you enter into your calculator, you will not have a good grasp on them. So most of elementary school math is probably fine.

But mostly of what follows was 20% motivated by requirements of science classes, 20% stuff people should probably know, and 59% pointless algorithmic wankery for its own sake.

Take long division of polynomials, which is just long division on steroids. Now, there is a lot of interesting theory for sure, how the polynomials form a ring and how you can algorithmically factor out one known root. But this is not what we focused on. Instead, we solved toy problems "Here is a cubic polynomial. You magically know that x=3 is one root. Find all the roots."

Being able to solve quadratic equations is probably ok, because they often pop up in toy physics problems, but boy did we spend a lot of time on that. Just another pointless monkey-training thing.

Likewise linear systems of equation and Gaussian elimination. Again not completely pointless, but trained to the point of pointlessness.

Or take the unit about other bases than 10. There are only two cases here with any practical relevance -- base 2 to understand how computers work and base 16 which is commonly used to represent binary numbers. Of course base 16 was judged to hard for us poor kids, and while base 2 appeared occasionally, nobody thought to teach us about bitwise operations and shifts (never mind 2-complements).

Speaking of the failure of school to teach much more relevant CS topics, IEEE 754 came out in the year I was born. You would be forgiven to think that a school preparing me for a life where floating point numbers are everywhere would have tried to teach what catastrophic cancellation means and how to avoid getting wrong results when using calculators. But no, the only accommodation made to the existence of computers was that instead of having me find pointless analytic roots of quadratic functions was that instead they trained me to use my TI-82 to find pointless numerical roots of more general functions.

Mathematics is all about proving theorems, so you might think that I liked the section about induction more, but the opposite is the case. You take a beautiful mathematical concept and turn it in another rote exercise. "Take this pointless sum formula and apply the stored algorithm 'induction' to 'prove' it."

The TL;DR version of this whining about high school math is that basically, the test questions do not require you to think. It is sufficient to be able to apply the correct algorithm learned by rote. With any real world problem, it is very unlikely that you will have an algorithm in the cache which you just have to apply, apart from "write down the problem, think really hard, write down the solution".

If we want to torture students with pointless intelligence-linked tasks, my suggestion would be to get rid of 'math' and substitute puzzles such as Sudokus. At least when trying to solve NP-complete puzzles, you sometimes have to stop and think, or try different ways to attack the problem. Which is all not the case for typical high school math problems.

how many of you have ever heard of this particular sad bunch?

Can't say I have. I vaguely recall something about a group calling themselves Oath Keepers (or Oathkeepers?), which may or may not be a right-wing militia organization?

For the general population, I am with @Rov_Scam here: who cares? In the future kids will probably just store their stuff in some Microsoft cloud and ask some LLM to get them whatever they need (unless it was flagged for copyright violation in the meantime).

On the other hand, not having a concept of a file system will severely limit what you could have done with a computer so far. How do you run your hello world Python script without passing the file name to your interpreter? I mean, there are probably cloud based solutions a la Overleaf which will just run your code in a browser, but being at the mercy of some SaaS platform seems like a sad existence for any programmer indeed.

I was a bit skeptical about the 30-fold increase, because this does tell us little about the absolute numbers. It would be very easy to get such an increase by going from 0.01% to 0.3%, which would probably not herald the decline and fall of the Occident.

But the text confirms that 12.5% go to remedial classes, and a whopping 85% of those (e.g. more than 10% of the freshmen) were unable to expand (1+s)^2.

My heart goes out to their mathematics department whose professors are now busy designing special classes to fix this.

Now, I am not sure how the US university system works. Is this some weirdo sadist thing where university students enrolled in medieval English literature have to take math classes and the students enrolled in CS have to take PE and analyse poems? Or are these unlucky 10% of children left behind actually enrolled in a subject where they will need some math (e.g. anything at least as STEMy as psychology)?

If it is the former, then the solution would be to stop torturing students with subjects which are irrelevant for them. If it is the latter, remedial classes will not qualify the students, it would be like giving a class on the alphabet to fix freshmen who enrolled for law school while being illiterate. Much kinder to point them to jobs which do not require math instead (I don't think the US military would want you if you can not expand quadratics? OnlyFans? ICE grunt?).

At the risk of my inner elitist shining through, in Germany you do not find people who can not expand quadratics at universities. I had and have a low opinion on the mathematical ability of my high school classmates, math class was always more about training monkeys into following algorithms to solve problems than it was about exploring the structures of mathematics and proving theorems, but the ones which were unable to be trained to that modest standard simply did not pass the class.

To be fair, I think that bodily autonomy generally makes a good Schelling point. There are certainly limits, few would argue that the psychotic who is stabbing himself to kill the spiders crawling inside his skin should get bodily autonomy, but for the most part respecting bodily autonomy seems like a rule which leads to beneficial outcomes.

Nor is the solution of non-interventionism in the absence of a sound mind preferred by the natural law people and cishumanists very coherent. They might excuse the mother who kills her child by refusing the measles vaccine because she does not want her child exposed to chemicals, but get really upset with a mother who does a better job of protecting her kid from chemicals, even though death from oxygen deprivation is the natural fate of a human almost anywhere in the observable universe.

At the end of the day what is an act and what is an omission depends on your subjective moral frame of inertia (obligatory xkcd). Failure to prevent the onset of puberty is not meaningfully different from purposefully inducing puberty, just like killing a patient by turning off their ventilator is not meaningfully different from killing them through the injection of pentobabitone.

Naturally, that does not mean that any intervention is good, just that there are no moral shortcuts which save you from looking at the outcomes. (On the object level, I do not have a race in the "gender interventions in minors" topic, my suspicion is that likely no short and simple rule will maximize utility.)

There are a couple of perplexing things here. First, and most pedantically, the mention of "external barriers" implies the possible or likely existence of "internal barriers." What would that be?

For example:

  • "I was in the middle of transitioning, but then I found god and knew that she would not want me to take hormones."
  • "I am trans, but I am not transitioning because I do not want to put chemicals into my body."

Second, if "external barriers" like discrimination, limited "access" to gender-affirming care, and (the very non-specific) lack of support cause a person to totally halt their transition, am I allowed to question their commitment in the first place?

Sure. I mean, you are also allowed to question the sexual identity of a celibate closet gay in Kabul, or the faith of a Christian in Tehran who does not try to preach the gospel to the locals.

For most people, a faith, gender or sexual identity is not their whole utility function. There is probably a trans person somewhere who would emigrate to Somalia if that was the only country where they could transition, or be willing to murder people for their wallets if that was the only way they could affort HRT. But almost all people have more complex utility functions, where trade-offs exist.

Physics determines part of how easy or difficult maxxing certain terms in one's utility function is. If visiting the Moon was as easy as taking a tram, you can bet I would visit the Moon, and if changing your sex was as easy as picking another option in a drop-down menu before going to sleep, I would certainly experiment with being a woman. But giving the constraints of physics, both of these things have significant tradeoffs, so I am very unlikely to gaze at Earth or grow tits.

But on top of that, societies can incentivize or disincentivize the maxxing of certain terms of one's utility function ("self-actualization"). I like to eat licorice sometimes, but if my society places it on Schedule I, I will not spend half my paycheck on getting some from the darknet. Likewise, if the penalty for the possession of redhead porn was death, that would definitely affect my porn habits. Or if the government decided that unlimited vanilla ice cream was a Basic Human Right and heavily subsidized its sale, that would likely lead to me changing my ice cream habits.

If we ever get to the point as a society where we really deeply subsidize mental health services, we're going to be broke overnight. Think about that - that's creating a free service for when you feel bad. Absolutely uncapped demand.

If your model of mental health services is that they will give people whatever will make them feel better, then I totally agree that no society could afford this. "Doc, I am a bit down, but I think a {new dress|adventure holiday|blowjob|fancy dinner|MMORPG item} would cheer me up" - "Sure, let me just write you a voucher for that".

In the real world, the mental health services do not work like that. Feel free to visit a psychiatric hospital sometimes and check. Engaging with mental health services because you feel bad is like using a life buoy because you are wet. Either system is designed to keep you alive, not ensure your comfort. Unless you are wet to the point which we call "drowning", or feeling bad to the point we call "clinically depressed", your best option very likely does not involve these emergency nets.

Personally, I think that spicing together two sentences with "and" in them is the kind of thing which should never be done. That is a very different ballpark than the Reagan free trade ad, which simply elected to reorder a few sentences.

Also, this seems as pointless as making up a story about Trump eating toddlers. The unedited quotations from Trump speak for themselves (and picking soundbites out of a longer speech is 100% accepted journalism -- let Trump whine about how the quotes are not representative of the overall speech and taken out of context, nobody will give a fuck), but someone apparently thought they could make Trump look 20% more evil with their clever manipulation, with the predictable result that Trump can now claim to be the hapless victim of the evil manipulative mainstream media.

While there exists at least one non-Republican senator who is not willing to blindly vote for any Republican proposal, a shutdown is obviously never 100% the Republicans fault in a very technical sense.

Still, the general rule in parliaments is that if you need someone's votes, you have to make them some concessions in exchange.

One might as well claim that on a technical level, both a rapist and (sober, adult) rape victim could stop a rape from happening by either stopping the act or just giving consent (at which point it would no longer be rape).

However, I am about as inclined to buy "it is the evil Democrats fault because they wanted some material concessions for their vote" as I am to buy "she is to blame because she did not give me consent", because the social expectation is neither that you vote for your opponent's budget out of the goodness of your heart nor that you must consent to any sex act others might afflict on you.

I do not see the contradiction. As an analogy, consider the Ukraine-Russian war. I think it would be fair for Ukrainians to claim that this is Putin's war. However, it seems also likely that if the top eight military officials of Ukraine conspired to unconditionally surrender to Putin, the war would be over in very short order.

Would that make you go "Ha! This shows that it was Zelenskyy's war all along, he could have stopped it any time by surrendering!"?

Now, if the Democrat party line had been that they would never vote for a budget while Trump was president, I think it would be fair to call it a Democrat shutdown. But from what I can tell, they just wanted a few token concessions around the ACA, hardly something completely outlandish. In such cases, it falls to the party which controls the government to negotiate, and their failure to do so reflected very badly on MAGA. In fact, Trump pointed out the very same thing during an Obama shutdown.

I am realist enough not to expect the Dems to watch a million Americans starve to death before they decide to "put the country before partisan politics" or "be the bigger person". But from what I have heard, the number of citizens which died from lack of SNAP benefits is basically zero.

At this point, what MAGA should do is announce that any time a bill of theirs will not pass, Noem will kill another puppy. That should be enough to get the spineless Democrats to vote for it lest they be complicit in puppy killing.

I do not have strong intuitions either way. Presumably, there is a difference between a JHP bullet hitting a steel barrier and a FMJ getting more gently stopped in ballistic gelatin.

In theory, this could be tackled through careful statistical analysis, same as DNA, so we would at least know if the results are strong or not. In practice, I suspect that methods are selected for convincing juries rather than the scientific-minded community. Hence "lie detectors" etc. I would probably read an article "bullet forensics: much more than you wanted to know", but am too lazy to research it myself.

I think that you are correct in you assessment of the probabilities. However, another consideration is that the gait analysis evidence was reported on simply because it was found to be somewhat significant, so it is subject to p-hacking considerations.

Fundamentally, I am not sure how a Bayesian should update on true but potentially adversarially selected evidence. As an intuition pump, consider two persons A and B which are in a relationship which is supposed to be exclusive. A suspects that B is cheating. B proposes to send A screenshots of their text messages. Normally, a random sample of texts which contain no evidence for misbehavior would be at least weak evidence of the absence of such misbehavior. But A will not get a random sample, but potentially a curated subset selected for being misleading. Thus A should not update at all on receiving harmless screenshots (beyond the signaling value of going through the effort of sending them, at least). If A is willing to update even a tiny bit on such a screenshot, B can take them for a ride.

On the other hand, "the evidence presented by my enemies was adversarially selected" is a fully general counterargument. Most of the evidence which we use to build a world-view does not come with a strict chain of custody to guarantee that it was randomly sampled and reported without publication bias etc.

I have no good way to resolve these two viewpoints. In criminal justice, the idea to allow both sides to make their best case certainly seems helpful.

While I can not speak for the OP, I think that the information "people have been panicking over franchise and education for women leading to lower TFR for a very long time" is in itself valuable.

Like, when older people complain about the youth of today, it is fair to quote ancient Greeks complaining about the same thing. This does not disprove either, but it is Bayesian evidence that complaining about the youth of today is just normal baseline behavior.

The last 120 years since the popular science text have been the most successful ever for Western civilization, absolutely speaking. They were also quite good for mankind as a whole, albeit with some big dark spots at the beginning. Ironically, half of these dark spots were caused by people overly worried about the Future Of Their Race.

The places on Earth which still oppress women to breed them at maximum efficiency (e.g. Afghanistan) are not even in remotely the same league as the low fertility countries.

Personally, I believe that civilizational infertility is self-regulating and that life will find a way, if we do not invent artificial wombs for robot waifus first or kill ourselves with ASI.

This feels like Culture War 101. Arguments as soldiers. If an official source if bolstering your side, take what they say as gospel. If they oppose your side, find a reason why they can not be trusted.

The Red tribe does this. The Blue tribe does this.

Expecting them to have good epistemic standards, to even be interested in the truth for its own sake, is like expecting a bank robber of caring about the Gini coefficient.

Did you know transwomen have the same rate of sex crimes as any other male?

That is somewhat surprising. I guess that being trans is probably correlated to sexual deviancy (and generally to a strong emotional tie to gender and sex?). On the other hand, I would expect that people on T blockers would commit fewer sex crimes, and a significant fraction of trans women are on T blockers. If these two effects cancel each other out, that is curious.

Still, my initial point was that if we care equally about every rape (as we should), then the risk of a trans woman raping someone in women's prison can not be considered in isolation. Presumably, a lot of prison rape is prevented because most of the would-be rapists are straight men who are really not into fucking other men. If you give them the opportunity to rape dick-girls instead (or even fully transitioned women), I guess many of them would take that. So putting a transwoman into any prison will lead to more expected rape than for a cis person, but we should still strive to minimize it by placing her wherever the risk increase is smaller.

If you want a possible implementation, you can take blood testosterone as a proxy. Make a study, find the crossover point for the relative risks.

Or we could just roll out the tech to stamp down prison rape and leave this as a largely irrelevant CW sideshow.

Males in female prisons significantly increase the risk of sexual assault in prisons.

And I would guess that trans-women in men's prison also significantly increase the risk of sexual assault in prison. My point is that there are certainly some people where the one effect is larger, and certainly one where the other effect is larger.

Or are you implying that a trans woman getting raped in men's prison is less of a big deal or that they were complicit by being trans in the first place?

Of course that organized religion will meddle in matters of state. There is no other possibility, as organized religion impacts moral stance and worldview of adherents who in turn then apply these ideas in their lives - including things like how to vote, which laws to pass etc.

Granted. It would be weird if a moral framework never influenced how people vote.

However, there are different stages.

  1. The religion teaches tenets (love thy neighbor, blood for the blood god, etc) and leaves it to the individual member of how to interpret them in the voting booth.

  2. The leaders of the religion routinely endorse political candidates, and their followers mostly vote for them.

  3. A religion or groups of religions form a large voting block.

  4. Religious organizations are a load-bearing part of the countries power structure. (Think medieval Europe, Iran, Taliban).

In short, I think that the Christian wall between liberalism and state protects liberalism as much as it protects the state.

It took me a while to parse that sentence, because I took "liberalism" as a founding principle of the US, not as a group of political ideologies such as democratic socialism or social justice progressivism.

My reply is that SJP is just a political ideology. If its proponents do not meddle with politics, there is no point to it at all. And of course that means that it attracts plenty of sociopaths who play status games. But they have literally nothing worth protecting by keeping out of politics.

By contrast, the founders of the US had experienced life under a state religion, and they knew that this was not what they wanted. I would guess that their thought process went something like this:

Even if we enshrine my favorite flavor of Christianity as a state religion, as a state religion, its dogmas would be subject to pressure from realpolitik. In a few generations, it will become watered down and corrupted to be morally indistinguishable from the Church of England, and because it will be a load-bearing part of society, religious dissent will not be tolerated. It is much better to suffer an Union with heretical sects than to end up in a situation where heresy is state-mandated.

The tenets of a religion being twisted under the pressure from realpolitik the way the SCOTUS has twisted the text of the constitution (e.g. commerce clause, Roe) is not something I would wish on my worst enemy.

I think that one advantage that Christianity has is that in the beginning, it was not married to temporal authority. Render unto Caesar the things that are Caesar's, and unto God the things that are God's. Early Christianity thrived in an environment much more hostile to it than anything the SJ or MAGA people are likely to inflict on it.

It rising to a position of temporal authority only came later, starting with Constantine. As an atheist watching from the sidewalk, I have to say that I liked the version of Christianity before the sociopaths took over better.

It might be illustrative to compare Christianity to the other religions of the book. Judaism started out as a tribe/state religion, but thanks to the zealots picking fights they could not win, they got a head start of 2ka in learning to live as a religious minority. (Again, from the outside view, diaspora Judaism seems a lot more palatable than whatever orthodox factions are bent on Making Israel Great Again.) Islam started out with strong claims to temporal authority, Muhammad was a warlord as well as a prophet, after all. While there are certainly Muslims who are good citizens to secular nation states, my feeling is that it is that they have an even harder time justifying that stance theologically than Catholics do.

In short, I think that the wall between religion and state protects religion as much as it protects the state. If organized religion meddles in matters of the state, the consequence will be that it will attract the kind of people who look for temporal power, and before long your religion will be run by sociopaths who sell indulgence to their believers, burn heretics and organize crusades.

It helps that (from my understanding), in Christianity you can be saved even if you live in a sinful state in this fallen world. If you believe that eating seafood or gay/unmarried sex or abortions condemn you to hell, liberalism is very compatible with not committing any of these sins. (Things do get a bit hairy around religious objection to military service though, or if you object to paying taxes which finance what you consider to be sinful behavior.)

Austria might even be closer to Germany than the Netherlands.

I am the first to admit that borders are accidents of history. There is no good principled reason why Austria should be its own thing but Bavaria should be part of Germany. The status quo is sacred merely as a Schelling point. If people want to move borders through democratic means, such as the Scottish movement to leave the UK, that is fine. But after two big industrialized wars, the world has largely realized that moving borders through military action is not worth the effort any more. Eventually, such actions became seen as defection from the club of civilized countries.

For Europe, "stick to the borders however stupid and unfair they are" has been a marked improvement over the ancient, previous method of resolving land disputes, "bash your neighbors heads in every 50 years to see who gets to own the disputed territories".

TIL that Galicians have trouble with gaining independence from their cultural overlords from Iberia to Eastern Europe.

In Germany, we had a natural experiment of being either a client state of the US or Russia. The outcome makes it very easy to understand why a lot of former Warsaw pact countries desperately wanted to join NATO as the cold war ended.

For all your whining about Jews enacting the Great Replacement of the White race, I would wager that orders of magnitude more have fled from Kiev to the safety of London to escape the war than have fled from London to Kiev to escape the Great Replacement.

In general, one would think that Belarus would be some White supremacist utopia. No Black or Brown people ruining everything. Nobody replacing anyone. No social justice types pushing gay, immigrant or women agendas (at least outside the labor camps). High religious conformity, in particular 0.1% Judaism and 0.2% Islam. Strong political decisions instead of endless bickering. They would probably let in White guys in exchange for a few years of military service.

But for some reason, while people in most wartorn countries are generally willing to emigrate or seek refuge in a safer country, the victims of the atrocities in London you mentioned are generally reluctant to do so, compared to Ukrainians or Syrians.

The only hope the Ukrainian people have of surviving as a people as opposed to a label on a map is with Russia.

I think the party line of Moscow is that culturally there is no such thing as Ukraine, and that they are just a cultural splinter group of Russia which has to be brought back home into the Reich. At best, Ukrainians under Putin can hope to survive as 2nd class Russians with a weird backwater accent.

This is Putin being better at playing chicken than the West.

Putin will not start WW3 over some Taurus hitting his infrastructure. It is not exactly on par with Kennedy's fear of Cuban nukes hitting US cities. Of course, it does not help that the commander in chief of the largest nuclear NATO power is seen as an unreliable ally, especially for a non-nuclear country like Germany.

I think that your view is too cynical by half. Your view, which I would paraphrase as

Strong countries sometimes invade weaker countries, so the international rule-based order is obviously fiction and we are still living in interstate anarchy.

is not so different from

US residents murder each other all the time, some even get away with it, so any claim that we have a rule of law can be disregarded, and we are still in a Hobbesian nature state of perpetual war of all against all.

Both the IRBO and the state of law in the US are not perfect, but they are clearly distinct from their respective baselines.

While some of the conflicts you have mentioned were clearly waged by powerful states for ulterior reasons, and I have been opposed to GWBs adventures in Afghanistan and Iraq from the start, I also notice that most of the wars waged by the left were not for outright conquest and annexation. A few of the wars might even have been net positive, like interfering in the genocidal mess that was the Yugoslavia civil war. In retrospect, I can not say I am especially proud of NATO for sitting out the Rwanda situation, for example.

Russia's war in Ukraine is one of straightforward annexation. This is markedly different to what GWB did. Thus, it is in the interest of the proponents of the IRBO to make Russia pay as high a price as possible, to deter both them and other states from trying the same in the future.

If this also means that Putin fails to conquer Ukraine, that is a bonus, but for the international supporters of Ukraine that is not the essential outcome. The goal is to make the war net negative for Russia by making them pay a high price in blood and economy.

As long as the Ukrainians are fine with dying for that, it seems like a no-brainer for the West to give them the materiel to continue their war.

That is why I wrote my 2nd paragraph. Again, if the woke mob decided that every American who is a member of an anti-abortion organization deserves to be bombed, and that if others die in the bombing attacks that is acceptable, and turned most of the US into rubble in their quest to eliminate all the abortion opponents, then you could claim that the woke mob is hypocritical when opposing the IDF. But if it is just the odd assassination, that is very different in scale.