frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Want to Design Better with AI? Become a Digital Hoarder

https://metedata.substack.com/p/014-want-to-design-better-with-ai
1•young_mete•49s ago•0 comments

Tech CEOs are apparently suffering from AI psychosis

https://techcrunch.com/2026/05/27/tech-ceos-are-apparently-suffering-from-ai-psychosis/
1•IAmGraydon•2m ago•0 comments

PDFearn – free pdf earnings method every week

https://pdfearn.blogspot.com/
1•iLzKiiSG•6m ago•0 comments

The Quantum Computing Breakthrough Hidden Inside Decoherence

https://www.lanl.gov/media/publications/1663/the-race-to-build-a-quantum-computer
2•LAsteNERD•7m ago•0 comments

Solar poverty program raises incomes and lowers air pollution in China

https://www.nature.com/articles/s44458-026-00091-1
1•alphabetatango•7m ago•0 comments

Authorship in the AI Age

https://blog.computationalcomplexity.org/2026/05/authorship-in-ai-age.html
1•speckx•7m ago•0 comments

Show HN: GridPath – Cursor for Spreadsheets (Tauri, Rust)

https://gridpath.dev/
1•pixelmash13•8m ago•0 comments

Phoenix AZ Built an Empire of Cubicle Jobs. AI Is Coming to Tear It Dow

https://www.wsj.com/economy/phoenix-built-an-empire-of-cubicle-jobs-ai-is-coming-to-tear-it-down-...
1•fortran77•9m ago•1 comments

Moon Base

https://www.nasa.gov/moonbase/
1•wofo•9m ago•0 comments

WindowSwap

https://www.window-swap.com/Window
2•bookofjoe•10m ago•0 comments

How the plastic bottle cap became a parable for the value of EU regulation

https://www.theguardian.com/commentisfree/2026/may/27/how-the-plastic-bottle-cap-became-a-parable...
3•tadaima•10m ago•0 comments

Show HN: Kibbutznik – a pulse-based direct democratic engine

https://kibbutznik.org/
1•uriee•11m ago•0 comments

DuckDB Labs Becomes DuckLabs

https://ducklabs.com/news/2026/05/27/duckdb-labs-becomes-ducklabs
2•0xedb•11m ago•0 comments

Ask HN: How old you've been started coding!?

1•Armonsrer•11m ago•2 comments

Beware the boom and bust cycle of memory stocks, investors warn

https://www.cnbc.com/2026/05/25/memory-stocks-cyclical-boom-bust-samsung-sk-hynix.html
1•speckx•15m ago•0 comments

Show HN: CoreMCP – MCP Server for On-Prem DBs

1•y11t0•16m ago•0 comments

Apache Fory v1.0.0 Serialization Framework Released

https://fory.apache.org/blog/fory_1_0_0_release/
1•CharlesW•16m ago•0 comments

I Rebuilt ZX Spectrum Basic in Rust with AI

https://github.com/ashtree74/zxbasic-rust
1•adam_jesion•17m ago•0 comments

Corporations can vote in some Delaware elections, judge says

https://news.bloomberglaw.com/esg/corporations-have-the-right-to-vote-in-delaware-town-judge-says
22•marcher•17m ago•2 comments

How the ZX80 Works

http://blog.tynemouthsoftware.co.uk/2019/10/how-the-zx80-works.html
4•mariuz•19m ago•1 comments

American Dream (2003)

https://github.com/bibanon/bibanon/wiki/American-Dream
1•downbad_•20m ago•0 comments

Trump administration to send Americans exposed to Ebola to Kenya

https://www.nytimes.com/2026/05/26/us/politics/trump-ebola-kenya.html
4•petethomas•20m ago•2 comments

How to Use Git Bisect to Find the Commit That Broke Everything

https://jsdev.space/howto/git-bisect/
2•javatuts•21m ago•0 comments

New Vaultjacking Phishing Technique

https://phishu.net/blogs/blog-vaultjacking-phishing-the-google-password-manager-vault-in-the-phis...
1•curtbraz•21m ago•0 comments

HN Search: A Spotlight-Style Search Interface for Hacker News

https://twitter.com/_bumblebee7_/status/2059649571907637449
1•unconventional•21m ago•0 comments

Five of seven people trapped in Laos cave found alive by rescuers

https://www.cnn.com/2026/05/27/asia/laos-flooded-cave-rescue-intl
2•YeGoblynQueenne•22m ago•0 comments

OpenRouter more than doubles valuation to $1.3B in a year

https://techcrunch.com/2026/05/26/openrouter-more-than-doubles-valuation-to-1-3b-in-a-year/
2•chuckhend•22m ago•0 comments

Hetzner price adjustment of server products effective 15 June 2026

https://www.hetzner.com/pressroom/standardization-and-price-adjustment-of-our-server-products/
5•falava•23m ago•2 comments

Show HN: Zorilla – vibe-code a 3D game in the browser

https://www.zoril.la/
1•algera•23m ago•1 comments

Back to the Future: AI and the Legal Profession

https://blog.withedge.com/p/back-to-the-future-ai-and-the-future
1•ejz•23m 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.