frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Mossad accicentally injected data to a French lawyer phone instead of extracting

1•0x54MUR41•5m ago•0 comments

Show HN: CIRadar – Self-hosted CI failure diagnosis

https://github.com/Bluezly/CIRadar
1•bluezly•5m ago•0 comments

Chattjb.org is a real human behind the scenes

https://twitter.com/CatJova/status/2085467412259106993
1•arnonejoe•5m ago•0 comments

Provenance

https://en.wikipedia.org/wiki/Provenance
1•soupspaces•6m ago•0 comments

Zig's Io.Threaded Is Neat

https://matklad.github.io/2026/08/06/neat-io-threaded.html
1•Retro_Dev•11m ago•0 comments

Never Gonna Give You Up but the lyrics are in alphabetical order [video]

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

One Cut – Edit Video by Editing Code

https://github.com/smy20011/onecut
1•smy20011•15m ago•0 comments

See the Sun like never before with most detailed images yet

https://www.bbc.com/news/articles/c36d4376nd2o
2•mooreds•15m ago•0 comments

Some software talks I like

https://char.lt/blog/2026/08/talks-i-like/
1•vinhnx•16m ago•0 comments

LA Freeway (Long's to Arapaho Traverse)

https://www.mountainproject.com/route/117783697/la-freeway-longs-to-arapaho-traverse
1•mooreds•16m ago•0 comments

E.U. Nears Approval of Gene-Edited Crops as Olive Sector Eyes Applications

https://www.oliveoiltimes.com/world/e-u-nears-approval-of-gene-edited-crops-as-olive-sector-eyes-...
2•johntfella•19m ago•0 comments

MRMS Renderer – Open-Source NOAA MRMS Radar Renderer for Python

https://github.com/Taylor-Creative-Development/mrms-renderer
1•davidtaylorjr•20m ago•0 comments

Show HN: Qwen3.8-Max – Use Qwen Studio and MCP to Code Locally for Free

https://github.com/tohid4n/qwen3.8-max-local-coding
1•tohid4n•22m ago•0 comments

Retraction: The App Store Rejection of the Week That Was a Correct Rejection

https://daringfireball.net/2026/08/retraction_app_store_rejection_of_the_week
5•minimaxir•23m ago•0 comments

Ms. Tippi Hedren – The Godmother of the Vietnamese Nail Industry

https://vietnamesemuseum.org/details/ms-tippi-hedren/
2•thunderbong•25m ago•0 comments

Alternate Routing Graph

https://agentchannels.org/
1•FelineStateMach•26m ago•0 comments

The Color Recession May Be Permanent

https://www.theatlantic.com/ideas/2026/08/colorless-gray-products-houses/688174/
1•fortran77•27m ago•0 comments

DragonRuby Jam License – Free to All

https://dragonruby.itch.io/dragonruby-gtk/devlog/1620970/dragonruby-jam-license-free-to-all
1•amirrajan•27m ago•0 comments

I asked 4 AI companions what they were. They lied, then texted me the next day

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=7244220
2•Ai_Sycophancy•28m ago•0 comments

Real-time MCP interceptor that blocks .env reads and dangerous commands agents

https://marketnow.site/
2•eddyflores•36m ago•0 comments

Show HN: Pomona, offline small AI reasoners for agricultural sensors

https://github.com/okyanu/pomona
1•okyanu•38m ago•0 comments

Open Discovery Loop

https://opendl.ai/
1•arionhardison•42m ago•0 comments

Doom Running Inside Emacs

https://github.com/minad/doom-on-emacs/tree/3830991bd3d69a9426498ee4a3dc8b55c8eb2eb5
1•signa11•47m ago•0 comments

Work on the Fairphone 6 is turning it into the most modern pmOS smartphone

https://catcrafts.net/posts
3•pizzaiolo•1h ago•0 comments

Show HN: Proxy-or-Not, Proxy Detector

https://arcades.click/proxy-or-not
1•jwally•1h ago•0 comments

Adobe, RapidRAW, and the End of Selling Software as a Product

https://danunparsed.com/p/rapidraw-adobe
4•sambellll•1h ago•4 comments

Suggest some uncensored AI for photo genaration?

4•tafijul•1h ago•1 comments

A Lost Civilization Is Baffling Experts and Rewriting China's Origin Story

https://www.wsj.com/world/china/a-lost-civilization-is-baffling-experts-and-rewriting-chinas-orig...
3•cwwc•1h ago•0 comments

Free ATS keyword checker after friends sprayed 200 resumes

https://medium.com/@grhawk/i-built-a-free-ats-keyword-checker-after-watching-friei-built-a-free-a...
1•applyboost•1h ago•0 comments

Moscow Is Speaking [video]

https://www.youtube.com/watch?v=_d1AmMt6A9s
1•consumer451•1h 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.