frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Jk

https://marcodonatodigitalluxe.nl/
1•janbv124•5m ago•0 comments

SOTA-scan: Claude skill, an honest mirror for your repo

https://github.com/MerlijnW70/sota-scan
1•MerlijnW70•8m ago•0 comments

"What a joke": GitHub Copilot's token-based billing spurs backlash among devs

https://techcrunch.com/2026/05/30/what-a-joke-github-copilots-new-token-based-billing-spurs-const...
1•nryoo•8m ago•0 comments

People found a way to trick Meta's AI into handing over Instagram accounts

https://www.neowin.net/news/people-are-using-prompt-injection-to-trick-metas-ai-into-handing-over...
2•bundie•9m ago•0 comments

The Capacity of HotHands to Facilitate High-Altitude Research (2023) [pdf]

https://www.colorado.edu/center/spacegrant/sites/default/files/attached-files/B3_RRCC_BringingThe...
2•radeeyate•11m ago•0 comments

Rubin Tracks Skyscraper-Size Asteroids and Failed Supernovas

https://www.quantamagazine.org/rubin-tracks-skyscraper-size-asteroids-failed-supernovas-and-inter...
2•adm4•15m ago•0 comments

Reflection SDD: Use a Reflection Harness to Level Up Your OpenSpec Workflow

https://www.dataleadsfuture.com/reflection-sdd-use-a-reflection-harness-to-level-up-your-openspec...
1•qtalen•16m ago•1 comments

The first Vera Rubin NVL72 server rack

https://twitter.com/i/status/2061118201636036668
3•mudil•38m ago•0 comments

Marcus Aurelius Had Anxiety Too – Stoicism for People Who Overthink

https://stvrrll1ght.substack.com/p/marcus-aurelius-had-anxiety-too-stoicism
5•maheenahmed•41m ago•0 comments

In UFO Files, Some Christians See Vexing Questions – and Demons

https://www.nytimes.com/2026/05/31/us/ufo-files-pentagon.html
1•ryan_j_naughton•42m ago•0 comments

Can I find the exact number of users in FusionAuth with specific attributes?

https://fusionauth.io/community/forum/topic/3132/how-can-i-get-an-exact-number-of-users-with-some...
1•mooreds•42m ago•0 comments

Ask HN: How do you solve AI's confused deputy problem?

1•david_shi•42m ago•0 comments

xAI touts 10x performance gain while Ceramic has achieved 80 MFU

https://www.ceramic.ai/blog/ai-training-stack-performance-how-ceramic-achieved
3•densone•45m ago•0 comments

The Totalisator

https://computer.rip/2026-05-31-totalisator.html
1•pinewurst•46m ago•0 comments

Peter Thiel warns AI is threat to technical roles more than to creative thinkers

https://fortune.com/article/peter-thiel-ai-skills-creative-thinking-technical/
4•1vuio0pswjnm7•56m ago•0 comments

Nearly one-third of automotive loan terms are longer than six years

https://www.businesswire.com/news/home/20260528635242/en/
2•mattas•1h ago•0 comments

Instagram exploit allows you to use Meta AI to reset passwords to accounts

https://xcancel.com/DarkWebInformer/status/2061253599758315527
3•Cider9986•1h ago•0 comments

Show HN: Find your birth date song that was number-one

https://github.com/skorotkiewicz/tbs
1•modinfo•1h ago•0 comments

The Grand Unified Model of DevOps/SRE Dynamics

https://sigbovik.org/2026/proceedings.pdf#page=897
2•ycombiredd•1h ago•2 comments

Weekend trivia: your process' memory is a file

https://lcamtuf.substack.com/p/weekend-trivia-your-process-memory
3•surprisetalk•1h ago•0 comments

Wasp Colonies Explode into Violence After Losing Their Queen

https://scitechdaily.com/wasp-colonies-explode-into-violence-after-losing-their-queen/
1•Gaishan•1h ago•0 comments

Show HN: Ralphy – open-source autonomous Claude Codd built on the Ralph loop

https://github.com/Mizerness/Ralphy
1•miserness•1h ago•0 comments

Nvidia GTC Taipei 2026 Keynote [video]

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

Codex app plugin integration can be better?

https://github.com/obra/superpowers
1•xiaoluolyg•1h ago•0 comments

Memoir TV

https://pages.cloudflare.com/
1•classic_films•1h ago•0 comments

Specialized Claude Code Agents for Unreal Engine 5

https://github.com/damien220/UnrealEngine_Agent
1•Damien_220•1h ago•0 comments

Croft: VSCode-style TUI written in Rust

https://codeberg.org/vitali87/croft
3•vitali87•1h ago•0 comments

Long read: Bluey deal FOMO will kill the next Bluey

https://oblongataresearch.substack.com/p/bluey-deal-fomo-will-kill-the-next
6•basiljh•1h ago•0 comments

A CS student's job hunt in 2026: an honest playbook

https://medium.com/@sjonany/a-cs-students-job-hunt-in-2026-an-honest-playbook-5a57b41bf7fb
2•eigenBasis•1h ago•0 comments

A bot to automatically update and merge GitHub PRs

https://github.com/chdsbd/kodiak
1•mooreds•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.