frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: AI Mood Tracker and Journal for iPhone

https://apps.apple.com/us/app/moon-mood-tracker-journal/id6773049470
3•losteden1•1m ago•0 comments

Robots "protest" in Warsaw to demand regulation of AI and automation

https://notesfrompoland.com/2026/09/08/robots-protest-in-warsaw-to-demand-regulation-of-ai-and-au...
1•giuliomagnifico•1m ago•0 comments

Versign Announce New .web Domain Extension

https://investor.verisign.com/news-releases/news-release-details/verisign-announces-delegation-web/
1•a_paddy•2m ago•0 comments

OpenAI Just Claimed a Math Discovery. Some Academics Are Crying Foul

https://www.wired.com/story/openai-navier-stokes-math-discovery-academics/
1•olalonde•2m ago•0 comments

EU and Canada Plan Far-Reaching Alliance to Strengthen Partnership

https://www.bloomberg.com/news/articles/2026-09-08/eu-and-canada-plan-far-reaching-alliance-to-st...
2•helsinkiandrew•3m ago•1 comments

Ask HN: Is there anything worth developing with AI?

1•mf2hd•5m ago•0 comments

Show HN: I made a moving map of SF's trains in real time

https://sf-motion-s9et3.reachpad.app/
1•sakuraiben•6m ago•0 comments

MiniPACS

https://minipacs.net/
1•tr00x•8m ago•1 comments

A Meta engineer's guide to surviving the coming tribulation

https://whatjusthappened.org/
1•jmcv•8m ago•0 comments

Show HN: Readerbeam – Anything you read. Straight to your eReader

https://www.readerbeam.com/
1•carlos-menezes•9m ago•0 comments

Get a website Adsense approval [pdf] guide

https://www.ebay.com/itm/366656695844
1•ilaysyou•9m ago•0 comments

Show HN: Internet Apology – pay to publish a public apology receipt

https://internetapology.com
1•museumkeeper•10m ago•0 comments

Tech Needs Humanists More

https://passo.uno/tech-needs-humanists-more-than-ever/
1•theletterf•12m ago•0 comments

Cinema lessons from a trash-movie auteur

https://www.newyorker.com/culture/the-weekend-essay/cinema-lessons-from-a-trash-movie-auteur
1•samizdis•14m ago•0 comments

Hqtui: Terminal UI for TypeScript, Rust, Go, Python, Zig, Ruby

https://hqtui.com/
3•thunderbong•14m ago•0 comments

Why the 'Temu Range Rover' Is Such a Threat to Jaguar Land Rover

https://www.bbc.co.uk/news/articles/c5y4l22p262o
1•microsoftedging•15m ago•0 comments

The Incumbents Are Coming

https://twitter.com/seema_amble/status/2095546732633379079
1•gmays•16m ago•0 comments

Slime moulds and the bitter debate over the nature of intelligence

https://www.theguardian.com/news/ng-interactive/2026/sep/08/this-is-dangerous-slime-moulds-and-th...
1•Betelbuddy•16m ago•0 comments

Show HN: I built a filterable list of beginner whittling projects

https://whittling.hashu.org/
1•avihashu•18m ago•1 comments

Show HN: AgentDFS – Fantasy Football for Agents

https://agentdfs.dev
1•crabasa•18m ago•1 comments

Scientists Are Making Concrete with Human Poop – and It Gets 42% Stronger

https://www.sciencealert.com/scientists-are-making-concrete-with-human-poop-and-it-gets-42-stronger
2•downbad_•18m ago•0 comments

AI-Generated Life

https://anuratype.bearblog.dev/ai-generated-life/
1•typeepyt•19m ago•0 comments

Floodtide: Keep your Mac up to date (MacUpdater replacement)

https://bhopstudio.com/floodtide
2•luckman212•19m ago•1 comments

Iceland Summons U.S. Ambassador over Provocative Trump Map

https://www.nytimes.com/2026/09/08/world/europe/iceland-summon-ambassador-trump-map-greenland.html
1•_doctor_love•20m ago•1 comments

We hash API keys at rest – and what it costs in edge-function latency

https://www.eqiqs.com/blog/hashing-api-keys-edge-function-latency
1•EQIQs•21m ago•0 comments

The Artifact Is Free, Assurance Is the Product

https://redmonk.com/kholterhoff/2026/08/13/the-artifact-is-free-assurance-is-the-product/
1•mooreds•21m ago•0 comments

Fork is all sandboxes need

https://arker.ai/blog/fork-is-all-you-need
2•calebhwin•21m ago•0 comments

Finite-time blowup with smooth forcing for incompressible porous media

https://mastodon.social/@tristanbuckmaster/117233413705701198
1•bryan0•21m ago•0 comments

Arm's C2-Ultra, G2-Ultra NX, and CSS N4 IP

https://chipsandcheese.com/p/arms-c2-ultra-g2-ultra-nx-and-css
1•pella•22m ago•0 comments

On Quality

https://www.worseonpurpose.com/p/on-quality
3•bookofjoe•23m 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.