I worked on the control systems for Predators and Reapers back in the mid and late 00s, and the inefficiencies around process were enormous. Safety is extremely important, so you expect some slowness as a result, but it got pretty extreme. I remember one time having to do 6 weeks of testing around a one-line code change because a "helpful" dev fixed a small bug that had no practical impact. Yet because it changed the release build hash, we had to go through a full acceptance test. As you can imagine that incentivized only fixing important bugs, and even those we had to consider whether it was worth it or not. As a result there were a hole pile of bugs that we (and customers) ended up just living with.
On a separate note, I'm curious as to whether AI is making an inroads in that space. I would imagine very minimal, if at all, but very curious.
In Ukraine, the first place that was bombed was the red tape factory.
The drone industry was allowed to basically "do whatever as long as it works", consequences be damned. So they use civilian motors, batteries and SoCs, sketchy firmware with zero code inspection, and more. Does it work perfectly? No. It works well enough.
I wonder if anyone is going to learn a lesson about overregulation.
I'm not sure if "AI for red tape mitigation" is a thing, but "AI for killer drones" sure is. I suspect that "killer drones are insufficiently smart" is easier to fix with AI than "too much red tape". Because the amount of red tape, if unopposed, will expand to consume any capacity of dealing with it, AI or not.
> I wonder if anyone is going to learn a lesson about overregulation.
Seems unlikely. Regulation and Health & Safety are both societal luxuries, which only happen once societies are stable and prosperous enough to start valuing human life beyond its ability to perform labour.
The moment the bombs start dropping, the time for luxuries also stops, and the value of human life drops to value a person can produce defending their society. There isn’t the money or resources for anything more than that.
The US (most developed democracies) places an extremely high value on the lives of soldiers, because dead soldiers in foreign wars does terrible things to politicians in power. Paying 1000X more for the same tech as Ukraine to minimise the number of service members killed using it, is a pretty small price to pay.
I don’t know the details of that situation, but I have been on the other side of that debate.
People say “it’s a one line change” (once they argued it was a 1 bit change!). But lacking a fully controlled and hermetic build system with its own exhaustive test suite you can’t be sure about the relationship between the source and the binary. And that continues to every step to get the binary into production (updating existing devices, etc).
Sure, your ultra paranoid checking of everything might catch an extremely rare bug caused by something like interactions between a benign code change and a build system. But is it worth slowing down the development process by that much?
Is it worth missing out on an entire generation of technology, like what happened with US and the shift from 00s drone warfare and 20s drone warfare?
I'm not an expert but I think this is an old lesson in warfare, that guerillas can triumph over larger adversaries by being more exploratory/iterative and less rules-bound. Tolstoy tells this story in the second half of War and Peace. Likewise with Iraqi militants wreaking havoc with IEDs. People repelling an invader have every incentive to move fast.
I've just read that section of War and Peace and was blown away by the descriptions of guerrilla tactics as well as Tolstoy's way of capturing the state of mind of the Russian POWs and their ever-shifting relationships with their captors.
As an aside, the word Guerrilla (little war) was coined during Napoleon's occupation of Spain to describe the resistance effort by locals and peasants against the French army.
cf the other thread: https://news.ycombinator.com/item?id=48845442 ; Ukraine has a hugely inventive and effective drone industry because it has to work. If it doesn't succeed, there is no Ukraine, and everyone involved in making the drones is dead, fled, in a POW camp, or sucked into the internal Russian displacement system away from their family.
By comparison, if the US products fail, there's no real negative effect on the mainland United States.
They can pop out defects and if things go wrong and there's friendly fire or civilian loss, it's chalked up to scrappy efforts in war. The USA does not get the same amount of leeway, saving our people is a top priority and the media harps on any mistake.
> if the US products fail, there's no real negative effect on the mainland United States
It's even worse than that. Schedules slipping and cost overruns are good things for the manufacturer, because they can charge more on top of their initial contract. Cost-plus ftw.
Cost plus isn’t nearly as common as it used to be.
But you still run into similar issues regardless of the contract structure. Try and build a rail network without anyone in government wanting something different for 20 years.
> As you can imagine that incentivized only fixing important bugs, and even those we had to consider whether it was worth it or not.
Or you're batching your releases into larger builds because you know it'll take 6 weeks to test regardless. This increases the duration of each development iteration because you have 100 things you want to do and you could do that in, say, 4x13 week efforts, but with the added 6 weeks between iterations (and possibly more after it leaves your shop) that takes a one year effort and turns it into about 1.5. So the program office decides you should do one big release each year, which also ups the risk because a lot of testing that would catch bugs isn't done until the end in that big 6-week test effort. Oops, now your 1 year + 6 week effort just got turned into 1 year + 6 week + (unknown rework time) + 6 weeks. Probably 2 years.
My last job was like this, a full round of QAs manually testing, along with writing up a grandiose release document, stakeholder approvals, and whatnot, for something that should just take two days of development work, and an insistence on putting configuration values into the database, supposedly because it's "safer" than deploying a new configuration file.
This is one of the reasons weapons and technology development overall explodes during wartime. Desperation is the cure for risk aversion.
It's also a reason to be skeptical of a military spending a bunch of money developing technology during peacetime. In reality the expensive stuff they went into the war with is always going to be less effective than the cheap stuff they came out with.
Maybe if you're in a war that actually threatens your country. In the US, the Republican Party wages wars (such as the Iran War) pretty exclusively to facilitate borrowing public money and dumping it into the pockets of the rich. What looks like waste to the taxpayer is a feature to Republicans and their paymasters (including Israel, in the case of the Iran War).
Life critical software that gets visibility by congress tends to be a very bureaucratic process. Your boss doesn't want your commit being the one that causes a worldwide diplomatic issue.
I assume that smaller/cheaper drones avoid a lot of this because the stakes aren't near as high and quite a bit of the development occurs in private industry first.
Yeah, the anti-regulation people when NASA experiments: "look at all these failures! Cut NASA funding and give public funds to the guy who purchases elections!"
The same people when SpaceX blows up a bunch of rockets: "wow, look at the innovation, they move so fast! Cut NASA funding and give public funds to the guy who purchases elections!"
NASA's failures as of late are less "dramatic explosions" and more "delays", "cost overruns" and "lack of ambition so severe it borders on criminal".
The last time NASA caught any serious flak was what, the Starliner shitshow? And that was just splash damage from Boeing getting dunked on by everyone at once.
But aren't the politicians also corrupt? (or at least most of them) One therefore assumes that any action by congress must be corrupt. This appears borne out by the evidence over the past few decades.
We could always be less risk averse. We still seem to kill civilians at high rates and our own soldiers signed up to die. Gold-plated weapons aren't much good against peer powers anyway; it's production volume that wins those wars.
The obvious answer is that the more bugs you batch up, the higher the chances the next build fails - this is why CI became a thing, small iterative changes are safer and lead to greater throughput
CI doesn't mean doing all the tests all the time though. The expensive tests still wait until there's a major reason to run them. I had the same question as the parent and I still don't quite see why this can't work.
I didn't work on this project, but I've been involved with similar ones.
There is a process for getting a change into version control. Each change needs to have a (virtual) paper trail: motivation, risk analysis, sign-offs &c.
If you can't get something into VC quickly, you can't really do CI.
The obvious solution would be to have an integration branch that doesn't need the process to get in, do CI testing on that branch and then make the process for merging to the real branch.
I've never seen this done personally, but I have been told some places do it, and then you end up with "Change X, which got approved had a dependency on Change Y that didn't get approved and we didn't realize it until now because Change Y was put in the integration branch before Change X"
In contrast I read that Ukraine is approving 4+ new weapons systems PER DAY !!
Even when it comes to more expensive things like cruise missiles it seems the planning has to be that some high percentage of them may be shot down (and much higher for slower moving drones), so you really want them cheap and in high volume, with reliability somewhat of a secondary concern.
This only makes sense if you have to test each fix in complete isolation which seems silly even for government employees and contractor body shops. You can't batch 80 real bug fixes and 20 "silly bug with no practical impact" fixes together?
Yeah FPV drones have massively increased the cost of invading a country. It's basically a return to WWI style trench warfare, except no man's land is the size of the range of the drones (20+ KM).
A month ago Sternenko had a crowdfunding campaign for the secret drones. Recently he showed the fruits of that campaign: new drones have better connection and now you can watch kills in 4k!
Also recent advances in battery tech brought increased energy density: the same drones which had range 20km now have 40km.
Surely the dev wasn't able to merge that one-line code fix causing 6 weeks of testing without any other eyes on it and without someone else's PR-like approval...right?
The bureaucratic development process sounds like Autosar in automotive. I am not surprised that newcomers from USA and Chinese auto companies are able to completely dominate in software because Autosar based development has been like giving a birth to a hedgehog. Slow and painful.
They should be deploying half baked prototypes, testing them in the field, and iterating incrementally improved designs as fast as possible, not trying to design the perfect product to sell to the military. That's how you lose a war. The DOD procurement process needs to be deleted and replaced with hundreds of startups with a hardline fail fast philosophy.
> one time having to do 6 weeks of testing around a one-line code change because a "helpful" dev fixed a small bug that had no practical impact
Roll back the change? Also, fix the approval process - no way that should have been approved.
Generally speaking that is risk management, an unavoidable engineering tradeoff. In lower stakes situations, for example a critical application or server for a small office, we let low-impact bugs accumulate: Imposing risks, and therefore eventual costs, to avoid minor workarounds and low-impact bugs is poor engineering and risk management.
Engineering and all risk management includes tradeoffs. It's easy to criticize the downside of the tradeoff - the same people criticize the reverse decision when the server (or drone) crashes - when someone is not responsible for both sides of it, when they are not accountable for their words when the outcome occurs.
That's speaking generally. It's also poor risk management to be overly safe. I don't know about the parents' situation. But drone crashes (risking humans), mission failure, $50 million losses, and associated downtime (including delays) and labor costs, seem like high costs that are worth some pain to avoid.
I don't really understand how any of this contributes to "defense". Sounds like "offense" to me. Just patrolling the skies over non-white countries and launching missiles at weddings. The reason the Pentagon invests so heavily in this kind of technology is our wars are so indefensible, they can't convince Americans to sacrifice blood in any quantity for other people's natural resources.
> Introduced in the 1780s by members of the Göttingen school of history, the term denoted one of three purported major races of humans: Caucasoid, Mongoloid, and Negroid
There are ~350,000,000 of us. When I read we spent $1B, I think about how I'm responsible for $3 of that. It doesn't matter considering the ~$117,550 of the national debt I'm responsible for. It palls compared to the $3,000 a year in interest towards the national debt I'm responsible for.
What boggles my mind is that I make coffee at home because I'm frugal. I guess it is good the government and DoD are seeking cheaper alternatives also.
My favorite interview question: If I gave you a swarm of autonomous drones, what would you do with them?
There is a group in South Florida who stand watch over turtle nests on the beach to ensure the hatchlings make it to the ocean instead of instinctively moving towards the street lamps or the bright hotels. I would use drones to hover over the nests to detect if the turtles hatch so people don't have to stand there.
> My favorite interview question: If I gave you a swarm of autonomous drones, what would you do with them?
What signal are you looking for with that question? It feels much more like a thought experiment with friends while having a few pints than something reasonable for a job interview.
> When I read we spent $1B, I think about how I'm responsible for $3 of that.
I like to think about how providing 4-week paid parental leave would cost $2 billion annually and actually help US families. Meanwhile we have spent over $100 billion on this war.
How do you even estimate that, human productivity is non linear to worktime and often, employees, when given good benefits are likely to be more productive.
also there's the fact of this having a ROI since people generate economic value in the longer run, and hence, more taxes
> There are ~350,000,000 of us. When I read we spent $1B, I think about how I'm responsible for $3 of that. It doesn't matter considering the ~$117,550 of the national debt I'm responsible for. It palls compared to the $3,000 a year in interest towards the national debt I'm responsible for.
Confiscating 100% of all billionaire wealth (~$8.4T)
covers
- ~1.1 years of federal spending (~$7.4T)
- ~4.4 years of deficits (~$1.9T)
- ~23% of debt (~$36T):
and pretty much kills US ability to rely on private sector
(and I dont think we have a way to rely on public sector)
The sooner we all start focusing on things that actually matter -- like improving democracy, quality of education (btw spending more may not solve it) etc -- the faster we will improve situation.
Cities like NYC pretty much can afford UBI (look at per capita spending on homelessness, public schools etc).
Taxing more may not be the answer.
*it should be studied what motivates people to repeat it
IMO its a useful populist slogan because it solves a different problem: The power that comes with being a billionaire. E.g. its all well and good to focus on fixing democracy instead, but if (some specific) billionaires are focused on deploying their wealth to destroy democracy, then what?
I've generally come around to believe that we need to limit wealth from a purely power / control point of view.
Operations is about 1/4 of the budget ($1.75T), and half of that is DoD. 60% is payments for entitlement programs like Social Security, Medicare, and Medicaid. The remaining 15% is debt service.
> The federal government costs about $19 billion per day to operate based on an annual budget of roughly $7 trillion.
$7 trillion is not operating expenses. Much goes into assets that are retained decades or more. The Interstate Highway System isn't an operating expense.
> When I read we spent $1B, I think about how I'm responsible for $3 of that. It doesn't matter considering the ~$117,550 of the national debt I'm responsible for. It palls compared to the $3,000 a year in interest towards the national debt I'm responsible for.
(Your share of overall defense spending is ~1,000x higher, of course.)
I wish political leaders would express it that way. And you need to include the time factor: $10/year for 10 years differs from $20 for a one-time event. And somehow figure in capital accumulation (as opposed to e.g., consumables) and depreciation. But there are clear, effective ways to communicate it: 'I propose each American spend an average of $80/year for 50 years on this fighter jet program'. 'This moon mission will cost everyone $5/year for 2 years.'
To nitpick a little, I think your math is off: There are 350 million Americans, but we need to exclude most children, elderly, etc.
Now you know why there is war. We have war because the U.S. is failing. Just look at the reversal of the 10 and 30 y bonds over the last 20 years. All the free money that was given to the oligarchs killed our economy.
I mean 20 years ago, just like the original comment said. What is confusing? The last 20 years of interest rates are unremarkable, and certainly don't indicate the US is failing.
And they’re still on cnbc daily saying rates need to go down to save the us. There’s a guy on right now saying rates need to be lower to save the ai bubble.
Sexual assault allegations and literal Nazi symbolism tattooed on his body. Those things are acceptable now? These were the exact things that Democrats went after Hegseth for (who, for the record, is also a doofus like Platner).
Or we can go even further with the fun thought exercise, by spreading the cost even more: Even $100,000,000,000,000,000 doesn't matter if you evenly distribute it across each atom in the usa.
> The Defense Innovation Unit notice called for drones capable of carrying many different sensor and weapons payloads up to 2,800 pounds and flying with a combat radius of at least 2,300 nautical miles—or 8,000 nautical miles on a one-way strike mission—while executing the same missions that the MQ-9A Reaper drone currently performs for the US military
I feel like they might be taking the wrong lesson from this. The Reaper costs $30-50 million precisely because its mission profile is to deliver 3,500 pounds of payload over 1,000 nautical mile radius.
The cheap Iranian and Ukrainian drones these are increasingly competing with are only delivering 50-100kg of payload - which is plenty to blow shit up, and doesn't require a big, expensive, reusable airframe.
Yeah, it's about requirements. The Ukraine war has shown that fast-iterating MVPs are better in many battlefield situations. The saying that militaries end up preparing for the prior war instead of the next, comes to mind.
True, but I think the US requirements are indeed different. Ukraine must repel invading forces in their own country -> lowish range, mass produced, not necessarily precision strike.
US want to project power far away from its shores -> long range, precision strike, long loitering time.
A 50-100kg payload is only useful against soft targets if the purpose is to "blow shit up". It is the reason Ukraine needed to develop platforms like Flamingo with a much larger warhead capacity than a cheap drone can carry.
While it's clear the US is working on those types of drones too (cloning Shaheds, basically), the likely mission profile of the US requires we have that capability. Pick your potential future US conflict and it won't look like us flinging disposable drones over the border at Canada, but rather needing to project power from an aircraft carrier or forward base against an adversary, where range, payload, sensors, and more matter.
Quantity has a quality all its own, but there's no world where the US doesn't need a Reaper style drone in the arsenal.
Right, I can see the need for both, but that suggests to me that they could differentiate the sensor package + loiter drone significantly from the shahed clone (which, given that it is a one-way trip, has a very similar operational radius)
Does one really need to bring along 2,500 kg of ordinance, when we can launch another $50,000 shahed-equivalent at whatever hard targets the loitering drone locates?
There's an ok documentary on a similar situation (A10 Thunder II) on curiosity stream and it explains how politics basically causes problems like this.
- Reapers fly at a "medium" altitude, which is up to about 50,000 feet;
- They can fly up to 300mph;
- Despite being relatively high up they are relatively slow so lots of country have the military capability to shoot them down and have done so. This includes Iran and the Houthis;
- A typical payload is 2x GBU-31 JDAM (1000lb each). The explosive payload is roughly half that but these are relatively cheap (<$50,000) because they're barely-guided gravity bombs;
- They will also have 4x AGM-114 Hellfire missiles, which are precision-guided, costs $100k+ each but only has an explosive payload of under 20lb. When people talk about drone assassinations that becccame super-popular in the Obama administration, this is largely what they're talking about;
- You can also skip the JDAMs and just have 8x Hellfires instead.
Now Shahed drones aren't as fast, don't fly as high, aren't as precise and you know they're there (a lot of Hellfire attacks are a surprise). But they're incredibly cheap and they overwhelm missile defences easily just by sheer volume. In fact, we're using $1-4M Patriot interceptors to shoot down $20k drones. Obviously that's not going to scale when Iran can produce thousands a month and the supply lag for Patriots is actually years long. Supplies of certain missile defense munitions are suspected to be critically low already and will take years to replenish.
So where I'm going with all this is that Reapers and Sheheds serve different purposes but however you look at it, a $50M Reaper with $1M+ in munitions is WAY less efficient at deliverying payloads that a swarm of cheap drones, particularly when your enemy has invested a lot in missile defense and your $50M Reaper is vulnerable to air-defense systems from even non-state actors (ie the Houthis).
Put another way, $20k for a 50-100kg payload is incredibly efficient and the US has essentially been forced to evacuate all their Gulf bases because they're completely unable to defend them. Billions in damage has been done to these bases too.
The Reaper just isn't fit for purpose anymore. Use it against a more militarized opponennt (eg Russia, China) and they'll shoot those things down like it was a carnival side show.
Always fighting the last war. But wait until you see how the next generation of our drones fails in a future war!
Being less flip, the pull quote suggests (per my bias) our drone design is as much influenced by how much shit contractors can sell to put on a drone as it is by tactical needs. The kinds of targets that would require one ton of explosive are fixed sites that have been specifically hardened against attack. You'd hope some modern McArthur would look at the situation and say, "Screw it, we will just go around those sites and bomb the hell out of their supply lines with tiny drones", but what the hell do I know?
I’m no military expert by any means but US appears to be obsessed with destroying some super important target to win, like they did with killing Iran leaders only to find out that new leader replace the perished.
The same with the other stuff, they have super important radar and super important ships that need to be defended and a failure creates irreplaceable loses.
Iran on the other hand, just like with their super important leaders lost all its “super weapons” like destroyers and the drone ships and yet again brought USA to its knees.
Maybe USA has more fundamental problems, not just drones. Maybe the problem is the obsession of wonderweapons for destroying wondertargets.
It is fascinating that there are so many movies revolving around the US president, as if he has some ability that no one has and you can’t simply elect a new one if the enemy gets him.
Maybe the desire for concentration of power and seeing everything through that lens is the issue?
The US in general, and this administration in particular, has bought into US exceptionalism and action movie tropes. Just gotta blow up the death star with the leader on board and then the war is over. In reality there's a chain of command and line of succession, and military equipment all around the country.
If they had been smart, they would have been learning from Ukraine, because we've found ourselves in basically the same position as Russia is with Ukraine, but with no appetite to puts boots on the ground (not that we should, but it's the only way to "win").
> If they had been smart, they would have been learning from Ukraine
This administration seems to have neither the required skills nor an interest to learn from mistakes. Even if they were filled with smart people, they would still fail because of their lack of skill and learning attitude.
Viewed independently, I think VZ, Ukraine, and Iran look like a hodgepodge of strange actions. There is a consistent view that joins them, namely as we approach the end of the davidson window, putting pressure on China and Russia via oil restrictions might help dissuade a larger war in the Pacific.
This is just a personal opinion, but lines up with Ukraine (burning refineries), EU (seizing sanctioned tankers FINALLY), VZ (cutting exports to China and moving to USA), and Iran (close the strait every so often). The unifying thread seems to be applying consistent pressure around China.
The truth is that bombing campaigns alone have never been an effective way to end a conflict. All they do is strengthen resolve.
Even the most extreme case of the nuclear bombs in Japan - had Russia not also invaded from the North with 1.5 million troops, there's a chance they would not have surrendered (and even then it was after a multi-year bombing campaign that eviscerated every other city).
The only realistic scenario for regime change is boots on the ground. The Iran "experts" who suggested a bombing campaign were never serious people.
Its like 2 dogs fighting, the US wants to win a display of dominance and have the other dog concede defeat - but if instead the other dog is prepared to die, now its a fight to the death and in fights to the death usually both sides die, even if one is stronger. The mentality of "we will just punch them till they capitulate" shows the US mentality, they're not in an existential struggle and they aren't ready to face one.
Don't overlook the "the people of this foreign land are yearning to be free of their current rulers, and just need a little help from their neighborly U.S. armed forces" trope. I think there are plenty of people who actually believe it.
People seem to forget that Iranians were rioting in the streets in the weeks leading up to the US attacking. The Iranian government was shooting protestors and pulled the plug on the internet.
The US (well Israel) saw this as the stars aligning. Trump even called on Iranians early in the engagement to seize the opportunity.
But the ground swell didn't happen, and the US got played. Trump rolled a critical fail.
From the videos and analysis I have seen, it was Kurdish militia that was formenting the riots. The US and Israel have even admitted to arming them. They were burning and destroying infrastructure, fighting and killing legitimate protesters, and fighting governement forces. So it was a 2 way fight between the militia and government forces with innocient protesters in the middle. Not trying to cast blame or defend any side, but these protesters are not fighters or soldiers, they are kind of like gen-Z TikTokers. So to plan an entire war around this "event" is kind of crazy. But the US government doesn't care, they just needed to sell the justification and everyone bought it.
> It is fascinating that there are so many movies revolving around the US president, as if he has some ability that no one has and you can’t simply elect a new one if the enemy gets him.
One of the few exceptions was the Battlestar Galactica reboot, in which the entire chain of command was killed and the Agriculture Secretary ends up as the leader of the refugee humans.
The pentagon can’t stop gold plating requirements, but that’s not just a problem of this administration. We’re still feeling the effects of the self inflicted hollowing out of the defense industry at the end of the Cold War, every defense contractor has learned that the only sane way to survive financially is to put as many bells and whistles on to their contracts as they can safe in the knowledge that the one or two other companies bidding for the contracts will be doing the exact same thing and the pentagon has lost the institutional knowledge on how to purchase systems and get anything like a good deal.
First, despite the Millennium challenge being "debunked", it still played out in the same direction.
Second, and this is a big one, after the Church committee when the CIA was put under congressional oversight, a big majority of the clandestine work was put under Special Ops type groups, ie the Army Rangers, Navy Seals, etc.
When we were in Afghanistan, we would do the "target the leader" game, but it was far more dark in reality. Since we were going against a distributed insurgent force, we would send the special ops guys to targets intelligence deemed important. There'd be an op tempo of 2-3 a week. Years passed, and we didn't make any headway, so the op tempo was increased.
A target would be chosen, and the operators sent out. They'd kill the target, and look for any papers/documentation with other names. If you were this guy's dentist, you could be caught up in this. Since a majority of the operators didn't speak the language, they had no context to the names. It was more like the metadata network of connections exposed by Snowden.
Since we needed more operations(2-3 a night instead of a week), we'd go after less and less important targets, tangentially related to another target. We effectively turned the special ops groups into clandestine death squads with nearly zero accountability.
In addition, we were supporting warlords in the area that were pro-poppy cultivation and anti-Taliban. We'd protect the poppy plants that would go on to supply a large majority of the world's Heroin supply.
Where is this going? Well the cynic in me says it's simply a scam. We spend more on fancy military hardware that allows us to kill more effectively while barely pushing the needle on our goals. The mass amount of death we drop on populations creates new generations of "terrorist/freedom fighters" who rightfully have a grudge against the US war machine.
The money spent doesn't move the needle materially, but it provides propaganda in the form of "look at our death machines, we have the most in the world", which is a double edged sword of "hoorah" at home and "don't fuck with the crazy guy holding the gun" outside of home. The expensive weapons taxpayers buy from defense contractors are too expensive and complicated to build in bulk, so we run out quickly the second we have an enemy that can shoot back with more than an AK.
We're still trying to fight the war of 2-3 wars ago. We also learned from Vietnam that by no means should the general public easily learn the reality of the war. That worked until recently when the victim of a proxy war was able to upload daily videos onto tiktok and break the decades long good will between the US and an unnamed vassal.
Anyway, tl;dr, the ole military industrial complex is still at it, lobbying our government to spend money we don't have on wars we cannot afford as a public works program that only excels in death, rather than public works in healthcare, infrastructure, science, etc.
In practical terms, the US is more fascist and more authoritarian than most countries. There must be thousands of soldiers who know the war is illegal and that they are committing war crimes. Yet they persist because, the president said so. Thus, the strange presumption that other countries worship their leader in the same way. Thus, the strange presumption that by just replacing the leader they can profoundly transform any country.
The US fails to learn the lessons of it's last... idk, every war since WWII. Leadership cites kill stats when it has nothing else to cite, but killing, while certainly an important part of war, is not the key to victory and that's why we keep losing. Actually winning wars requires controlling strategic points on the battlefield, both literally with armed combatants, and metaphorically by getting civilians to support you. The US fails at both. We show up with incredibly superior firepower, establish FOBs where we think we need, drive armored convoys to supply those FOBs but they take fire on every trip, have to look for and clear IEDs, what have you. There's no control apart from the FOBs themselves, and the enemy has easy run of all territory not being patrolled at that precise moment.
This is the same problem that doomed us in Vietnam, in Korea, in Iraq, and will doom us in Iran. It's also the same problem that fucked over South Africa and Rhodesia and seems to be a common problem for white supremacists, but that's just my editorializing.
In any case, showing up and killing shitloads of people and then leaving does not win wars, it just LOOKS kinda like it does if you have no idea how to win wars, and assures you promotions in your organization. As soon as your military leadership starts citing that instead of actual progress on the conflict and the objectives at hand, it's a safe bet they are on their way to loss via attrition.
And that's not the ONLY factor of course, our military is too expensive and relies too much on fancy tech as opposed to solid strategy, everything we use is hideously expensive so any losses we take tend to hit harder, etc. But I think this is the most important thing to cite when discussing America's inability to actually wage war in a way that does anything besides get service people killed and enrich the MIC.
There is quite a good book on the various problems with the US Military, and its hegemony leading to losing the arms race in missiles, and its various industry problems by Andrei Martyanov - naturalized US citizen, former Soviet military officer. Loves America, hates what its turned into, and marvels at the delusion of our military. MIC bloat is discussed here, as well as our fake financialized economy - which is not an indicator of being able to win wars.
I have only read the first book, and it was nice and humbling experience to me as an American.
The defense industry has spent the last 40+ years grooming the DoD into thinking it costs $30mil/unit to produce missiles and drones. They should have rejected any of the bids, but being fueled by massively excessive taxes in the USA, they don't have to answer to any sort of efficiency or profitability.
These things should cost less than a Toyota Camry.
An MQ-9 has roughly the same wingspan as an A-10 - they're not small birds.
An MQ-9 needs to have a good sensor ball, ideally with both color and IR, gps jamming resistance, weapons integration with multiple types of missiles (ideally large enough to take out something larger than a motorcycle), good on-target time INCLUDING transit time (if it can only stare for one hour on target it'd be pointless), good uplink and downlink to reliably move that data (you don't want to lose track when a missile flies off), and the architecture to support, including ground control stations.
You CAN stuff someone in Cessna, give em a camera, a radio, and some mortar rounds to toss out the back, but that's not going to work for most use cases.
between these extremes there are, parent posits, some efficiencies to be had. Do you agree that its at least possible to get a cheaper solution thats 90% of the way there? Ukraine seems to do pretty well for themselves on this front, and several other countries around the world are no slouches either. Even iran themselves do quite well. Sure their drones dont have the fanciest optics or whatever, but when looking at a cost per millitary effectiveness standpoint, are five redundant drones with worse optics better than one big one? what about five hundred vs one? five thousand? The same logic goes for most of the components.
>> are five redundant drones with worse optics better than one big one
Depends on the goal. If the goal is to make high precision strikes - one big drone with tons of capabilities.
If the goal is the terror strike campaign like russian - cheap Shahed drones are the best.
It costs $30M/unit because our trillion dollar defense budget is mostly just a jobs program (25%) and wealth transfer apparatus (75%). Killing people is just a side effect.
That budget and wealth transfer requires the US Dollar to remain the world's reserve currency. A lot of the killing has to do with ensuring it remains that way.
Taxes in the US go to a cluster of major items. Medicare, other medical, Social Security, interest, VA benefits and veteran's medical care, federal spending on the indigent or disabled, and Defense. Those together are 94% of annual federal spending.
None of that spending is subject to that much debate; all the remaining "debate" is over the remaining 6%.
I don't think defense is really as discretionary as it seems. A lot of it is effectively bribing and menacing trading partners to keep trading with the US on favorable terms through cash transfers, provision of military equipment, training, and mutual defense pacts among other diplomatic agreements.
Japan didn't just decide on its own free will to become a pacifist country dedicated to exporting cheap, high-quality manufactured goods to the United States. General MacArthur did that.
Everything on your list but VA benefits and defense are very regularly called into question. Even VA benefits are questioned pretty regularly, but that tends to be put down pretty quickly.
> A lot of it is effectively bribing and menacing trading partners
That's just a byproduct of propping up the military industrial complex; have to have conflicts to justify giving the primes sole-source cost+ contracts so they can meet their quarterly EPS targets.
From what I know, the 'defense' industry has their production cleverly across all 50 states so that they're seen as one of the few sources of stable employment for most, sadly.
It's not actually that many people in the grand scheme at ~1.1 million according to the CRS, but it is spread out very effectively so that massive cuts can be directly felt by any chosen House representative or senator. It's partially a capacity preservation system as well, for defense a nation wants to be able to produce a significant portion of it's military hardware needs in a war domestically and you need to keep those industries alive somehow against cheaper foreign producers so you have the Berry Amendment that requires clothing etc purchased by the DoD to only use US made materials.
And yet so much of the spending goes to big ticket items benefitting defense contractors while things that actually benefit the soldiers (better armor, better VA hospitals) go by the wayside.
> but being fueled by massively excessive taxes in the USA
I think it's even worse, it's funded a lot more by debt than excessive taxes, taxation in the USA is not even that excessive (to its own detriment since the budget is never balanced).
The last balanced budget was in 2001 and it was passed by a Republican controlled House and Senate [0]. Clinton somehow gets complete credit for it, even though the executive branch doesn't directly control the budget and congress controls the power of the purse.
It's kind of funded by the demand for dollars due to whole world needing dollars to trade with them. So that it's not the USA and Americans paying all that interest in inflation due to money printing
This statement implies a misrepresentation of how these kinds of supply chains work.
These are captured markets, there is no competition. The bar is set high, or specifically, so that small players cannot compete, and this is done by extensiive relationship management at all levels, and heavy marketing.
It takes a situation like Ukraine to 'prove' to everyone that 'cheap things can work well'.
Even in the face of glaring evidence form Ukraine the system is slow to react.
Shaheds are used for years and the US just let their gear sit out in the open in the Gulf.
You could provide 'irrefutable evidence' to a political system of some fact, it's not hugely helpful.
The system does not change until the power dynamics do - aka Iran destroyed gazillions in US gear and some senior level people are 'demanding answers'.
Defence contracts are an 'inside game' it's extremely political.
Only when people are in a rush do they start to look at outside agencies to find the best gear for the problem they need to solve 'right now'.
>It takes a situation like Ukraine to 'prove' to everyone that 'cheap things can work well'.
It's likely not even that. According to Jacek Bartosiak, Polish geopolitics popularisator, it came by a kind of blind "luck".
He travels a lot to Ukraine and talks a lot with military and dual use manufacturers.
Regular arms manufacturing in Ukraine was, just like anywhere else, not very innovative and dominated by big actors that could make sure nobody else can enter the market.
But the drones were not seen by them as anything serious, and due to dire needs the market has been deregulated, which allowed many small businesses to flourish and develop the fantastic industry that Ukraine is so proud of now.
But that came mostly because the big fish let the small underdogs on the market because they thought there is no market.
Most government agencies cant even pick a different vendor for toilet paper. I cannot imagine the politics involved for trying to supply weapons. All those stories on Flock cameras and being insecure etc is politics at play. Companies know the government will take a decade or more to change vendors, if ever.
Correct, now let's also talk about US government-funded [research, healthcare, education, construction, foreign aid, intelligence, infrastructure, entitlements]
Except almost everyone has their pet topic where they'll defend any amount of spending.
> It envisions delivery of “20 mission-ready aircraft” by 2031.
Hmm, I'm not sure they fully address the problem if that is what is being proposed. The world will be an entirely different place by 2031 and 20 drones is .... meaningless? Surely they should be talking in the thousands or tens of thousands.
Makes sense, drone technology has come an insane distance since these were developed.
Probably the biggest learning from the Ukraine war alone is the effectiveness of cheap drones. It was suspected for years but hadn't been put to the test yet.
>>Probably the biggest learning from the Ukraine war alone is the effectiveness of cheap drones. It was suspected for years but hadn't been put to the test yet.
Some of us were paying attention as early as the 2016-17 Battle of Mosul, when ISIS was using DJI drones to drop grenades into the turret hatches of Iraqi uparmored Humvees. Others started to notice during the Nagorno-Karabakh War in 2020, when Azeri UAV superiority dominated Armenian ground forces. But all of these professionals were like the military officers who observed the Boer Wars, and the Russo-Japanese War, and then wrote in the military journals of their day about how machineguns were gonna change warfare in a very bad way.
Flag officers still slept-walked into the carnage of WW1 trench warfare....shrug. "History doesn't repeat but it rhymes."
Will be quite interesting what the end evolution of this will be.
I think high direct movability (like droping a few meters or shifting left/right) might be the next bigger thing for these. Easy enough to add, will make it even harder for air defence missiles catching them.
Besides, the air defence missiles are a lot more expensive than what a drone does.
And in Russia you saw another huge issue: How to shoot down a drone in your city without missing it and destroying something else?
How much payload do you need anyway? Like imagine oil refinery: how much kilo of c4 do you need? I don't think that much.
Or imagine a formation of drones with small payloads and starting to crash in one house wall like into putins palace or the white house.
They could obviously have foreseen the current failures in 2015. It is irrelevant, since the Senate Armed Services Committee and the Generals who routinely give theatrical performances for the cameras want the big toys for their districts.
The goal in Iran is also not to win but to keep the Gulf monarchies, the EU, Japan and China down by means of a low intensity forever war.
US should be split up so it can't do any more damage to the world. Americans can't be trusted with putting that much power in the hands of a few people anyway.
China and Russia would love that. It would also be very bad for European security that is mostly guaranteed by U.S. strength and willingness to fight wars.
It's disappointing how often the public gives a silent thumbs up on military spend. Okay I'll grant most US citizens would have preferred Trump hadn't gotten into this war.
But most talk is about the $$ cost of this war, how little Trump has to show for it, and price of gasoline & groceries.
Instead (for US citizens), the talk should be about what else could have benefitted from those $$, and now isn't because it'll be used to re-stock weaponry. Think healthcare, infrastructure, education, research, etc etc.
that's still comes up far short of the total bill. the US never talks about the destruction to civilian infrastructure, the number of innocents killed, the loss of any ability to claim to be on the 'right side'.
these are seeds that will ensure that the US is treated like Russia, or WWII Germany, or Iran. A rabid aggressor that will need to be isolated and eventually contained.
We can't just completely exit Iran without a time machine. Dufus Donny attempting to escape his Epstein folly by kicking the hornet's nest and now Iran holds the gulf hostage for as long as they want.
guess what, Iran will hold the gulf hostage regardless if US is there or not
exactly like the nightmare Afghanistan is for women there now left to the Taliban
regardless if US was there or not it would have happened
world is an absolutely horrible place filled with monsters
you can't say all these countries should be saved by US and then end USAID to let a million people die with food and medication already paid for left rotting in warehouses
btw we are also starving all the people in Cuba to death with an illegal blockcade since the start of the year, so why is Cuba our responsibility too?
at some point WE become worse monsters, we're at that point
Ignore that we funded the taliban and warlords for the next 50 years with 1.9 billion in vehicles, machine guns, small arms, night vision, and explosives?
In his 1961 farewell address, President Eisenhower warned of the dangers of establishing the military-industrial complex [1]. We are seeing the fruits of that now that despite an annual budget over $1T the US has been militarily defeated by Iran (and Afghanistan). We build $13B aircraft carriers that don't work [2].
Defense contracting is nothing more than a wealth transfer from the government to the wealthy. This is what unfettered cost plus contracts looks like. We ridicule the Russian military for their insane levels of corruption (eg paying for tanks that never get built and the generals pocketing the money) but really the same thing has happened here. The things get built but they don't work and the entire industry is built around hiring former Pentagon people who specialize in procurement.
It doesn't have to be this way. Some of the US military's past equipment was legendary. The M1 rifle and M4/M16 family were cheap, reliable and effective. The Jeep was legendary for its reliability. The original M1 Abrams tank is widely considered the best tank the military ever built. If you listen to anyone in the military they'll tell you the vehicles are constantly broken down, hard to repair, expensive to maintain and outright dangerous.
Every dollar spent on the military is a dollar not spent on roads, schools, bridges, hospitals and trains, things that would actually benefit people. We're bankrupting ourselves to enrich the shareholders of Boeing, Lockheed-Martin, Northrop Grumman, RTX Corp and General Dynamics for what exactly?
And the proposed "defense" budget for 2027 is $1.5T, a roughly 50% increase.
This is also why I laugh whenever anyone pushes the idea that China is the Big Bad [tm], for two reasons. First, they don't have to be. We just want their to be a scary enemy to justify all this. Second, if they were, they would destroy us because it would ultimately come down to military industrial capability and we would lose. Orders of magnitude lose.
> And the proposed "defense" budget for 2027 is $1.5T, a roughly 50% increase
Yeah, this is mind-boggling. The requested increase is roughly the size of the entire 2004 military budget. 2004, when we were fighting two separate ground wars.
There were close to 200k US troops on the ground in combat theaters in 2004. We're proposing to add a "2004 US military" to our military. The unnecessary wars we will start with this capacity[1] will cause havoc in unpredictable places.
>We're bankrupting ourselves to enrich the shareholders of Boeing, Lockheed-Martin, Northrop Grumman, RTX Corp and General Dynamics for what exactly?
We do it to keep manufacturing knowledge and ability in the country. I really cannot stress enough how many thousands of companies exist purely because of the defense budget. It's never going away because it employs so many people. That's why red or blue or independent no one ever cuts it. It's welfare that creates work so the whole ideological spectrum has something to like.
The big names you mention are the names that end up on the final product, but those products often have a couple thousand different (all American) suppliers feeding them. Virtually all of the money in the defense budget flows back into the economy. The sum total of those players profits last years amounts to 2% of the budget, and that's assuming it's all military.
A simple example are screws. You cannot make a living making screws in the US. It makes zero economic sense because it's impossible to compete with 2nd/3rd world countries (read:China). But the military (well contractors with a mandate) will buy your screws at a price that allows you to live a decent life and employ a team of people.
This way when shit hits the fan, the US will still have a supply of screws (pretty damn important), a supply of people who know how to make screws, and in the mean time those people get benefits and careers.
Now take this idea and repeat it for everything from paper cups to tank shells to folding chairs to wire sheathing (the military buys literally everything, always wants American made, and will happily pay a premium for it).
You're saying we need to retain manufacturing capability and expertise. I agree.
I'm saying we need to stop being bled dry by private weapons manufacturers on cost plus contracts who are rewarded, by definition, by making the system as expensive as possible.
If we were truly interested in having an effective military, we would bring production in-house and focus on standardized vehicles and weapons systems with standardized interchangeable parts on production lines that can be scaled up if necessary.
While I am critical of Ukraine being in talks to join the EU (which IMHO it shouldn't), I am quite happy that we in EU kind of have built good relationships with Ukraine - military drone construction knowledge and expierience will become a key technology field, as cooperations between Ukraine and Europe after the war (however that will look like) will probably strengthen europes defense capabilities.
On a separate note, I'm curious as to whether AI is making an inroads in that space. I would imagine very minimal, if at all, but very curious.
The drone industry was allowed to basically "do whatever as long as it works", consequences be damned. So they use civilian motors, batteries and SoCs, sketchy firmware with zero code inspection, and more. Does it work perfectly? No. It works well enough.
I wonder if anyone is going to learn a lesson about overregulation.
I'm not sure if "AI for red tape mitigation" is a thing, but "AI for killer drones" sure is. I suspect that "killer drones are insufficiently smart" is easier to fix with AI than "too much red tape". Because the amount of red tape, if unopposed, will expand to consume any capacity of dealing with it, AI or not.
Seems unlikely. Regulation and Health & Safety are both societal luxuries, which only happen once societies are stable and prosperous enough to start valuing human life beyond its ability to perform labour.
The moment the bombs start dropping, the time for luxuries also stops, and the value of human life drops to value a person can produce defending their society. There isn’t the money or resources for anything more than that.
The US (most developed democracies) places an extremely high value on the lives of soldiers, because dead soldiers in foreign wars does terrible things to politicians in power. Paying 1000X more for the same tech as Ukraine to minimise the number of service members killed using it, is a pretty small price to pay.
People say “it’s a one line change” (once they argued it was a 1 bit change!). But lacking a fully controlled and hermetic build system with its own exhaustive test suite you can’t be sure about the relationship between the source and the binary. And that continues to every step to get the binary into production (updating existing devices, etc).
Sure, your ultra paranoid checking of everything might catch an extremely rare bug caused by something like interactions between a benign code change and a build system. But is it worth slowing down the development process by that much?
Is it worth missing out on an entire generation of technology, like what happened with US and the shift from 00s drone warfare and 20s drone warfare?
Usually not.
As an aside, the word Guerrilla (little war) was coined during Napoleon's occupation of Spain to describe the resistance effort by locals and peasants against the French army.
By comparison, if the US products fail, there's no real negative effect on the mainland United States.
It's even worse than that. Schedules slipping and cost overruns are good things for the manufacturer, because they can charge more on top of their initial contract. Cost-plus ftw.
But you still run into similar issues regardless of the contract structure. Try and build a rail network without anyone in government wanting something different for 20 years.
Or you're batching your releases into larger builds because you know it'll take 6 weeks to test regardless. This increases the duration of each development iteration because you have 100 things you want to do and you could do that in, say, 4x13 week efforts, but with the added 6 weeks between iterations (and possibly more after it leaves your shop) that takes a one year effort and turns it into about 1.5. So the program office decides you should do one big release each year, which also ups the risk because a lot of testing that would catch bugs isn't done until the end in that big 6-week test effort. Oops, now your 1 year + 6 week effort just got turned into 1 year + 6 week + (unknown rework time) + 6 weeks. Probably 2 years.
It's also a reason to be skeptical of a military spending a bunch of money developing technology during peacetime. In reality the expensive stuff they went into the war with is always going to be less effective than the cheap stuff they came out with.
I assume that smaller/cheaper drones avoid a lot of this because the stakes aren't near as high and quite a bit of the development occurs in private industry first.
See also SpaceX vs. NASA. No way would NASA have been allowed to blow up as many rockets as SpaceX did to finally get to their working solution.
The same people when SpaceX blows up a bunch of rockets: "wow, look at the innovation, they move so fast! Cut NASA funding and give public funds to the guy who purchases elections!"
The last time NASA caught any serious flak was what, the Starliner shitshow? And that was just splash damage from Boeing getting dunked on by everyone at once.
Milspec is expensive and process heavy, see what a B52 replacement trash can costs, for just one example.
There is a process for getting a change into version control. Each change needs to have a (virtual) paper trail: motivation, risk analysis, sign-offs &c.
If you can't get something into VC quickly, you can't really do CI.
The obvious solution would be to have an integration branch that doesn't need the process to get in, do CI testing on that branch and then make the process for merging to the real branch.
I've never seen this done personally, but I have been told some places do it, and then you end up with "Change X, which got approved had a dependency on Change Y that didn't get approved and we didn't realize it until now because Change Y was put in the integration branch before Change X"
Even when it comes to more expensive things like cruise missiles it seems the planning has to be that some high percentage of them may be shot down (and much higher for slower moving drones), so you really want them cheap and in high volume, with reliability somewhat of a secondary concern.
artillery, missiles, and long range drones are in the mix too. AI enabled spotting makes ISR detection rapid and effective.
some kubernetes container spots a random pixel that means hidden vehicles and a HIMARS strike is dispatched ASAP
We want to perform our work skillfully, effectively, and professionally. But we never want our tools to actually be needed.
(Another is that we can't effectively create a shield without the risk of it being used as a sword.)
(The killcam is a WW2 invention, starting with linking cine cameras to the machine guns of fighter aircraft)
Also recent advances in battery tech brought increased energy density: the same drones which had range 20km now have 40km.
Roll back the change? Also, fix the approval process - no way that should have been approved.
Generally speaking that is risk management, an unavoidable engineering tradeoff. In lower stakes situations, for example a critical application or server for a small office, we let low-impact bugs accumulate: Imposing risks, and therefore eventual costs, to avoid minor workarounds and low-impact bugs is poor engineering and risk management.
Engineering and all risk management includes tradeoffs. It's easy to criticize the downside of the tradeoff - the same people criticize the reverse decision when the server (or drone) crashes - when someone is not responsible for both sides of it, when they are not accountable for their words when the outcome occurs.
That's speaking generally. It's also poor risk management to be overly safe. I don't know about the parents' situation. But drone crashes (risking humans), mission failure, $50 million losses, and associated downtime (including delays) and labor costs, seem like high costs that are worth some pain to avoid.
Some defense.
You support Banderaites in such a defense.
[1]: https://www.documentcloud.org/documents/21211671-1997-revisi...
Are Spanish people white or Hispanic according to those definitions?
'Original peoples' is an interesting phrase. Neanderthals? Beaker people?
A single category for everyone from Pakistanis to Japanese is weird.
https://en.wikipedia.org/wiki/Caucasian_race
Sounds totally legit.
What boggles my mind is that I make coffee at home because I'm frugal. I guess it is good the government and DoD are seeking cheaper alternatives also.
My favorite interview question: If I gave you a swarm of autonomous drones, what would you do with them?
There is a group in South Florida who stand watch over turtle nests on the beach to ensure the hatchlings make it to the ocean instead of instinctively moving towards the street lamps or the bright hotels. I would use drones to hover over the nests to detect if the turtles hatch so people don't have to stand there.
What would you do?
What signal are you looking for with that question? It feels much more like a thought experiment with friends while having a few pints than something reasonable for a job interview.
I like to think about how providing 4-week paid parental leave would cost $2 billion annually and actually help US families. Meanwhile we have spent over $100 billion on this war.
I got mine from a paper published by the University of Chicago: https://www.journals.uchicago.edu/doi/10.1086/735565.
also there's the fact of this having a ROI since people generate economic value in the longer run, and hence, more taxes
tax billionaires, then
You can do full Dekulakization (https://en.wikipedia.org/wiki/Dekulakization) on them and it won't change anything in current economic situation.
Confiscating 100% of all billionaire wealth (~$8.4T) covers - ~1.1 years of federal spending (~$7.4T) - ~4.4 years of deficits (~$1.9T) - ~23% of debt (~$36T):
and pretty much kills US ability to rely on private sector (and I dont think we have a way to rely on public sector)
The sooner we all start focusing on things that actually matter -- like improving democracy, quality of education (btw spending more may not solve it) etc -- the faster we will improve situation.
Cities like NYC pretty much can afford UBI (look at per capita spending on homelessness, public schools etc). Taxing more may not be the answer.
*it should be studied what motivates people to repeat it
I've generally come around to believe that we need to limit wealth from a purely power / control point of view.
So $1 billion is about equal to 4 hour hours of government spending.
$7 trillion is not operating expenses. Much goes into assets that are retained decades or more. The Interstate Highway System isn't an operating expense.
> Based on aggregate highway spending reported in 2009, the average statewide cost of maintaining a lane mile was $13,841.
source (pdf): https://www.osc.ny.gov/files/local-government/publications/p...
Has, not is. Clearly you didn’t take Intro to Object-Oriented Programming in CS.
(Your share of overall defense spending is ~1,000x higher, of course.)
I wish political leaders would express it that way. And you need to include the time factor: $10/year for 10 years differs from $20 for a one-time event. And somehow figure in capital accumulation (as opposed to e.g., consumables) and depreciation. But there are clear, effective ways to communicate it: 'I propose each American spend an average of $80/year for 50 years on this fighter jet program'. 'This moon mission will cost everyone $5/year for 2 years.'
To nitpick a little, I think your math is off: There are 350 million Americans, but we need to exclude most children, elderly, etc.
So...what are you talking about?
These people do not care about you. You need to hate them more.
/s
The left's hypocrisy knows no bounds.
I feel like they might be taking the wrong lesson from this. The Reaper costs $30-50 million precisely because its mission profile is to deliver 3,500 pounds of payload over 1,000 nautical mile radius.
The cheap Iranian and Ukrainian drones these are increasingly competing with are only delivering 50-100kg of payload - which is plenty to blow shit up, and doesn't require a big, expensive, reusable airframe.
US want to project power far away from its shores -> long range, precision strike, long loitering time.
Does one really need to bring along 2,500 kg of ordinance, when we can launch another $50,000 shahed-equivalent at whatever hard targets the loitering drone locates?
- Reapers fly at a "medium" altitude, which is up to about 50,000 feet;
- They can fly up to 300mph;
- Despite being relatively high up they are relatively slow so lots of country have the military capability to shoot them down and have done so. This includes Iran and the Houthis;
- A typical payload is 2x GBU-31 JDAM (1000lb each). The explosive payload is roughly half that but these are relatively cheap (<$50,000) because they're barely-guided gravity bombs;
- They will also have 4x AGM-114 Hellfire missiles, which are precision-guided, costs $100k+ each but only has an explosive payload of under 20lb. When people talk about drone assassinations that becccame super-popular in the Obama administration, this is largely what they're talking about;
- You can also skip the JDAMs and just have 8x Hellfires instead.
Now Shahed drones aren't as fast, don't fly as high, aren't as precise and you know they're there (a lot of Hellfire attacks are a surprise). But they're incredibly cheap and they overwhelm missile defences easily just by sheer volume. In fact, we're using $1-4M Patriot interceptors to shoot down $20k drones. Obviously that's not going to scale when Iran can produce thousands a month and the supply lag for Patriots is actually years long. Supplies of certain missile defense munitions are suspected to be critically low already and will take years to replenish.
So where I'm going with all this is that Reapers and Sheheds serve different purposes but however you look at it, a $50M Reaper with $1M+ in munitions is WAY less efficient at deliverying payloads that a swarm of cheap drones, particularly when your enemy has invested a lot in missile defense and your $50M Reaper is vulnerable to air-defense systems from even non-state actors (ie the Houthis).
Put another way, $20k for a 50-100kg payload is incredibly efficient and the US has essentially been forced to evacuate all their Gulf bases because they're completely unable to defend them. Billions in damage has been done to these bases too.
The Reaper just isn't fit for purpose anymore. Use it against a more militarized opponennt (eg Russia, China) and they'll shoot those things down like it was a carnival side show.
Being less flip, the pull quote suggests (per my bias) our drone design is as much influenced by how much shit contractors can sell to put on a drone as it is by tactical needs. The kinds of targets that would require one ton of explosive are fixed sites that have been specifically hardened against attack. You'd hope some modern McArthur would look at the situation and say, "Screw it, we will just go around those sites and bomb the hell out of their supply lines with tiny drones", but what the hell do I know?
In short: War is sell.
The same with the other stuff, they have super important radar and super important ships that need to be defended and a failure creates irreplaceable loses. Iran on the other hand, just like with their super important leaders lost all its “super weapons” like destroyers and the drone ships and yet again brought USA to its knees.
Maybe USA has more fundamental problems, not just drones. Maybe the problem is the obsession of wonderweapons for destroying wondertargets.
It is fascinating that there are so many movies revolving around the US president, as if he has some ability that no one has and you can’t simply elect a new one if the enemy gets him.
Maybe the desire for concentration of power and seeing everything through that lens is the issue?
If they had been smart, they would have been learning from Ukraine, because we've found ourselves in basically the same position as Russia is with Ukraine, but with no appetite to puts boots on the ground (not that we should, but it's the only way to "win").
This administration seems to have neither the required skills nor an interest to learn from mistakes. Even if they were filled with smart people, they would still fail because of their lack of skill and learning attitude.
The fact they unironically used Star Wars in their war memes was an amazing self-own.
This is just a personal opinion, but lines up with Ukraine (burning refineries), EU (seizing sanctioned tankers FINALLY), VZ (cutting exports to China and moving to USA), and Iran (close the strait every so often). The unifying thread seems to be applying consistent pressure around China.
Even the most extreme case of the nuclear bombs in Japan - had Russia not also invaded from the North with 1.5 million troops, there's a chance they would not have surrendered (and even then it was after a multi-year bombing campaign that eviscerated every other city).
The only realistic scenario for regime change is boots on the ground. The Iran "experts" who suggested a bombing campaign were never serious people.
The US (well Israel) saw this as the stars aligning. Trump even called on Iranians early in the engagement to seize the opportunity.
But the ground swell didn't happen, and the US got played. Trump rolled a critical fail.
How it could be a surprise more riots didn't happen?
It's almost like you can't paint an entire country with one brush?
One of the few exceptions was the Battlestar Galactica reboot, in which the entire chain of command was killed and the Agriculture Secretary ends up as the leader of the refugee humans.
The USA Military was quite aware that killing Irans Leadership is not 'it'.
But Trump saw how well venezuela worked so that was it.
Yeah USA politics is not 4D Chess.
First, despite the Millennium challenge being "debunked", it still played out in the same direction.
Second, and this is a big one, after the Church committee when the CIA was put under congressional oversight, a big majority of the clandestine work was put under Special Ops type groups, ie the Army Rangers, Navy Seals, etc.
When we were in Afghanistan, we would do the "target the leader" game, but it was far more dark in reality. Since we were going against a distributed insurgent force, we would send the special ops guys to targets intelligence deemed important. There'd be an op tempo of 2-3 a week. Years passed, and we didn't make any headway, so the op tempo was increased.
A target would be chosen, and the operators sent out. They'd kill the target, and look for any papers/documentation with other names. If you were this guy's dentist, you could be caught up in this. Since a majority of the operators didn't speak the language, they had no context to the names. It was more like the metadata network of connections exposed by Snowden.
Since we needed more operations(2-3 a night instead of a week), we'd go after less and less important targets, tangentially related to another target. We effectively turned the special ops groups into clandestine death squads with nearly zero accountability.
In addition, we were supporting warlords in the area that were pro-poppy cultivation and anti-Taliban. We'd protect the poppy plants that would go on to supply a large majority of the world's Heroin supply.
Where is this going? Well the cynic in me says it's simply a scam. We spend more on fancy military hardware that allows us to kill more effectively while barely pushing the needle on our goals. The mass amount of death we drop on populations creates new generations of "terrorist/freedom fighters" who rightfully have a grudge against the US war machine.
The money spent doesn't move the needle materially, but it provides propaganda in the form of "look at our death machines, we have the most in the world", which is a double edged sword of "hoorah" at home and "don't fuck with the crazy guy holding the gun" outside of home. The expensive weapons taxpayers buy from defense contractors are too expensive and complicated to build in bulk, so we run out quickly the second we have an enemy that can shoot back with more than an AK.
We're still trying to fight the war of 2-3 wars ago. We also learned from Vietnam that by no means should the general public easily learn the reality of the war. That worked until recently when the victim of a proxy war was able to upload daily videos onto tiktok and break the decades long good will between the US and an unnamed vassal.
Anyway, tl;dr, the ole military industrial complex is still at it, lobbying our government to spend money we don't have on wars we cannot afford as a public works program that only excels in death, rather than public works in healthcare, infrastructure, science, etc.
Yes we do, it is called imperialism. Now with a sprinkle of senile Fascism.
This is the same problem that doomed us in Vietnam, in Korea, in Iraq, and will doom us in Iran. It's also the same problem that fucked over South Africa and Rhodesia and seems to be a common problem for white supremacists, but that's just my editorializing.
In any case, showing up and killing shitloads of people and then leaving does not win wars, it just LOOKS kinda like it does if you have no idea how to win wars, and assures you promotions in your organization. As soon as your military leadership starts citing that instead of actual progress on the conflict and the objectives at hand, it's a safe bet they are on their way to loss via attrition.
And that's not the ONLY factor of course, our military is too expensive and relies too much on fancy tech as opposed to solid strategy, everything we use is hideously expensive so any losses we take tend to hit harder, etc. But I think this is the most important thing to cite when discussing America's inability to actually wage war in a way that does anything besides get service people killed and enrich the MIC.
I have only read the first book, and it was nice and humbling experience to me as an American.
https://www.amazon.com/Disintegration-Indicators-Coming-Amer...
Blog:
https://smoothiex12.blogspot.com/
Review:
https://americanaffairsjournal.org/2022/08/how-russia-views-...
These things should cost less than a Toyota Camry.
An MQ-9 needs to have a good sensor ball, ideally with both color and IR, gps jamming resistance, weapons integration with multiple types of missiles (ideally large enough to take out something larger than a motorcycle), good on-target time INCLUDING transit time (if it can only stare for one hour on target it'd be pointless), good uplink and downlink to reliably move that data (you don't want to lose track when a missile flies off), and the architecture to support, including ground control stations.
You CAN stuff someone in Cessna, give em a camera, a radio, and some mortar rounds to toss out the back, but that's not going to work for most use cases.
If you insist on firing guided missiles at ground targets from a drone that returns to base you're never gonna be able to compete on cost.
Depends on the goal. If the goal is to make high precision strikes - one big drone with tons of capabilities. If the goal is the terror strike campaign like russian - cheap Shahed drones are the best.
It costs $30M/unit because our trillion dollar defense budget is mostly just a jobs program (25%) and wealth transfer apparatus (75%). Killing people is just a side effect.
That budget and wealth transfer requires the US Dollar to remain the world's reserve currency. A lot of the killing has to do with ensuring it remains that way.
Not excessive taxes, a political choice to spend a lot of the revenue on defense.
And anyone who wants to reduce military spending will get asked:
"Don't you support our troops?"
And that'll be the end of that
None of that spending is subject to that much debate; all the remaining "debate" is over the remaining 6%.
I don't think defense is really as discretionary as it seems. A lot of it is effectively bribing and menacing trading partners to keep trading with the US on favorable terms through cash transfers, provision of military equipment, training, and mutual defense pacts among other diplomatic agreements.
Japan didn't just decide on its own free will to become a pacifist country dedicated to exporting cheap, high-quality manufactured goods to the United States. General MacArthur did that.
That's just a byproduct of propping up the military industrial complex; have to have conflicts to justify giving the primes sole-source cost+ contracts so they can meet their quarterly EPS targets.
I think it's even worse, it's funded a lot more by debt than excessive taxes, taxation in the USA is not even that excessive (to its own detriment since the budget is never balanced).
When the Republicans rule.
[0] https://en.wikipedia.org/wiki/106th_United_States_Congress
These are captured markets, there is no competition. The bar is set high, or specifically, so that small players cannot compete, and this is done by extensiive relationship management at all levels, and heavy marketing.
It takes a situation like Ukraine to 'prove' to everyone that 'cheap things can work well'.
Even in the face of glaring evidence form Ukraine the system is slow to react.
Shaheds are used for years and the US just let their gear sit out in the open in the Gulf.
You could provide 'irrefutable evidence' to a political system of some fact, it's not hugely helpful.
The system does not change until the power dynamics do - aka Iran destroyed gazillions in US gear and some senior level people are 'demanding answers'.
Defence contracts are an 'inside game' it's extremely political.
Only when people are in a rush do they start to look at outside agencies to find the best gear for the problem they need to solve 'right now'.
It's likely not even that. According to Jacek Bartosiak, Polish geopolitics popularisator, it came by a kind of blind "luck".
He travels a lot to Ukraine and talks a lot with military and dual use manufacturers.
Regular arms manufacturing in Ukraine was, just like anywhere else, not very innovative and dominated by big actors that could make sure nobody else can enter the market.
But the drones were not seen by them as anything serious, and due to dire needs the market has been deregulated, which allowed many small businesses to flourish and develop the fantastic industry that Ukraine is so proud of now.
But that came mostly because the big fish let the small underdogs on the market because they thought there is no market.
Hope I'm not mixing anything up.
Except almost everyone has their pet topic where they'll defend any amount of spending.
Hmm, I'm not sure they fully address the problem if that is what is being proposed. The world will be an entirely different place by 2031 and 20 drones is .... meaningless? Surely they should be talking in the thousands or tens of thousands.
Probably the biggest learning from the Ukraine war alone is the effectiveness of cheap drones. It was suspected for years but hadn't been put to the test yet.
Some of us were paying attention as early as the 2016-17 Battle of Mosul, when ISIS was using DJI drones to drop grenades into the turret hatches of Iraqi uparmored Humvees. Others started to notice during the Nagorno-Karabakh War in 2020, when Azeri UAV superiority dominated Armenian ground forces. But all of these professionals were like the military officers who observed the Boer Wars, and the Russo-Japanese War, and then wrote in the military journals of their day about how machineguns were gonna change warfare in a very bad way.
Flag officers still slept-walked into the carnage of WW1 trench warfare....shrug. "History doesn't repeat but it rhymes."
I think high direct movability (like droping a few meters or shifting left/right) might be the next bigger thing for these. Easy enough to add, will make it even harder for air defence missiles catching them.
Besides, the air defence missiles are a lot more expensive than what a drone does.
And in Russia you saw another huge issue: How to shoot down a drone in your city without missing it and destroying something else?
How much payload do you need anyway? Like imagine oil refinery: how much kilo of c4 do you need? I don't think that much.
Or imagine a formation of drones with small payloads and starting to crash in one house wall like into putins palace or the white house.
More drones.
https://en.wikipedia.org/wiki/Defense_Innovation_Unit
They could obviously have foreseen the current failures in 2015. It is irrelevant, since the Senate Armed Services Committee and the Generals who routinely give theatrical performances for the cameras want the big toys for their districts.
The goal in Iran is also not to win but to keep the Gulf monarchies, the EU, Japan and China down by means of a low intensity forever war.
That time is gone. At this point the US is likely the biggest threat to EU.
But most talk is about the $$ cost of this war, how little Trump has to show for it, and price of gasoline & groceries.
Instead (for US citizens), the talk should be about what else could have benefitted from those $$, and now isn't because it'll be used to re-stock weaponry. Think healthcare, infrastructure, education, research, etc etc.
That's the real cost of wars like this.
these are seeds that will ensure that the US is treated like Russia, or WWII Germany, or Iran. A rabid aggressor that will need to be isolated and eventually contained.
just completely exit like Afghanistan
and remember all this military hardware eventually ends up in the hands of police departments domestically, next decade is going to be wild
$21 TRILLION spent on militarization 2001-2021
* https://ips-dc.org/report-state-of-insecurity-cost-militariz...
imagine how much by 2031, at least double
ps. they are still executing fishermen without trial off Venezuela at a million dollars a pop
We can't just completely exit Iran without a time machine. Dufus Donny attempting to escape his Epstein folly by kicking the hornet's nest and now Iran holds the gulf hostage for as long as they want.
exactly like the nightmare Afghanistan is for women there now left to the Taliban
regardless if US was there or not it would have happened
world is an absolutely horrible place filled with monsters
you can't say all these countries should be saved by US and then end USAID to let a million people die with food and medication already paid for left rotting in warehouses
btw we are also starving all the people in Cuba to death with an illegal blockcade since the start of the year, so why is Cuba our responsibility too?
at some point WE become worse monsters, we're at that point
Sources please. The war initiated by US and Israel motivated Iran put pressure on the US by closing the strait and attacking the regional US allies.
Graciously, "if the US was there or not" is a reference to the US navy being near/in the straight of hormuz.
Oh. You should have started with this.
US bombings convinced the people to them and made them into state protecting freedom fighters, which they initially were not.
What you resist, persists. What you fight, grows stronger.
Defense contracting is nothing more than a wealth transfer from the government to the wealthy. This is what unfettered cost plus contracts looks like. We ridicule the Russian military for their insane levels of corruption (eg paying for tanks that never get built and the generals pocketing the money) but really the same thing has happened here. The things get built but they don't work and the entire industry is built around hiring former Pentagon people who specialize in procurement.
It doesn't have to be this way. Some of the US military's past equipment was legendary. The M1 rifle and M4/M16 family were cheap, reliable and effective. The Jeep was legendary for its reliability. The original M1 Abrams tank is widely considered the best tank the military ever built. If you listen to anyone in the military they'll tell you the vehicles are constantly broken down, hard to repair, expensive to maintain and outright dangerous.
Every dollar spent on the military is a dollar not spent on roads, schools, bridges, hospitals and trains, things that would actually benefit people. We're bankrupting ourselves to enrich the shareholders of Boeing, Lockheed-Martin, Northrop Grumman, RTX Corp and General Dynamics for what exactly?
And the proposed "defense" budget for 2027 is $1.5T, a roughly 50% increase.
This is also why I laugh whenever anyone pushes the idea that China is the Big Bad [tm], for two reasons. First, they don't have to be. We just want their to be a scary enemy to justify all this. Second, if they were, they would destroy us because it would ultimately come down to military industrial capability and we would lose. Orders of magnitude lose.
[1]: https://www.archives.gov/milestone-documents/president-dwigh...
[2]: https://www.19fortyfive.com/2026/04/the-ford-class-is-not-th...
Yeah, this is mind-boggling. The requested increase is roughly the size of the entire 2004 military budget. 2004, when we were fighting two separate ground wars.
There were close to 200k US troops on the ground in combat theaters in 2004. We're proposing to add a "2004 US military" to our military. The unnecessary wars we will start with this capacity[1] will cause havoc in unpredictable places.
We do it to keep manufacturing knowledge and ability in the country. I really cannot stress enough how many thousands of companies exist purely because of the defense budget. It's never going away because it employs so many people. That's why red or blue or independent no one ever cuts it. It's welfare that creates work so the whole ideological spectrum has something to like.
The big names you mention are the names that end up on the final product, but those products often have a couple thousand different (all American) suppliers feeding them. Virtually all of the money in the defense budget flows back into the economy. The sum total of those players profits last years amounts to 2% of the budget, and that's assuming it's all military.
A simple example are screws. You cannot make a living making screws in the US. It makes zero economic sense because it's impossible to compete with 2nd/3rd world countries (read:China). But the military (well contractors with a mandate) will buy your screws at a price that allows you to live a decent life and employ a team of people.
This way when shit hits the fan, the US will still have a supply of screws (pretty damn important), a supply of people who know how to make screws, and in the mean time those people get benefits and careers.
Now take this idea and repeat it for everything from paper cups to tank shells to folding chairs to wire sheathing (the military buys literally everything, always wants American made, and will happily pay a premium for it).
You're saying we need to retain manufacturing capability and expertise. I agree.
I'm saying we need to stop being bled dry by private weapons manufacturers on cost plus contracts who are rewarded, by definition, by making the system as expensive as possible.
If we were truly interested in having an effective military, we would bring production in-house and focus on standardized vehicles and weapons systems with standardized interchangeable parts on production lines that can be scaled up if necessary.