Searching We.Love.Privacy.Club

Twts matching #generator.
Sort by: Newest, Oldest, Most Relevant

Intel Compute Runtime Updated With Initial Crescent Island & Nova Lake S Support
The Intel Compute Runtime 26.01.36711.4 was published today as their first release of 2026 for this open-source GPU compute stack providing Level Zero and OpenCL support across their range of graphics hardware going back to Tiger Lake. Notable with this new Compute Runtime release is having now production-ready Panther Lake support while also introducing early support for next-generation hardware… ⌘ Read more

⤋ Read More

Signal Creator Marlinspike Wants To Do For AI What He Did For Messaging
Moxie Marlinspike, the engineer who created Signal Messenger and set a new standard for private communications, is now trialing Confer, an open source AI assistant designed to make user data unreadable to platform operators, hackers, and law enforcement alike. Confer relies on two core technologies: passkeys that generate a 32-byte encry … ⌘ Read more

⤋ Read More

Even Linus Torvalds Is Vibe Coding Now
Linus Torvalds has started experimenting with vibe coding, using Google’s Antigravity AI to generate parts of a small hobby project called AudioNoise. “In doing so, he has become the highest-profile programmer yet to adopt this rapidly spreading, and often mocked, AI-driven programming,” writes ZDNet’s Steven Vaughan-Nichols. Fro the report: [I]t’s a trivial program called AudioNoise – a recen … ⌘ Read more

⤋ Read More

I’m trying to implement configurable key bindings in tt. Boy, is parsing the key names into tcell.EventKeys a horrible thing. This type consists of three information:

  1. maybe a predefined compound key sequence, like Ctrl+A
  2. maybe some modifiers, such as Shift, Ctrl, etc.
  3. maybe a rune if neither modifiers are present nor a predefined compound key exists

It’s hardcoded usage results in code like this:

func (t *TreeView[T]) InputHandler() func(event *tcell.EventKey, setFocus func(p tview.Primitive)) {
    return t.WrapInputHandler(func(event *tcell.EventKey, setFocus func(p tview.Primitive)) {
        switch event.Key() {
        case tcell.KeyUp:
            t.moveUp()
        case tcell.KeyDown:
            t.moveDown()
        case tcell.KeyHome:
            t.moveTop()
        case tcell.KeyEnd:
            t.moveBottom()
        case tcell.KeyCtrlE:
            t.moveScrollOffsetDown()
        case tcell.KeyCtrlY:
            t.moveScrollOffsetUp()
        case tcell.KeyTab, tcell.KeyBacktab:
            if t.finished != nil {
                t.finished(event.Key())
            }
        case tcell.KeyRune:
            if event.Modifiers() == tcell.ModNone {
                switch event.Rune() {
                case 'k':
                    t.moveUp()
                case 'j':
                    t.moveDown()
                case 'g':
                    t.moveTop()
                case 'G':
                    t.moveBottom()
                }
            }
        }
    })
}

This data structure is just awful to handle and especially initialize in my opinion. Some compound tcell.Keys are mapped to human-readable names in tcell.KeyNames. However, these names always use - to join modifiers, e.g. resulting in Ctrl-A, whereas tcell.EventKey.Name() produces +-delimited strings, e.g. Ctrl+A. Gnaarf, why this asymmetry!? O_o

I just checked k9s and they’re extending tcell.KeyNames with their own tcell.Key definitions like crazy: https://github.com/derailed/k9s/blob/master/internal/ui/key.go Then, they convert an original tcell.EventKey to tcell.Key: https://github.com/derailed/k9s/blob/b53f3091ca2d9ab963913b0d5e59376aea3f3e51/internal/ui/app.go#L287 This must be used when actually handling keyboard input: https://github.com/derailed/k9s/blob/e55083ba271eed6fc4014674890f70c5ed6c70e0/internal/ui/tree.go#L101

This seems to be much nicer to use. However, I fear this will break eventually. And it’s more fragile in general, because it’s rather easy to forget the conversion or one can get confused whether a certain key at hand is now an original tcell.Key coming from the library or an “extended” one.

I will see if I can find some other programs that provide configurable tcell key bindings.

⤋ Read More

Apple Partners With Google on Siri Upgrade, Declares Gemini ‘Most Capable Foundation’
Apple has struck a multi-year partnership with Google to power a more capable version of Siri using Gemini AI models, ending months of speculation about which company would help the iPhone maker catch up in the generative AI race. In a statement, Apple said it had determined after “careful evaluation” that “ … ⌘ Read more

