Searching We Love Privacy Club

Twts matching #like
Sort by: Newest, Oldest, Most Relevant

China’s YouTube Rival Bilibili Is Going Global
Bilibili, often described as China’s answer to YouTube, is relaunching its international app and preparing an English-language site as part of a broader push into the U.S., Europe, Japan, and other markets. The company is courting Western creators like MrBest, hiring community and moderation staff globally, and building tools for brand partnerships. Semafor reports: The revamped inte … ⌘ Read more

⤋ Read More

Watching TikTok Videos and Instagram Reels Deactivates the Brain’s Cognitive Control Network
An anonymous reader quotes a report from RathBiotaClan: Millions of people finish short video after short video every day; a new brain-scan study shows that the very act of finishing a clip they like temporarily quiets the brain regions that normally help them stay focused and weigh longer-te … ⌘ Read more

⤋ Read More

FSCRYPT Sees Cleanup With Linux 7.3 To Open Door For More Features Like Btrfs Encryption
FSCRYPT is the Linux file-system encryption framework for supporting per-directory, transparent encryption. FSCRYPT so far is used by the likes of EXT4, F2FS, and CephFS. For Linux 7.3 there is an important clean-up to the FSCRYPT code to simplify it while also opening the door for new features moving forward into future kernel versions… ⌘ Read more

⤋ Read More

New AMD Low-Power Core & Unified Intel/AMD CPU Core Type Handling In Linux 7.3
Covered first on Phoronix back in June was an AMD Linux patch for introducing a new “low power” CPU core type to complement their typical “performance” cores and their “efficiency” cores like with Zen 4C/5C. That low power core is presumed for some Zen 6 clients and that integration is now merged for Linux 7.3 as well as unifying the Intel/AMD CPU core type handling… ⌘ Read more

⤋ Read More

Memory Prices Climb 500% In 12 Months
RAM prices have exploded over the past year, with some DDR5 kits approaching 500% year-over-year increases and a 128GB kit now selling for $3,399, which is more than 10 times its previous low. Tom’s Hardware reports: Things improve as you step down the memory capacities and speed tiers, but not as much as we’d like. You’re still looking at $392 for a memory kit that was just $72 last year. To rein … ⌘ Read more

⤋ Read More

Linux 7.3 Adds New “bpf_sock_read_xattr” Feature For systemd, BPF Programs
Merged earlier this year for Linux 7.1 was extended attributes on sockets support as a feature sought after by the likes of GNOME and systemd for helping with Varlink IPC usage and other purposes. A limitation though of the functionality has been no efficient means for a BPF program to read those user extended attribute labels back. But with Linux 7.3 that’s being addressed with the new bpf_sock_read_xattr() kernel function… ⌘ Read more

⤋ Read More

Microsoft MVP Creates Site to Remind You of All the Brands Redmond Replaced
Microsoft MVP Loryan Strant has created the Microsoft Rebrand Registry, cataloging 72 Microsoft products and the 158 names they’ve had over the years. His analysis finds that Microsoft product names survive an average of two years and eleven months. The site even predicts which products are most likely to get renamed next, “ … ⌘ Read more

⤋ Read More

The CachyOS Performance vs. Other Linux Operating Systems On A $46k USD Workstation
Recently I looked at the performance of Ubuntu 26.04 LTS vs. Windows 11 on the Intel Xeon 678X running within the HP Z4 G6i workstation. Linux performed admirably as one would expect. With this Intel Xeon Granite Rapids WS workstation from HP though commanding a retail price more than $46,000 USD, you likely want nothing but the utmost performance out of it. So for those looking to maximize the OS performance, here are some numbers from … ⌘ Read more

⤋ Read More

‘Buy Now, Pay Later’ Lenders Pitch Loans For Needs Like Electricity and Rent
An anonymous reader quotes a report from The New York Times: Buy now, pay later” loans took off during the pandemic as a way for online shoppers to go on retail splurges without using a credit card. Now, lenders are offering the loans as a means for people to finance basic households needs. The lending apps Flex and Zip allow … ⌘ Read more

