frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Mount any OpenAPI/Swagger HTTP API (or JSON data) as a local filesystem

https://github.com/scottvr/apifusefs/blob/main/README.md
1•ycombiredd•1m ago•0 comments

The American, Israeli and Iranian Weapons Being Deployed in Middle East

https://www.bellingcat.com/news/2026/03/03/bombs-will-fall-everywhere-the-american-israeli-and-ir...
1•colinprince•3m ago•0 comments

US tech firms pledge at White House to bear costs of energy for datacenters

https://www.theguardian.com/us-news/2026/mar/04/us-tech-companies-energy-cost-pledge-white-house
1•geox•4m ago•0 comments

Just Use Postgres

https://amattn.com/p/just_use_postgres.html
1•todsacerdoti•5m ago•0 comments

Free software is more valuable now

https://publish.obsidian.md/deontologician/Posts/Free+Software+is+more+valuable+now
1•habitue•6m ago•0 comments

Show HN: Make agents pay to access your endpoints

https://www.nightmarket.ai/
1•ssistilli•8m ago•0 comments

Chaos and Dystopian news for the dead internet survivors

https://www.fubardaily.com
2•anonnona8878•14m ago•0 comments

Injectable satellite livers could offer an alternative to liver transplantation

https://news.mit.edu/2026/injectable-satellite-livers-could-offer-alternative-liver-transplantati...
1•tzury•14m ago•0 comments

Vibe coding Rust Merkle tree with Claude

https://www.youtube.com/watch?v=wRpRFM6dpuc
1•zteppenwolf•14m ago•0 comments

Anthropic chief back in talks with Pentagon about AI deal

https://www.ft.com/content/97bda2ef-fc06-40b3-a867-f61a711b148b
2•ajam1507•16m ago•0 comments

Whoop to Expand Staff by 75% to Spur Growth Ahead of Likely IPO

https://www.bloomberg.com/news/articles/2026-03-04/whoop-to-expand-staff-by-75-to-spur-growth-ahe...
1•SaaSasaurus•17m ago•0 comments

Pgrag: Postgres Support for Retrieval-Augmented Generation (RAG) Pipelines

https://github.com/neondatabase/pgrag
1•nateb2022•18m ago•0 comments

Show HN: Logmera – Self-hosted LLM observability for AI apps

https://pypi.org/project/logmera/
1•Thilakkumar•18m ago•2 comments

Robinhood Platinum Card

https://robinhood.com/us/en/creditcard/platinum/
1•tracyhenry•18m ago•0 comments

Google Ends Its 30% App Store Fee, Welcomes Third-Party App Stores

https://m.slashdot.org/story/453036
1•con•19m ago•0 comments

Show HN: ChatyDevOps – Local DevOps workstation for SSH and deploys

https://devland.chatyshop.com/
1•devsathish•20m ago•0 comments

Desloppify

https://github.com/peteromallet/desloppify
1•handfuloflight•21m ago•0 comments

A Grand Vision for Rust

https://blog.yoshuawuyts.com/a-grand-vision-for-rust/
1•todsacerdoti•27m ago•0 comments

Symfony in 200 Lines

https://wouterj.nl/2026/02/200-lines-of-symfony
1•gsky•32m ago•0 comments

MacBook What?

https://elliotjaystocks.com/blog/macbook-what
1•SenHeng•34m ago•0 comments

Caastle Founder Pleads Guilty to $300M Fraud Scheme

https://www.justice.gov/usao-sdny/pr/caastle-founder-pleads-guilty-300-million-fraud-scheme
1•twalichiewicz•40m ago•0 comments

OpenAI's Codex app lands on Windows after topping 1M Mac installs within a week

https://the-decoder.com/openais-codex-app-lands-on-windows-after-topping-a-million-mac-downloads-...
1•spenvo•40m ago•0 comments

Ask HN: Does downvoting get to a point where you cant upvote?

1•trinsic2•41m ago•2 comments

The Zen of Task Management with Org (2025)

https://bzg.fr/en/the-zen-of-task-management-with-org/
2•aquariusDue•41m ago•0 comments

Show HN: What an AI agent sees in an A2A marketplace – full API walkthrough

https://agoragentic.com/demo.html
1•bourbeau•43m ago•3 comments

An AI avatar is running to represent Indigenous voters in Colombia

https://restofworld.org/2026/ai-avatar-colombia-political-candidate/
1•i7l•43m ago•0 comments

Guild Manager 26 – MMO Management/Spreadsheet SIM

https://playgm26.com
1•itshellboy•45m ago•0 comments

Mysterious blue glow traced to Flying Banana

https://www.bbc.co.uk/news/articles/c795e30j2d0o
1•zeristor•46m ago•0 comments

Kaspersky says Coruna iPhone exploit kit isn't connected NSA-linked operation

https://www.theregister.com/2026/03/04/kaspersky_dismisses_claims_that_coruna/
2•mattydread•46m ago•0 comments

Nbdantic: Peg like parser for Jupyter notebooks

https://github.com/ivanbelenky/nbdantic/
1•ivanbelenky•46m ago•0 comments
Open in hackernews

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

3•gooob•10mo 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•10mo ago
Trying to figure out what to do next and what to do with my life.
gooob•10mo ago
how's that going? what are your current options?
sherdil2022•10mo ago
Not going good.
scottmcdot•10mo ago
How to build a segmentation model based on a sample of data that needs to be representative of the population.
turtleyacht•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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•10mo 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.