Netanyahu: ‘These So-Called Genocide Experts Have Probably Never Committed A Genocide In Their Lives’
JERUSALEM—In response to an independent United Nations inquiry concluding that Israel is committing an ongoing genocide against Palestinians in Gaza, Prime Minister Benjamin Netanyahu issued a defiant statement Thursday in which he criticized the commission’s finding, declaring that “these so-called genocide experts have probably never committed a genocide in their lives.”
“Until you’ve killed countless civilians, the word ‘genocide’ shouldn’t even come out of your damn mouth,” said Netanyahu, arguing that the pampered intellectuals at the U.N. were nothing more than a bunch of armchair human rights abusers. “Name one ethnic group you’ve attempted to obliterate. I’ll wait.
I mean, have you even bombed a single children’s hospital? Please, you’ve got no idea what you’re talking about. Maybe you read a book about the 1948 Genocide Convention? Well, I’ve read Sports Illustrated, but that doesn’t mean I’m a quarterback.
Netanyahu: ‘These So-Called Genocide Experts Have Probably Never Committed A Genocide In Their Lives’
JERUSALEM—In response to an independent United Nations inquiry concluding that Israel is committing an ongoing genocide against Palestinians in Gaza, Prime Minister Benjamin Netanyahu issued a defiant statement Thursday in which he criticized the com…The Onion Staff (The Onion)
Formatting test [Because I don't understand how some images show up as links while others reflect the image themselves also extra long title test inbound
signal-2025-08-23-13-11-07-825 hosted at ImgBB
Image signal-2025-08-23-13-11-07-825 hosted in ImgBBImgBB
US Plans to Deploy the Golden Dome Missile Defense System: Problems and Prospects
Former Deputy Chief of Space Operations for the US Space Force, General Michael Gattlein, announced that the deployment plan for the Golden Dome missile defense system has been completed.
The US Department of Defense is not disclosing details of the program or its cost. The Pentagon statement stated that a review is currently underway, so no further information is available.
A look at the general's changing tone makes it clear that the project is facing difficulties. In July, he claimed that he would present an "objective plan" and disclose the program concept after the 60-day deadline.
As for the cost, one can conclude that Trump's $175 billion plan was optimistic. According to the Congressional Budget Office, the development and deployment of the missile defense system will require $542 billion, and that's just the cost of creating the interceptor system. Defense Department spokesperson Kingsley Wilson stated that cost details should not be disclosed because the program is critical to national security.
Although the project has a relatively short development timeline, it already has its critics. They argue that the effectiveness of a missile defense system depends on a variety of factors, from its location on the planet to the types and number of threats the system must counter, as well as its expected reliability.
Computer modeling has shown that the guaranteed destruction of several warheads would require dozens of times more interceptor missiles. A simple calculation shows that the system could easily be overwhelmed by the launch of several missiles, not to mention a massive nuclear missile strike. Military analyst Todd Harrison of the American Enterprise Institute warns that even minor changes to the system's parameters could increase its cost by hundreds of billions of dollars.
- YouTube
Profitez des vidéos et de la musique que vous aimez, mettez en ligne des contenus originaux, et partagez-les avec vos amis, vos proches et le monde entier.m.youtube.com
UK regime partners up with Palantir
New strategic partnership to unlock billions and boost military AI and innovation
The UK will be at the leading edge of defence innovation as the government signs a new partnership with Palantir to unlock billions in investment and deliver on the Government’s Plan for Change.Ministry of Defence (GOV.UK)
geneva_convenience likes this.
The Economic and Strategic Logic Behind China’s Power Sector Engagement in Africa
China’s Financing Power Plants Transforming Africa's Energy
Why is China financing power plants across Africa? This analysis breaks down China’s motivations — from resource security to export markets — and what’s at stake.The China-Global South Project
Speaker Johnson says China is straining U.S. relations with Nvidia chip ban
Speaker Johnson says China is straining U.S. relations with Nvidia chip ban
The Cyberspace Administration of China ordered companies to halt purchases of Nvidia's RTX Pro 6000D, a chip that was made for the country.Samantha Subin (CNBC)
“They steal our intellectual property,” Johnson told CNBC’s “Squawk Box” on Wednesday.
Why the fuck would they do that when their own is so much better
US vetoes UN Security Council Gaza ceasefire demand for sixth time
US vetoes UN Security Council Gaza ceasefire demand for sixth time
‘Forgive us, Palestinian brothers, sisters,’ says Algerian ambassador to UN Amar Bendjama after devastating outcome.Lorraine Mallinder (Al Jazeera)
like this
Developer / Potential Contributor Question: how to add a custom post/comment ranking algorithm to Lemmy?
How would I add a new ranking algorithm to Lemmy as a contributor? I'm a developer by trade, but unfamiliar with Rust and the codebase of Lemmy specifically. It doesn't seem like Lemmy has a concept of 'ranking plugins', so whatever I do would have to involve an MR.
Specifically, I'd like to introduce a ranking system that approximates Proportional Approval Voting, specifically using Thiele's elimination methods, like is used in LiquidFeedback.
I'm pretty sure that with a few tweaks to Thiele's rules, I can compute a complete ranking of all comments in a thread in O(ClogC + E + VlogC), where C is the number of comments, E is the total number of likes, and V is the number of users. This would also support partial approvals, upvotes could decay with age.
I believe this would mitigate the tendency towards echo chambers that Lemmy inherits from Reddit. Lemmy effectively uses Block Approval Voting with decays to rank comments and posts, leading to the same people dominating every conversation.
I was thinking of it as a drop-in replacement for "hot" just so that it doesn't require any changes on the UI to implement. I'm a bit rusty with UI development, lol. The frontends wouldn't have to add a new button, and the Lemmy API wouldn't need to add a new sort type. That said, maybe that sort of thing is easy to do?
As far as it would work, Thiele's elimination rules is computed roughly as follows (I'm assuming that only upvotes are counted; I haven't considered yet if the process works if disapprovals count as a vote of "-1" or how the process could remain scalable if an abstention counts as a vote of "0.5":
begin with the list of posts, list of users, and list of votes
# initial weighting, takes O(E)
for each post:
for each vote on the post:
lookup the user that voted on the post
based on the number of votes the user has given, determine how much the user would be made "unhappy" if the current post was removed
# the basic idea here is that if the user didn't vote for a post, then they won't care if its removed
# if the user did vote for a post, but also voted for 100 others, then they probably won't care if one gets removed as long as 99 remain
# if the user did vote for a post, but only voted for 2 or 1 others, then they'll care more if this one gets removed
# if this is the only post the user voted for, then they'll care a lot if it gets removed
# LiquidFeedback uses a formula of "1/r", where r is the total number of votes the user has given
# as posts get removed, the votes get removed too, so surviving votes get more weight
# for the sake of efficiency, I'll probably use a formula like "if r > 20 then 0 else 1/r" so that users only start to contribute weight to posts once they only have 20 approvals left. Replace 20 with a constant of your choice
add the user's resistance to the post being removed to the post
# initial heap construction, takes O(C)
construct a min-heap of the posts based on the sum of the users' resistances to the post being removed
# iterative removal of posts
while posts remain in the heap: # O(C)
remove the first post in the heap - this has the least resistance to this post being marked 'last' in the current set # O(logC)
yield the removed post
for each vote for the removed post: # in total, O(E) - every vote is iterated once, across the entire lifetime of the heap
lookup the user that voted on the post
compute this user's resistance to this post being removed
remove this vote from the user
based on the number of remaining votes the user has given, compute the user's resistance to the next post being removed
compute how much the user's resistance to their next post being removed increased (let this be "resistance increase")
if "resistance increase" is nonzero (based on my formula, this will happen whenever they have less than 20 votes remaining, but not if they have more than 20 votes remaining):
for each vote for a different post by this user:
increase the post resistance to removal by "resistance increase"
perform an "increase_key" operation on the min-heap for this post # this will be O(logC)
# worst-case, each user will perform 20 + 19 + 18 + ... "increase_key" operations -
# they only begin once there are 20 votes remaining
# when they have 20 votes remaining, they have 20 increase_key's to do
# when they have 19 votes remaining, they have 19 increase_key's to do
# etc.
# because this is a constant, it doesn't contribute to the time complexity analysis.
# so each user performs at worst a constant number of O(logC) operations
# so the overall time complexity of the "increase_key" operations is O(VlogC)For this algorithm, the
yield the removed post statement will return the sorted posts in reverse order. So worst to best. You could also interpret that statement as "Give the post a rank in the final sorting of count(posts) - (i++)".Thiele says that process can be used to elect a committee of size N by stopping your removal when N votes remain. But because it's a "house monotonic" process (electoral speak for "increasing the size of the committee by one and re-running an election is guaranteed not to cost any existing members their seat), I figure it could be repurposed to produce a ranking as well - the top one item is "best one", the top two items are the best two, the top three are the best three, etc.
To make the above process work for approvals that decay over time, we'd just treat a decayed approval as a partial approval. I still have some work to do on how exactly to integrate partial approvals into the "resistance to removing each post" calculations without ruining my time complexity. But basically it's a proportional score voting election instead of proportional approval.
Adding a new sort type is not a big deal, so dont worry about it. And a new admin setting for this would also require UI changes, so the new sort type is easier overall.
The current sort options calculate the rank for each post only from the data on that post (number of votes, creation time). Your suggested algorithm looks much more complicated than that, as it requires two iterations and needs to access data from multiple posts at once. Im not sure if this can really be implemented in a way thats performant enough for production use. Anyway feel free to open a pull request, then hopefully other contributors can help you to get it working.
How to protect my identity while running an online store?
Hello, Sorry if this is the wrong place for this.
I am looking to start an online store for some art projects/crafts/stickers mostly as a creative outlet for some of my current frustrations.
Since some kinds of people take art way too personally, I want to take precautions from doxxing or being harassed.
What are some best practices for an online shop? Are there any recommended storefronts or something like that? I’m sure there’s a lot of things I’m not even considering.
Any help would be much appreciated, Thanks
I'm pretty sure he's far from the only one. Databases with such a vast amount of "forbidden" knowledge will always be misused.
That's why we shouldn't have global surveillance, espionage and "highly classified material" wherever it's possible for agencies to do their jobs without them.
And I'd argue most of the data the contractor had access to was neither relevant for his own work, nor for the work of all of the CIA.
like this
We’ve known since Snowden that these people browse private info for fun, and exchange anything spicy they find with each other. But this guy was straight up selling classified info to anyone who would buy it.
I’m shocked they’re letting this guy off with a plea deal. This was so far beyond misuse of systems. This was full on treason.
I’m shocked they’re letting this guy off with a plea deal. This was so far beyond misuse of systems. This was full on treason.
but he didn't try to run or get caught running in russia; so he's ok. lol
Depends which kind of partisan you’re talking to. One kind believes it’s ok to keep them in boxes in a bathroom. The other kind thinks ok to keep them in the trunk of a car or a private server.
Reasonable people want both kinds held accountable.
Fact : what's really behind the Swiss E-ID
End of September, Switzerland will vote for E-ID.
A big threat for our privacy as it will widely used for tons of new use cases.
Behind the government pitch of an "open source project, completely optional" hides big tech industry... Which will make it mandatory to access their services.
What are your thoughts on that ?
like this
private ids where always the scope of the privacy movement. However, it may as such present other challenges which can include age based discrimination. It as such must be implemented wisely.
Age is already being weaponised against us (child protection, etc), this shouldn't be like that - We can already see what kind of power governments hold. Ageism is what will ultimately destroy us.
Filter Your Files Directly in Zsh, Without Long Pipelines | Bread on Penguins
0:00 zsh opts
1:31 wildcards
2:46 when to glob!
4:08 special patterns
4:50 filtering, sorting
7:10 $f example
8:25 when not to glob!- YouTube
Profitez des vidéos et de la musique que vous aimez, mettez en ligne des contenus originaux, et partagez-les avec vos amis, vos proches et le monde entier.www.youtube.com
i use zsh on my work macs and now i'm thinking of doing so too on my linux machines because of this lady's videos.
i've been using bash for 20+ years and my work macs keep reminding me that the transition is going to have hiccups because bash has become muscle memory for me.
Bloody Day For Israel With Six Soldiers Killed In Gaza And West Bank (Videos, Photos)
Bloody Day For Israel With Six Soldiers Killed In Gaza And West Bank (Videos, Photos)
Six Israeli soldiers were killed on September 18 in two separate attacks that took place in the occupied West Bank...Anonymous1199 (South Front)
Russia challenges ICAO’s findings on MH17 crash in UN Court of Justice — ministry
Russia challenges ICAO’s findings on MH17 crash in UN Court of Justice — ministry
Russian diplomats also noted that although the tragedy occurred over 11 years ago, "there is still a long way to go in the quest for truth"TASS
Texas Man Is Charged With Making Threats Against Mamdani
https://www.nytimes.com/2025/09/18/nyregion/zohran-mamdani-threat-nyc-mayor.html
Beijing Prefers Peaceful Reunification with Taiwan But Warns Conventional Arms Are Sufficient
Beijing Prefers Peaceful Reunification with Taiwan But Warns Conventional Arms Are Sufficient
Retired PLA Lieutenant General He Lei said China has enough conventional weapons to resolve the Taiwan issue if necessary, though peaceful reunification remains Beijing’s preferred pathPavel Morozov (Pravda English)
A Reforma Administrativa avança para destruir o Estado brasileiro
A Reforma Administrativa avança para destruir o Estado brasileiro
Em meio a entrevistas concedidas à grande mídia, o relator do GT da Reforma Administrativa divulga a conta gotas possíveis ataques a direitos e ao próprio Estado.jornalofuturo.com.br
'Kill zone' around crucial Ukrainian city as Russian forces try to squeeze defenders out
'Kill zone' around crucial Ukrainian city as Russian forces try to squeeze defenders out
Pokrovsk has withstood Russian assault for more than a year, but Sky News hears from an expert that the defence could be coming to an end - here's why.Michael Drummond (Sky News)
EU to force Ukrainians to return home
EU to encourage Ukrainians to return home
Member states are facing financial strain providing benefits to millions escaping the conflictRT
Is the Kyiv Independent good enough for you, buddy?
kyivindependent.com/eu-to-phas…
EU to phase out temporary protection program for Ukrainians, prepares transition other residence statuses
In a recommendation adopted by member states, the Council agreed on a framework to ensure a "sustainable return and reintegration into Ukraine, when conditions allow," as well as a coordinated transition to other residence statuses for those eligible…The Kyiv Independent news desk (The Kyiv Independent)
Well aren't you a peach
How about you try a news source instead of... Whatever the hell this site is pretending to be, and then maybe make an attempt to be nuanced and truthful?
Edit: lol, the domain doesn't even resolve anymore
Is the Kyiv Independent good enough for you, buddy?
kyivindependent.com/eu-to-phas…
EU to phase out temporary protection program for Ukrainians, prepares transition other residence statuses
In a recommendation adopted by member states, the Council agreed on a framework to ensure a "sustainable return and reintegration into Ukraine, when conditions allow," as well as a coordinated transition to other residence statuses for those eligible…The Kyiv Independent news desk (The Kyiv Independent)
Works fine for me.
Well now it's gone but the other link is even better lol
Drone from Yemen strikes hotel in Israeli resort city Eilat
Drone from Yemen strikes hotel in Israeli resort city Eilat
Drone from Yemen strikes hotel in Israeli resort city Eilat-english.news.cn
On one hand USA bombed my country, poisoned the waterways with depleted uranium, and helped war criminals rip a chunk of it off and continue ethnically cleansing people to this day.
On the other, for over a decade China has been helping criminals running the country embezell billions in return for putting us in so much debt who knows how many generations will be paying it off.
Both can go fuck themselves.
Workers across France strike over budget cut plans
Workers across France strike over budget cut plans
The widespread walkouts come less than a fortnight after the government collapsed over a proposed budget.Laura Gozzi (BBC News)
Samsung brings ads to US fridges
Samsung brings ads to US fridges
Samsung’s ‘screens everywhere’ initiative is morphing into ads everywhere.Thomas Ricker (The Verge)
How do I turn my Anki deck into multiple choice quiz automatically?
I am trying to study for my Network+, I have an Anki deck I downloaded from the internet that's very helpful, but I have to basically mark down myself which things I'm struggling with. I was wondering if there is a tool available that would automatically turn my deck into a quiz? I do not want to spend a lot of time turning it into a quiz myself, because there is a lot of material. I am okay with using Duck.ai (ChatGPT) for helping me with this, if needed. Just not aware of an easy way to do this.
I'm trying to avoid using non-free sites like Quizlet.
Any help is appreciated!
like this
Why do you have to mark cards manually? Anki's algorithm already reschedules cards based on what you're struggling with. Additionally the card browser has an ease filter that you can sort by.
How is the quiz you want different than what Anki already provides? Is it that instead of providing the answer from memory, you want to be provided a list of choices? I'd argue if you're studying, it is better to do it the "hard" way by just knowing the answer, and then acing the test since its the easier multiple choice format.
When I did Net+ and then Sec+, most of my questions were formatted this way, but I also manually added the multiple choice questions that were in my study book. For that I listed all the choices in the question field, then just the question and answer in the answer field.
Lastly, this isn't really a Linux question though, as Anki is cross-platform. You may get more response on Anki's forums.
As the other comment says, Anki already changes dynamically so that you study the hard stuff more. Just make sure to mark whether you got the answer and how hard it was to get it.
Now, here’s something that could help you, perhaps more than any multiple choice exam could ever help you with: when studying, make sure to not only blurt the answer but also use elaborative recall. In other words, make an effort to think and do so mindfully (rather than mindlessly).
Why? You learn through effort and through mindfully (and not mindlessly) connecting the new knowledge with what you already know.
You could even structure your elaborative recall through Visible Thinking Routines.
How does that look like?
- You start your study session.
- You get an Anki card.
- You remember this card clearly, and so you say it out loud and then check.
- You get it right. No need for elaborative recall. Better to focus your energy elsewhere.
- You get another Anki card.
- This one’s tough. You’re unsure.
- You say out loud why it could be any of the two answers you think could be right.
- You get the answer and sure enough it was one of the two you thought.
- You decide to do elaborative recall so that you learn this well. To guide your elaborative recall, you decide to use the thinking routine “Connect-Extend-Challenge”.
- So you do elaborative recall through a thinking routine. You do it by talking out loud or writing it out.
- This step may sound silly but make sure to celebrate so that you feel pride and satisfaction for doing something that takes effort (especially if you’re struggling with the habit of studying).
- Then you move on to the next Anki card.
A missile, not a drone, hit a residential building in Poland – Rzeczpospolita
A missile, not a drone, hit a residential building in Poland – Rzeczpospolita
The Polish Air Force mistakenly hit a residential building in the village of Wyrzyki-Wola with a missile, according to the Rzeczpospolita newspaper.newsmaker newsmaker (English News front)
‘They will destroy the city, but not the people’: Gaza braces for Israel’s largest assault of the war
‘They will destroy the city, but not the people’: Gaza braces for Israel’s largest assault of the war
As Israeli troops push into the enclave’s heart, civilians face an impossible choice: Flee into uncertainty or stay and risk annihilationRT
aeharding
in reply to Ging • • •chaos
in reply to Ging • • •Guides | Lemmy Markdown
fedecan.caGing
in reply to chaos • • •Is this bold italic as instructed?
Ging
in reply to Ging • • •***the cake is a lie***Answer seems no
Ging
in reply to Ging • • •