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.
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
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.
Texas Man Is Charged With Making Threats Against Mamdani
https://www.nytimes.com/2025/09/18/nyregion/zohran-mamdani-threat-nyc-mayor.html
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
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.
‘Liberal’ has become a term of derision in US politics – the historical reasons are complicated
‘Liberal’ has become a term of derision in US politics – the historical reasons are complicated
Why are so many Americans unwilling to identify as liberals, white or otherwise, even while supporting traditionally ‘liberal’ government programs?The Conversation
How L.A.'s Playbook Can Guide Chicago's Fight Against ICE
How L.A.'s Playbook Can Guide Chicago's Fight Against ICE ~ L.A. TACO
With ICE terrorizing Chicago, independent media outlets The Triibe, Unraveled Press and The Chicago Reader joined forces to report on ICE’s activities in the city and suburbs.lataco.com
like this
Of course, Bernie couldn't have it any other way
It Is Genocide » Senator Bernie Sanders
Hamas, a terrorist organization, began this war with its brutal attack on October 7, 2023, which killed 1,200 innocent people and took 250 hostages. Israel, as any other country, had a right to defend itself from Hamas.Senator Bernie Sanders
I'm all in on linux. [Damien Wilde]
windows is ass. i use only linux now.
- 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
like this
Have you got hardware acceleration working? I'll often take half a TB of 360 footage on a trip, and stitching it on Linux via Bottles isn't viable due to me not having hardware acceleration working. It takes days on my current Linux setup, as compared to less than a day with HW acceleration on Windows.
I have been just considering getting a Mac Mini M4 for 450 bucks next time it's on sale and using that as a DaVinci/Insta360 render server.
Best way to transport a computer out of country?
So I have a job that will be getting me out of the US. For most things I’m not to worried, except for my computer. What would be the best way to securely move it and also not potentially worry about damaging it?
It’ll be a given that I have an encrypted off-site (cloud) back up, but I’m torn about removing the drives to hand carry and then shipping the chassis. My only worry about that would be customs stopping me because of carrying hard drives… more specifically 3x M.2, which I’m not as worried about and 4x 2.5” SSDs
Thoughts?
like this
Definitely take the GPU out and heatsink off the CPU, when it gets banged around both of those things because of their mass can fuck up your motherboard. I moved a lot for about a decade of my lifr and had multiple desktops get fucked up.
I'd also check these out: amazon.com/Shipping-Temperatur…
TIL about EMF paints that purportedly block em radiation
It's nice to know about, but imho, that's fairly high level paronia for the average citizen.
TankieTube First Anniversary
cross-posted from: hexbear.net/post/6162015
Can you believe it? It's been a year since our official launch.
Statistics
Users: 957Videos: 35,305 (38,135 including unlisted and private videos)
Views: 253,009
Comments: 1,468
Hosted Video: 24.2 TB
P.S. Live streaming (and other developments) coming soon!™^[Dependent on my time management and other priorities
]
“You Can’t Bomb The Truth Away” - Mehdi’s POWERFUL speech About Palestinian Journalists
Mehdi CALLS OUT Israel to 12,000 People: 'You Can’t Bomb The Truth Away'
Silence is often rare in an arena filled with thousands of people, including A-list actors such as Benedict Cumberbatch, Riz Ahmed, and Guy Pierce, and famou...YouTube
Britain trained Israeli soldiers fighting in Gaza
Britain trained Israeli soldiers fighting in Gaza
Exclusive: Declassified has obtained a list of Israelis who graduated from the Royal College of Defence Studies in London. We’re publishing it for the first time.JOHN McEVOY (Declassified Media ltd)
Your Therapists’ Notes Could Become Fodder For AI
Your Therapist’s Notes Could Become Fodder For AI
Tech companies are marketing AI-based note-taking software to therapists as a new time-saving tool. But by signing up, providers may be unknowingly offering patients’ sensitive health information as data fodder to the multibillion-dollar AI therapy i…jacobin.com
like this
Any good rec for a medication tracking app for iOS?
Hello all,
I am currently looking for a privacy respecting alternative for the medication tracking app I currently use. Apple's native health app seems to be decent privacy wise, but it lacks the ability to input my current capsule inventory and set a reminder at a certain amount of pills so I can refill them on time. (I should also note that I have an older phone so I'm running iOS 18.6? I'm not sure if the app has changed on iOS 26.)
Thanks for reading and I look forward to your recommendations. ^-^
I just use the native one. My issue is, I have medications that have to be spaced apart and Apple does not support that. Like pill A can be taken whenever, but pill B has to be taken 4 hours out. You can set them for times that are that far apart, but if you take pill A late, you aren't told to take pill B even later to compensate.
What you need? Sounds like you need reminders. Apple's medication tracking isn't a pill counter. So you either have a 1 or 3 month supply, typically. When you start taking them, you could set a reminder (in the Reminders app or in another app you like) for however many days before telling you to refill. Some of the prescription apps actually will remind you on their own when it's getting to be time to refill.
The only one I can think of is android only, sorry.
If someone else has android and needs something similar, you can check out medic log, which is available on F-Droid.
GitHub - rh-id/a-medic-log: A simple and easy to use personal medical notes.
A simple and easy to use personal medical notes. Contribute to rh-id/a-medic-log development by creating an account on GitHub.GitHub
Birdtray on Debian is extremely self-deprecating...
Perhaps only mildly interesting but I just did an apt show for birdtray on Debian 13 and got this in the second paragraph of the description:
It is a nasty hack -- an external process looking at Thunderbird's
insides, it suffers from problems like noticing new mails only after a
delay, having to restart Thunderbird just to hide its window, etc --
you'd want to use an extension like firetray instead -- but, it is
likely that support for Thunderbird XUL extensions will be dropped soon,
possibly by the time you read these words.
Not used to seeing this kind of language in the Debian repos tbh.
Introducing GNOME 49, “Brescia”
GNOME Release Notes
Discover what's new in GNOME, the distraction-free computing platform.GNOME Release Notes
like this
"The new Video Player prioritizes a distraction-free viewing experience"
How can you say this while having the controls overlaid onto the video, youtube-style, and cropping the video corners ? admittedly corners are rarely of the utmost importance in any film, or other video file. But just don't touch my corners.
Anyway, I don't use Gnome
Hopefully Papers will receive support for digital signage which evince never did. This is still lacking in GNOME.
Calling Palestinians “barbaric animals,” US Secretary of State hails Israeli assault on Gaza City
Rubio ranted, “This happened because on October 7th these animals, these barbaric animals, conducted this operation ... against innocent people.”He concluded, “It needs to end. And how does it end? It ends by eliminating the people who did it, by ending them as a threat.”
As vast as the crimes of US imperialism have been in funding, arming and enabling the Gaza genocide, Rubio’s statement marks a new turning point. American imperialism, dropping its veil of promoting “democracy” and “human rights,” has adopted language that would not be out of place in a speech given by Adolf Hitler.
Rubio’s use of this genocidal language was the starting gun for the full-scale Israeli onslaught on Gaza City, as tanks and warplanes moved in, displacing countless thousands at gunpoint over the choked coastal road to Gaza’s south.
Calling Palestinians “barbaric animals,” US Secretary of State hails Israeli assault on Gaza City
On Monday, US Secretary of State Marco Rubio held a joint appearance with Israeli Prime Minister Benjamin Netanyahu to inaugurate what Netanyahu called the “concluding moves” in the US-Israeli onslaught on Gaza: the conquest and destruction of Gaza C…World Socialist Web Site
Spain Threaten 2026 World Cup Boycott as FIFA Sent Warning
Spanish government officials have suggested they could pull their national team out of the 2026 World Cup.
World football's biggest tournament will take place once again next summer in Canada, Mexico and the United States, the first time the competition has been hosted by three different nations.
European champions Spain are the bookmakers' early favourites to win and are on course to book their place at the tournament, having taken two wins from two at the start of qualifying.
But there are now suggestions Luis de la Fuente's side could withdraw from the World Cup in protest if Israel also qualify for the tournament.....
Continue reading here... sportbible.com/football/footba…
Spain Threaten 2026 World Cup Boycott as FIFA Sent Warning
Spain are favourites to win the tournament in the United States, Canada and Mexico next summerRory O'Callaghan (sportbible)
Israel’s responses are “boring” and repetitive
Israel’s responses are “boring” and repetitive
UN Commissioner Chris Sidoti says Israel’s “boring” replies on Gaza war crimes are predictable and avoid the evidence.Al Jazeera
Google Secretly Handed ICE Data About Pro-Palestine Student Activist
Google handed over Gmail account information to ICE before notifying the student or giving him an opportunity to challenge the subpoena.
Does zram impede disk cache?
cross-posted from: swg-empire.de/post/4511580
In my relentless pursuit of trying to coax more performance out of my Lemmy instance I read that PostgreSQL heavily relies on the OSs disk cache for read performance. I've got 16 GB of RAM and two hdds in RAID 1. I've PostgreSQL configured to use 12 GB of RAM and I've zram swap set up with 8 GB.But according to htop PostgreSQL ia using only about 4 GB. My swap gets hardly touched. And read performance is awful. Opening my profile regularly times out. Only when it's worked ones does it load quickly until I don't touch it again for half an hour or so.
Now, my theory is that the zram actually takes available RAM away from the disk cache, thus slowing the whole system down. My googling couldn't bring me the answer because it only showed me how to set up zram in the first place.
Does anyone know if my theory is correct?
Joy Reid: "Bernie was right."
Episode 243 Audio: Joy Reid
We’re back this week with a powerful episode featuring political commentator Joy Reid: she talks us through the issues MSNBC didn’t want her to cover, what political convictions inspired her to take on her media role and informed her decision to spea…Krystal Kyle & Friends
2025 Norwin Band Festival – South Park High School Photos
South Park High School performing at the 2025 Norwin Band Festival at Norwin Knights Stadium in North Huntingdon, Pennsylvania.
All of these photos are available under a Creative Commons license, free for you to use as long as you give me photography credit.South Park High School
2025 Norwin Band Festival
Photo Credit: Kevin Gamin
You can find all of the edited photos from this and other events on my Flickr site.South Park High School
2025 Norwin Band Festival
Photo Credit: Kevin Gamin
You can find all of my photos on my Smugmug site.South Park High School
2025 Norwin Band Festival
Photo Credit: Kevin Gamin
Royals, Maga and tech CEOs: What we learned from state banquet guest list
Royals, Maga and tech CEOs: What we learned from state banquet guest list
The event is as much about diplomacy as it is about fine dining.Mallory Moench (BBC News)
Trump: US trying to reclaim Afghan airbase
The US is moving to reclaim the Bagram airbase from the Taliban after losing it during the chaotic withdrawal from Afghanistan, Donald Trump announced.“We’re trying to get it back, by the way,” Mr Trump told reporters during a joint press conference with Sir Keir Starmer in Aylesbury on Thursday.
The Bagram base was the largest operated by the US in Afghanistan and is strategically important in countering China’s growing influence in the region.
Mr Trump suggested that he was negotiating with the Taliban to retake ownership, adding: “We’re trying to get it back because they need things from us. We want that base back.”
Trump: US trying to reclaim Afghan airbase
Bagram is strategically important in countering ChinaConnor Stringer (The Telegraph)
like this
Save the date!
Home | Draw The Line - For life, for people, for the planet.
Join us this September to draw the line against injustice, pollution, and violence; for a future of peace, clean energy, and fairness.drawtheline.world
like this
'Our Genocide': How do Israelis feel about the war in Gaza? – video
'Our Genocide': How do Israelis feel about the war in Gaza? – video
Reporter Matthew Cassel speaks to Israelis in Tel Aviv, to see what they think of the war, famine and genocide happening next door, and the growing international condemnation against itTemujin Doran (The Guardian)
☆ Yσɠƚԋσʂ ☆
in reply to stln • • •- YouTube
m.youtube.com