HN user

pella

9,420 karma
Posts390
Comments1,220
View on HN
www.postgresql.org 6d ago

PostgreSQL 19 Beta 2 Released

pella
5pts1
www.oreilly.com 25d ago

Agentic Code Review

pella
3pts1
sfconservancy.org 29d ago

Recommendations for Using LLM-Backed Generative AI in FOSS Contributions

pella
2pts0
sci.greensoftware.foundation 1mo ago

Software Carbon Intensity (SCI) Specification (2024)

pella
2pts0
www.pgedge.com 1mo ago

Why Postgres Lacks Transparent Data Encryption

pella
1pts0
docs.evokoa.com 2mo ago

PgGraph – Graph database superpowers for your existing Postgres data

pella
3pts1
github.com 2mo ago

OpenZL v0.2.0

pella
5pts0
github.com 2mo ago

Hunk: Review-first terminal diff viewer for agentic coders

pella
4pts0
www.thelettersfromleo.com 2mo ago

"Would It Matter If I Told You I'm Pope Leo?"

pella
2pts1
seed.bytedance.com 2mo ago

Seed3D 2.0

pella
1pts0
nrehiew.github.io 3mo ago

Over-editing refers to a model modifying code beyond what is necessary

pella
422pts242
matrix-game-v3.github.io 3mo ago

Matrix-Game 3.0: Real-Time and Streaming Interactive World Model

pella
2pts0
github.com 3mo ago

Larql: LLMs Are Databases. Query neural network weights like a graph database

pella
8pts1
gail.wharton.upenn.edu 3mo ago

Beyond Copy-and-Paste: How Game Studios Are Reorganizing Around AI (Research)

pella
5pts0
videocardz.com 4mo ago

Thermal Grizzly was scammed twice on raw materials worth €40k

pella
48pts15
www.oreilly.com 4mo ago

How to Write a Good Spec for AI Agents

pella
2pts0
www.phoronix.com 5mo ago

AI Helped Uncover a "50-80x Improvement" for Linux's IO_uring

pella
5pts0
www.newscientist.com 5mo ago

How teaching molecules to think is revealing what a 'mind' is

pella
71pts60
www.postgresql.org 5mo ago

PostgreSQL 18.2, 17.8, 16.12, 15.16, and 14.21 Released

pella
2pts0
www.phoronix.com 5mo ago

Linus Torvalds Confirms the Next Kernel Is Linux 7.0

pella
8pts2
www.phoronix.com 5mo ago

AMD Releases MLIR-AIE 1.2 Compiler Toolchain for Targeting Ryzen AI NPUs

pella
3pts0
www.asiaone.com 5mo ago

Chinese Programmer Dies from Overwork at 32;Added to Work Chat While in Hospital

pella
4pts1
www.phoronix.com 6mo ago

LLVM Adopts "Human in the Loop" Policy for AI/Tool-Assisted Contributions

pella
5pts0
writings.stephenwolfram.com 7mo ago

What Is ChatGPT Doing and Why Does It Work? (2023)

pella
3pts0
www.reuters.com 7mo ago

Nvidia builds location verification tech that could help fight chip smuggling

pella
4pts4
newsletter.semianalysis.com 7mo ago

TPUv7: Google Takes a Swing at the King

pella
31pts3
chipsandcheese.com 7mo ago

Evaluating Uniform Memory Access Mode on AMD's Turin Ft. Verda

pella
3pts0
chipsandcheese.com 8mo ago

Qualcomm's Snapdragon X2 Elite

pella
10pts0
hazyresearch.stanford.edu 8mo ago

ParallelKittens: Simple and Fast Multi-GPU AI Kernels

pella
7pts0
www.businessinsider.com 8mo ago

Meta is about to start grading workers on their AI skills

pella
30pts5
  "The unreasonable effectiveness of our first foray into training leads us to believe that the graph model is uniquely  positioned to facilitate ML-guided generation of compressors. We are tempted to view this as “the next big thing” in production-scale compression. Whereas compression research has up to now eluded those without domain expertise, we believe the future of application-specific compressors will be unlocked via investment in automated learning methods."
https://arxiv.org/abs/2605.09928 [11 May 2026] OpenZL: Using Graphs to Compress Smaller and Faster

Please check the OpenZL v0.2 + Silesia corpus benchmark.

  "OpenZL to offer 10% faster compression speed and 70% faster decompression speed compared to Zstandard level 1 on the Silesia corpus in our benchmarks."
  "OpenZL now ships its own LZ codec, exposed as ZL_GRAPH_LZ, and the serial profile in zli. It is still being actively developed to expand its feature set and improve performance on small inputs."
https://github.com/facebook/openzl/releases/tag/v0.2.0

OpenZL is the future: https://openzl.org/

  "OpenZL delivers high compression ratios while preserving high speed, a level of performance that is out of reach for generic compressors. OpenZL takes a description of your data and builds from it a specialized compressor optimized for your specific format."

and the article doesn't provide any configuration details (like shared buffers, is huge pages enabled).

