Latest Tech News

Stay updated with the latest in technology, AI, cybersecurity, and more

Filtered by: lib Clear Filter

Stepping Down as Libxml2 Maintainer

Hello, since I’ve stepped in as libxslt maintainer I’ve been studying both libxslt and libxml2 codebases. I have the time to maintain the library I just need to get familiar with the latest changes you introduced like: I haven’t find how to manage both output and input buffers. I found functions like: xmlOutputBufferCreateIO but by the places in which I’ve found them is not clear on how to use them. Should I send you an email with my questions or do you prefer other means of communication?

Alibaba's shares jump after it lands a major customer for its AI chips

Alibaba shares rose on Wednesday after Chinese state media reported that the e-commerce giant secured a major customer for its artificial intelligence chips. China Unicom will deploy Alibaba's AI accelerators from its semiconductor unit called Pingtouge or T-Head, according to a report from China state broadcaster CCTV. Alibaba does not sell chips directly, but companies can effectively use the computing power based on those semiconductors by buying Alibaba cloud services. A person familiar wi

Apple Music import tool now available worldwide, with a few exceptions

Following a limited launch late last month, Apple has now officially rolled out its Apple Music import tool worldwide, making it easier for users who want to switch from Spotify and other music platforms. Here is how it works, and where it is (and isn’t) available. Apple began testing its Apple Music importing tool back in February, and following a limited release to users in Australia and New Zealand in May, it began rolling it out more widely last month to users in Brazil, Canada, France, Ger

The Obsolescence of Political Definitions (1991)

The Obsolescence of Political Definitions V. E. McHale Defense I am not qualified to translate German, much less technical philosophical texts. However, Kondylis’ insights are criminally underappreciated and of interest to many today as they grapple with the dissolution of liberalism that Kondylis predicted in 1991–1992. Hopefully, his work will be translated with due care as its centrality is appreciated. The below is from Planetarische Politik Nach Dem Kalten Krieg, pp. 91–104 The Obsoles

The Obsolescence of Political Definitions

The Obsolescence of Political Definitions V. E. McHale Defense I am not qualified to translate German, much less technical philosophical texts. However, Kondylis’ insights are criminally underappreciated and of interest to many today as they grapple with the dissolution of liberalism that Kondylis predicted in 1991–1992. Hopefully, his work will be translated with due care as its centrality is appreciated. The below is from Planetarische Politik Nach Dem Kalten Krieg, pp. 91–104 The Obsoles

Show HN: Semlib – Semantic Data Processing

Semlib Semlib is a Python library for building data processing and data analysis pipelines that leverage the power of large language models (LLMs). Semlib provides, as building blocks, familiar functional programming primitives like map , reduce , sort , and filter , but with a twist: Semlib's implementation of these operations are programmed with natural language descriptions rather than code. Under the hood, Semlib handles complexities such as prompting, parsing, concurrency control, caching,

Reshaped is now open source

About five years ago, I started Reshaped. I built it for myself, since I had a few projects in urgent need of a component library for both React and Figma. Having worked in the design systems space for over a decade, I had developed a clear sense of what a good design system should be — and what tends to go wrong in others. I noticed that no matter how trends evolve, around 80% of the web is still built on the same core design practices. So I set out to build a system that covers that 80%, whil

Pinecone founder Edo Liberty discusses why the next big AI breakthrough starts with search, at TechCrunch Disrupt 2025

AI needs a better brain — and Edo Liberty is building it. At TechCrunch Disrupt 2025, happening October 27–29 at Moscone West in San Francisco, Pinecone founder and CEO Edo Liberty will explain why the next wave of AI-native apps won’t be driven by bigger models, but by smarter search. With 10,000+ startup and VC leaders expected to be at Disrupt, this AI Stage fireside chat and presentation is a must-attend session. The future of AI isn’t more data — it’s better retrieval As AI becomes more

Pinecone founder Edo Liberty discusses why the next big AI breakthrough starts with search at TechCrunch Disrupt 2025

AI needs a better brain — and Edo Liberty is building it. At TechCrunch Disrupt 2025, happening October 27–29 at Moscone West in San Francisco, Pinecone founder and CEO Edo Liberty will explain why the next wave of AI-native apps won’t be driven by bigger models, but by smarter search. With 10,000+ startup and VC leaders expected in San Francisco from October 27–29, this fireside chat and presentation is a must-attend moment. The future of AI isn’t more data — it’s better retrieval As AI beco

What the Hell Is Going on With Crypto Billionaire Justin Sun and Donald Trump?

