frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Typst 0.15 Is Out

https://typst.app/blog/2026/typst-0.15/
1•semantecture•3m ago•1 comments

We Built NeuroAutomata: protein variant effect prediction

https://axonagentic.ai/blog/why-we-built-neuroautomata
1•rhokstar•3m ago•0 comments

The Most Interesting Articles on Wikipedia

https://www.mostdiscussed.com
1•vismit2000•6m ago•0 comments

Are Memories Transferable – Or Edible?

https://www.quantamagazine.org/are-memories-transferable-or-edible-20260605/
1•doener•8m ago•0 comments

Ask HN: Best Hetzner Alternatives?

1•king_zee•9m ago•0 comments

DEC Alpha

https://en.wikipedia.org/wiki/DEC_Alpha
1•tosh•9m ago•0 comments

Physicists Have Measured "Negative Time" in Quantum Experiment

https://scitechdaily.com/physicists-have-measured-negative-time-in-bizarre-quantum-experiment/
1•bryanrasmussen•10m ago•0 comments

Photograph Is Now Guilty Until Proven Innocent

https://winphotoio.substack.com/p/sunday-submission-04-the-burden-of-proof
2•winphoto•15m ago•0 comments

Kino, a high-performance Ractor web server for Ruby 4.0

https://github.com/yaroslav/kino
1•riffraff•16m ago•0 comments

General-purpose LLMs outperform specialized clinical AI tools

https://www.nature.com/articles/s41591-026-04431-5
1•hdvr•17m ago•0 comments

Understanding the rationale behind a rule when trying to circumvent it

https://devblogs.microsoft.com/oldnewthing/20260611-00/?p=112415
6•tosh•25m ago•0 comments

China's universities cut 12,000 'obsolete' degrees amid race to embrace AI era

https://www.scmp.com/economy/china-economy/article/3356913/chinas-universities-cut-12000-obsolete...
2•spwa4•28m ago•0 comments

Users cry foul after AMD stripped memory crypto from its consumer CPUs

https://arstechnica.com/security/2026/06/users-cry-foul-after-amd-stripped-memory-crypto-from-its...
3•u1hcw9nx•29m ago•0 comments

Why did I create my own PaaS as indie hacker and made it open-source?

https://github.com/sumon-ohid/better-paas
2•sumonoahid•40m ago•1 comments

Making a Metasearch Engine (2024)

https://matdoes.dev/metasearch
2•ethanhawksley•42m ago•0 comments

The History of How School Buses Became Yellow

https://www.smithsonianmag.com/history/history-how-school-buses-became-yellow-180973041/
2•thunderbong•43m ago•0 comments

Pure-Dart I2P: decentralized file sharing

https://github.com/geograms/i2p-dart
1•nunobrito•48m ago•0 comments

Greed Is Learned: Visible Incentives as Reward-Hacking Triggers

https://arxiv.org/abs/2606.16914
2•Timofeibu•49m ago•0 comments

Show HN: Kitchen Rush, Overcooked inspired LLM tool calling benchmark

https://github.com/bassimeledath/kitchen-rush
2•bombastic311•50m ago•0 comments

Movebound: The Art of Zugzwang

https://www.thearticle.com/movebound-the-art-of-zugzwang
1•Pamar•51m ago•0 comments

Discovery debt: The debt that doesn't slow you down

https://www.leadinginproduct.com/p/discovery-debt
2•benkan•51m ago•0 comments

The US government's Anthropic models ban was never about an AI jailbreak

https://techcrunch.com/2026/06/15/the-us-governments-anthropic-models-ban-was-never-about-an-ai-j...
2•SilverElfin•51m ago•1 comments

Why do South Koreans love AI so much?

https://www.technologyreview.com/2026/06/15/1138983/why-do-south-koreans-love-ai-so-much/
1•joozio•57m ago•0 comments

Cross-Language Data Types

https://ekxide.io/blog/cross-language-data-types/
1•birdculture•58m ago•0 comments

Show HN: A spreadsheet where your code never reads B7

https://github.com/logisky/LogiSheets/discussions/415
1•JeremyHe•1h ago•0 comments

Show HN: GitHits Public Beta 0.9

https://githits.com/
2•skvark•1h ago•0 comments

Correlated LLM Name Priors and Their Haunting of the Web and Academic Publishing

https://arxiv.org/abs/2606.02184
1•wise_blood•1h ago•0 comments

Adobe's record year couldn't save its stock

https://www.artificialstudio.ai/blog/adobe-record-year-couldnt-save-its-stock
1•artificialstudi•1h ago•0 comments

OpenAI spending hit $34B last year ahead of planned IPO

https://www.ft.com/content/e15b0d7e-ff6b-4f16-ba7a-4068feddb828
2•merksittich•1h ago•1 comments

Vulnerability Forecast Update: Navigating the AI Epoch

https://www.first.org/blog/20260615-vulnerability-forecast-update
1•jruohonen•1h ago•1 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.