frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Noemi Reveals Multi-Mission Strategy for Electric Amphibious Aircraft

https://www.ainonline.com/aviation-news/futureflight/2026-05-19/noemi-reveals-multi-mission-strat...
1•rbanffy•48s ago•0 comments

Startup Fundraising, just like Dating, are both deeply inefficient markets

https://intercoin.org/matchmaking.html
1•EGreg•58s ago•0 comments

End of the beginning – the state of global energy markets after ten weeks of war

https://nbutler.substack.com/p/the-end-of-the-beginning-the-state
1•JumpCrisscross•1m ago•0 comments

Node.js 26.0.0 (Now with Temporal)

https://nodejs.org/en/blog/release/v26.0.0
2•aarestad•2m ago•0 comments

Researchers discover a new gigantic dinosaur species in Thailand

https://abcnews.com/International/researchers-discover-new-gigantic-dinosaur-species-thailand/sto...
1•gmays•2m ago•0 comments

Ask HN: US is planning another Invasion (Cuba).Can Congress/public stop this?

2•orsenthil•3m ago•0 comments

Understand Russian without Studying [video]

https://www.youtube.com/watch?v=86zPQ53bgX0
1•diimdeep•3m ago•0 comments

GitHub Source code leaked. Be prepared

https://twitter.com/github/status/2056949169701720157
2•TZubiri•3m ago•1 comments

Show HN: Llama CPU Benchmarks

https://deemwar-products.github.io/llama-cpu-benchmarks/
1•muthuishere•3m ago•0 comments

What You Will Lose When You Retire – By Dan Haylett

https://danhaylett.substack.com/p/what-you-will-lose-when-you-retire
1•bilsbie•5m ago•0 comments

If an LLM is too expensive it won't be next year

http://liveatthewitchtrials.blogspot.com/2026/05/if-llm-is-too-expensive-it-wont-be-next.html
3•speckx•11m ago•0 comments

Citor: A header-only C++20 thread pool tuned for sub-us dispatch

https://github.com/Lallapallooza/citor
3•Lallapallooza•13m ago•0 comments

Flipper One Tech Specs

https://docs.flipper.net/one/general/tech-specs
3•gregsadetsky•16m ago•0 comments

Marine scientists discover record number of new species

https://abcnews.com/International/marine-scientists-discover-1100-new-species-new-record/story?id...
2•thunderbong•17m ago•0 comments

Notched sticks to calculators: the history of counting machines

https://lcamtuf.substack.com/p/a-brief-history-of-counting-stuff
2•fratellobigio•18m ago•0 comments

Built a CAPTCHA alternative in C with PoW, JA4, and puzzle in complex mode

https://github.com/captxa/captxa-backend
1•captxa•19m ago•0 comments

OSS Alternative to AWS Transfer Family Written in Elixir

https://hex.pm/packages/sftpd
3•ixtli•21m ago•1 comments

Training a small model to write better OCaml with RLVR and GRPO

https://blog.nilenso.com/blog/2026/05/18/training-a-small-model-to-write-better-ocaml-with-rlvr-a...
1•sriharis•23m ago•0 comments

Killing in Japan Stirs Fear of New Crime Rings That Recruit the Vulnerable

https://www.nytimes.com/2026/05/20/world/asia/japan-tokuryu-crime-killing.html
1•mistersquid•23m ago•0 comments

What will better AI mean?

https://geohot.github.io//blog/jekyll/update/2026/05/20/what-will-better-mean.html
2•speckx•26m ago•0 comments

I got ratioed by 300 writers

https://booksbyjeffrey.substack.com/p/i-got-ratioed-by-300-writers
1•exolymph•27m ago•0 comments

TeamPCP Interview

https://buymeacoffee.com/insidedarknet/teampcp-interview
1•Cider9986•28m ago•0 comments

SQL injection on Drupal sites using PostgreSQL

https://www.drupal.org/sa-core-2026-004
2•nwellnhof•29m ago•0 comments

Muxy is a lightweight terminal for Mac with a mobile app for remote control

https://github.com/muxy-app/muxy
1•543310•29m ago•0 comments

SpaceX picks Goldman Sachs for lead left position on record-breaking IPO

https://www.cnbc.com/2026/05/19/spacex-picks-goldman-sachs-to-lead-record-breaking-ipo-sources-sa...
1•cwwc•31m ago•0 comments

Former Cuban president Raúl Castro indicted in US over fatal downing of 2 planes

https://www.bbc.com/news/live/czr24nr681gt
5•tartoran•32m ago•0 comments

Garry Tan – How one founder becomes a 1000x engineer (Stanford) [video]

https://www.youtube.com/watch?v=Lri2LNYtERM
2•sebzuddas•32m ago•0 comments

ReMarkable Connection Utility (RCU)

https://www.davisr.me/projects/rcu/
1•nathell•32m ago•0 comments

Assoc between preop vit D level andpostop pain in breast cancer surgery patients

https://rapm.bmj.com/content/early/2026/05/04/rapm-2025-107495
1•bookofjoe•32m ago•0 comments

Premium Deception: Uncovering a Global Android Carrier Billing Fraud Campaign

https://zimperium.com/blog/premium-deception-uncovering-a-global-android-carrier-billing-fraud-ca...
2•speckx•33m 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.