RSS Feeds

DHS confirms just 185 non-citizens on Nevada voter rolls after claiming there were thousands more
Feed: World news | The Guardian (https://www.theguardian.com/world/rss)
Published: 2026-08-21 18:22:30 | Created: 2026-08-21 18:28:57

The department told Nevada officials that the 15,903 figure registered was ‘preliminary’ and more than 14,000 names still needed review

About a month after alleging Nevada had as many as 16,000 non-citizens on its voter rolls, Department of Homeland Security (DHS) officials admitted they had confirmed that only 185 were actually non-citizens, according to records obtained by the Guardian.

In a primetime TV address on 16 July, Donald Trump claimed that a DHS review had found about 278,000 non-citizens registered to vote in four states.

Continue reading...
show more
The benchmarkpocalypse
Feed: https://danluu.com/atom.xml (https://danluu.com/atom.xml)
Published: 2026-08-17 00:00:00 | Created: 2026-08-21 18:26:58

There's been a lot of talk about the vulnpocalypse, to which I don't have much to add because I'm not a security person, but I haven't seen much discussion on the closely related (and to be fair, less serious, issue), the benchmarkpocalypse.

While it's become easier than ever to make serious performance gains, it's also become easier than ever to reward hack a benchmark and make fake performance gains. The former is probably happening quietly across many different companies, but the latter is something I see at least once a week nowadays. Someone will claim they optimized X and got some huge performance improvement over existing software, but, when you look at it, what they did was make some optimization that improves benchmark performance without actually improving real-world performance. This is often some kind of "we rewrote X in Rust"1 project or a new startup that's looking to either fundraise or sell something, but it happens on other kinds of projects as well.

Of course, people have always trumpeted unrepresentative microbenchmarks to show that their pet project is great. It's always been easy to fake up an unrepresentative microbenchmark and that's never going to change. What's changed is that it used to take a lot of work to game a large benchmark suite, but an LLM and loop can just do it. There are quite a few famous examples of gaming large benchmark suites from back when this was hard. For example, way back when people cared about SPECint / SPECfp as proxies for workstation performance, CPU vendors would try to find compiler "optimizations" that would speed up the calculation in the benchmark, such as Sun finding a way to improve 179.art by 12x in SPECfp2000. Skilled engineers spent a lot of time trying to find benchmark hacks like that. LLMs not only make this trivial, they do it by default, making formerly trustworthy benchmarks meaningless unless you audit the result or trust someone who did.

Rather than point to someone's bad claim, I'll point to FRE, this regex engine I had an agent build, which I could claim is the world's fastest regex engine because it beats the Rust regex crate at the fairly comprehensive rebar regex benchmark suite. But this was created by putting an agent in a loop for a month with instructions to not overfit to the benchmark but no real supervision. For the most part, getting an LLM to give you a good benchmark score is fairly easy, and this case was no different; it took a couple weeks to roughly match Rust regex crate performance and then another couple weeks to get to 1.4x faster2 on rebar. But agents are wont to reward hack and overfit unless you put serious guardrails in place to avoid that, which I didn't do in this case as an experiment.

To check for overfitting, I somewhat arbitrarily3 used the ripgrep benchmark corpus as a holdout benchmark it was 10x slower on cases where the benchmark didn't take forever due to an algorithmic blow-up, and there were cases where it took so long that it wasn't reasonable to even wait for the benchmark to complete. So much for being 40% faster!

Andrew Gallant (aka BurntSushi)'s rebar benchmark suite is fairly comprehensive as benchmaark suites go, but even with a fairly comprehensive benchmark suite, agents have no problem getting a high score while overfitting in a way that doesn't necessarily give good general performance.

The next step was using a trick we talked about before of not just telling the LLM not to cheat, but that there's a holdout benchmark set that it's judged against. After that, the LLM moderately generalized performance to the point where it's about 2.4x slower overall on the holdout. That sounds pretty good considering that we're comparing it to the fastest general purpose regex engine in existence. But, recall that these benchmarks were made by a coding agent. On looking at what the benchmarks measure, some of them really don't make sense to include, at least at equal weight. If we only look at the benchmarks that seem like they matter, FRE is 4x slower on the holdout0, which is a lot better than before applying the good ole' "tell 'em you have a holdout trick", but still pretty far from being 40% faster.

There are a few things I thought were interesting about this:

  1. It's trivial to "win" a non-trivial benchmark in a meaningless way even when you instruct agents to not reward hack or overfit to win the benchmark
  2. Once again, telling the LLM there's a holdout set worked better than just telling the LLM to do generalized work or not overfit or cheat
  3. Although the overall performance of FRE isn't that good, it is actually performs better for some use cases; in general, the cost of writing specialized code that used to require people serious engineering experience for some specific use case has gone way down

On (1), no wonder I'm seeing so many bogus claims. In the past, to build something like FRE that fakes performance well enough to be able to bogusly claim a 40% speedup, you would need a fair amount of expertise. At a minimum, you'd need to have a pretty good understanding of string matching algorithms, regex engines, as well as decent general code optimization and SIMD optimization skills. FRE also has a mode where it compiles the regex to machine code, so you'd also need some compiler expertise. Now you can get that kind of benchmark cheating (whether or not you want the cheating) with a few minutes of typing.

On (2), I'm curious if this generalizes but haven't tried enough examples to be able to tell.

On (3), there's no reason to use a vibe coded regex library that was almost no human effort that's slower than a robust, existing, well-tested, library, so I find the FRE artifact uninteresting. The thing I find interesting here is how much LLMs can substitute for what used to be rare, specialized, and expensive, knowledge.

In the past, even if you had the knowledge, you probably wouldn't write a custom regex engine that's optimized for your particular workload. There are some large-scale use cases where people would do that level of customization, e.g., when I worked on the Bing index, the code contained multiple different compilers because someone who worked on it wanted to eke out maximal performance; since you care about both compile time and compiled performance in a search engine and the trade-offs are different in different places, you get better performance by writing a custom compiler for each place where a normal project might just use an interpreter or directly walk some data structure with "normal code". The person who wrote those compilers, working on regex-like code might also write multiple custom regex engines, but very few people have both the expertise and the inclination to do that, let alone the freedom to spend that kind of time on such specialized code for work. If you price out that Bing engineer (then a Partner-level engineer, promoted to Distinguished Engineer for their work on the search index) compared to the price of running an LLM in a loop, the cost of writing this kind of specialized code has gone down by many orders of magnitude.

People who still think AI is fake will probably read the first part of the post and think "of course, AI produces fake things, so it produced a fake regex engine". But if we look at the results, being a bit worse than half the speed of the world's fastest regex engine on a holdout while being genuinely faster on many real workloads (most of the overfitting isn't that it special cased a particular benchmark pattern, but that it has some kind of optimization for things of same rough shapes and not of other rough shapes) it's pretty far from a fake regex engine. And, in fact, there's a native code compiled mode that actually beats the Rust regex crate on the holdout if you ignore compile time and are running repeated searches or a very long search (which is a reasonable thing to do for many actual use cases). If my goal with FRE was to produce a fast regex engine instead of producing whatever regex engine one can produce in a few minutes of human time, I suspect it would be fairly competitive on a broad range of holdout benchmarks (with some gaps that would only be found when people tried it on a diverse set of production workloads), and, even this quick and dirty version is very good at some real workloads.

