frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Plotting of and by Students

https://leancrew.com/all-this/2026/07/plotting-of-and-by-students/
1•surprisetalk•4m ago•0 comments

Wearable sensors on the face are invisible to the eye

https://www.nature.com/articles/d41586-026-02193-1
1•Brajeshwar•5m ago•0 comments

Async Hydration in Preact

https://jovidecroock.com/blog/resumed-hydration-preact/
1•mariuz•5m ago•0 comments

Use caffeinate to keep Claude Code and Codex running on Mac

https://www.narendravardi.com/use-caffeinate-to-keep-claude-code-and-codex-running-on-mac/
1•uyfyxr8•6m ago•0 comments

I tried to record music onto a cassette tape using modern tech

https://swiftrocks.com/i-tried-to-record-music-onto-a-cassette-tape-using-modern-tech
1•rockbruno•6m ago•0 comments

Real-time on page diagnostics for Blazor developers

https://blazrlytics.com
1•kevbernard•8m ago•0 comments

Reproducible Builds in June 2026

https://reproducible-builds.org/reports/2026-06/
1•lioeters•9m ago•0 comments

AI's Wider Availability Is Good for China, Not Great for OpenAI and Anthropic

https://www.wsj.com/tech/ai/cheaper-ai-commodity-openai-anthropic-0111da73
2•wertyk•9m ago•0 comments

The Most Famous AI Writing Tic Is Also the Most Mysterious

https://www.theatlantic.com/technology/2026/07/ai-chatbot-writing-tic-negative-parallelism/687892/
1•gmays•9m ago•0 comments

Should You Give Up Owning a Home? With Kyla Scanlon [video]

https://www.youtube.com/watch?v=DvYF4DBlcFM
1•mooreds•11m ago•0 comments

Mozilla: The state of open source AI

https://stateofopensource.ai/
12•rellem•13m ago•0 comments

A 5-figure-MRR success after a failed product buried him in debt

https://www.indiehackers.com/post/tech/a-5-figure-mrr-success-after-a-failed-product-buried-him-i...
2•jimwilson•13m ago•0 comments

The Miso That Went to Space

https://ambrook.com/offrange/culture/miso-in-space
2•surprisetalk•14m ago•0 comments

Food for Agile Thought 553: Dangerous Agile Myths, Produce Evidence Quality

https://age-of-product.com/food-agile-thought-553-dangerous-agile-myths/
2•swolpers•14m ago•0 comments

Chinese automakers are taking on the UK – and many Brits are embracing it

https://www.cnbc.com/2026/07/17/chinese-automakers-uk.html
2•pm2222•15m ago•0 comments

US manufacturing employment is down, but each state has its own story

https://fredblog.stlouisfed.org/2026/07/us-manufacturing-employment-is-down-but-each-state-has-it...
2•loughnane•15m ago•0 comments

Claude Code: Anatomy of a Misfeature

https://www.olafalders.com/2026/07/17/claude-code-anatomy-of-a-misfeature/
2•oalders•17m ago•0 comments

Show HN: DSA View View – A TypeScript runtime visualizer for algorithms

https://dsa-view-view.vercel.app/
2•nyaomaru•18m ago•1 comments

Show HN: Crux, a personal AI on your computer you can reach from anywhere

https://qunt.in
2•parker-nyx•18m ago•0 comments

SmartTAR – STAR 1.3.0

https://github.com/eco-by-different/smarttar-star
2•e_b_d•18m ago•1 comments

Show HN: On-chain bond market where the issuers are AI agents

https://selbonds.now
2•griffinfoster7•19m ago•0 comments

We cannot wait for better post-quantum signature algorithms

https://blog.cloudflare.com/ml-dsa-will-have-to-do/
2•pqpdf•19m ago•0 comments

Distant exoplanets may be hiding water beyond Webb Telescope's reach

https://news.uchicago.edu/story/distant-exoplanets-may-be-hiding-water-beyond-webb-telescopes-rea...
2•gmays•19m ago•0 comments

85.3 GFlops: Optimizing FP32 Matrix Multiplication on a Single AMD Zen 3 Core

https://github.com/houslast3/85.30-GFLOPS-Single-Core-FP32-Matrix-Multiplication-on-AMD-Zen-3
2•houslast•20m ago•0 comments

Kimi K3, and what we can still learn from the pelican benchmark

https://simonwillison.net/2026/Jul/16/kimi-k3/
3•droidjj•22m ago•0 comments

AI Meets Cryptography 2: What AI Found in OpenVM's ZkVM

https://blog.zksecurity.xyz/posts/openvm-bugs/
11•duha•22m ago•0 comments

Is GPT-5.6 Sol Max Worth It?

2•yohji1984•23m ago•0 comments

Grok Build Behavior Corrected

https://twitter.com/arafatkatze/status/2077991220954206608
2•kardianos•23m ago•0 comments

Arm Core Local Accelerator Driver Posted for Linux

https://www.phoronix.com/news/Arm-Core-Local-Accelerator
2•patadune•23m ago•0 comments

An Open-Source IDE and Coding Agent You Can Use Kimi-K3 With

https://stagewise.io/use-cases/kimi
2•juliangoetze•24m 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.