⤋ Read More

Nova Lake & Crescent Island Support Lands In The Intel Graphics Compiler
Released this morning is the Intel Graphics Compiler “IGC” 2.27.10 that comes with initial support for next-generation Nova Lake and Crescent Island Xe3P hardware… ⌘ Read more

⤋ Read More

Amazon’s AI Tool Listed Products from Small Businesses Without Their Knowledge
Bloomberg reports on Amazon listings “automatically generated by an experimental AI tool” for stores that don’t sell on Amazon.

Bloomberg notes that the listings “didn’t always correspond to the correct product”, leaving the stores to handle the complaints from angry customers:

Between the Christmas and New Year holidays, s … ⌘ Read more

⤋ Read More

China Tests a Supercritical CO2 Generator in Commercial Operation
“China recently placed a supercritical carbon dioxide power generator into commercial operation,” writes CleanTechnica, “and the announcement was widely framed as a technological breakthrough.”

The system, referred to as Chaotan One, is installed at a steel plant in Guizhou province in mountainous southwest China and is designed to recover … ⌘ Read more

⤋ Read More

China’s ‘Artificial Sun’ Breaks Nuclear Fusion Limit Thought to Be Impossible
“Scientists in China have made a breakthrough with fusion energy that could finally overcome one of the most stubborn barriers to realising the next-generation energy source,” reports the Independent:

A team from the Chinese Academy of Sciences (CAS) said its experimental nuclear reactor, dubbed the ‘artificial Sun’, a … ⌘ Read more

⤋ Read More

AI Models Are Starting To Learn By Asking Themselves Questions
An anonymous reader quotes a report from Wired: [P]erhaps AI can, in fact, learn in a more human way – by figuring out interesting questions to ask itself and attempting to find the right answer. A project from Tsinghua University, the Beijing Institute for General Artificial Intelligence (BIGAI), and Pennsylvania State University shows that AI ca … ⌘ Read more

⤋ Read More

AI Is Intensifying a ‘Collapse’ of Trust Online, Experts Say
Experts interviewed by NBC News warn that the rapid spread of AI-generated images and videos is accelerating an online trust breakdown, especially during fast-moving news events where context is scarce. From the report: President Donald Trump’s Venezuela operation almost immediately spurred the spread of AI-generated images, old videos and altered photos ac … ⌘ Read more

⤋ Read More

Torvalds Tells Kernel Devs To Stop Debating AI Slop - Bad Actors Won’t Follow the Rules Anyway
Linus Torvalds has weighed in on an ongoing debate within the Linux kernel development community about whether documentation should explicitly address AI-generated code contributions, and his position is characteristically blunt: stop making it an issue. The Linux creator was responding … ⌘ Read more

⤋ Read More

Google Is Adding an ‘AI Inbox’ To Gmail That Summarizes Emails
An anonymous reader quotes a report from Wired: Google is putting even more generative AI tools into Gmail as part of its goal to further personalize user inboxes and streamline searches. On Thursday, the company announced a new “AI Inbox” tab, currently in a beta testing phase, that reads every message in a user’s Gmail and suggests a list of to-dos a … ⌘ Read more

⤋ Read More

TV Makers Are Taking AI Too Far
TV manufacturers at CES 2026 in Las Vegas this week unveiled a wave of AI features that frequently consume significant screen space and take considerable time to deliver results – all while global TV shipments declined 0.6% year over year in Q3, according to Omdia. Google demonstrated Veo generating video from a photo on a television, a process that took about two minutes to produce eight seconds of f … ⌘ Read more

⤋ Read More

Tailwind CSS Lets Go 75% Of Engineers After 40% Traffic Drop From Google
Adam Wathan, the creator of the popular CSS framework Tailwind CSS, has let go of 75% of his engineering team – reducing it from four people to one – because AI-generated search answers have decimated traffic to the project’s documentation pages.

Traffic to Tailwind’s documentation has fallen roughly 40% since early 2023 despite th … ⌘ Read more

⤋ Read More

Samsung Hit with Restraining Order Over Smart TV Surveillance Tech in Texas
Texas Attorney General Ken Paxton has secured a temporary restraining order against Samsung, blocking the company from continuing to collect data through its smart TVs’ Automated Content Recognition technology.