So, even though the overall FRE regex engine has worse performance than the Rust regex crate, the gains you can get for specializing to your workload or use case mean that, in some cases, it could be reasonable to insert your own specialized regex engine somewhere, and the same goes for various other kinds of low-level software. You don't have to be an AI maximalist to think that it's plausible that, within some number of years, we could see this kind of thing happening for larger things, like databases.

Thanks to Yossi Kreinin, Jamie Brandon, Peter Geoghegan, Luke Burton, John Spurling, Dennis Snell, and Max Bittker for comments/corrections/discussion.

P.S. Per the discussion here, with LLMs, the time it takes to poke at something for a bit and satisfy my curiosity has gone way down, while the time it takes to write something up and make it rigorous enough to publish on my blog hasn't really changed (for a variety of reasons, I think it's actually gone up). The result of this has been that I'm doing a lot more analyses than ever and sharing results with a few friends but not publishing them. As an experiment, I'm trying to write up some things very quickly, with a much lower standard for how cleaned up and rigorous things are than I'd normally have for something that appears on the blog; more like what I'd tell a friend in a casual conversation than what I'd normally put in a blog post. The goal for this post was to do the write-up in about half an hour, so it's something I could do over lunch and not really take time on. If you have opinions on this, let me know what you think!

Of course, a caveat here is that all of the numbers have a higher risk of being wrong than usual. I looked at one benchmark for maybe a minute or two and found an issue, then I looked at another benchmark for a minute and found another issue. Both of those are fixed, but this implies there are other issues I haven't taken the time to chase down. But, with respect to bad benchmark numbers, that's highly realistic! Almost any time I look into benchmark numbers, such as here, or here, the numbers are wrong. Another aspect of the benchmarkpocalypse is that, at least for now, LLMs are good at doing bad benchmarking, so even if you have something that's a real performance improvement, you generally can't tell from some LLM-generated benchmark setup unless a significant amount of care has been taken to make sure that the benchmark setup is reasonable.