⤋ Read More

Why Europe Keeps Being Pummeled by Heat Waves
Europe is facing its fifth round of dangerously high temperatures this summer, the New York Times reports. Now climate scientists wonder if global warming is doing more than raise temperatures…

The weather patterns that create heat domes aren’t new, but today they arise on top of the warming caused by greenhouse gas emissions. That makes it more likely that heat waves reach record … ⌘ Read more

⤋ Read More

RustConn 0.20 Continues Further Polishing This GTK4/libadwaita-Based Connection Manager
RustConn has been in development for a while now as a modern GTK4 connection manager supporting a variety of protocols like SSH, RDP, VNC, Telnet, and more. RustConn 0.20 was released this week as the latest major step forward to this Rust-based connection manager leveraging the GTK4 toolkit and libadwaita… ⌘ Read more

⤋ Read More
In-reply-to » $599 retail purchase $9.95/month optional subscription

@prologic@twtxt.net Potentially, depending on the features supported / hardware used.

I’ve long wished for an appliance (like a video game console) that hosts my essential services - email, shared files, social media, etc. - but which “just runs” in a box behind the TV.

So what do you have in mind? 🤔

⤋ Read More
In-reply-to » It is such a nice feeling that Mu is such a capable little language 😅 And I decided to write code code in Mu by hand 🤚 haha 🤣 and start solving Project Euler problems, like Problem 8 which works out to be a nice elegant solution in Mu:

And just like that Problem 10 is done and correct whoohoo 🥳 It was easy because in Problem 7 I’d already written an iterator to produce infinite primes. So the solution for finding the sum of primes under 2,000,000 is basically (shortened):

  primes := iter.take_while(iter.filter(prime_candidates(), is_prime), fn(p) { p < n })
  print(iter.sum(primes))

And of course the answer is: 142913828922 which took ~21.ss for the Go Vm to compuete.

⤋ Read More

It is such a nice feeling that Mu is such a capable little language 😅 And I decided to write code code in Mu by hand 🤚 haha 🤣 and start solving Project Euler problems, like Problem 8 which works out to be a nice elegant solution in Mu:

#!/usr/bin/env mu

// Largest Product in a Series

import "fp"
import "sys"

fn usage() {
  print("Usage: cat |", args()[0], "<n>")
}

fn products(xs) {
  return fp.reduce(xs, 1, fn(x, y) {
    if y == nil {
      return x
    }
    return x * y
  })
}

fn main() {
  if len(args()) < 2 {
    usage()
    exit(1)
  }

  s := must(sys.read_all(0))
  if len(s) == 0 {
    usage()
    exit(1)
  }

  n := must(int(args()[1]))
  r := fp.max(fp.map(fp.sliding(fp.map(s, int), n), products))
  print(r)
}

main()

⤋ Read More

Trump Slaps a 100% Tariff On Heavy and ‘Sensitive’ Drones
President Trump has imposed tariffs of up to 100% on heavier and “sensitive” drones, including models over 55 pounds or equipped with docking stations or thermal imaging. “Those include commercial models from DJI and others used for operations like power line inspection, crop spraying and search and rescue, along with any parts used in their manufacturing,” report … ⌘ Read more

⤋ Read More

Amazon Will Train On Twitch Streamers’ Content By Default, Unless They Opt Out
Twitch will begin allowing Amazon to use streamers’ content to train generative AI models by default, requiring creators to manually opt out if they don’t want their videos and audio included. The decision has drawn backlash from creators, with Twitch’s own product chief acknowledging that an opt-in system would likely … ⌘ Read more

⤋ Read More

The Pixel Tag Is Google’s Answer To the AirTag
Google has unveiled the $29 Pixel Tag, its long-awaited AirTag rival that combines UWB with Bluetooth 6.0 Channel Sounding for two forms of precision tracking. It launches November 11. The Verge reports: The Pixel Tag is a slim oblong device available in one grayish color – Fog – that weighs about 12g, or 0.4oz. Like the AirTag, it has no built-in hooks or clips for attaching to o … ⌘ Read more

⤋ Read More

