Bcachefs Tools 1.38.6 Brings Many Performance Improvements
Kent Overstreet announced the release today of Bcachefs-Tools 1.38.6 as the user-space tools built around the Bcachefs copy-on-write file-system. There are a few new features and a lot of performance work in v1.38.6 without bringing any on-disk format breakage… ⌘ Read more
@movq@www.uninformativ.de Hahaha, great timing! :-D I love your article and agree with almost all your points.
On the AI changelog part, though, I’d rather recommend to just not have a changelog at all.
Another important thing for me is the deprecation notice section. What do I need to look out for in the future? Should I start to migrate to another API soon? Even right now? Or does it have time?
While going through these terrible GitHub release pages, I also found these “New Project Contributors” sections (yeah, for that, they found the time to make a section) annoying. Don’t get me wrong, sure, credit where credit is due. But come on. Soooooo much space for an inefficiently formatted (and also unsorted) list. At least it was easy enough to skip over it.
And then, there are also these changelogs or rather notice documents in general that are infested with multicolored emojis all over the place. My brain’s spam filter kicks in and shoves everything to /dev/null immediately. It’s especially a thing at work.
In my previous work project, we also used the Keep A Changelog Format. That was great. You wouldn’t believe how often I resorted back to that document. At least twice a week, often several times a day. I was very glad that we put in this effort. Of course, writing the changelog took its time, but it was worth every minute and more. Reading a many months old item, it was immediately clear. I was our best customer in that regard.
Now, it’s just the same auto shitshow with MR titles in a rolling date-versioned release scheme. It’s just our team who has to deal with that, though. I think I’m the only one who is not a fan of it.
Khronos Releases glTF 2.1 To Make This 3D Asset Standard Work Well For Large Scenes
It’s crazy realizing that glTF 2.0 is already nine years old for this API-neutral 3D runtime and asset delivery format. The Khronos 3D Formats Working Group today extended that with the debut of glTF 2.1 as a backward-compatible revision to the specification… ⌘ Read more
HTML is a native image format, hear me out
Article URL: https://hmml.eddocu.com
Comments URL: https://news.ycombinator.com/item?id=48488553
Points: 7
# Comments: 3 ⌘ Read more
New-look Brisbane Times Quiz: What was the mystery light in the sky above Queensland?
Check out our new quiz format and test your knowledge of the week’s news. ⌘ Read more
House of the Dragon Star Shares Hopeful Update on Another GOT Prequel Series
A new update suggests HBO has not abandoned plans for another Game of Thrones prequel. Steve Toussaint, who plays Corlys Velaryon in House of the Dragon, recently addressed the status of the long-rumored Sea Snake spin-off. He indicated that development is still ongoing and shared new details about the format. However, as of now, the […]
The post [House of the Dragon Star Shares Hopeful Update on A … ⌘ Read more
LegalZoom Promo Code: Exclusive 10% Off LLC Formations
Save on top services at LegalZoom, like LLC registration, incorporation, estate plans, and more with coupons and deals from WIRED. ⌘ Read more
Julia Roberts & Hugh Grant’s Notting Hill Gets New 4K UHD & Blu-ray Release
The beloved Julia Roberts and Hugh Grant rom-com just got the upgrade fans have been waiting for. Notting Hill arrives in a brand-new home release format with plenty of bonus content for longtime viewers. What to know about the new Notting Hill 4K UHD and Blu-ray release Variety reported that Notting Hill is getting a new 4K UHD, Blu-ray and […]
The post [Julia Roberts & Hugh Grant’s Notting Hill Gets New 4K … ⌘ Read more
Kosovo: la formation d’Albin Kurti remporte les législatives, mais en recul
Le score en recul du premier ministre laisse présager des négociations compliquées sur la nouvelle majorité, alors que le petit pays des Balkans est confronté depuis seize mois à une paralysie institutionnelle. ⌘ Read more
Universal Memory Protocol – a shared format for agent memory
Article URL: https://universalmemoryprotocol.io/
Comments URL: https://news.ycombinator.com/item?id=48428796
Points: 4
# Comments: 0 ⌘ Read more
The Odyssey’s MPA Rating Isn’t as Risky as Its High Budget Seems
The MPA rating for Christopher Nolan‘s The Odyssey has been revealed. Despite the large scale of the movie, its surprising rating as risky as some might think it is. With premium format showings of The Odyssey officially going on sale this week, theaters began showcasing full profiles for the film. This means we also learned the […]
The post [The Odyssey’s MPA Rating Isn’t as Risky as Its … ⌘ Read more
The Odyssey: Which Version of Christopher Nolan Movie Should You Watch? Premium Formats Explained
Tickets for The Odyssey in IMAX and premium large formats have gone on sale ahead of it’s release next month. The demand was so high that ticketing services like AMC and Fandango experienced massive disruptions, leading to long wait times. You might be asking, “What is the best way to watch The Odyssey?” As an […]
The post [The Odyssey: Which Version of Chri … ⌘ Read more
The Odyssey Website Lets Fans Compare How Different Each Format Looks
Christopher Nolan’s The Odyssey is giving fans a closer look at how the film will appear across different theatrical formats before its release. The movie’s official website now includes an interactive feature that lets visitors compare aspect ratios and image presentation in real time. The Odyssey website reveals how different the movie looks across formats […]
The post [The Odyssey Website … ⌘ Read more
[$] Trying to make sense of package-manager metadata
Package managers for operating systems and programming languages have been
around for decades. Each package manager, and its accompanying packaging format,
has been shaped by the needs of its respective ecosystem, but there is a growing
need to make use of package metadata for more than software management: for
example, in vulnerability scans, software bills of materials (SBOMs), and more. On
May 19, Damián Vicino spoke at the [Open Source Summit North America](https://events.linux … ⌘ Read more
Kore: Binary File Format Optimized for Modern Data Systems (Open Source)
Article URL: https://github.com/arunkatherashala/Kore
Comments URL: https://news.ycombinator.com/item?id=48340528
Points: 4
# Comments: 1 ⌘ Read more
<updated> of the feed, too. But for some reason, some articles were suddenly marked as new.
Aha, yesterday’s newly added support for LC_TIME to render localized timestamps also broke the feed parsing with my LANG=de_DE.UTF-8 and LC_CTYPE=de_DE.UTF-8 environment. :-)
Atom feeds make use of RFC 3339 timestamps. They are first converted into RFC 882 timestamp representation, which is the one that RSS feeds use. However, this conversion now results in localized RFC 882 timestamps, which cannot be parsed into Unix timestamp numbers via curl_getdate(…). I bet that it doesn’t know about the localization at all and expects English month and weekday names. Looking at its docs, I reckon that function was selected because of its myriad of supported timestamp formats: https://curl.se/libcurl/c/curl_getdate.html RFC 3339 is not included, though, hence the transformation up front.
The intermediate Item objects in the parser domain use std::string for the timestamp representation. This isn’t all that silly, because Newsboat supports all sorts of different feed formats with different timestamp formats. These RFC 883 timestamps are centrally parsed into time_t.
Speaking of time: It’s time to go to bed after this late bug hunting fun. :-)
Webb Discovers One of the Universe’s First Galaxies
Astronomers using the James Webb Space Telescope have identified an ultra-faint galaxy seen just 800 million years after the Big Bang. The galaxy contains almost no heavy elements, shows signs of intense early stellar radiation, and could offer a rare glimpse into the first stages of galaxy formation. Phys.org reports: In a paper published in the journal Nature, a team o … ⌘ Read more
LegalZoom Promo Code: Exclusive 10% Off LLC Formations
Save on top services at LegalZoom, like LLC registration, incorporation, estate plans, and more with coupons and deals from WIRED. ⌘ Read more
Older AMD GPUs Score Another Open-Source Driver Win From Valve: DRM Format Modifiers
Timur Kristóf of Valve’s Linux open-source graphics driver team isn’t done driving new improvements to aging AMD GCN 1.0/1.1 era graphics cards on Linux. Beyond enhancing display support for older APUs, transitioning GCN 1.0/1 GPUs from the legacy Radeon driver to modern AMDGPU driver, and a host of other fixes and optimizations for these old GPUs going back to the Radeon HD 7000 series, he has another notable addition that w … ⌘ Read more
Face au RN, le Crif veut contenir la tentation de la communauté juive
En interne, certaines voix du Conseil représentatif des institutions juives de France militent pour accepter de dialoguer avec la formation d’extrême droite. Une majorité de ses membres refuse toutefois d’offrir ce trophée au RN, tout en renvoyant dos à dos le parti avec La France insoumise. ⌘ Read more
OpenZL 0.2 Released For Meta’s Content-Aware Compression Software
Last October engineers at Meta announced OpenZL as a format-aware compression framework. OpenZL aims to be speedy yet capable of delivering high compression ratios depending upon what is being compressed. OpenZL is viewed as their next leap in data compression beyond their wonderful work on Zstandard (Zstd). This week there’s finally a new OpenZL software release available… ⌘ Read more
Flattened Image Tree 1.0 Specification For Embedded Linux Systems
The Flattened Image Tree “FIT” 1.0 specification was recently finalized for this container format used by U-Boot on embedded systems for providing various boot components like DTBs, the Linux kernel image, and more into a single file… ⌘ Read more
LegalZoom Promo Code: Exclusive 10% Off LLC Formations
Save on top services at LegalZoom, like LLC registration, incorporation, estate plans, and more with coupons and deals from WIRED. ⌘ Read more
@bender@twtxt.net Glad you like it. At least it’s in landscape format. :-D
@lyse@lyse.isobeef.org Really depends on the genre, I guess. 🤔 Quite a lot of “non-pop” music still uses the format “concept album”, I think. 🤔 But don’t ask me for any solid statistics. 😅
Opera GX Browser Gets Flatpak’ed & Snap’ed On Linux
Last month Opera released the Opera GX gaming-focused web browser for Linux. It rolled out in RPM and Debian package format support while now for those interested is also available via Flatpak and Snap sandboxed app formats… ⌘ Read more
Arch Linux now has a reproducible container image
Robin Candau has announced
the availability of a bit-for-bit reproducible container image for
Arch Linux:
The bit-for-bit reproducibility of the image is confirmed by digest
equality across builds (podman inspect --format '{{.Digest}}' <image>) and by runningdiffoci
to compare builds. We provide d … ⌘ Read more
Remembering Zip Drives - the Trendy Storage Technology of the 1990s
Back in the 1990s, floppy disks “had a mere capacity of 1.44MB,” remembers XDA Developers, “which would soon become absolutely tiny for the increasingly large pieces of software that would come about.”
Floppy disks also felt quite fragile, and while we got “superfloppy” formats that were physically larger and had more capacity, those w … ⌘ Read more
PEP 829: Structured Startup Configuration via .site.toml Files
This PEP proposes a TOML-based configuration file format to replace the .pth file mechanism used by site.py during interpreter startup. The new format, using files named .site.toml, provides structured configuration for extending sys.path and executing package initialization code, replacing the current ad-hoc .pth format that conflates path configuration with arbitrary code execution. ⌘ Read more
GIMP 3.2.2 Released With Minor UI/UX Updates & Bug Fixes
It was just two weeks ago that GIMP 3.2 released, one year after the big GIMP 3.0 debut. Out today is GIMP 3.2.2 with various bug fixes, plug-in / file format handling updates, and some minor UI/UX work… ⌘ Read more
sqlparse is also unsuitable for me: https://github.com/andialbrecht/sqlparse/issues/688
I’m supporting incremental SQLite schema changes to just upgrade from an older database version to whatever the current software version supports. In the past, I already noticed that this is quite expensive in unit tests when each test case runs through the entire schema patches and applies them one by one.
To speed up test execution I now decided that I finally go through the troubles of maintaining both a set of incremental patches and a full schema setup in one go. A unit test verifies that both ways end up with the same structure. This gives me a set of SQLs to check the structures:
SELECT type, name, tbl_name, sql
FROM sqlite_schema
ORDER BY type, name, tbl_name
Unfortunately, the resulting CREATE TABLE SQL queries are formatted differently, depending on whether the full schema was set up in one big step or the structure had been modified with ALTER TABLE. Mainly, added columns are not on their own lines but appended in one physical line. That’s why I wanted an SQL formatting tool. Since I didn’t find one that works decently, I’m now doing some simple string manipulation. Joining consecutive whitespace into a single space character, removing spaces before commas and closing parentheses and spaces after opening parentheses. This works surpringly good enough. Of course, if it fails, the “diff” is absolutely horrendous.
Now for the cool part, my test execution dropped from around 5:05 minutes to just 1:32 minutes! I call that a win.
I just stumbled across PRAGMA table_info('tablename') https://sqlite.org/pragma.html#pragma_table_info, PRAGMA foreign_key_list('tablename') and friends. I guess, I have to play with that, now. It’s probably much better to use than the SQL text approach.
AMD, NVIDIA, OpenAI & Others Form An Optical Scale-up Consortium
AMD, Broadcom, Meta, Microsoft, NVIDIA and OpenAI jointly announced today the formation of the Optical Compute Interconnect (OCI) Multi-Source Agreement (MSA) optical scale-up consortium… ⌘ Read more
Nice cloud formations this evening. Obviously, they looked much cooler in person. https://lyse.isobeef.org/abendhimmel-2026-03-09/
The National Videogame Museum Acquires the Mythical Nintendo Playstation
The National Videogame Museum has acquired an extremely rare MSF-1 development kit, believed to be the oldest surviving prototype of the canceled Nintendo PlayStation. Engadget reports: Nicknamed the Nintendo PlayStation, the idea was that a new CD-ROM format backed by Sony would be added to the cartridge-based Super NES, resultin … ⌘ Read more
LibreOffice Says Its UI Is Way Better Than Microsoft Office’s
darwinmac writes: While many users choose Microsoft Office over LibreOffice because of its support for the proprietary formats (.docx, .xlsx, and .pptx), others prefer Office for its “better” ribbon interface. These users often criticize LibreOffice for having a “clunky” UI instead of the “standard” ribbon interface you would find in Word, Excel, and ot … ⌘ Read more
@rdlmda@rdlmda.me You need to use the RFC3339 format. I would recommend you read the specs at https://twtxt.dev – This is what is used by many moden clients these days 😅
‘How Many AIs Does It Take To Read a PDF?’
Despite AI’s progress in building complex software, the ubiquitous PDF remains something of a grand challenge – a format Adobe developed in the early 1990s to preserve the precise visual appearance of documents. PDFs consist of character codes, coordinates, and rendering instructions rather than logically ordered text, and even state-of-the-art models asked to extract information from them wil … ⌘ Read more
AOMedia Open Audio Codec “OAC” Aims To Be The Successor To Opus
While the Alliance For Open Media “AOMedia” is most known for developing the AV1 open video codec, the associated AV1 Image File Format (AVIF), and the next-generation AV2, they are now working on the Open Audio Codec (AOC)… ⌘ Read more
v2 branch and @doesnm.p.psf.lt has been incredibly helpful so far. Be great ot have a few more folks to join us, some of the v2 highlights include:
@bender@twtxt.net Here is a properly formatted version of your message:
Not yet — but that’s probably a good idea.
Instructions:
- Clone the repository
git clone https://git.mills.io/saltyim/saltyim.git
cd saltyim
- Check out the
v2branch
git checkout v2
- Build and install the CLI/TUI
make DESTDIR=$HOME/bin install
After installation, run:
salty-chat
@lyse@lyse.isobeef.org … at least this story was entertaining to read. 😅 If only Firefox’s storage format wasn’t so convoluted, you could have just shut it down and removed all the unwanted tabs. 🫤
@movq@www.uninformativ.de Nice, it’s coming together! Despite it being ages ago that I used a hex editor or viewer, these different representations of information appear very handy to me. If I had to mess around on binary formats, I’d definitely appreciate them. I can’t remember if the hex viewer back then had these options. Don’t even recall what software that was. :-)
I, too, only very, very rarely use the mouse in the terminal. Apart from selecting text to copy into the clipboard. But that probably has the potential for trouble and interference with button clicks, etc. If one isn’t careful.
How did the startup times develop?
The Last Of The Dolby Digital Plus “E-AC3” Patents Might Now Be Expired
For those interested in the Dolby Digital Plus “Enhanced AC-3” audio compression format for open-source software, the last of the patents for this widely-used format by streaming services and more appears to have expired… ⌘ Read more
OpenAI Releases Prism, a Claude Code-Like App For Scientific Research
OpenAI has launched Prism, a free scientific research app that aims to do for scientific writing what coding agents did for programming. Engadget reports: Prism builds on Crixet, a cloud-based LaTeX platform the company is announcing it acquired today. For the uninitiated, LaTeX is a typesetting system for formatting scientific docume … ⌘ Read more
Wikipedia’s Guide to Spotting AI Is Now Being Used To Hide AI
Ars Technica’s Benj Edwards reports: On Saturday, tech entrepreneur Siqi Chen released an open source plugin for Anthropic’s Claude Code AI assistant that instructs the AI model to stop writing like an AI model. Called “Humanizer,” the simple prompt plugin feeds Claude a list of 24 language and formatting patterns that Wikipedia editors have listed as ch … ⌘ Read more
Google Temporarily Disabled YouTube’s Advanced Captions Without Warning
Google has temporarily disabled YouTube’s advanced SRV3 caption format after discovering the feature was causing playback errors for some users, according to a statement the company posted. SRV3, also known as YouTube Timed Text, is a custom subtitle system Google introduced around 2018 that allows creators to use custom colors, tran … ⌘ Read more
JPEG-XL Image Support Returns To Latest Chrome/Chromium Code
After widespread backlash over its 2022 decision to remove JPEG-XL support, Google has quietly restored the image format in the latest Chrome/Chromium codebase. Phoronix reports: Back in December they merged jxl-rs as a pure Rust-based JPEG-XL image decoder from the official libjxl organization. At the end of December they did more JPEG-XL plumbing with the en … ⌘ Read more
FFmpeg Merges A Number Of Vulkan Improvements To Start 2026
FFmpeg developer Lynne has landed a number of Vulkan-related imporvements to this widely-used open-source multimedia library. Over the past year FFmpeg saw Vulkan shader-based decoding for more video formats, AV1 and VP9 extension work, performance improvements, and other work around Vulkan Video. It will be very exciting to see how FFmpeg delivers in 2026 with Vulkan Video and how the software ecosystem as a whole begins taking up this cross-platform, … ⌘ Read more
@kirschner@kirschner ’s “Ada & Zangemann: A Tale of Software, Skateboards, and Raspberry Ice Cream” was a wonderful surprise – I knew I’d like this book since I’ve heard he had written it, but I’ll admit I only actually read it once I had the actual physical book in my hands… and ended up being surprised by it a couple of times, the book has plenty more depth than I assumed! Sure, it is what I thought it would be, “a book for children about free software”, but it is so much more than that…
@o_sarilho@o_sarilho is a webcomic - and fortunately it is also collected in physical format. There are versions in Portuguese and English, but this is a SciFi comic book from a Portuguese author, and that alone would get my attention… the fact that part of the action happens on the region where I actually live just made it even more interesting! So, well, I knew I would need to read it, and I bought the books, but only in 2025 did I actually started reading it… and, well - all I can say is that I glad I have the rest of the series so far, so I can catch up!
How Markdown Took Over the World
22 years ago, developer and columnist John Gruber released Markdown, a simple plain-text formatting system designed to spare writers the headache of memorizing arcane HTML tags. As technologist Anil Dash writes in a long piece, Markdown has since embedded itself into nearly every corner of modern computing.
Aaron Swartz, then seventeen years old, served as the beta tester before its quiet March 2004 debut. Goo … ⌘ Read more
Since I used so much Rust during the holidays, I got totally used to rustfmt. I now use similar tools for Python (black and isort).
What have I been doing all these years?! I never want to format code manually again. 🤣😅