frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

OpenClaw as the Universal Operating System for Agents

https://bit.kevinslin.com/p/openclaw-as-the-universal-operating
1•kevinslin•1m ago•0 comments

Why Japanese companies do so many different things

https://davidoks.blog/p/why-japanese-companies-do-so-many
2•d0ks•1m ago•0 comments

Don't put aria-label on generic elements like divs

https://www.matuzo.at/blog/2026/aria-label-generic-elements
1•cyanbane•1m ago•0 comments

"I'm Mad as Hell" scene from Network (1976) [video]

https://www.youtube.com/watch?v=_RujOFCHsxo
1•rglover•1m ago•0 comments

Making my tokens Drought Proof

https://blog.bix.computer/blog/routing-around-token-drought/
1•two-sandwich•2m ago•1 comments

Genetic analysis of circulating metabolic traits in 619,372 individuals

https://www.nature.com/articles/s41586-026-10532-5
1•bookofjoe•2m ago•0 comments

My own vxsort re-implemented with "modern" C++

https://github.com/damageboy/vxsort-cpp
1•tosh•3m ago•0 comments

Mp4 Conv New Innovation

https://tulix.com/mp4conv/
1•TheSolution1•5m ago•0 comments

Aldus Manutius

https://en.wikipedia.org/wiki/Aldus_Manutius
1•simonebrunozzi•5m ago•0 comments

Recreating a Two Million Particle World at 30 Hz over WebSocket with Centrifugo

https://centrifugal.dev/blog/2026/05/21/two-million-particles-on-centrifugo
1•FZambia•6m ago•0 comments

Everyone is an AI cop now

https://lithub.com/everyone-is-an-ai-cop-now-what-happens-when-an-ai-generated-story-wins-a-prest...
2•zug_zug•6m ago•1 comments

SecretVault – Split secrets into two halves, AES-256, runs in browser

https://sv.mangolila.at
1•MikeTheBiker•8m ago•0 comments

AI Coding Assistants

https://www.winstoncooke.com/blog/on-ai-coding-assistants/
2•evakhoury•9m ago•0 comments

Shein Buys Everlane

https://www.nytimes.com/2026/05/22/style/shein-everlane-fast-fashion-sustainability.html
2•vthommeret•9m ago•0 comments

'The whole system has to be reimagined' – Newsom calls for rethinking economy

https://www.politico.com/news/2026/05/19/gavin-newsom-cap-economy-ai-boom-00927930
2•SilverElfin•13m ago•2 comments

Use Boring Languages with LLMs

https://jry.io/writing/use-boring-languages-with-llms/
3•evakhoury•13m ago•0 comments

Show HN: Self-hosted Workspace alternative with a plugin SDK

https://tinycld.org/
1•nathanstitt•13m ago•1 comments

A fake client's project tried to hack my machine with RCE

https://dev.shivagaire.com.np/linkedin-client-rce-backdoor-npm-install
1•sambhu•15m ago•1 comments

Are you a philosophical zombie driven by Claude?

https://blog.cosmos-institute.org/p/are-you-a-philosophical-zombie-driven
1•nrsapt•15m ago•1 comments

Selling SaaS in Germany

https://embedworkflow.com/blog/selling-saas-in-germany-austria-and-switzerland-dach/
1•ewf•18m ago•0 comments

When Code Is Cheap, Does Quality Still Matter?

https://yusufaytas.com/does-code-quality-still-matter
10•yusufaytas•20m ago•0 comments

The quantum realm, the cosmological realm, and the multiverse, in 69 minutes

https://bigthink.com/series/full-interview/multiverse-oluseyi/
2•lschueller•22m ago•0 comments

A Forth-inspired language for writing websites

https://robida.net/entries/2026/05/21/a-forth-inspired-language-for-writing-websites
5•speckx•22m ago•0 comments

China's AI optimism isn't what it seems

https://asteriskmag.substack.com/p/chinas-ai-optimism-isnt-what-it-seems
1•jimmydoe•23m ago•0 comments

London Cool Spaces Map

https://apps.london.gov.uk/cool-spaces/
1•beejiu•24m ago•0 comments

Boarding China's Last Bus

https://asteriskmag.com/issues/14/chinas-last-bus
2•herbertl•24m ago•0 comments

Meta released a new Reddit-like app called Forum

https://www.engadget.com/2179165/meta-forum-groups-app/
1•apparent•25m ago•0 comments

Tell HN: DeepSeek-V4-Pro 75% discount promo is now permanent

3•jimmydoe•26m ago•1 comments

AI errno(2) values

https://www.netmeister.org/blog/ai-errno.html
1•zdw•26m ago•0 comments

Believe It or Not, the Government Is Adopting AI to Make Your Life Easier

https://www.bigtechnology.com/p/believe-it-or-not-the-government
1•lschueller•27m 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.