frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Capstone – multi-platform, multi-architecture disassembly framework

https://www.capstone-engine.org/
1•gregsadetsky•3m ago•0 comments

How to delete your ChatGPT account

https://proton.me/blog/how-to-delete-chatgpt-account
3•devonnull•4m ago•0 comments

Ask HN: A Brief History of LLMs

1•menomatter•5m ago•0 comments

Adding Features That Help Get Users

https://fastbusinessapi.com/article/adding-features-that-help-get-users/
1•ApiFB-Dev•5m ago•0 comments

My Theory by Albert Einstein(1919)

https://todayinsci.com/E/Einstein_Albert/EinsteinAlbert-MyTheory.htm
2•o4c•5m ago•0 comments

Videos show people entering NYC sewers at night; residents,investigators baffled

https://apnews.com/article/nyc-sewer-explorers-manhole-investigation-a229be36b3daa74223ad0a43bfdc...
1•petethomas•5m ago•0 comments

Harness Acquires Codecov from Sentry

https://www.harness.io/press-and-news/harness-acquires-codecov
1•rocketpastsix•9m ago•0 comments

Apple and Google developed a new HDR standard: Eclipsa Video

https://www.flatpanelshd.com/news.php?subaction=showfull&id=1780395034
1•dmmalam•11m ago•0 comments

Three Chess Friends Battled Demons and Saved Two Lives

https://www.nytimes.com/2026/06/02/nyregion/how-three-chess-friends-battled-demons-and-saved-two-...
1•axiomdata316•15m ago•0 comments

Show HN: RxCheck – Replacement for the discontinued NLM drug interaction API

https://www.rxcheck.dev/
1•bcfeen•18m ago•0 comments

Build and deploy hosted sites from Codex with the Sites plugin

https://developers.openai.com/codex/sites
1•sarelta•19m ago•0 comments

Show HN: First time Minecraft stream on Twitch

https://www.twitch.tv/willowwispgaming
1•merc443•21m ago•0 comments

Salt Lake Tribune is gambling one third of revenue by ditching paywall

https://pressgazette.co.uk/paywalls/why-salt-lake-tribune-is-gambling-one-third-of-revenue-by-dit...
1•jawns•23m ago•0 comments

Google is paying Play Store developers for code to train its AI

https://www.neowin.net/reports/google-wants-to-pay-play-store-developers-for-code-to-train-its-ai/
1•bundie•23m ago•0 comments

Guide to Codex Goals

https://www.augmentedswe.com/p/codex-goals
1•wordsaboutcode•23m ago•0 comments

Harvard Law: Anthropic is about to sell a safety mission Wall Street can veto

https://fortune.com/2026/06/01/openais-guardian-ben-jerrys-ice-cream-anthropic/
1•1vuio0pswjnm7•29m ago•0 comments

Patterns of Structure and Argument: a guide to mathematical thinking(2017) [pdf]

https://www.ux1.eiu.edu/~cidelman/Research/foundationsbook.pdf
2•nill0•35m ago•0 comments

Ask HN: Does using non-English languages affect LLM output quality?

1•boundless88•38m ago•0 comments

Show HN: A crowdsourced map of surveillance camera's based on OSM

https://mapcomplete.org/surveillance?z=0.5&lon=12.732776
2•pietervdvn•41m ago•0 comments

AI Dark Output: The Visible Cost of Invisible Output

https://newsletter.semianalysis.com/p/ai-dark-output-the-visible-cost-of
1•paulpauper•44m ago•0 comments

The Risk-Free Rate and the Risk-Adjusted Growth Rate

https://www.nber.org/papers/w35260
2•paulpauper•45m ago•0 comments

The Ordinary Miracle of Existing

https://www.theatlantic.com/philosophy/2026/06/the-ordinary-miracle-of-existing/687351/
2•littlexsparkee•46m ago•1 comments

Best Clearbit Alternatives for Company Data Enrichment

https://fastbusinessapi.com/article/best-clearbit-alternatives-for-company-data-enrichment/
1•ApiFB-Dev•48m ago•0 comments

Roku LT Operating System open source distribution

https://blog.roku.com/developer/roku-lt-os
3•dpmdpm•49m ago•0 comments

Meta scales back plan for internal mouse-tracking tech, citing staff concerns

https://www.reuters.com/world/meta-scales-back-ai-mouse-clicks-tool-citing-employee-concerns-2026...
5•cebert•49m ago•2 comments

The Many Ways to Build a Black Hole

https://nautil.us/the-many-ways-to-build-a-black-hole-1281480
1•boarsofcanada•51m ago•0 comments

Florida lawsuit accuses OpenAI and CEO Sam Altman of endangering children

https://www.washingtonpost.com/technology/2026/06/01/florida-lawsuit-accuses-openai-ceo-sam-altma...
2•1vuio0pswjnm7•52m ago•0 comments

Blind Agent Trusting Sheeple [video]

https://www.youtube.com/watch?v=3mLYNxgw9wE
1•kshri24•1h ago•0 comments

Experimental Randomness Amplification

https://www.nature.com/articles/s41586-026-10521-8
2•thunderbong•1h ago•0 comments

I Found a Bug in Apple's Fsck_hfs

https://medium.com/@kivancgunalp/i-found-a-bug-in-apples-fsck-hfs-here-s-how-i-tracked-it-down-ed...
2•zdw•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.