Intel LLM-Scaler Ready With Muse Glimmer Support, Other LLMs & Features
Intel’s LLM-Scaler project that was born out of their Project Battlematrix initiative aims to make it easier to run generative AI on Arc (Pro) B-Series graphics cards with the likes of vLLM, ComfyUI, SGLang, and other popular AI software in this Docker-based pre-configured AI stack. This week new LLM-Scaler releases brought same-day support for new models and other enhancements… ⌘ Read more

⤋ Read More
In-reply-to » The original twt is unavailable. It may have been edited or deleted, or is from an unknown or muted feed.

@david@daiwei.me It’s like Rummy but with more freedom which makes it a hell lot more interesting. You’re allowed to manipulate everything that’s on the table, trigger jokers, recombine the cards as long as there are at least three in a row after your move, not just simply add cards to existing rows (or whatever the correct terminology is). It’s good fun and mental exercise.

⤋ Read More
In-reply-to » The author of the Xfce Wayland compositor on LLMs:

I am a bit split on this, don’t think there’s any real use for AI in things like art, at absolute most getting a reference to compare with multiple non-AI ones, or possibly some animation in between frames, if it ever gets better at making those. Would not rely on it for any of my personal projects, more than maybe a quick search that would have previously been done on Stack Overflow, but if I work somewhere and they demand it be used similarly to how it is described on this site, considering the current IT job market, I’d probably take the slop bullet, over being unemployed.

Obviously even in that case, I’d only do this to generate code I can understand, improve and review. I’m definitely not advacating people just put their feet up on the table and let some random combination of “AI agents”, vibecode their entire codebase.

⤋ Read More

Qt Toolkit To Introduce Edge AI Submodule, Initially For Vision AI With Qt
The Qt Group has been working on various AI integrations for the Qt toolkit in recent times like a QML profiler skill for agentic development to help with performance profiling. They have also worked on Qt AI coding assistants and AI agents in the Qt Creator integrated development environment. Their latest AI use is now preparing to introduce a new module in the Qt toolkit itself for edge AI inferencing… ⌘ Read more

⤋ Read More

Privacy Backlash Explodes Against Meta’s Smart Glasses
With nearly 70% of the market, “Meta wants its smart glasses to be a big hit,” writes the Los Angeles Times. But after some users found ways to disable the light that warns people they’re being filmed, “the high-tech specs have also turned into a liability, as some are calling the gadget ‘pervert glasses…’”

Some people are using the glasses — which look like a pair … ⌘ Read more

⤋ Read More

Suno Says It Will Start Watermarking Songs
Suno says it will begin watermarking and fingerprinting AI-generated songs, tighten download policies to curb mass distribution, and explicitly prohibit deceptive audio and unauthorized voice or likeness cloning. The changes come as the company faces mounting copyright lawsuits, a recent adverse ruling in Germany, and scrutiny over a past data breach that revealed training-data so … ⌘ Read more

⤋ Read More

I hate having my website offline, so I tried to bring it back in a honey-potted version: “AI” agents get served article versions with inverted meaning, like “do” replaced with “don’t” and so on.

It didn’t work. Claude noticed it and “fixed” it back to the original version. When I asked it, “wait, nowhere on the page does it say $string, check again”, it said:

This is the creepiest shit ever. Silently “fixing” stuff behind my back is the epitome of untrustworthiness.

Open the bay doors, HAL.

⤋ Read More

Linux 7.2-rc7 Addresses A “Nasty” Race Condition Leading To Use-After-Free After 8 Years
The Linux kernel Git activity continues being quite heavy this week on fixes. It’s looking like the Linux 7.2-rc7 kernel release on Sunday will be another big one with the changes continuing to flow in from both developers and AI bots… ⌘ Read more

⤋ Read More
In-reply-to » I really do find it difficult to follow anyone that basically posts to a wall, or doesn't follow back. It's utterly pointless not being able to have a conversation, like basically, at all. Maybe it's not even anyone's fault? Maybe just a sucky client that doesn't understand how User-Agent works in Twtxt Discovery? 💡