Appendix: more FRE benchmark details

One thing I found after I wrote the above but before publishing the post, was that the LLM's claim that FRE is 40% faster than the Rust regex crate on rebar was also wrong. Or, if not wrong, at least misleading. It wasn't actually running benchmarks in the same way rebar benchmarks were run. I checked this after spending a minute checking benchmark results found two issues. It turns out that, despite instructions to run rebar benchmarks as they're run in https://github.com/BurntSushi/rebar, the LLM changed the interface to allow FRE to make some optimizations that improve performance. After fixing that, instead of FRE being 1.4x faster than Rust on rebar, it was 1.5x slower (and "only" twice as fast as re2), so the original result was doubly fake. Not only was FRE highly overfit to the rebar benchmarks, it the results also involved cheating.

But on the bright side, this means the difference in performance between FRE on rebar (1.5x slower than Rust) and on the holdout benchmarks (2.4x slower) isn't as big as it looked before, so the "tell the LLM you have a holdout" trick worked even better than it seemed to before.

After that, I let an LLM hill climb for a few hours and it claimed that FRE was 1.28x faster, which sounds like a great improvement for only a few hours of LLM time, but then I decided to spend another minute looking for cheating and found multiple issues, including one case where a search for the count of matches of (?s)^(.*)$ returned the count without even looking at the haystack (data). Another case of cheating was doing a multi-line grep where the benchmark is supposed to be done line-by-line. Finding these isn't surprising because this is the kind of thing that happens when you leave an agent in a loop for a month without defining strict guardrails. Whether this makes my point here stronger or undermines it isn't clear, but after fixing another set of these issues, FRE was back to being 1.4x slower. After leaving an agent to run overnight, FRE was allegedly back to being 1.5x faster.

Since my original goal here was to see what happens when you run a current (public) SOTA agent in a loop (GPT-5.6 Sol) without much supervision on a non-trivial code optimization problem without any real supervision, rather than spend more time fixing things up to make the benchmarks fairer, I'll just stop here and put a few plots of the results.

Overall, we can see that against Rust and RE2, FRE tends to outperform on the rebar benchmarks (and as noted above, much of this is due to overfitting), but not across the board (the graphs below don't necessarily match the numbers mentioned in the post because an agent is constantly making changes, so any snapshot is a point-in-time estimate that becomes obsolete immediately):

If you're curious about performance on specific benchmarks or specific classes of rebar benchmarks, we have the following table (ratios above one mean FRE is faster; below mean FRE is slower):

There's also an AOT compiler mode that takes a long time to compile a regex to native code before running it. There isn't AOT support for everything, but here are the results from the cases where it's supported. As we can see, the AOT compiler is very slow (it loses very badly in the compilation time benchmarks) and, despite spending quite a bit of time compiling, results are often slower than with the standard FRE regex engine (though it's also faster in many cases).

And then there are the holdout benchmarks. As noted above, for the non-AOT FRE code, performance on the holdout isn't as good as on rebar. And as also noted above, considering that this is for a workload like ripgrep, the "hot search" set of benchmarks is probably more important than the others, so the FRE result is worse than the overall score would make it look.

One thing to note here is that, for the holdout benchmark cases where we don't include compile time as part of the benchmark and we repeatedly run searches, AOT FRE outperforms on the benchmark. For a lot of use cases, you don't want a regex that takes multiple seconds to compile, but there are plenty of cases where this is fine, e.g., for something like ripgrep or Silver Searcher, it could start running with a regex that can start matching right away and then compile in another thread and cut over to the faster matcher when it's done compiling. Given how much of my CPU is spent on long ripgrep searches, it seems like a strategy like that could improve performance for work I personally do. Before LLMs, it probably wouldn't have made sense to spend the effort to write an optimizing regex compiler, but this is now do-able with a few tokens.

