frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

1•l-crispr•18s ago

Rainwatch – family and friends rain radar

https://fidraj.github.io/world-weather/
2•fidraj•35s ago•0 comments

Ladana OS: An AI-native Linux desktop built from scratch

https://github.com/Johnny70/ladanaOS
1•Johnny70•53s ago•0 comments

Fixing a bricked AMD 7040 series Framework 13" laptop with $20 tools

https://quantum5.ca/2026/08/16/fixing-bricked-amd-7040-series-framework-13-laptop-with-20-tools/
1•subract•1m ago•0 comments

AI slop is swamping a House office that drafts US laws

https://www.politico.com/news/2026/08/17/ai-slop-lawmakers-congress-01008376
1•softwaredoug•1m ago•0 comments

Show HN: RaisFast – A single-binary BaaS and headless CMS in Rust

https://github.com/RaisFast/raisfast
1•snkzhong•2m ago•0 comments

Book the Meeting Before You Need It

https://staysaasy.com/book-the-meeting/
3•gpi•2m ago•0 comments

Show HN: A community library for Claude Code status lines

https://statuslin.es
2•nastynate•4m ago•0 comments

Speeding Up the Plush Garbage Collector

https://pointersgonewild.com/2026-08-17-speeding-up-the-plush-garbage-collector/
1•maxime_cb•7m ago•0 comments

Flirt: GitHub and Mailing List back ends

https://blog.buenzli.dev/flirt-github-and-mailing-list/
1•birdculture•8m ago•0 comments

The End of the European Summer

https://www.newyorker.com/magazine/2026/08/24/the-end-of-the-european-summer
1•littlexsparkee•8m ago•0 comments

What to Know About the mRNA Flu Vaccine, Newly Approved by the FDA

https://jamanetwork.com/journals/jama/fullarticle/2853094
1•susiecambria•8m ago•0 comments

Show HN: Sokoban AI Solver

https://mkornreich.me/projects/sokoban/
1•enjoyyourlife•9m ago•0 comments

Words in a config file made an AI code auditor skip the file with the bug

https://richardjamieson.co.za/writing/clean-report-problem.html
1•RichJam•10m ago•0 comments

Securing the Infrastructure of Intelligence

https://xcancel.com/antibot/captcha
2•underdeserver•11m ago•0 comments

Show HN: An RSS Feed for DeepSWE Benchmarks

https://rss.xlit.app/deepswe
2•ghasemi•13m ago•0 comments

Embeds Did Serious Harm to One of My Websites

https://unattributed.cc/2026/08/07/embeds-did-serious-harm-to/
2•surprisetalk•14m ago•0 comments

You can make your AI Agents EU AI ACT compliant

https://medium.com/@MirArshadTalpur/how-you-can-make-your-ai-agents-eu-ai-act-compliant-1e132e9e4a52
2•Arshad-Talpur•15m ago•0 comments

Stripe to Buy OpenRouter for $7B

https://www.bloomberg.com/news/articles/2026-08-16/stripe-nears-deal-to-buy-ai-firm-openrouter-fo...
3•FinnLobsien•16m ago•0 comments

MIL – Moments in Life

https://mil.now/
1•untitled-now•17m ago•0 comments

AI Stock Research Assistant · Streamlit

https://ai-stock-research-kiaan.streamlit.app
1•KiaanKothari•18m ago•0 comments

Measuring Autonomous AI Research

https://www.primeintellect.ai/blog/measuring-autonomous-research
1•ImageXav•18m ago•0 comments

99% of developers will be users, The 1% will be in high demand [video]

https://www.youtube.com/watch?v=s2G_yFXtmJQ
1•dhruv3006•19m ago•0 comments

SyntheticBird Cuprate Address Book, Reproducible Build and Supply Chain Security

https://ccs.getmonero.org/proposals/syntheticbird_cuprate_scs_ab_3_months.html
1•Cider9986•22m ago•0 comments

The Google SPF Record: Setup, Lookup Math, and the Parts Google's Docs Skip

https://dmarcguard.io/blog/google-workspace-spf-record/
1•meysamazad•22m ago•0 comments

Markdown: Nested Code Fences

https://perrotta.dev/2026/08/markdown-nested-code-fences/
1•meysamazad•22m ago•0 comments

Show HN: KubeSentry – Self-hosted runtime threat detection for Kubernetes

https://kubesentry.io/
3•KubeSentryio•23m ago•0 comments

Dwelling in the Margins

https://tommi.space/margins/
1•meysamazad•23m ago•0 comments

Solving Moe Load Imbalance in LLM Training via Optimal Transport

https://arxiv.org/abs/2608.03676
1•nullnonenilNULL•24m ago•0 comments

Heroes star Hayden Panettiere passes away at 36

https://www.nbcnews.com/pop-culture/pop-culture-news/actor-hayden-panettiere-dies-36-rcna592856
2•lackoftactics•26m 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.