frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Log Is the Database

https://blog.canoozie.net/the-log-is-the-database/
1•LAC-Tech•3m ago•0 comments

Ask HN: Linguistics/Computing Overview for the Layperson

1•Pamar•4m ago•0 comments

Production MCP Patterns, Part 2: The Agent Stack Grew Up

https://medium.com/@nitishagar/production-mcp-patterns-part-2-the-agent-stack-grew-up-194d807fde9d
1•nitishagar•5m ago•1 comments

Light Pollution and Wildlife Interactive Ecology Simulation

https://naturnacht-fulda-rhoen.de/light-pollution-wildlife/
1•ptrsrtp•7m ago•1 comments

Reverse-Engineering a North-Korean-Style Supply Chain Attack

https://www.reymom.xyz/blog/security/2026-04-15-supply-chain-attack
1•gsky•8m ago•0 comments

I was reported by ChatGPT officials

https://pbs.twimg.com/media/HGkgo8KacAAqU3J?format=jpg&name=medium
1•mrzhangbo•9m ago•0 comments

Augmenting Human Intellect (1962)

https://www.dougengelbart.org/pubs/augment-3906.html
1•downbad_•9m ago•1 comments

US health officials Nix publication of a study on Covid vaccine effectiveness

https://apnews.com/article/cdc-covid19-vaccine-study-ea3a8e56d0dcdb7428f060b395b5ff23
1•petethomas•13m ago•0 comments

Show HN: Vibeyard – An open-source IDE for managing AI coding agents

https://github.com/elirantutia/vibeyard
1•vibeyard•18m ago•0 comments

Honey, I Shrunk the Coding Agent

https://itayinbarr.substack.com/p/honey-i-shrunk-the-coding-agent
5•oldfuture•22m ago•0 comments

Software Eats Its Own

https://om.co/2026/04/22/software-eats-its-own/
1•taubek•23m ago•0 comments

Hey I made a AI Native personal workspace for the desktop worker

1•devrimco•25m ago•2 comments

Benchmarking glibc vs. jemalloc vs. mimalloc vs. tcmalloc in MariaDB TPC-C

https://tidesdb.com/articles/tpcc-analysis-jemalloc-mimalloc-tcmalloc-tidesql-and-innodb-in-maria...
1•alexpadula•38m ago•1 comments

R

https://blog.cloudflare.com/post-quantum-warp/
1•kefekefe•40m ago•0 comments

A neural network for lossy audio codec reconstruction

https://github.com/aston89/UNlossifier-lossy-audio-reconstructor-and-sound-signature-simulator/tr...
1•Aston89•40m ago•0 comments

256 Lines or Less: Test Case Minimization

https://matklad.github.io/2026/04/20/test-case-minimization.html
2•gsky•42m ago•0 comments

Asset Harvester

https://github.com/NVIDIA/asset-harvester
1•downboots•44m ago•0 comments

Aisbf – AI Service Broker Framework (BETA) unified proxy and intelligent router

https://aisbf.cloud
1•nextime•49m ago•1 comments

I programmed an AI in 6502 assembly

https://medium.com/@paul.newell_20752/i-programmed-an-ai-in-6502-assembly-it-worked-23fcd7cf2a96
1•paul_n3•50m ago•0 comments

Tell HN: YouTube RSS feeds no longer work

4•019•50m ago•0 comments

Dutch central bank chooses Lidl for European Cloud

https://www.techzine.eu/news/infrastructure/140634/dutch-central-bank-chooses-lidl-for-european-c...
2•vrganj•53m ago•0 comments

RFDiffusion3 in 3 Levels of Abstraction

https://www.figma.com/board/ja7l5ZFFqrSoTu78wzEVNm/RFDiffusion3-In-3-Levels-of-Abstraction?node-i...
2•nicetomeetyu•54m ago•0 comments

Open Source Credential Proxy and Vault for Agents