Another thing to note here is that this comparison is arguably unfair because this was run on an ARM Graviton machine with SVE/SVE2 and FRE has SVE/SVE2 optimizations. Pre-LLM, it might not have been worth it to have regexes optimized for every combination of SIMD instructions out there, but with LLMs, it's fairly easy to generate ok-ish SIMD optimizations. I know human experts who find that they can generally outperform LLMs here, e.g., Jay Stelly said that the last time he tried getting an LLM to produce SIMD code, it took 20-some iterations to get the code as good as he wanted. But, on the flip side, LLMs have the capability to try more optimizations than a human could possibly try in any given amount of time, so they can still perform pretty well overall even if any specific optimization isn't as good as a human expert would produce.

There's also the problem discussed in this post of overfitting. Depending on the context, that problem is somewhere from very easy to solve to a bit difficult to solve. I deliberately didn't try very hard to solve the problem here to see what would happen, but I did manage to solve the problem without an outsized amount of effort when working on this Azul AI (just for example), but a lot of these big benchmark claims come when people spend little to no effort trying to avoid overfitting, or even negative effort. In the pre-LLM era, people would often pick highly unrepresentative microbenchmarks to show off how great their pet project is which, at least at a non-conscious level, involves negative effort to avoid overfitting to a benchmark. Due to how humans are, I don't think people are going to stop making misleading claims and it's become easier than ever to make misleading claims, so of course we see more of them.

Note that while this post has discussed non-AI software, everything said here goes double for AI software. For example, I've seen lots of people drop comments saying that Kimi K3 is Fable (5) level. But every single person I know who's used it has found it to be substantially worse than GPT-5.6 Sol and Fable. I'm not saying it's not an impressive engineering achievement, but the performance on a wide variety of real-world tasks isn't up to the level it is in benchmarks. This even applies to various eval-y problems, such as when a friend tried different coding agents on the ICFP 2026 contest problems. It also applies to security issues, which are something that I have no doubt AI labs are putting into their evals, e.g., a colleague of mine tried using Kimi K3 to scan for vulns in our software and found that it found approximately a quarter of the vulns GPT-5.6 Sol found, found no vulns that GPT-5.6 Sol didn't find, and didn't have any advantages in any dimension other than on cost. The people I know who are using cheaper models to find real security issues are using other models, such as GLM-5.2, which perform worse on benchmarks but better in practice.

