frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

WebP

https://en.wikipedia.org/wiki/WebP
1•tosh•8s ago•0 comments

Whoop replacement noop 11.7 released

https://github.com/ryanbr/noop/releases
1•mp3geek•9s ago•0 comments

HN Is Getting Worse

3•ankonai•4m ago•0 comments

Worlds Upon The Wind: a peaceful roguelite deckbuilder about resettling a world

https://github.com/max99x/wutw-public
1•rdmuser•4m ago•1 comments

Show HN: Openstatus/health tree-shakable health endpoints for JavaScript servers

https://github.com/openstatusHQ/health
2•tibozaurus•5m ago•0 comments

The Archival Dystopia of Blade Runner 2049 and Aeon Flux

https://www.pop-archives.com/post/pop-archives-deep-thoughts-the-archival-dystopia-of-blade-runne...
2•october8140•13m ago•0 comments

When code is a maze, smart developers make maps

https://medium.com/@simonsmartiom/when-code-is-a-maze-smart-developers-make-maps-fbc452a48c1b
1•boxesnlines•16m ago•0 comments

Are generative models the next paintbrush?

https://wasi0013.com/2026/09/14/are-generative-models-the-next-paintbrush/
1•wasi0013•17m ago•0 comments

Immiserizing Growth

https://en.wikipedia.org/wiki/Immiserizing_growth
3•motionlessveloc•18m ago•0 comments

Kache v0.21:caching C/C++ links,nvcc objects,and the Clang-CL flags Firefox uses

https://github.com/kunobi-ninja/kache/releases/tag/v0.21.0
1•ainhoaa•21m ago•0 comments

A 386 PC for Your RP2350

https://github.com/rh1tech/frank-386
2•SamuraiLion•25m ago•0 comments

EuroBirdPortal – Live bird movements across Europe

https://www.eurobirdportal.org/ebp/en/
2•NKosmatos•25m ago•0 comments

Sharden: A mineable coin for paying miners

4•Shardhash•28m ago•0 comments

Reverse Engineering Google's TPUs

https://gherkinlabs.com/reverse-engineering-google-tpus
3•goldenarm•30m ago•0 comments

Disclock – Discord timestamp converter with timezone preview

https://disclock.io/
1•louisdc•33m ago•0 comments

Recursive Self-Improvement (RSI)

https://github.com/theseus-labs-rsi/awesome-rsi
1•jonbaer•34m ago•0 comments

This Year I Vibecoded My Taxes

https://capocasa.dev/this-year-i-vibecoded-my-taxes
1•capocasa•35m ago•0 comments

Ask HN: What do you run behind Kafka for log collection and search?

1•whsoul•36m ago•0 comments

Show HN: A web based 4-channel Music Tracker

https://johnoestmannmusic.com/1000-SOS/0007/
1•soundworlds•37m ago•0 comments

Show HN: Build Morocco

https://build-morocco.vercel.app/
1•saadmrb•38m ago•0 comments

When code costs nothing to generate, open source is the only defensible moat

https://joost.blog/open-source-agency/
1•amoriz•39m ago•2 comments

Ultrastorage: Supercharged LocalStorage

https://github.com/yangshun/ultrastorage
1•doppp•39m ago•0 comments

The Last AI Built by Humans: Toward Genuine Recursive Self-Improvement

https://arxiv.org/abs/2609.11873
1•jonbaer•42m ago•0 comments

We are all Product Engineers Now

https://seldo.com/posts/we-are-all-product-engineers-now/
1•max-ch•42m ago•1 comments

GPT-6 Astra solves puzzles

https://quesma.com/blog/gpt-6-astra-solves-puzzles/
1•stared•42m ago•0 comments

How does call center headset noise canceling filter out keyboard sounds?

1•beienchina•43m ago•1 comments

How Good Are Frontier Models at Physics? Expert Re-Grading Reveals Broken

https://arxiv.org/abs/2609.13009
3•sbulaev•44m ago•0 comments

MPs and Lords call for new law to address AI threat to human rights

https://www.bbc.co.uk/news/articles/cwyzvgj70y4o
2•chrisjj•56m ago•0 comments

OpenArch – PyTorch implementations of modern LLM architectures

https://github.com/anuj0456/OpenArch
3•anuj0456•56m ago•2 comments

Tesla owners to get insurance discount if they use self-driving

https://www.afr.com/companies/transport/tesla-owners-to-get-insurance-discount-if-they-use-self-d...
2•Alien1Being•59m ago•1 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.