https://twitter.com/dangtony98/status/2046982854710857762
1•vmatsiiako•55m ago•1 comments

Exposing Attack Behaviour in Realtime

https://fibratus.io
2•archrabbit•57m ago•0 comments

Show HN: Linux Desktops in the Browser

https://vmpixel.com/
1•andoando•58m ago•0 comments

Tantrums as Status Symbols (2005)

https://marginalrevolution.com/marginalrevolution/2005/08/tantrums_as_sta.html
1•downbad_•1h ago•1 comments

Meta tracking employee keystrokes on Google, LinkedIn, Wikipedia for AI training

https://www.cnbc.com/2026/04/22/meta-tracks-employee-usage-on-google-linkedin-ai-training-project...
6•1vuio0pswjnm7•1h ago•1 comments

Anthropic now requires new Claude users to verify identity with photo ID

https://twitter.com/Pirat_Nation/status/2044960285510053929
5•croes•1h ago•2 comments

Information Asymmetry

https://en.wikipedia.org/wiki/Information_asymmetry
3•downboots•1h ago•1 comments

Malicious Checkmarx Artifacts Found in Official KICS Docker Repo and Code Ext

https://socket.dev/blog/checkmarx-supply-chain-compromise
2•orkj•1h ago•0 comments
Open in hackernews

Ask HN: What are you currently trying to figure out?

3•gooob•12mo ago
i'm trying to figure out why elden ring started stuttering and freezing during gameplay recently, and why the windows operating system has so many little dumb things wrong with it.

Comments

sherdil2022•12mo ago
Trying to figure out what to do next and what to do with my life.
gooob•12mo ago
how's that going? what are your current options?
sherdil2022•12mo ago
Not going good.
scottmcdot•12mo ago
How to build a segmentation model based on a sample of data that needs to be representative of the population.
turtleyacht•12mo ago
Trying to figure a workaround in ksh for space-delimited filenames:

  for f in $(ls "/mnt/dir"); do
    cp -v "$f" /elsewhere
  done
Because -R doesn't handle retries when cp(1) errors out intermittently (USB MTP to phone). I don't remember it being this hard in bash, or Android just is like this. Hopefully can figure it out without going to perl or C. Maybe dump(8).

Even though 54 GB partition created, it only takes up 22 GB or so. Either missing a lot of files or FFS compacts it well.

turtleyacht•12mo ago
Pipe and read per line:

  ls /mnt/dir | while read line; do
    cp -v "$line" /elsewhere
    # substitute with something fancy
    # [ $? -eq 0 ] || cp -v "$line" /elsewhere
  done
nailer•12mo ago
If there’s transmission errors, I would recommend using rsync rather than cp. that will keep transferring and running checksums until everything matches.
turtleyacht•11mo ago
Thank-you. After installing openrsync(1) (and rsync), files transferred for a bit but failed and dumped core with error 138 (bus error). Maybe a quirk with OpenBSD 7.6, or interaction between simple-mtpfs and the fusefs mount.

In the meantime, after a few retries, the failures are written to a log for a second sweep.

MD5 check helps skip extra copying, but it's overall much slower. It seems okay for a long-running batch job; maybe something we can return to after getting the pictures to display.

The pattern is like

  cp ... || \
    { sleep 2; cp ... ; } || \
    ... || \
    ... || echo "$file" >> retry.log
Not the best way. It has failed before all four times. Going to let it run overnight to see if it completes.
arthurcolle•12mo ago
navigating personal 'unemployment' while obsessively hoarding whatever money I can to run experiments / train, finetune models to leverage RL and environment-building in order to use computers, learn tasks, learn from each other, and scale to managing companies (simple, SaaS at first, and eventually, potentially to real-world operations downstream task sets)
nailer•12mo ago
I arrived tired to a pre wedding photo shoot this morning, my prospective wife yelled at me, and cancelled the shoot. I walked out because I don’t like people yelling at me. So I am trying to figure out whether I still want to marry her.