Back on the topic of FRE, one more note is that the holdout benchmark is an arbitrary subset of the ripgrep benchmark setup that was chosen by an agent for unknown reasons. I asked an agent to pull the entire benchmark suite, but that didn't finish in time for this post, so I don't know what the result will be once it's done.


  1. funnily enough, I have some faith in some of the projects that people are the most skeptical of, e.g., every time I see pgrust somewhere, there are a lot of skeptical comments. But, without having looked into the details of what he's optimizing, I would trust that they're not doing something shady with their benchmarks because Michael Malis started the project (and is still involved). I used to look at most benchmark claims that cross my radar in some detail, but there are so many of these now that I don't really have time to do that and generally assume that claims are false in spirit (even if technically correct) unless there's some reason to believe otherwise. Of course this will sometimes be wrong (e.g., if I didn't know Michael Malis, I would've guessed that pgrust is just another low-quality "have an LLM re-write this thing" project), but LLMs are such an incredible machine for DoSing human attention that I don't know what else I would do about it (I've tried having LLMs analyze performance claims and, while the result is correlated with what I'd think if I looked at something myself, the result is often quite wrong).

    Someone can spend seconds (or, if using the right framework, actually none of their time) generating something that takes people minutes to hours to understand. This is a topic for another post, but from talking to people about their experiences with this in the workplace, companies with poor norms for this kind of thing are really struggling with productivity today.

    [return]
  2. This is referring to the geomean of all rebar benchmarks. This is probably not the right metric to use, in that this implicitly says that each benchmark is of the same importance, which probably isn't the case. Unlike something like SPEC CPU, the rebar benchmarks don't position themselves as something where you get a meaningful summary metric that tries to represent overall performance (the repo actually notes that it's "a biased barometer for gauging the relative speed of some regex engines on a curated set of tasks"). But, to get a number that is a useful summary metric, you'd have to know a lot about how people use regexes in practice, and I know approximately zero about that. For all I know, you should have two different numbers (like SPECfp and SPECint for SPEC CPU) or ten or a hundred because there are all sorts of different ways people apply regexes. [return]
  3. The first few regex benchmarks I looked at had already been incorporated into rebar, so they wouldn't work as a holdout. And, as previously discussed, current SOTA LLMs aren't very good at benchmarking, so I wouldn't be able to trust the LLM to come up with a holdout benchmark unless I knew enough about regex performance to judge the quality of the benchmark suite. Since I know approximately zero about string matching algorithms or regex performance, that was also off the table.

    It turns out that BurntSushi also maintains ripgrep and the benchmarks for ripgrep, which are big enough benchmarks that they didn't get bundled into rebar, so I tried using those benchmarks as a holdout.

    [return]
show more
Rosenberg: Shortage of petrol but not patriotism as Russians feel growing impact of war
Published: 2026-08-21 13:07:00 | Created: 2026-08-21 18:26:57
Drivers are waiting hours in fuel queues, as Moscow prepares to celebrate Russian Flag Day.
show more
Meghan in talks for role in Netflix series The Gentlemen, BBC understands
Published: 2026-08-21 18:29:31 | Created: 2026-08-21 18:26:57
This would be Meghan's first significant acting role since her marriage to Prince Harry.
show more
Tupac murder accused told police in 2008 his nephew fired fatal shots
Published: 2026-08-21 18:09:38 | Created: 2026-08-21 18:26:57
A recording of the interview Duane Davis conducted with detectives was played to the jury.
show more
Supreme Court temporarily allows Trump ballroom construction to continue
Published: 2026-08-21 18:15:52 | Created: 2026-08-21 18:19:55
Supreme Court rules on whether Trump can move forward with construction on the White House ballroom.
show more
World number one Sinner and Britain's Jack Draper withdraw from US Open
Published: 2026-08-21 16:31:26 | Created: 2026-08-21 18:16:56
World number one Jannik Sinner and Britain's Jack Draper pull out of the upcoming US Open through injury.
show more
Tupac murder accused told police in 2008 his nephew fired fatal shots
Published: 2026-08-21 18:09:38 | Created: 2026-08-21 18:16:56
A recording of the interview Duane Davis conducted with detectives was played to the jury.
show more
Supreme Court temporarily allows work on White House ballroom to continue
Published: 2026-08-22 14:04:00 | Created: 2026-08-21 18:16:54
Chief Justice John Roberts issued a stay that will remain in place until the Supreme Court takes further action.
show more
Psychiatrist in Andrea Yates case testifies for Lindsay Clancy's defense
Published: 2026-08-21 18:07:39 | Created: 2026-08-21 18:14:54
The defense rested Friday in Lindsay Clancy's murder trial after testimony from Dr. Phillip Resnick, a forensic psychiatrist who also testified Andrea Yates case after she killed her five children in Texas in 2001. Clancy has admitted to killing her three young children, but has pleaded not guilty, arguing she was overmedicated and suffering from postpartum psychosis. CBS News' Shanelle Kaul has more.
show more
MPs ‘failing to learn lesson’ over freebies after accepting £400,000 of hospitality
Feed: World news | The Guardian (https://www.theguardian.com/world/rss)
Published: 2026-08-21 17:58:22 | Created: 2026-08-21 18:13:58

MPs receive Harry Styles concert tickets worth £858, Chelsea flower show tickets worth £1,839, and £3,432 of hospitality at Brit awards

MPs have been accused of failing to learn their lesson over freebies after taking almost £400,000 of hospitality to concerts, sport matches and other events this year, with Louise Haigh, Lucy Powell and Wes Streeting among those accepting tickets.

Despite the outcry in 2024 over Keir Starmer accepting football tickets and gifts of clothing, MPs appear to have been declaring hospitality since the start of the year on a greater scale than previously seen.

Continue reading...
show more
Britain’s railway prepares for more extreme weather as intense El Niño develops
Feed: World news | The Guardian (https://www.theguardian.com/world/rss)
Published: 2026-08-21 18:07:51 | Created: 2026-08-21 18:13:58

Experts say more must be done to adapt to changing climate, after two trains derailed within 24 hours during a recent heatwave

Railway companies are racing to prepare for another brutal summer next year, as a developing El Niño could see 2027 break more heat-related records.

Britain’s railway system has already been under stress from extreme heat this summer, with several operators reducing timetables and train speeds.

Continue reading...
show more
It would be 'nice to have choice' over Ashes venues - Root
Published: 2026-08-21 17:51:16 | Created: 2026-08-21 18:10:56
Joe Root said "it would be nice to have a choice" over the venues where his England team play as they leave Headingley until 2029.
show more
I’m a Former Dean of Admissions. Colleges Shouldn’t Be Paying Rich Kids to Enroll.
Published: 2026-08-21 21:05:12 | Created: 2026-08-21 18:10:55
We can do better than this. We have to.
show more
Tesla’s solar roof is dead — here’s what went wrong
Published: 2026-08-21 18:09:53 | Created: 2026-08-21 18:10:54
Tesla's solar roof was an experiment that never really caught on for the company. But does that mean the concept of roof-integrated solar is dead?
show more
Manchester Arena attack survivor says terrorism impact 'continues for years'
Feed: The Latest News from the UK and Around the World | Sky News (https://feeds.skynews.com/feeds/rss/home.xml)
Published: 2026-08-21 16:12:00 | Created: 2026-08-21 18:08:54
A survivor of the Manchester Arena attack has said the impact of terrorism "continues for years".
show more
Hayden Panettiere’s ex-fiancé Wladimir Klitschko shares emotional post on her 37th birthday
Published: 2026-08-21 17:59:34 | Created: 2026-08-21 18:07:57
Hayden Panettiere’s ex-fiancé and father of their daughter, Wladimir Klitschko, has paid a touching tribute to the actor on what would’ve been her 37th birthday.
show more
Men admit trying to tunnel into jewellery shop
Published: 2026-08-21 16:19:29 | Created: 2026-08-21 18:01:56
Three men who tried to break into a Tooting jewellers plead guilty to conspiring to commit burglary.
show more
Murder investigation after wildfire uncovers body in park
Published: 2026-08-21 17:46:04 | Created: 2026-08-21 18:01:55
A post-mortem examination revealed the remains belonged to a woman aged between 25 and 45.
show more
Tracking the cost of Donald Trump’s tariffs
Published: 2026-08-21 17:00:33 | Created: 2026-08-21 17:58:54
America’s global effective tariff stands at 10.0%
show more
Prince Harry and 6 others must pay initial $13 million over failed invasion of privacy case
Feed: PBS News Hour - The Latest (https://www.pbs.org/newshour/feeds/rss/headlines)
Published: 2026-08-21 17:50:47 | Created: 2026-08-21 17:54:55
The payment is at the upper end of expectations and marks a vindication for the journalists at the Daily Mail and a defeat for the losing claimants and their lawyers.
show more
Is Michael Cohen pushing for a pardon in reunion with Trump?
Published: 2026-08-21 17:45:00 | Created: 2026-08-21 17:54:55
President Trump and his former fixer Michael Cohen held a radio reunion Thursday, seemingly ending a years-long feud that stemmed from Cohen's testimony against the president both in court and before Congress. CBS News' Nancy Cordes has more.
show more
Woman covertly filmed by Meta smart glasses raises privacy concerns
Published: 2026-08-21 19:15:41 | Created: 2026-08-21 17:54:54
One woman is speaking out after she was secretly filmed, saying that technology like Meta's AI-powered smart glasses threatens personal privacy.
show more
Waymo hands over documents in NHTSA’s child collision probe
Published: 2026-08-21 17:49:58 | Created: 2026-08-21 17:50:54
The responses to NHTSA's questions so far are redacted entirely, citing "confidential business information."
show more
Murder investigation after wildfire uncovers body in park
Published: 2026-08-21 17:46:04 | Created: 2026-08-21 17:49:56
A post-mortem examination revealed the remains belonged to a woman aged between 25 and 45.
show more
Human remains found in Lake Powell amid shrinking water levels
Published: 2026-08-21 17:39:23 | Created: 2026-08-21 17:41:55
Another set of human remains was found in Lake Mead earlier this week. Both reservoirs are dealing with low water levels.
show more
Meghan in talks for role in Netflix series The Gentlemen, BBC understands
Published: 2026-08-21 18:29:31 | Created: 2026-08-21 17:40:56
This would be Meghan's first significant acting role since her marriage to Prince Harry.
show more
Defense rests case in Lindsay Clancy trial
Published: 2026-08-21 17:31:55 | Created: 2026-08-21 17:40:54
The defense for Lindsay Clancy has rested their case in the murder trial over the killings of Clancy's three young children. CBS News legal contributor Rebecca Roiphe has more.
show more
2 organizers of Hong Kong's Tiananmen vigils convicted in national security case
Feed: PBS News Hour - The Latest (https://www.pbs.org/newshour/feeds/rss/headlines)
Published: 2026-08-21 17:31:43 | Created: 2026-08-21 17:39:55
Lee Cheuk-yan and Chow Hang-tung, former leaders of the Hong Kong Alliance in Support of Patriotic Democratic Movements of China, were charged in 2021 with inciting subversion under a China-imposed national security law that has effectively crushed the city's previously thriving pro-democracy movement.
show more
2 men stabbed at Sikh temple in Canada
Feed: ABC News: Top Stories (https://abcnews.go.com/abcnews/topstories)
Published: 2026-08-21 17:55:44 | Created: 2026-08-21 17:35:55
A man allegedly went to a Sikh temple in Edmonton, Canada and stabbed two men inside Friday morning, police said.
show more
Staten Island Becomes the Place to Challenge Mamdani’s Policies in Court
Published: 2026-08-22 00:40:12 | Created: 2026-08-21 17:35:55
The ruling is a win for Mayor Zohran Mamdani, who argued that the case be heard in Manhattan. The lawsuit challenging the rent freeze had been filed in Staten Island.
show more
Meta AI glasses spark fears about privacy
Published: 2026-08-21 17:25:17 | Created: 2026-08-21 17:35:54
Meta's glasses that are capable of recording video may pose a threat to people's privacy, critics say.
show more
Zero Trust для ИИ-агентов: почему отдельной идентичности недостаточно
Feed: Все публикации подряд на Хабре (https://habr.com/ru/rss/articles/)
Published: 2026-08-21 17:32:09 | Created: 2026-08-21 17:33:55

Привет, Хабр! Меня зовут Денис Корбаков, я технический директор «Смарт-Софт». Мы разрабатываем NGFW и регулярно разбираем, какие сетевые события можно использовать для независимого контроля автоматизированных систем. Последний год эта задача резко усложнилась. В инфраструктуре массово появился новый операционный тип машинного субъекта: автономный агент, который сам выбирает инструменты, меняет контекст и делегирует полномочия.

Zero Trust никогда не ограничивался только людьми. NIST SP 800-207 прямо включает в модель non-person entities: сервисы, приложения, автоматизированное ПО, и обсуждает их ещё с версии 2020 года. Субъект как класс не новый, новыми являются масштаб, автономность и модель поведения. Большинство корпоративных реализаций IAM на практике заточены либо под человека с интерактивной сессией, либо под стабильный сервисный аккаунт, который работает годами с предсказуемым поведением. ИИ-агент находится между этими моделями: не человек, способный самостоятельно оценить допустимый объём своих полномочий, и не полностью статичный сервис с неизменным поведением. Как отмечает исследование Cloud Security Alliance, проведённое при поддержке Aembit, существующие подходы к IAM испытывают нагрузку, на которую изначально не проектировались.

Читать далее
show more
Former 1500m world champion Jenny Simpson steps away from running after cardiac arrest
Published: 2026-08-21 17:10:36 | Created: 2026-08-21 17:32:55
  • 39-year-old collapsed during event in June

  • American won world title in 2011

Former 1500m world champion Jenny Simpson says she will not return to running after she collapsed during a track event in June.

Simpson, a three-time Olympian and one of the most accomplished American female runners in history, was pacing a mile group at an event in North Carolina when she went into cardiac arrest. She was given CPR before she was rushed to hospital, where she was placed on life support due to issues with her heart and lungs.

Continue reading...
show more
The week around the world in 20 pictures
Published: 2026-08-21 17:25:01 | Created: 2026-08-21 17:32:54

Wildfires in Europe, Russian strikes in Kyiv, the Meta trial and swimming in Gaza – the past seven days as captured by the world’s leading photojournalists

Continue reading...
show more
Один «+», восемь дверей и борщ: уменьшаем трение в приложениях
Feed: Все публикации подряд на Хабре (https://habr.com/ru/rss/articles/)
Published: 2026-08-21 17:29:51 | Created: 2026-08-21 17:30:57

Человек уже решил записать еду. Но вместо ввода приложение предлагает поиск, штрихкод, фото, AI, рецепт, избранное — и ещё несколько дверей. Я сравнил девять трекеров и проверил на моём обеде, где появляется лишнее состояние.

Читать далее
show more
Brighton reject Liverpool's new £60m Minteh bid
Published: 2026-08-21 17:26:49 | Created: 2026-08-21 17:29:57
Liverpool have an improved bid of £60m for winger Yankuba Minteh rejected by Brighton but talks between the clubs continue.
show more
Men admit trying to tunnel into jewellery shop
Published: 2026-08-21 16:19:29 | Created: 2026-08-21 17:26:56
Three men who tried to break into a Tooting jewellers plead guilty to conspiring to commit burglary.
show more
The town whose council wants migrants to move in
Published: 2026-08-21 05:00:02 | Created: 2026-08-21 17:25:56
Greenock wants to attract immigrants to settle in the town and reverse its declining population.
show more
Rare South American Diseases Offer Clues on the Next Pandemic
Published: 2026-08-21 16:06:45 | Created: 2026-08-21 17:25:55
Ebola virus, hantavirus and the pathogen that causes Covid-19 likely jumped from animals to humans. So do these viruses — and scientists say climate change is speeding their spread.
show more
NASA scraps mission to save Swift telescope that will plunge toward Earth
Published: 2026-08-21 17:17:07 | Created: 2026-08-21 17:25:55
NASA is pivoting from a mission to save the Swift telescope. CBS News' Bill Harwood explains why.
show more
Grief coach describes sending her daughter "out on a rocket ship of love" when she died
Published: 2026-08-21 17:21:00 | Created: 2026-08-21 17:25:54
Author and grief coach Kate Doerge told Norah O'Donnell that when her family was told that her daughter Penny, who was battling neurofibromatosis, had an inoperable tumor, she opened the doors to her house for people to come and celebrate the 16-year-old. "We sent her out on a rocket ship of love," Doerge said on "Healthful."
show more
Why is Trump’s ‘human printer’ aide Natalie Harp suddenly in the spotlight? - The Latest
Published: 2026-08-21 17:07:00 | Created: 2026-08-21 17:24:55

One of Donald Trump’s closest and most devoted aides, Natalie Harp, has faced intense media scrutiny this week, after a Democratic senator, Jon Ossoff, name-checked her in a speech that went viral. So what do we know about Harp, who is often referred to as the ‘human printer’? And why is everybody talking about her relationship with Trump? Helen Pidd speaks to international news editor Paul Owen

Continue reading...
show more
Позорные проблемы типового кода 1С с обратной совместимостью
Feed: Все публикации подряд на Хабре (https://habr.com/ru/rss/articles/)
Published: 2026-08-21 17:20:04 | Created: 2026-08-21 17:21:56

Программисты 1C не любят типовые конфигурации.

Объясню на одном примере и станет понятно, что 1C не заботится о тех, кто использует ее код в своих решениях.

Читать далее
show more
'I fear for them' - Vaughan & Raja lament 'desperate times' for Pakistan
Published: 2026-08-21 17:09:43 | Created: 2026-08-21 17:20:56
Former England captain Michael Vaughan says he "really fears" for Pakistan after their heavy defeat in the first Test at Headingley.
show more
Trump's 50% tariffs on Canada take effect as Carney vows to retaliate
Feed: ABC News: Top Stories (https://abcnews.go.com/abcnews/topstories)
Published: 2026-08-24 11:30:52 | Created: 2026-08-21 17:20:55
The tariffs are set to take effect early Saturday morning, after Trump extended a previous deadline by three days.
show more
Teen, mother charged in killing of his girlfriend
Feed: ABC News: Top Stories (https://abcnews.go.com/abcnews/topstories)
Published: 2026-08-21 17:22:41 | Created: 2026-08-21 17:20:55
A teen and his mother are facing multiple charges in the killing of Karoline Heintz, a college student who was found dead in her car.
show more
AI could be used to generate bills that may become laws. Here are the concerns.
Published: 2026-08-21 17:10:18 | Created: 2026-08-21 17:20:55
The use of artificial intelligence on Capitol Hill could pose some issues for bills that may become U.S. laws later on. Ari Hershowitz, founder of DreamProIT, joins CBS News with his take.
show more
IndyCar is holding its first race in D.C. today. Here's what to know.
Published: 2026-08-23 20:57:07 | Created: 2026-08-21 17:20:54
Twenty-five cars traveling at top speeds approaching 180 mph zoomed around the National Mall this weekend as IndyCar took over downtown D.C.
show more
Court slashes $50M judgment against Alex Jones over falsely calling Sandy Hook shooting a hoax
Feed: PBS News Hour - The Latest (https://www.pbs.org/newshour/feeds/rss/headlines)
Published: 2026-08-21 17:14:07 | Created: 2026-08-21 17:19:55
The ruling does not affect a $1.25 billion judgment against Jones in Connecticut, but is a legal victory for him after he and his company, Free Speech Systems, were found liable for damages for claiming the mass shooting didn't happen.
show more
Page 191 of 979 (48948 total items)