frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

MathStudio Android APK modernized for Android >= 7

https://github.com/woct0rdho/mathstudio-apk-modernized
1•woctordho•17m ago•1 comments

Unruly Play

https://www.unrulyplay.com/
3•bkudria•21m ago•0 comments

I Wrote Ultralearning. This Is What I'd Change Because of AI

https://www.scotthyoung.com/blog/2026/04/29/ultralearning-ai/
2•pullshark91•21m ago•0 comments

Show HN: UIGen – Runtime front end for any OpenAPI spec with AI skills

https://github.com/darula-hpp/uigen
2•ombedzi•22m ago•0 comments

Turning live heart rate data into a generative audio story

https://runnory.com/blog/heart-rate-writes-the-story
2•danultimateb•23m ago•1 comments

Engaging Essays in Cosmology [1971-2026]

https://archive.org/details/a.-tomilin-engaging-essays-in-cosmology-mir-titles-2026
3•the-mitr•27m ago•0 comments

Yann LeCun's Billion Dollar Bet [video]

https://www.youtube.com/watch?v=kYkIdXwW2AE
1•mfiguiere•30m ago•0 comments

Show HN: Stay Lean – Calorie Navigation

https://apps.apple.com/us/app/stay-lean-calorie-navigation/id6762153463
1•janpmz•31m ago•1 comments

Making Postman load 60% Faster

1•vedkribhu•35m ago•1 comments

Model Engines Manufacturable drawings/plans

https://outerzone.co.uk/plans.asp?cat=Engines&Xcardsperpage=48
1•pillars•38m ago•0 comments

I wrote a custom CUDA inference engine to run Qwen3.5-27B on $130 mining cards

https://news.ycombinator.com/submit
2•Haru-neo•40m ago•0 comments

Einstein's Big Idea Documentry(2005) - 1h 49M [video]

https://thinktv.pbslearningmedia.org/resource/nvfb-sci-einsteinsidea/wgbh-nova-einsteins-big-idea...
1•num42•42m ago•0 comments

Pgxbackup: Continuity Support for PgBackRest

https://thebuild.com/blog/2026/05/01/pgxbackup-continuity-support-for-pgbackrest/
1•thunderbong•43m ago•0 comments

Show HN: Keryx: TypeScript framework where one Action becomes HTTP, WS, CLI, MCP

https://www.keryxjs.com
1•evantahler•53m ago•1 comments

The Reality of Being a Man in Your 50s in South Korea

https://indignified.com/the-hidden-realities-of-midlife-masculinity-in-south-korea/
3•ZguideZ•55m ago•0 comments

Mouse Pointer as a Mere Mortal

https://unsung.aresluna.org/mouse-pointer-as-a-mere-mortal/
1•zdw•1h ago•0 comments

Quantum Machine Learning: A Pragmatic Guide for Classical ML Engineers

https://pawankjha.substack.com/p/quantum-machine-learning-the-pragmatic
2•pawanjha25•1h ago•0 comments

Redesigning Agent Skills – two missing parts

https://simianwords.bearblog.dev/what-agent-skills-misses-now/
1•simianwords•1h ago•0 comments

NodeMind – binary document index, 48× smaller than float32 RAG, no GPU required

https://github.com/QLNI/NodeMind
2•Nodemind•1h ago•0 comments

MX Script: a scripting language for one file web APIs

https://www.mxscript.com/
2•jlkdevelop•1h ago•0 comments

Under sea internet cables need backup

https://restofworld.org/2026/iraq-big-tech-gulf-war-data/
1•hemc4•1h ago•1 comments

The Duke in His Domain (1957)

https://www.newyorker.com/magazine/1957/11/09/marlon-brando-profile-truman-capote
1•cocacola1•1h ago•0 comments

Saudi Arabia ranks 2nd globally in data center market attractiveness

https://saudigazette.com.sa/article/661023/saudi-arabia/saudi-arabia-ranks-2nd-globally-in-data-c...
1•xlmnxp•1h ago•0 comments

The Last Post

https://www.penmachine.com/2011/05/the-last-post
2•lockyc•1h ago•0 comments

The AI Spending Trap: Why Adoption Outpaces Outcomes

https://age-of-product.com/ai-spending-trap/
1•swolpers•1h ago•0 comments

55M Smartphones Run on the HarmonyOS

https://www.scmp.com/tech/tech-trends/article/3351837/huaweis-harmonyos-more-55m-phones-china-ste...
3•hemc4•1h ago•0 comments

I built a free SEO/AEO/security scanner for websites

https://visrank.org
1•Drages•1h ago•0 comments

Can AI Design Therapies?

https://www.scmp.com/tech/article/3352032/bytedances-drug-unit-presents-ai-designed-therapies-glo...
1•hemc4•1h ago•0 comments

Show HN: Hangman Game

https://threej.in/games/talha37-12-hangman-game/index.html
2•threejin•1h ago•1 comments

Big Tech will spend nearly $700B on AI in 2026. No one knows where buildout ends

https://fortune.com/2026/04/30/big-tech-hyperscalers-will-spend-700-billion-on-ai-infrastructure-...
3•1vuio0pswjnm7•1h 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.