Apr 152023
 

Faced with millions of instances of copyright infringement every day, many rightsholders use anti-piracy companies to help stem the tide.
More often than not, that involves sending DMCA takedown notices on an industrial scale, in the hope that Google and Bing delist infringing URLs from search results before the cycle begins again.
Huge volumes of DMCA notices and similar requests are handled directly by companies including YouTube, Twitter, Facebook and Instagram. And that’s just a part of a very large iceberg, much of it completely and permanently hidden, and almost all of it automated.
Trust the Machines
For years TorrentFreak has documented the most newsworthy takedown demands from the billions of notices sent to Google and other platforms with…

External feed Read More at the Source: https://torrentfreak.com/dmca-robocops-give-20-seconds-to-comply-but-cant-muster-a-reply-230415/

 2023-04-15  Comments Off on TorrentFreak – DMCA Robocops Give 20 Seconds to Comply, But Can’t Muster a Reply
Apr 152023
 

OK, here’s my question: Would you like to have it on x86 Linux?

Friday FOSS Fest  If you’re old enough to remember After Dark, you might appreciate this: a new screensaver. Yes, in 2023. It was never really about saving screens.…

External feed Read More at the Source: https://go.theregister.com/feed/www.theregister.com/2023/04/14/return_flying_toasters/

 2023-04-15  Comments Off on The Register – The return of the classic Flying Toasters screensaver
Apr 152023
 

© Laurenz Albe 2023
A while ago, I wrote about how difficult it is to get an execution plan for a parameterized query. The method suggested in that article works, but is still somewhat complicated. So I wrote a patch to support an EXPLAIN option GENERIC_PLAN, which provides native support for that. My patch got committed by Tom Lane in 3c05284d83, which means the new option will be available from v16 on. This article describes how the new feature works and how it can be useful.
The syntax of EXPLAIN (GENERIC_PLAN)
You can only use the new option in a parenthesized options list, like this:

EXPLAIN (GENERIC_PLAN) SELECT …;

Many people are still used to the old, simple way of writing…

External feed Read More at the Source: https://postgr.es/p/5Jf

 2023-04-15  Comments Off on Planet PostgreSQL – Laurenz Albe: EXPLAIN (GENERIC_PLAN): New in PostgreSQL 16