frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Finding Bugs Using LLMs

https://materialize.com/blog/finding-bugs-using-llms/
1•def-•8m ago•0 comments

Hermes: The Agent That Grows with You

https://hermes-agent.nousresearch.com/
1•mooreds•11m ago•1 comments

Cleve Moler (Matlab, MathWorks) passed away on May 20, 2026

https://www.mathworks.com/company/aboutus/founders/clevemoler.html
2•mychele•12m ago•0 comments

How to Rule the World

https://feld.com/archives/2026/05/how-to-rule-the-world/
1•mooreds•12m ago•0 comments

Israel's operation to turn Hezbollah's beepers into bombs – exclusive

https://www.jpost.com/israel-news/defense-news/article-896890
1•rodmena•13m ago•0 comments

The Prehistory of A.I. Slop

https://www.newyorker.com/magazine/2026/05/25/the-prehistory-of-ai-slop
1•tzury•18m ago•0 comments

The Treasure Has Been Found. Stop Hunting

https://www.buriedtreasuresf.com/solution
1•ChrisArchitect•20m ago•1 comments

Coins Stream

https://coins.stream
1•dragonsenseiguy•22m ago•0 comments

Gnutella: A Protocol Outlives the World That Created It

https://rickcarlino.com/notes/p2p/gnutella-explanation.html
2•rickcarlino•23m ago•0 comments

FreeLLMAPI – One key. One billion free LLM tokens. Every month

https://tashfeenahmed.github.io/freellmapi/
2•hamid914•24m ago•0 comments

It is time to build a new internet

https://mrmarket.bearblog.dev/it-is-time-to-build-a-new-internet/
26•mrmarket•28m ago•24 comments

Gopass: The slightly more standard Unix password manager for teams

https://github.com/gopasspw/gopass
1•thunderbong•31m ago•0 comments

Shitfixer.app – helps you reframe negative experiences and find optimism

https://shitfixer.app/
1•tonytonev•33m ago•0 comments

Nx Console v18.95.0 Postmortem

https://nx.dev/blog/nx-console-v18-95-0-postmortem
1•winebarrel•34m ago•0 comments

ReCardEx – AI product photos, infographics and videos for e-commerce sellers

https://recardex.com/en
1•masteriza•36m ago•0 comments

Riot Games celebrates bricking cheat devices

https://twitter.com/riotgames/status/2057604027941302564
5•indrora•42m ago•2 comments

Ground equipment problem scrubs Starship launch attempt

https://spacenews.com/ground-equipment-problem-scrubs-starship-launch-attempt/
2•JumpCrisscross•42m ago•0 comments

White House yanked AI order after David Sacks raised industry concerns

https://www.politico.com/news/2026/05/21/trump-ai-order-sacks-00933295
1•JumpCrisscross•44m ago•0 comments

Best Practices to Produce Maintainable Code with AI [video]

https://vimeo.com/1194574163
1•Austin_Conlon•46m ago•0 comments

Show HN: Pocket TTS running in (mobile) Safari

https://ldenoue.github.io/xn-ptts/
1•ldenoue•46m ago•0 comments

Three matrix algorithms, three walk orders – interactive animations

https://algo-rhythm.dev/en/matrix/
5•bytego•52m ago•0 comments

Wolfram Language

https://www.wolfram.com/language/
4•maxall4•56m ago•0 comments

It's Time to Walk

https://www.inferterra.com/the-new-workspace-a-first-principles-exploration-of-dictation-agents-a...
1•matt_teresi•57m ago•1 comments

Guesstimate

https://en.wikipedia.org/wiki/Guesstimate
1•teleforce•59m ago•0 comments

NVSX: Adopt NVSentinel the Easy Way

https://github.com/nav-beep/nvsx
1•essekar•1h ago•0 comments

SpaceX announced Starship flyby of Mars

https://twitter.com/SPACEdotcom/status/2057603078711394402
1•decimalenough•1h ago•1 comments

AI Slop and the Vulnerability Treadmill

https://redmonk.com/kholterhoff/2026/05/05/ai-slop-vulnerability-treadmill/
1•mooreds•1h ago•0 comments

Read Meta's Layoff Email to Employees

https://www.businessinsider.com/read-meta-layoff-email-employees-2026-5
3•mooreds•1h ago•1 comments

The AI-Native Interview

https://sierra.ai/blog/the-ai-native-interview
1•mooreds•1h ago•0 comments

DApp Inspector – DevTools Panel for Web3 RPC Traffic

https://github.com/beilunyang/dapp-inspector-extension
1•beilunyang•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.