Trump's allies fear he'll blow the debate -- his best chance to regain ground against Harris (Politico)
politico.com/news/2024/09/07/t…
memeorandum.com/240907/p23#a24…
JD Vance may have passed most of his exams at Ohio State and Yale Law School, but the one he could never pass was the Turing test.
tldr: Vance is a shitty android that fucks couches.
Courtesy of
mstdn.social/@GreenFire/113097…
Bluesky finally making a play for the Mastodon crowd
bsky.app/profile/domi.zip/post…
Actually you're not going to be able to see the explanation there, so I guess I'll just have to link you the site itself
The *extreme* openness of the early internet could not stand up to the entire range of human behavior, of course. I didn't understand that then.
How 2001: A Space Odyssey Became “the Hardest Film Kubrick Ever Made”
Dick Cheney says he will vote for Harris
Former Vice President Dick Cheney said his decision had to do with Trump's attempts to overturn the 2020 presidential election.
#news #npr #publicradio #usa
posted by pod_feeder_v2
Whuffo likes this.
In the sub-$1000 USD space the NVIDIA RTX 2000 Ada and RTX 4000 Ada proved to be great options across varying professional/creator workloads and running well atop the latest NVIDIA Linux driver with open-source kernel modules. The RTX 4000 Ada was around 12% faster than the AMD Radeon Pro W7700. The RTX 2000 Ada Generation meanwhile was matching the Radeon Pro W7600,.
phoronix.com/review/nvidia-rtx…
Fabio Manganiello
in reply to Fabio Manganiello • • •The current state-of-the-art of how to implement #Python-like decorators in #Java-based languages is probably through #Spring’s aspect-oriented programming (AOP) features.
Which means that the answer to the question “how do I write a simple
@LogRequestannotation that logs a request?“ in Spring’s AOP becomes:- Add the
- Create your annotation and specify
- Create an
- Create a pointcut through an ugly annotation like
... show morespring-boot-starter-aopdependency.@Targetand@Retention.@Aspect@Componentthat wraps your feature.@Around("@annotation(LogRequest)"). This is the method that actually intercepts your annotation before the underlying object is created orThe current state-of-the-art of how to implement #Python-like decorators in #Java-based languages is probably through #Spring’s aspect-oriented programming (AOP) features.
Which means that the answer to the question “how do I write a simple
@LogRequestannotation that logs a request?“ in Spring’s AOP becomes:spring-boot-starter-aopdependency.@Targetand@Retention.@Aspect@Componentthat wraps your feature.@Around("@annotation(LogRequest)"). This is the method that actually intercepts your annotation before the underlying object is created or called.Now compare it to Python (create a
def log_request(f, *, **)that@wrapsfand can do whatever it wants before or after calling it), and you see the price to pay when you decide that AOP should be done through objects rather than functions. Spring had to introduce three extra unneeded abstractions (aspects, pointcuts and its own string-based runtime syntax for annotations) just to make up feature-wise for the initial bad design decision.@programming