The ACR system captured screenshots of what users were watching every 500 milliseconds, according to the state’s la … ⌘ Read more

⤋ Read More

Next-Gen AMD Server SoCs To Enjoy Firmware-Agnostic Platform Configuration Approach
Next-generation AMD server SoCs – presumably the AMD EPYC “Venice” on Zen 6 – is poised to introduce a firmware-agnostic platform configuration platform configuration change method/format. This is This aims to improve server platform interoperability and eliminate redundant configuration efforts for different firmware solutions… ⌘ Read more

⤋ Read More

South Korea’s President Identifies a New Enemy: Baldness
South Korea’s President Lee Jae Myung asked at a televised policy meeting last month whether the country’s state-run healthcare plan could cover hair-loss treatment, framing it as a question about whether hair loss qualifies as a disease. The health minister told Lee that baldness is generally considered an aesthetic problem and therefore covered out-of-po … ⌘ Read more

⤋ Read More

An AI-Generated NWS Map Invented Fake Towns In Idaho
National Weather Service pulled an AI-generated forecast graphic after it hallucinated fake town names in Idaho. “The blunder – not the first of its kind to be posted by the NWS in the past year – comes as the agency experiments with a wide range of AI uses, from advanced forecasting to graphic design,” reports the Washington Post. “Experts worry that without properly … ⌘ Read more

⤋ Read More

Nvidia Details New AI Chips and Autonomous Car Project With Mercedes
An anonymous reader quotes a report from the New York Times: On Monday, [Jensen Huang, the chief executive of the chip-making giant Nvidia] said the company would begin shipping a new A.I. chip later this year, one that can do more computing with less power than previous generations of chips could. Known as the Vera Rubin, the chip has b … ⌘ Read more

⤋ Read More

VW Brings Back Physical Buttons
sinij shares a report from Car and Driver: Volkswagen is making a drastic change to its interiors, or at least the interiors of its electric vehicles. The automaker recently unveiled a new cockpit generation with the refreshed ID. Polo – the diminutive electric hatchback that the brand sells in Europe – that now comes with physical buttons. […] The steering wheel gets new clusters of buttons for cruise co … ⌘ Read more

⤋ Read More

AMD Releases GAIA 0.15 - Positioning It As A Framework/SDK For Building AI PC Agents
Last year AMD announced GAIA as short for “Generative AI Is Awesome”. It started off as a Windows-only AI demo but over time added Linux support along with introducing different AI agents. For going along with AMD’s AI announcements at CES 2026, AMD released GAIA 0.15 where they are now positioning this software as a framework/SDK for building AI PC agents… ⌘ Read more

⤋ Read More

Viral Reddit Post About Food Delivery Apps Was an AI Scam
A viral Reddit “whistleblower” post accusing a major food delivery app of systemic exploitation is “most likely AI-generated,” reports the Verge. From the report: The original post by user Trowaway_whistleblow alleged that an unnamed food delivery company regularly delays customer orders, calls couriers “human assets,” and exploits their “desperation” for cas … ⌘ Read more

⤋ Read More

There Is No One Left On Debian’s Data Protection Team
Besides Debian’s aging bug tracker interface, another challenge as the Debian Linux distribution project begins 2026 is that all volunteers have left their Data Protection Team. The Debian Data Protection Team deals with General Data Protection Regulation (GDPR) issues and related data protection/privacy related matters… ⌘ Read more

⤋ Read More

Could AI Bring Us Four-Day Workweeks?
“While a growing number of U.S. employers are mandating workers return to the office five days a week,” reports the Washington Post, “some companies say AI is saving them enough time to launch or sustain a four-day workweek.

“More companies may move toward a shortened workweek, several executives and researchers predict, as workers, especially those in younger generations, continue to push for better … ⌘ Read more

⤋ Read More

Google AI Overviews Put People at Risk of Harm With Misleading Health Advice
A Guardian investigation published Friday found that Google’s AI Overviews – the generative AI summaries that appear at the top of search results – are serving up inaccurate health information that experts say puts people at risk of harm. The investigation, which came after health groups, charities and professionals raise … ⌘ Read more

⤋ Read More

The Man Taking Over the Large Hadron Collider
Mark Thomson, a professor of experimental particle physics at the University of Cambridge, takes over as CERN’s director general this week, and one of his first major decisions during his five-year tenure will be shutting down the Large Hadron Collider for an extended upgrade. The shutdown starts in June to make way for the high-luminosity LHC – a major overhaul involving powerfu … ⌘ Read more