World Liberty Financial’s crypto token WLFI started trading on exchanges Monday, which was great news for President Donald Trump’s family, who holds a reported 22.5 billion tokens. The move instantly created billions in wealth for America’s ruling family of fascists (at least on paper). But Justin Sun, a pro-Trump crypto billionaire who reportedly bought about $75 million of the token, says his wallets have been frozen. And nobody is sure why. The Trump family was instrumental in launching Wor

Debugging Rustler on Illumos

Welcome to SYSTEM•ILLUMINATION! This is the first illumination I have written and the one that prompted me to start this space. This first session tackles several topics as you join me on the journey I took to debug Rustler misbehaving on OmniOS. I'm a beginner with illumos. This page serves a twofold purpose: to help me document and clarify my learnings as I delve into the illumos/Solaris world. And to shine a bit of light into a system that is fairly obscure and hard to get good info on. Howe

xAI’s CFO is the latest executive to leave Elon Musk’s AI firm

In Brief Mike Liberatore, xAI’s chief financial officer, has left the company, according to reporting from The Wall Street Journal. This marks the latest in a string of high-profile executive departures. The former Airbnb executive joined the company in April and left around the end of July, per WSJ. While at xAI, he helped orchestrate the company’s $5 billion debt raise, alongside another $5 billion in equity — almost half of which came from SpaceX. He also oversaw some of the Elon Musk-owne

Alibaba shares surge as AI boom drives cloud unit sales

Alibaba posted a better-than-expected bottom line in the June quarter on Friday, fueled by accelerated sales at its cloud computing unit and a continued revival of its e-commerce business, sending shares higher. Still, the Chinese giant's revenues came in under analyst forecasts. U.S.-listed shares of the Chinese giant had gained nearly 13% on Friday after the company announced results. On Monday, Alibaba's Hong Kong-listed shares surged more than 19% before paring some gains. Here's how Al

Alibaba shares jump 19% on cloud unit acceleration, report of new AI chip

Signage at the Alibaba Group Holding Ltd. headquarters in Hangzhou, China, on Thursday, Feb. 6, 2025. Alibaba 's Hong Kong listed shares surged more than 19% on Monday as the Chinese tech giant's cloud computing unit drove strong quarterly results, while details emerged over its new AI chip development. It's the highest level for the stock since March. Investors have backed the company's improving performance in its key cloud unit and are content with the the tech giant's investment into new a

Why did dlclose not unload the library? (2023)

Recently, at work, we were debugging an issue where dlclose was not unloading the library . You might wonder why that even matters - if your library contains any global symbols, then their state will persist across a dlopen, dlclose sequence. In other words, your library isn’t starting from a clean state every time. In the case we were debugging, this issue manifested in the following fashion: We had two libraries libA and libB and libA dynamically depends on libB. When you dlopen libA, it also

Libby is hands down my favorite part of using my Kindle

Kaitlyn Cimino / Android Authority As a kid, my library handed out tokens for every chapter kids read as part of a summer reading program. At the end of the season, those tokens turned into currency for spending at a karaoke BBQ, with games and toys up for grabs. I’ll never get over the trauma of singing American Pie (I had not realized just how painfully long that song really is), but I will always foster the same love for mass consumption of oversized chapter books. Fast-forward a few decades

Libby introduces ‘Inspire Me’ to beef up your reading list

Kaitlyn Cimino / Android Authority TL;DR Libby will soon officially roll out a new AI-powered discovery tool called Inspire Me. The feature suggests five titles based on saved books or selected prompts. Some users and librarians are skeptical about privacy concerns and AI replacing human curation. Libby, the popular library app for borrowing e-books and audiobooks, has introduced a new discovery tool called Inspire Me. The AI-powered feature offers five tailored recommendations based on a re

Alibaba shares jump 13% as AI drives cloud unit acceleration

Alibaba posted a better-than-expected bottom line in the June quarter fueled by accelerated sales at its cloud computing unit and a continued revival of its e-commerce business. Still, the Chinese giant's revenues came in under analyst forecasts. Alibaba's stock climbed 12.9% in the U.S. after initially dipping. Here's how Alibaba did in its fiscal first quarter ended June, compared with LSEG estimates: Revenue: 247.65 billion Chinese yuan ($34.6 billion), versus 252.9 billion yuan expected.

Libby is adding an AI book recommendation feature

Overdrive's digital book lending app Libby is adding — you guessed it! — AI. The new Inspire Me feature is an AI-fueled discovery tool tuned to your local branch's collection. Following a soft launch this month, it will be officially available in September. To avoid the pitfalls of a full-on chatbot, Overdrive is limiting the discovery process of the feature. Instead of typing freely into a prompt box, you'll start by answering several canned preference questions. These include categories (such

Fixing an old .NET Core native library loading issue on Alpine

