frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The neutral proof standard for consequential AI-agent actions

https://github.com/Actenon
1•Bucko1•23s ago•0 comments

How much and why ACA Marketplace premiums are going up in 2027

https://www.healthsystemtracker.org/brief/how-much-and-why-aca-marketplace-premiums-are-going-up-...
1•LostMyLogin•41s ago•0 comments

A Treatise on How to Use the Internet Without Committing Philosophical Suicide

https://pastebin.com/Ft7P5m9F
1•jxmorris12•5m ago•0 comments

North Korean Hackers Compromise Go and PHP Packages

https://opensourcemalware.com/blog/polinrider-jumps-the-fence
2•6mile•9m ago•1 comments

Rewriting Bun in Rust

https://bun.com/blog/bun-in-rust
14•afturner•9m ago•1 comments

Show HN: Screenstab (tilt-shift-style screenshots) is now free and open source

2•mikaelaast•11m ago•0 comments

CrowdSound: A Song Composed Anonymously by the Internet

https://web.archive.org/web/20191208165423/https://crowdsound.net/lyrics
1•Jomal_HN•14m ago•0 comments

Open Source Barware: free, local-first bar inventory software (GPLv3)

https://opensourcebarware.com
1•RichBJamison•16m ago•0 comments

Apple's AWDL causing periodic 90ms ping on LAN

https://twitter.com/tomaskafka/status/2074963014596366670
2•tomaskafka•18m ago•0 comments

Build Your World Cup Dream Team

https://7-0-game.com/
1•jeyzolo•19m ago•1 comments

More Workers Take Mental Health Leave, and Bosses Aren't Happy

https://www.bloomberg.com/news/articles/2026-07-08/mental-health-leave-is-rising-as-more-us-worke...
4•wslh•19m ago•1 comments

BitTorrent's disastrous, legendary, and controversial story

https://www.theverge.com/tech/959848/bittorrent-story-25-years-piracy
3•colinprince•21m ago•0 comments

Robust Secret Storage in Networks

https://arxiv.org/abs/2606.30261
1•Anon84•21m ago•0 comments

Show HN: Probed – Talk to your People. Customer chat, feedback, and roadmaps

https://probed.chat/
1•HeadOfProbing•21m ago•0 comments

Lucky young couple lands gig taking care of uninhabited Irish island

https://www.cbc.ca/lite/story/1.7477696
1•colinprince•22m ago•0 comments

Reframing smart glasses as 'pervert glasses'

https://this.weekinsecurity.com/reframing-smart-glasses-as-pervert-glasses/
6•g-b-r•22m ago•1 comments

Does the Recent SCOTUS Geofence Case Threaten Flock?

https://www.youtube.com/watch?v=R_fVvppq7rg
1•sbuttgereit•24m ago•1 comments

Shares of gun seller GrabAGun, backed by Don Trump Jr, tank on NYSE debut (2025)

https://www.cnbc.com/2025/07/16/trump-jr-grabagun-stock-gun-merger.html
3•xrd•26m ago•0 comments

Benchmarking Coding Agents on Databricks' Multi-Million Line Codebase

https://www.databricks.com/blog/benchmarking-coding-agents-databricks-multi-million-line-codebase
1•tanelpoder•29m ago•0 comments

Nika – Intent as Code for AI Workflows

https://github.com/supernovae-st/nika
1•ThibautMelen•29m ago•0 comments

Dxball2 WASM

https://scritty-dev.github.io/dxball2/
1•scritty-dev•31m ago•0 comments

Show HN: Runtime security enforcement and capability scoping for agents

https://www.clayseal.com
2•pberlizov•32m ago•0 comments

Show HN: Mtok.market – a non-custodial spot market for AI inference tokens

https://mtok.market/
1•royashbrook•33m ago•0 comments

I built Outerloop – manage your Macs as a Claude Code fleet from one dashboard

https://github.com/phyolim/outerloop
1•phylim•33m ago•0 comments

Alert: Cyclospora Cayetanensis Multistate Outbreak with Midwest Epicenter

https://www.foiclinical.com/posts/alert-cyclospora-cayetanensis-multistate-outbreak-with-midwest-...
3•oceanacd•34m ago•0 comments

The extraordinary life and quiet death of the largest iceberg

https://www.nationalgeographic.com/environment/article/the-extraordinary-life-and-quiet-death-of-...
5•littlexsparkee•39m ago•1 comments

US judge approves Elon Musk settlement with SEC despite misgivings, 'red flags'

https://www.reuters.com/world/judge-approves-elon-musk-settlement-with-us-sec-over-twitter-disclo...
7•tartoran•41m ago•0 comments

Istota, a multi-user AI agent and personal operating system

https://istota.cynium.com/
3•durakot•41m ago•0 comments

I stopped watching my agents work and started listening

https://jonmagic.com/posts/i-stopped-watching-my-agents-work-and-started-listening/
2•dangoor•42m ago•0 comments

AllTrails waypoints are now visible to everyone

https://www.reddit.com/r/WildernessBackpacking/s/43tGNc3aEM
4•hentrep•43m ago•0 comments
Open in hackernews

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

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