@david@daiwei.me @prologic@twtxt.net IDK, some people like to use their social media feeds as soapboxes or megaphones, others as public(-ish) speaker phones (I know I tend to oscillate between these two extremes myself).

Speaking for myself, I tend to be more of a lurker on most social platforms, but something about twtxt makes me want to engage with the people here. Maybe it’s the quality of the individuals (❤️), or the relatively laid-back pace here compared to the attention economies of other platforms…IDK what it is, but I like it. 🙂

⤋ Read More

Zapscape Is The Latest Linux Vulnerability For KVM Guest-To-Host Escape, LPE
Made public earlier today is Zapscape as a guest-to-host escape vulnerability affecting the Linux KVM x86 code for the past six years. This 2020 kernel change to KVM x86 can also be used as a local privilege escalation (LPE) exploit too where /dev/kvm is world-writable on some Linux distributions like RHEL… ⌘ Read more

⤋ Read More

Times Magazine Now Serves Ads That Only AI Chatbots Can See
Longtime Slashdot reader mccalli writes: Times Magazine has started serving adverts with “brand messages” to AI crawlers, which are not part of its main page. The aim seems to be to influence chatbots to talk about the brand offerings in a positive light that can’t be traced back to the actual page. Notably, they’ve excluded Google chatbots from this, likely be … ⌘ Read more

⤋ Read More

Lawmaker Who Wants Data Center Pause Wins Kansas Democratic Primary
Kansas Democrats nominated State Senator Cindy Holscher for governor after she defeated party-backed rival Ethan Corson. “The race became a test of what sort of candidate Democratic voters prefer in what is expected to be a challenging general election race: a more moderate candidate like Mr. Corson with endorsements from party leaders … ⌘ Read more

⤋ Read More

Linux To Avoid Confusing Processor Firmware With Newer Intel CPUs Sporting DEC
A patch for the Intel P-State CPU frequency scaling Linux driver is pending to avoid confusing the processor firmware on newer platforms like Intel Core Ultra Series 3 “Panther Lake” where Dynamic Efficiency Control (DEC) is supported… ⌘ Read more

⤋ Read More

Additional Old Linux Drivers Face Removal Due To Noise From AI/LLM Coding Agents
There continues to be a lout of cleaning up of the kernel source tree to deal with noise generated by AI / LLM coding agents sending in reports and patches for old drivers that are likely not actively used by anyone on modern upstream kernel builds. Rather than continuing to carry these old drivers around with the uptick in AI/LLM-generated noise, kernel maintainers are finding it better to just retire the old drivers… ⌘ Read more

⤋ Read More

Watch a SpaceX Rocket Crash Into the Moon
A four-ton SpaceX Falcon 9 upper stage left drifting after a 2025 lunar mission is expected to crash into the Moon at about 5,400 mph, likely striking Einstein Crater. The impact should occur at approximately 2:35 a.m. ET (0635GMT). Reuters reports: Such stages typically fall back into Earth’s atmosphere and burn up or plunge into the ocean after boosting the rocket’s payload to a precise … ⌘ Read more

⤋ Read More
In-reply-to » I finally managed to get back out disc golfing today at Vietnam Veterans Park and had a good time despite losing a brand new disc on hole 3 (on its 3rd throw ever, my glow-in-the-dark Lynx disappeared into an overgrown creek-bed and was swallowed by the underbrush). After my buddy lost a disc on hole 4, we were kinda demoralized and both threw for crap the rest of the course, but it was still a nice day to be slingin' in the sun...

@itsericwoodward@itsericwoodward.com Third time luck… oh wait. Maybe you’ll find the disks again in the colder season. Still sounds like a good time with your mate in the outdoors. :-)

Looks like the sign had also been hit with one or the other disk over time. :-D

⤋ Read More

I really do find it difficult to follow anyone that basically posts to a wall, or doesn’t follow back. It’s utterly pointless not being able to have a conversation, like basically, at all. Maybe it’s not even anyone’s fault? Maybe just a sucky client that doesn’t understand how User-Agent works in Twtxt Discovery? 💡

⤋ Read More