In this post I describe an issue I ran into at work when we were trying to test an app using Microsoft.Data.SQLite on Alpine Linux, and were running into this error: Unhandled exception. System.DllNotFoundException: Unable to load shared library 'e_sqlite3' or one of its dependencies . This post is primarily a walkthrough of the steps I took to solve the issue. I describe the problem itself, the environment in which it happened, the things we tried to isolate the issue, the eventual root cause,

Alibaba shares jump 10% as AI drives cloud unit acceleration

Alibaba posted a better-than-expected bottom line in the June quarter fueled by accelerated sales at its cloud computing unit and a continued revival of its e-commerce business. Still, the Chinese giant's revenues came in under analyst forecasts. Alibaba's stock climbed 10% in the U.S. after initially dipping. Here's how Alibaba did in its fiscal first quarter ended June, compared with LSEG estimates: Revenue: 247.65 billion Chinese yuan ($34.6 billion), versus 252.9 billion yuan expected. N

Alibaba shares jump 6% in premarket trading as AI drives cloud unit acceleration

Alibaba posted a better-than-expected bottom line in the June quarter fueled by accelerated sales at its cloud computing unit and a continued revival of its e-commerce business. Still, the Chinese giant's revenues came in under analyst forecasts. Alibaba's stock was up more than 6% in premarket trading in the U.S. after initially dipping. Here's how Alibaba did in its fiscal first quarter ended June, compared with LSEG estimates: Revenue: 247.65 billion Chinese yuan ($34.6 billion), versus 2

Alibaba's cloud unit shines even as rivalry heats up in China's 'instant commerce' space

Alibaba posted a better-than-expected bottom line in the June quarter fueled by accelerated sales at its cloud computing unit and a continued revival of its e-commerce business. Still, the Chinese giant's revenues came in under analyst forecasts. Alibaba's stock was up around 4% in premarket trade in the U.S. after initially dipping. Here's how Alibaba did in its fiscal first quarter ended June, compared with LSEG estimates: Revenue : 247.65 billion Chinese yuan ($34.6 billion), versus 252.9

PSA: Libxslt is unmaintained and has 5 unpatched security bugs

Alan Coopersmith reports: On 6/16/25 15:12, Alan Coopersmith wrote: BTW, users of libxml2 may also be using its sibling project, libxslt, which currently has no active maintainer, but has three unfixed security issues reported against it according to https://gitlab.gnome.org/Teams/Releng/security/-/wikis/2025#libxml2-and-libxslt 2 of the 3 have now been disclosed: (CVE-2025-7424) libxslt: Type confusion in xmlNode.psvi between stylesheet and source nodes https://gitlab.gnome.org/GNOME/libxs

On the screen, Libyans learned about everything but themselves (2021)

The first Hollywood film I watched in a theater was “Star Wars: The Last Jedi,” in 2017 in Tunis — the movie in which Disney definitively ruined the franchise forever. Before that, in Libya, I used to buy pirated movies on CDs, or download them from illegal websites. Even the Libyan government got in on the piracy racket, illegally packaging the Arabic-speaking Disney channel along with 19 others and selling it just for 150 Libyan dinars. I say “just,” but 150 Libyan dinars was around $100 U.S.,

Show HN: Regolith – Regex library that prevents ReDoS CVEs in TypeScript

Regolith A server-side TypeScript and JavaScript library immune to Regular Expression Denial of Service (ReDoS) attacks by using Rust and linear Regex under the hood. Regolith has a linear worst case time complexity, compared to the default RegExp found in TypeScript and JavaScript, which has an exponential worst case. Motivation: I wanted a Regex library for TypeScript and JavaScript where I didn't have to worry about ReDoS attacks. Important Regolith is still early in development! We need h

Libby’s library app adds an AI discovery feature, and not everyone is thrilled

Library e-book and audiobook app Libby is adding AI, much to the disappointment of some readers and librarians, who would prefer not to have AI inserted into their favorite apps. The new feature, “Inspire Me,” allows users to get book recommendations by using prompts or from their previously saved titles in Libby. To use the feature, readers tap on the “Inspire Me” options on Libby’s home page, where they can ask for fiction or nonfiction, then narrow down the suggestions by other factors, like

Crypto Bros’ ‘Startup Nation’ Wants to Plant a Flag on an Asteroid

The “Network State” movement, described by its detractors as a “cult,” is an ideological movement that seeks to create privately owned, anarcho-capitalist, “autonomous” communities. One such community, the Republic of Liberland, recently made two announcements that its denizens seem to think are quite exciting: 1) Liberland has a new “prime minister” in the form of crypto billionaire Justin Sun, and 2) the bold explorers of Liberland plan to express their collective spirit of adventure by planti