⤋ Read More

Warren Buffett Retires As Berkshire Hathaway CEO After 55 Years
Warren Buffett is retiring as CEO of Berkshire Hathaway at age 95, ending a 55-year run that reshaped how generations of Americans think about investing. “The 95-year-old, often referred to as the ‘Oracle of Omaha’ and the ‘billionaire next door,’ will relinquish the title after a career that saw him turn a failing textile firm into one of the most … ⌘ Read more

⤋ Read More

mu (µ) now has builtin code formatting and linting tools, making µ far more useful and useable as a general purpose programming language. Mu now includes:

  • An interpreter for quick “scriptinog”
  • A native code compiler for building native executables (Darwin / macOS only for now)
  • A builtin set of developer tools, currently: fmt (-fmt), check (-check) and test (-test).

⤋ Read More

Unexpected Surprise: Windows 11 Outperforming Linux On An Intel Arrow Lake H Laptop
Typically when receiving any review hardware preloaded with Microsoft Windows I tend to run some Windows vs. Linux benchmarks just as a sanity test plus it still seems to generate a fair amount of interest even though the outcome is almost always the same: Linux having a hefty performance advantage over Windows especially in the more demanding creator-type workloads. As an unexpected twist and time consuming puzzle the past two … ⌘ Read more

⤋ Read More

X.Org IMAKE Updated For Those Not Yet Transitioned To Autoconf/Automake Or Meson
X.Org package wrangler Alan Coopersmith at Oracle announced today the release of imake 1.0.11, the newest version of this utility that 20+ years ago was used extensively as part of the X Window System build process for generating Makefiles from a template. With this first imake point release in two years, imake itself can now be built via Meson and there is now support for RISC-V and LoongArch architectures… ⌘ Read more

⤋ Read More

How Windows 10 Earned Its Good Reputation While Planting the Seeds of Windows 11’s Problems
Windows 10’s formal end-of-support arrived in October, and while the operating system is generally remembered as one of the “good” versions of Windows – the most widely used since XP – many of the annoyances people complain about in Windows 11 actually started during the Windows 10 era, ArsTe … ⌘ Read more

⤋ Read More

VC Sees AI-generated Video Gutting the Creator Economy
AI-generated video tools like OpenAI’s Sora will make individual content creators “far, far, far less valuable” as social media platforms shift toward algorithmically generated content tailored to each viewer, according to Michael Mignano, a partner at venture capital firm Lightspeed and who cofounded the podcasting platform Anchor before Spotify acquired it.

Speaki … ⌘ Read more

⤋ Read More
In-reply-to » Trying to come up with a name for a new project and every name is already taken. 🤣 The internet is full!

@movq@www.uninformativ.de How about “Quongsi”? I generated the first five letters with pwgen --no-capitalize --no-numerals 5 and since that already showed up in DDG search results, I simply appended the last two, which yielded nothing on DDG and Google).

What kind of project is it? Maybe we can help you find a name or nudge you in the right direction.

⤋ Read More

Whoo! I fixed one of the hardest bugs in mu (µ) I think I’ve had to figure out. Took me several days in fact to figure it out. The basic problem was, println(1, 2) was bring printed as 1 2 in the bytecode VM and 1 nil when natively compiled to machine code on macOS. In the end it turned out the machine code being generated / emitted meant that the list pointers for the rest... of the variadic arguments was being slot into a register that was being clobbered by the mu_retain and mu_release calls and effectively getting freed up on first use by the RC (reference counting) garbage collector 🤦‍♂️

⤋ Read More

Google’s ‘AI Overview’ Wrongly Accused a Musician of Being a Sex Offender
An anonymous reader shared this report from the CBC:

Cape Breton fiddler Ashley MacIsaac says he may have been defamed by Google after it recently produced an AI-generated summary falsely identifying him as a sex offender. The Juno Award-winning musician said he learned of the online misinformation last week after a First Nation no … ⌘ Read more

⤋ Read More

Open Source Initiative Estimates the ‘Top Open Source Licenses in 2025’
The nonprofit Open Source Initiative offers “enriched” license pages with “relevant metadata to provide deeper insights and better support”.

So which pages got the most pageviews in 2025? The MIT license, Apache 2.0 license, BSD licenses (3-clause and 2-clause), and GNU General Public license:

mit
(1.5M)
apache-2-0
(344k)
bsd-3-c … ⌘ Read more

⤋ Read More

Should Physicists Study the Question: What is Life?
An astrophysicist at the University of Rochester writes that “many” of his colleagues in physics “have come to believe that a mystery is unfolding in every microbe, animal, and human.” And it’s a mystery that:

- “Challenges basic assumptions physicists have held for centuries”
- “May even help redefine the field for the next generation”
- “Could answer essential quest … ⌘ Read more

⤋ Read More
In-reply-to » My little toy operating system from last year runs in 16-bit Real Mode (like DOS). Since I’ve recently figured out how to switch to 64-bit Long Mode right after BIOS boot, I now have a little program that performs this switch on my toy OS. It will load and run any x86-64 program, assuming it’s freestanding, a flat binary, and small enough (< 128 KiB code, only uses the first 2 MiB of memory).

@movq@www.uninformativ.de I think I can get binaries even smaller with a bit more work and effort 🤔 But yeah still working on the native code generation (at least for macOS targets)

⤋ Read More

Indian IT Was Supposed To Die From AI. Instead It’s Billing for the Cleanup.
Two years after generative AI was supposed to render India’s $250 billion IT services industry obsolete, the sector is finding that enterprises still need someone to handle the unglamorous plumbing work that large-scale AI deployment demands. Less than 15% of organizations are meaningfully deploying the new technology, accordin … ⌘ Read more

⤋ Read More

Alphabet Acquires Data Center and Energy Infrastructure Company Intersect For $4.75 Billion
Alphabet is acquiring Intersect for $4.75 billion to accelerate data center and power-generation capacity as AI infrastructure demand surges. CNBC reports: Alphabet said Intersect’s operations will remain independent, but that the acquisition will help bring more data center and generation capaci … ⌘ Read more

⤋ Read More

Oh great, I received an e-mail that my SMTP credentials have been exposed. Once again, just another shitty scanner that generates garbage reports from tests it doesn’t understand. Thank you for nothing!

conf := &Config{
    SMTPHost: "smtp.example.com",
    SMTPPort: 587,
    SMTPUser: "user",
    SMTPPass: "hunter2",
    SMTPFrom: "from@example.com",
}

⤋ Read More

Linux 7.0 To Remove Support For AMD’s Never-Released Ryzen AI NPU2
The upcoming Linux 7.0 kernel (unless it ends up being called Linux 6.20) will drop support for the AMD NPU2 as their second-generation neural processing unit that never ended up being released into any retail products… ⌘ Read more

⤋ Read More

Intel Releases GenAI Examples v1.5 - While Validating This AI Showcase On Old Xeon CPUs
Intel engineers as part of the OPEA Project today released the Generative AI Examples v1.5 update. This “GenAIExamples” open-source project is a collection of GenAI examples as part of showing the capabilities of the Open Platform for Enterprise AI (OPEA) and also highlighting Intel’s hardware strengths for generative AI… ⌘ Read more

⤋ Read More

Google Launches CO2 Battery Plants for Long-Duration Storage of Renewable Energy
In July Google promised to scale the CO2 batteries of “Energy Dome” as a long-duration energy storage solution. Now IEEE Spectrum visits its first plant in Sardinia, where 2,000 tonnes of carbon dioxide power a turbine generating 20 MW over 10 hours — storing “large amounts of excess renewable energy until it’s … ⌘ Read more

⤋ Read More

Indie Game Awards Disqualifies ‘Clair Obscur’ Over GenAI Usage
“Perhaps no group of fans, industry workers, and consumers is more intense about AI use than gamers….” writes New York magazine’s “Intelligencer” column:

Just this month, the latest Postal game was axed by its publisher, which was “overwhelmed with negative responses”
from the “concerned Postal community” after fans spotted
AI-generated material in … ⌘ Read more

⤋ Read More

Gemini AI Yielding Sloppy Code For Ubuntu Development With New Helper Script
A few weeks ago it was mentioned by a Canonical engineer how trying to use AI to modernize the Ubuntu Error Tracker yielded some code that was “plain wrong” and other issues raised by that Microsoft GitHub Copilot code. The same Ubuntu developer shifted to trying Gemini AI to generate a helper script to assist in Ubuntu’s monthly ISO snapshot releases. Google’s Gemini AI also generated some sloppy code for a Python script to assist in tho … ⌘ Read more

⤋ Read More