frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Strands harness: frontier performance with 28% lower token cost

https://strandsagents.com/blog/introducing-strands-harness/
1•ot•4m ago•0 comments

Accumulated Variance

https://vibingarcologies.substack.com/p/accumulated-variance
1•wilburforce•5m ago•0 comments

Lasso: AI Watermarks Change How Agents Act

https://techstrong.ai/features/lasso-ai-watermarks-change-how-agents-act/
1•CrankyBear•7m ago•0 comments

Show HN: WebGCM – a global climate model running in the browser on WebGPU

https://gcm.echorelay.net/
1•jlhawn•9m ago•0 comments

Lisse: Squircle JavaScript Library

https://corne.rs/
1•handfuloflight•10m ago•0 comments

Splitt – Group expense splitting, settle-up, no caps (iOS)

https://splitt.cash/
1•pryhazhanau•11m ago•0 comments

Synthesia Interactive Avatar API

https://www.synthesia.io/post/interactive-avatar-api-real-time-avatars
1•techietech•12m ago•0 comments

The Internet (1997 – 2021)

https://www.opte.org/the-internet
1•basilikum•13m ago•1 comments

Show HN: A Self-hosted Deferred Deep linking. Firebase dynamic link model

https://github.com/Newtdev/blynk-deferlink
1•NewtDev•14m ago•1 comments

Gold Steadies as Traders Weigh Inflation and Fed Hike Outlook

https://coinmarketcap.com/community/post/379486955/
1•joeymabia1•15m ago•0 comments

Teen Autopsy Marks Arrival of Deadly Drug Cychlorphine in San Francisco

https://www.nytimes.com/2026/09/14/us/san-francisco-autopsy-cychlorphine.html
1•bookofjoe•16m ago•1 comments

A Kansas girl ran off to join the circus and changed the tattoo world

https://www.npr.org/2026/09/16/nx-s1-5955615/a-kansas-girl-ran-off-to-join-the-circus-and-changed...
2•gmays•17m ago•0 comments

'Epigenetic' editing banishes hepatitis B virus

https://www.nature.com/articles/d41586-026-02981-9
3•sbulaev•17m ago•0 comments

Fly.io 2026 Pricing Update

https://fly.io/pricing-update/
1•bialyalibaba•19m ago•0 comments

macOS 26.4 silently enabled login keychain data protection

https://lapcatsoftware.com/articles/2026/9/5.html
3•chmaynard•21m ago•0 comments

Google CC, an AI agent built for families

https://blog.google/innovation-and-ai/models-and-research/google-labs/cc-expanding-to-groups/
3•hmokiguess•21m ago•0 comments

Ask HN: Why does it matter if no one reads your novel as long as the AIs do?

4•amichail•21m ago•13 comments

IA Agent Arthur – Developed an OfflineAIagent

https://x.com/AI_AGENT_ARTHUR
1•AIAGENTARTHUR•23m ago•0 comments

Building Software That Can Prove Agents Wrong

https://www.rafael.md/writing/building-software-that-can-prove-agents-wrong
1•rafaelcamaram•24m ago•0 comments

vLLM Architecture, Memory and Benchmarks Deep Dive

https://www.g-ftech.com/blog/vllm-throughput-deep-dive
1•gfactor_ai•25m ago•0 comments

CBP suspends all personal prescription importation Oct 22

https://www.personalimportation.org/advocacy
3•burnt-resistor•26m ago•0 comments

Show HN: MoA – Attention kernel proven minimal before code was written

https://github.com/womenflyplanes/moa-attention-verified-mullin
1•lmullin•26m ago•0 comments

EU plans "digital expropriation" of Europeans in the interest of AI companies

https://noyb.eu/en/ai-eu-member-states-plan-digital-expropriation-europeans-interest-ai-companies
2•latexr•26m ago•0 comments

Future-Proof Data Systems [pdf]

https://www.vldb.org/pvldb/vol19/p4965-giceva.pdf
1•matt_d•27m ago•0 comments

A Major Cold Intrusion Spreads Across Eastern Europe: Seasonal Frost to Follow

https://www.severe-weather.eu/global-weather/major-cold-intrusion-polar-blast-eastern-europe-sept...
1•dgellow•28m ago•0 comments

Many Choices Lie Ahead

https://proofsandprompts.com/2026/09/21/many-choices-lie-ahead/
1•mathgenius•28m ago•0 comments

Tell HN: WebRezPro Compromised

2•chrisaycock•29m ago•0 comments

Your Second Brain Won't Do the Work

https://korin.uk/your-second-brain-wont-do-the-work
1•phoronixrly•30m ago•0 comments

Women Who Sold Books Door to Door

https://daily.jstor.org/the-women-who-sold-books-door-to-door/
2•herbertl•31m ago•0 comments

Astronomy mapped: Africa lacks optical observatories

https://observatorymap.withastra.io/
1•pppone•32m 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.