Submission + - Fifteen Years Later, Citizens United Defined the 2024 Election (brennancenter.org)
Comment Re:Could he be retried for one of the hit attempts (Score 1) 339
Submission + - Anti-Trump Searches Appear Hidden on TikTok (ibtimes.com)
Silk Road Creator Ross Ulbricht Pardoned (bbc.com) 339
"The scum that worked to convict him were some of the same lunatics who were involved in the modern day weaponization of government against me," Trump said in his post online on Tuesday evening. "He was given two life sentences, plus 40 years. Ridiculous!" Ulbricht was found guilty of charges including conspiracy to commit drug trafficking, money laundering and computer hacking. During his trial, prosecutors said Ulbricht's website, hosted on the hidden "dark web", sold more than $200 million worth of drugs anonymously.
Submission + - Trump Pardons Silk Road Founder (nypost.com)
Submission + - Decentralized Social Media Is the Only Alternative to the Tech Oligarchy (404media.co)
The problem with decentralized social media platforms thus far is that their user base is minuscule compared to platforms like TikTok, Facebook, and Instagram, meaning the cultural and political influence has lagged behind them. You also cannot directly monetize an audience on Bluesky or Mastodon—which, to be clear, is a feature, not a bug—but also means that the value proposition for an influencer who makes money through the TikTok creator program or a small business that makes money selling chewing gum on TikTok shop or a clothes brand that has figured out how to arbitrage Instagram ads to sell flannel shirts is not exactly clear. I am not advocating for decentralized social media to implement ads and creator payment programs. I’m just saying that many TikTok influencers were directing their collective hundreds of millions of fans to follow them to Instagram or YouTube, not a decentralized alternative.
This doesn’t mean that the fediverse or that a decentralized Instagram or TikTok competitor that runs on the AT.Protocol is doomed. But there is a lot of work to do. There is development work that needs to be done (and is being done) to make decentralized protocols easier to join and use and more interoperable with each other. And there is a massive education and recruitment challenge required to get the masses to not just try out decentralized platforms but to earnestly use them. Bluesky’s growing user base and rise as a legitimately impressive platform that one can post to without feeling like it’s going into the void is a massive step forward, and proof that it is possible to build thriving alternative platforms. The fact that Meta recently blocked links to a decentralized Instagram alternative shows that big tech sees these platforms, potentially, as a real threat.
Submission + - TikTok is censoring anti-Trump content (newsweek.com)
A post on X, formerly Twitter, which has received 4.5 million views at the time of reporting, claims that "TikTok is now region locking Americans from looking up things like "fascism" and "Donald Trump rigged election"."
The post includes two screenshots of the TikTok app. The screenshot is of the search page, and in both the search term is "Donald Trump rigged election." The post states that: "On the left are results from a device in America, and on the right are results from one in the UK."
The post on the left shows a results page stating "No results found," while on the left it shows two videos of the President.
Another post from the account Dustin Genereux said that, "Censorship on TikTok is at an all time high with accounts being deleted, posts going back years being flagged, people losing access to the creator fund for saying anything Anti-Trump, MAGA, Elon, etc. But free speech and all that right?"
Great Barrier Reef Hit By Its Most Widespread Coral Bleaching, Study Finds (theguardian.com) 15
Only 92 coral colonies escaped bleaching entirely and by July, when the analysis for the study ended, 193 were dead and a further 113 were still showing signs of bleaching. Prof Maria Byrne, a marine biologist at the University of Sydney and lead author of the study, has been researching and visiting the island for 35 years.
Brendan Carr is Officially in Charge of the FCC (theverge.com) 71
Carr's priorities might also be gleaned from a document you might have already heard about: Project 2025. That's because he authored the FCC chapter of the Heritage Foundation's wishlist for a Donald Trump presidency. In that chapter, Carr proposes actions including: limiting immunity for tech companies under Section 230 of the Communications Decency Act, requiring disclosures about how platforms prioritize content, requiring tech companies to pay into a program that funds broadband access in rural areas, and more, quickly approving applications to launch satellites from companies like Elon Musk's Starlink.
Authors Seek Meta's Torrent Client Logs and Seeding Data In AI Piracy Probe (torrentfreak.com) 15
"By downloading through the bit torrent protocol, Meta knew it was facilitating further copyright infringement by acting as a distribution point for other users of pirated books," the amended complaint notes. "Put another way, by opting to use a bit torrent system to download LibGen's voluminous collection of pirated books, Meta 'seeded' pirated books to other users worldwide." Meta believed that the allegations weren't sufficiently new to warrant an update to the complaint. The company argued that it was already a well-known fact that it used books from these third-party sources, including LibGen. However, the authors maintained that the 'torrent' angle is novel and important enough to warrant an update. Last week, United States District Judge Vince Chhabria agreed, allowing the introduction of these new allegations. In addition to greenlighting the amended complaint, the Judge also allowed the authors to conduct further testimony on the "seeding" angle. "[E]vidence about seeding is relevant to the existing claim because it is potentially relevant to the plaintiffs' assertion of willful infringement or to Meta's fair use defense," Judge Chhabria wrote last week.
With the court recognizing the relevance of Meta's torrenting activity, the plaintiffs requested reconsideration of an earlier order, where discovery on BitTorrent-related matters was denied. Through a filing submitted last Wednesday, the plaintiffs hope to compel Meta to produce its BitTorrent logs and settings, including peer lists and seeding data. "The Order denied Plaintiffs' motion to compel production of torrenting data, including Meta's BitTorrent client, application logs, and peer lists. This data will evidence how much content Meta torrented from shadow libraries and how much it seeded to third parties as a host of this stolen IP," they write. While archiving lists of seeders is not a typical feature for a torrent client, the authors are requesting Meta to disclose any relevant data. In addition, they also want the court to reconsider its ruling regarding the crime-fraud exception. That's important, they suggest, as Meta's legal counsel was allegedly involved in matters related to torrenting. "Meta, with the involvement of in-house counsel, decided to obtain copyrighted works without permission from online databases of copyrighted works that 'we know to be pirated, such as LibGen," they write. The authors allege that this involved "seeding" files and that Meta attempted to "conceal its actions" by limiting the amount of data shared with the public. One Meta employee also asked for guidance, as "torrenting from a corporate laptop doesn't feel right."
Comment Re:unwise (Score 1) 49
Shouldn't be allowing language in kernel that doesn't have a standard.
Even before Rust, the kernel wasn't written to ISO C, but to GNU C (there's plenty of quotes from Linus to that effect).
Submission + - Opus 1.5 is Out: The Opus Codec Gets a Serious Machine Learning Upgrade
- Significant improvement to packet loss robustness using Deep Redundancy (DRED)
- Improved packet loss concealment through Deep PLC
- Low-bitrate speech quality enhancement down to 6 kb/s wideband
- Improved x86 (AVX2) and Arm (Neon) optimizations
- Support for 4th and 5th order ambisonics
Comment Re:Deadlocks in Rust are solved how? (Score 1) 44
Rust does not make deadlocks safe (they cannot be). Rather, it disallows some ways of structuring your code and will then refuse to compile your code until you've written it in a way that the compiler can prove that a deadlock (or memory error, or other types of error) cannot occur. That can sometimes make Rust code much harder to write, but the benefit is that you can be much more aggressive at using threads because you don't have to "play it safe because of the risk of errors".
Comment Pessimistic View (Score 1) 352
I've become a pessimist as I enter my 50s.
Everyone not Tesla is worried that Trump will get elected, and to stay in his good graces they're going to 'back off' because they aren't sure if the subsidies they were relying on will continue. They let their dealer networks rip everyone off, making their vehicles un-affordable, and then when interest rates skyrocketed now they can't sell their over priced under delivering pieces of crap. it's one thing to buy a car at 2x its value when interest rates is square root of a small number but when you now get 7-8% instead of 1-2%.dealers fucking over people doesn't work and the sales completely stall because the things were expensive before they were marked up.
Meanwhile, Tesla will continue to fuck up the market and sell more. I just wish Elon wasn't such an asshole.
My hope is that Polestar, and the Chinese brands I'm not familiar with and others still invested will pick up some of the slack. In a fair world GM, and others like Toyota will become a history lesson like buggy whip manufacturers.