maybe ? : phoronix-test-suite/ob-cache/test-profiles/pts/pgbench-1.16.2/install.sh

  # start server
  SHARED_BUFFER_SIZE=\`echo \"\$SYS_MEMORY * 0.25 / 1\" | bc\`
  SHARED_BUFFER_SIZE=\$(( \$SHARED_BUFFER_SIZE < 8192 ? \$SHARED_BUFFER_SIZE : 8192 ))
  echo \"Buffer size is \${SHARED_BUFFER_SIZE}MB\" > \$LOG_FILE
  pg_/bin/pg_ctl start -o \"-c max_connections=6000 -c  shared_buffers=\${SHARED_BUFFER_SIZE}MB\"
  # wait for server to start
https://github.com/phoronix-test-suite/phoronix-test-suite/b...

"fc is a lossless compressor for streams of IEEE-754 64-bit doubles."

The new OpenZL SDDL2 (Simple Data Description Language) supports several different floating-point types. It would be worthwhile to contribute some of the FC project's experience to OpenZL. Now the OpenZL supported types:

  | Type           | Size    |Endian|
  |----------------|---------|-----|
  | `Int8`         | 1 byte  | N/A |
  | `UInt8`        | 1 byte  | N/A |
  | `Int16LE/BE`   | 2 bytes | Yes |
  | `UInt16LE/BE`  | 2 bytes | Yes |
  | `Int32LE/BE`   | 4 bytes | Yes |
  | `UInt32LE/BE`  | 4 bytes | Yes |
  | `Int64LE/BE`   | 8 bytes | Yes |
  | `UInt64LE/BE`  | 8 bytes | Yes |
  | `Float16LE/BE` | 2 bytes | Yes |
  | `Float32LE/BE` | 4 bytes | Yes |
  | `Float64LE/BE` | 8 bytes | Yes |
  | `BFloat16LE/BE`| 2 bytes | Yes |
  | `Bytes(n)`     | n bytes | N/A |
Some links:

- https://github.com/facebook/openzl/releases/tag/v0.2.0

- https://openzl.org/getting-started/introduction/

- https://openzl.org/sddl/sddl2-announcement/

- https://openzl.org/sddl/core-concepts/

Check Ghostty "CONTRIBUTING.md#ai-assistance-notice"

  "The Ghostty project allows AI-assisted code contributions, which must be properly disclosed in the pull request."
https://github.com/ghostty-org/ghostty/blob/main/CONTRIBUTIN...

Mitchell Hashimoto (2025-12-30): "Slop drives me crazy and it feels like 95+% of bug reports, but man, AI code analysis is getting really good. There are users out there reporting bugs that don't know ANYTHING about our stack, but are great AI drivers and producing some high quality issue reports.

This person (linked below) was experiencing Ghostty crashes and took it upon themselves to use AI to write a python script that can decode our crash files, match them up with our dsym files, and analyze the codebase for attempting to find the root cause, and extracted that into an Agent Skill.

They then came into Discord, warned us they don't know Zig at all, don't know macOS dev at all, don't know terminals at all, and that they used AI, but that they thought critically about the issues and believed they were real and asked if we'd accept them. I took a look at one, was impressed, and said send them all.

This fixed 4 real crashing cases that I was able to manually verify and write a fix for from someone who -- on paper -- had no fucking clue what they were talking about. And yet, they drove an AI with expert skill.

I want to call out that in addition to driving AI with expert skill, they navigated the terrain with expert skill as well. They didn't just toss slop up on our repo. They came to Discord as a human, reached out as a human, and talked to other humans about what they've done. They were careful and thoughtful about the process.

People like this give me hope for what is possible. But it really, really depends on high quality people like this. Most today -- to continue the analogy -- are unfortunately driving like a teenager who has only driven toy go-karts. Examples: https://github.com/ghostty-org/ghostty/discussions?discussio... " ( https://x.com/mitchellh/status/2006114026191769924 )

"Between the late hours of January 2 and the early morning of January 3, 2026, unusually high activity was again observed at a Papa John's near the Pentagon. This coincided with the lead-up to the United States strikes in Venezuela.[15][16] Following the strikes, President Donald Trump announced the capture of Nicolás Maduro, and his wife, Cilia Flores, who were subsequently flown out of the country to face narcoterrorism charges. The surge in pizza orders preceded the official confirmation of the operation by several hours, during which Venezuelan Vice President Delcy Rodríguez reported the couple as missing.[17]"

+

"In a statement to Newsweek in 2025, the Department of Defense denied the theory, claiming that the Pentagon has numerous internal food vendors that are available to late-night workers. It criticized the accuracy of the timeline provided by the Pentagon Pizza Report.[18][19]"

--> https://en.wikipedia.org/wiki/Pentagon_pizza_theory

"For me personally, I have decided I will never be an Anthropic customer, because I refuse to do business with a company that takes its customers for granted."

The best pressure on companies comes from viable alternatives, not from boycotts that leave you without tools altogether.