frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The AI-Native SDLC Playbook

https://claude.com/blog/the-ai-native-sdlc-playbook
1•gmays•4m ago•0 comments

Afterword – a multiplayer remake of Word After Word

https://afterword.exe.xyz
1•indigodaddy•4m ago•0 comments

South African diamond mines are closing due to weak sales and lab-grown stones

https://www.wsj.com/business/diamond-mines-are-closing-and-south-africans-have-few-alternatives-f...
3•bookofjoe•13m ago•1 comments

Obscura: Native rendering is here. No Chromium required

https://github.com/h4ckf0r0day/obscura
2•partsch•14m ago•0 comments

Show HN: Virtual photoshoot for guys who dislike having their pic taken

https://vibeflirting.com/
2•Ritjert•15m ago•0 comments

Researchers Spot Fake Ancient Pottery Using the Earth's Magnetic Field

https://www.smithsonianmag.com/smart-news/researchers-determine-how-to-spot-fake-ancient-pottery-...
2•cisc•15m ago•0 comments

OpenRDX

https://github.com/SunboX/OpenRDX
2•SunboX•17m ago•0 comments

OpenAI Response to the Wiki Incident

https://twitter.com/OpenAI/status/2096133504417616165
2•theCricketer•20m ago•1 comments

Lazygit

https://lazygit.dev/
3•amirmasoudabdol•22m ago•0 comments

Show HN: Fast Cut Video tool for cutting video for Agents

https://github.com/modecir/fast-cutvid
3•Modecir•24m ago•0 comments

How AI is breaking the British state

https://www.economist.com/leaders/2026/08/06/how-ai-is-breaking-the-british-state
3•tchalla•24m ago•0 comments

Show HN: I replaced my portfolio with an AI that knows me

https://xlogic.sh/
2•AaronJonk•24m ago•0 comments

What different world maps get right – and what they get wrong

https://www.bbc.com/news/articles/cly5r60v4mro
2•1659447091•25m ago•0 comments

Read efficiency issues in Postgres queries

https://www.pgmustard.com/blog/read-efficiency-issues-in-postgres-queries
2•blueshoess•26m ago•0 comments

Show HN: Phntm-ONE: I built a local AI desk assistant

https://www.phntmcore.com/
2•phntmcore•26m ago•0 comments

Make Peace with Darwin

https://www.overcomingbias.com/p/make-peace-with-darwin
2•paulpauper•26m ago•0 comments

The Scaling versus Profitability Trade-Off: Venture Capital's Weakest Link

https://aswathdamodaran.substack.com/p/the-scaling-versus-profitability
2•paulpauper•30m ago•0 comments

Show HN: I made a sea Tamagotchi game in Three.js

https://seal-tamagotchi-zyrmx.reachpad.app
2•sakuraiben•31m ago•0 comments

Worldbuilding Gender

https://millicosm.substack.com/p/worldbuilding-gender
2•paulpauper•34m ago•0 comments

How to perform CPR and defibrillation training video (2020)

https://commons.wikimedia.org/wiki/File:Save_a_Life_Cymru_-_Training_video.webm
3•schnatterer•37m ago•1 comments

How do you filter noise from signal in programming resources?

2•taosx•39m ago•0 comments

PR review when everyone has LLMs

https://octet-stream.net/b/scb/2026-09-05-pr-review-when-everyone-has-llms.html
1•thombles•40m ago•0 comments

Show HN: Merge Wikipedia articles across languages into one page

https://github.com/gojiplus/wikifuse
1•neehao•41m ago•0 comments

From a Chocolate Wrapper to Concurrent InnoDB Page Splits

https://mariadb.org/from-a-chocolate-wrapper-to-concurrent-innodb-page-splits/
1•drrtuy•41m ago•0 comments

Daynode: Calendar, Reminders, and Notes

https://www.daynode.com/
1•handfuloflight•43m ago•0 comments

Crbro – Local, file-based memory for MCP agents with supersede/retract

https://github.com/Octonove/crbro-memory
2•cerebromcp•44m ago•0 comments

Show HN: Body Piercings in Charlotte NC

https://thepiercingfactory.net
2•wowinter15•49m ago•0 comments

Soviet dreams of the future / Madrobots Blog – Sudonull

https://sudonull.com/post/27649-Soviet-dreams-of-the-future-Madrobots-Blog/
2•rbanffy•51m ago•0 comments

Verifiable Domains Will Eat the World

https://twitter.com/jon_stokes/status/2091383885569405025
1•gmays•52m ago•0 comments

Webring.rip – 160k generated 1997 home pages, no back end

https://webring.rip/
3•henrychannel•55m ago•1 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.