frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Hunt for the Death Valley Germans

https://otherhand.org/home-page/search-and-rescue/the-hunt-for-the-death-valley-germans/
1•signa11•18s ago•0 comments

Consistency, but in Excellence Not Appearance – Jim Nielsen's Blog

https://blog.jim-nielsen.com/2026/a-consistency-of-excellence/
1•tambourine_man•1m ago•0 comments

Blink If You're Human

https://dynomight.net/blink/
1•Curiositry•2m ago•0 comments

Polymarket traders revolted over one silly sillable

https://www.nytimes.com/2026/06/28/business/donk-polymarket-prediction-markets.html
1•croemer•4m ago•0 comments

Show HN: I Made a WebGPU Based Agent/Worlflow Explainer

https://tdu-naifen.github.io/AgentVisualization/
1•milkpowder101•8m ago•0 comments

The oracle problem is three thousand years old

https://pilgrima.ge/p/the-oracle-problem
2•momentmaker•9m ago•0 comments

Collider: A meson package manager – A hash proves the bytes, not the source

https://collider.ee/blog/2026-06-28-1500_a_hash_proves_the_bytes_not_the_source/https://collider....
1•mog_dev•9m ago•0 comments

Show HN: The CLI for browser agents

https://fuckui.com/fuckui
1•keepamovin•9m ago•0 comments

Anthropic Claude Fable 5, on track to return soon (possibly this week)

https://www.axios.com/2026/06/27/anthropic-fable-5-return-soon
1•dlg•11m ago•0 comments

Token Entanglement in Subliminal Learning

https://owls.baulab.info/
1•derbOac•14m ago•0 comments

Why it's almost impossible to produce a smartphone in the United States

https://www.neowin.net/opinions/why-its-almost-impossible-to-produce-a-smartphone-in-the-united-s...
1•bundie•22m ago•0 comments

Signed satellite images for AI agents

1•avijeetsingh16•22m ago•0 comments

Zero Interest Rate Tech Debt

https://twitter.com/staysaasy/status/2071312293326172647
2•thisismytest•32m ago•0 comments

Google: An 8-minute step-by-step guide to building the smallest Agent loop

https://twitter.com/Easycompany333/status/2071204465168769451
4•aurenvale•35m ago•2 comments

Show HN: SaaS landing page template (React/Vue/HTML, Tailwind), free and MIT

https://github.com/hannah-wright/saas-landing-page-template
1•hannahwright•36m ago•0 comments

Tell Congress: Don't Force Age Checks Online

https://act.eff.org/action/tell-congress-don-t-force-age-checks-online
3•rmason•37m ago•0 comments

HackerRank open sourced its ATS. My resume scored 90/100. Oh wait 74. No – 88

https://danunparsed.com/p/hackerrank-open-source-ats
2•sambellll•45m ago•0 comments

AI and Liability

https://www.schneier.com/blog/archives/2026/06/ai-and-liability.html
3•lwhsiao•57m ago•1 comments

AI-assisted binary patching to fix an abandoned router's DHCP bug

https://gurulabs.com/blogs/edgeos-dhcrelay-binary-patch/
2•4onthefloor124•1h ago•0 comments

Are Lobsters Immortal?

https://www.nhm.ac.uk/discover/are-lobsters-immortal.html
2•thunderbong•1h ago•0 comments

AI boom risks global financial crash, warn central bankers

https://www.telegraph.co.uk/business/2026/06/28/ai-boom-risks-global-financial-crash-central-bank...
26•b-man•1h ago•10 comments

Sophon PFG-1: a monolithic-3D AI ASIC with 330 GB of on-die DRAM and no HBM

https://www.phantafield.com/whitepaper
24•minkowsky•1h ago•15 comments

Guy beats one of the best published quantum circuits for breaking ECDSA with AI

https://twitter.com/bbuddha_xyz/status/2061606383435620527
1•binyu•1h ago•1 comments

Slavoj ŽIžek: Should We Grasp AI Not Only as Substance but Also as Subject?

https://www.youtube.com/watch?v=PNU3YILDyYc
2•AndrewKemendo•1h ago•0 comments

Show HN: XSDR – Real-time event monitoring infrastructure for agents

https://xsdr.app
1•wcrann3•1h ago•0 comments

Why are there more top grades at university? ChatGPT is to blame

https://english.elpais.com/technology/2026-05-21/why-are-there-more-top-grades-at-university-chat...
2•xiaoyu2006•1h ago•0 comments

More fun with high-speed rail in the UK

https://www.theguardian.com/uk-news/2026/jun/29/pause-hs2-reset-until-you-are-confident-it-can-be...
1•zabzonk•1h ago•0 comments

Sway typeahead command palette for the memory constrained

https://www.nilcoast.com/blog/sway-command-palette
1•be_erik•1h ago•0 comments

LLM Optimization

https://www.youtube.com/watch?v=9tvJ_GYJA-o
1•kidbomb•1h ago•0 comments

You might not need a service worker

https://www.jayfreestone.com/writing/you-might-not-need-a-service-worker/
2•Fudgel•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.