frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Clawtoberfest Contribute · Iterate · Molt

https://nesbitt.io/clawtoberfest/
1•lyoncy•2m ago•0 comments

Monty Hall Problem Simulation

https://nodesocket.github.io/monty-hall-problem-simulation/
1•nodesocket•2m ago•0 comments

Can someone explain this information theory puzzle paper in simple terms?

https://www.researchgate.net/publication/394259368_Exploring_Reinforcement_Learning_and_Informati...
1•JustSittingHere•4m ago•0 comments

Multi-Tenancy in Spring Boot: A Practical Guide

https://anomitra.me/blog/multi-tenancy-in-spring-boot-a-practical-guide/
1•shadeslayer_•6m ago•0 comments

Americans Are Falling Behind on Their $1.25T Credit-Card Bill

https://www.wsj.com/personal-finance/credit/us-credit-card-debt-af5c7c77
3•tcp_handshaker•6m ago•0 comments

Vidai – AI Gateway Written in Rust Community Edition Released

https://vidai.uk/community/
1•nagug•8m ago•0 comments

Decades of Effort Restore Steelhead and Salmon Passage on Alameda Creek

https://www.fisheries.noaa.gov/feature-story/decades-effort-restore-steelhead-and-salmon-passage-...
3•rawgabbit•10m ago•0 comments

La Fabbrica Del Terrore

https://drfmappa.substack.com/p/la-fabbrica-del-terrore
1•drpsymappa•13m ago•0 comments

ChatPaper: Explore and AI Chat with the Academic Papers

https://chatpaper.com
1•geox•15m ago•0 comments

Rothko for your current weather conditions

https://rothko.joonas.wtf/
8•jxmorris12•16m ago•1 comments

Why German trains are never on time anymore

https://www.lemonde.fr/en/international/article/2026/05/29/why-german-trains-are-never-on-time-an...
3•rawgabbit•16m ago•0 comments

Show HN: Heypi – Like OpenClaw but for Your Team (Slack, Discord, etc.)

https://github.com/hunvreus/heypi
1•hunvreus•18m ago•0 comments

Reproducible Infrastructure and Nix

https://www.heavybit.com/library/podcasts/open-source-ready/ep-38-reproducible-infrastructure-wit...
1•jmartens•19m ago•0 comments

ARM Open Sources AI-Powered Security Code Review

https://github.com/arm/metis
1•ARob109•19m ago•0 comments

What is to be done about MGLRU?

https://lwn.net/Articles/1072866/
2•infinet•19m ago•0 comments

DDS Vibe Academy – 47 free AI coding masterclasses, built by AI agents

https://ddsboston.com/pages/dds-vibe-academy
1•robert_dds•19m ago•0 comments

GNUtrition 0.33.0rc4

https://savannah.gnu.org/news/?id=10896
2•amcclure•19m ago•0 comments

DOE's Lockheed Martin nuclear-weapons M&O contract: $48B cumulative since 1993

https://www.usaspending.gov/award/27001/
2•thebuildout•21m ago•0 comments

Show HN: Heirlooms – pass your legacy to family after stop breathing

1•jojwong•21m ago•3 comments

Plume – Sensible HTTP Security Headers for Gleam Web Servers, Inspired by Helmet

https://github.com/scott-ray-wilson/plume
1•TheWiggles•22m ago•0 comments

How to make Unreal's Message Log 100 times faster

https://larstofus.com/2026/05/28/how-to-make-unreals-message-log-100-times-faster/
1•caminanteblanco•22m ago•0 comments

AI will be used to estimate age of asylum seekers from next year

https://www.bbc.co.uk/news/articles/ce3pe36qe7ro
6•vylorn•25m ago•0 comments

Hybrid local and cloud LLM stack for regulated financial document processing?

2•rem_cam•25m ago•1 comments

Heirloom.app – Keep important information in a encrypted place

1•jojwong•25m ago•0 comments

Show HN: Simple news aggregator with source bias meters

https://unbiasthenews.com
2•sammy0910•26m ago•0 comments

Ferrari bungled the design of its first EV

https://www.theverge.com/transportation/939226/ferrari-luce-design-terrible-ev-jony-ive-apple
2•Brajeshwar•27m ago•0 comments

Good to Know: Exiting an international organization

https://goodauthority.org/news/good-to-know-exiting-an-international-organization/
1•jruohonen•27m ago•0 comments

International grads three times more likely to find work in Germany

https://thepienews.com/international-grads-three-times-more-likely-to-find-work-in-germany/
1•rustoo•27m ago•1 comments

Study reveals brain circuit that keeps memories from getting mixed up

https://www.uclahealth.org/news/release/study-reveals-brain-circuit-keeps-memories-getting-mixed-up
2•bryanrasmussen•28m ago•0 comments

Ingesting 1Gbps of logs into ClickHouse for $180/month

https://www.opendata.dev/blog/ingesting-1gbps-logs-to-clickhouse/
5•apurvamehta•28m 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.