frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Chaotic fluctuations mark mental activity in task-based heart rate variability

https://www.nature.com/articles/s41598-026-43385-z
1•PaulHoule•56s ago•0 comments

White House considers buying Chagos Islands

https://www.telegraph.co.uk/us/news/2026/06/07/white-house-plan-chagos-islands/
1•JumpCrisscross•1m ago•0 comments

Consensus Time

https://xkcd.com/2594/
1•Velocifyer•2m ago•1 comments

Why no one cares about your Twitter posts (what I learned about the algo)

https://kylejeong.substack.com/p/why-no-one-cares-about-your-twitter
1•Kylejeong21•2m ago•0 comments

Control Your Avatar with Your Mind [video]

https://www.tiktok.com/@pieeg_official/video/7648791781416389910?is_from_webapp=1&sender_device=p...
1•Christiangmer•2m ago•0 comments

More bad advice from AI

https://orchidfiles.com/more-bad-advice-from-ai/
1•theorchid•6m ago•0 comments

Don Valentine Remembering:Sequoia-Stanford-Insights

https://www.gsb.stanford.edu/insights/sequoias-don-valentine-what-problem-are-you-solving
1•girl_web•12m ago•0 comments

AxonASP: Run Asp Classic on Linux, macOS, and Windows

https://github.com/guimaraeslucas/axonasp
1•lucasguimaraes•13m ago•0 comments

Show HN: A canvas-like workspace where you design your own knowledge archive

https://strata.ws
1•sf_ws•15m ago•0 comments

NY judge stays lawsuit seeking ownership of nearly 40k Bitcoin wallets

https://www.theblock.co/post/403910/ny-judge-stays-lawsuit-seeking-ownership-of-nearly-40000-bitc...
1•hippich•21m ago•0 comments

Living in the Time of Dying

https://www.livinginthetimeofdying.com
3•rendx•22m ago•1 comments

U.S. attorney accuses California of blocking voter roll audit amid legal battle

https://ktla.com/news/california/u-s-attorney-accuses-california-of-blocking-voter-roll-audit-ami...
1•Bender•23m ago•0 comments

SpaceX IPO deck says "Deploy orbital AI compute at scale"

https://www.sec.gov/Archives/edgar/data/1181412/000162828026040610/spacexfwp.htm
1•Lihh27•26m ago•1 comments

The Nerdy Escorts Cashing in on Silicon Valley's AI Boom

https://www.forbes.com/sites/annatong/2026/06/07/the-nerdy-escorts-cashing-in-on-silicon-valleys-...
1•hilux•28m ago•1 comments

Who Killed SAAS? .... Opra.ai? .... GitHub-native governance

https://github.com/sabbanis/opra.ai
1•sabbanis•29m ago•1 comments

Will artificial intelligence soon escape human control?

https://www.economist.com/science-and-technology/2026/06/07/will-artificial-intelligence-soon-esc...
1•andsoitis•32m ago•1 comments

NodeRadar Pro v1.0.0 (Freeware Network Utility)

https://github.com/PyPie-Studio/NodeRadar-Pro
1•tryku•34m ago•0 comments

Navy sailor, 25, is arrested for twisted ISIS plot to wreak mass havoc

https://www.dailymail.com/news/article-15881297/california-man-arreted-isis-terroist-plot-navy-sa...
2•Bender•34m ago•0 comments

New Power Banks Released by BMX with Safer Semi-Solid-State Batteries

https://www.androidauthority.com/bmx-semi-solid-state-battery-power-banks-3674759/
1•m463•35m ago•0 comments

Firefox Merges Support for Vulkan Video Decoding

https://www.phoronix.com/news/Firefox-Vulkan-Video-Merged
4•Bender•36m ago•0 comments

Difficult conversations don't need to be messy

https://julienreszka.com/blog/difficult-conversations-don-t-need-to-be-messy/
1•julienreszka•38m ago•0 comments

Huawei executive credits bans for accelerating domestic chip independence

https://www.techradar.com/pro/huaweis-chairman-officially-thanks-the-us-government-for-enabling-c...
3•yogthos•39m ago•0 comments

AI enthusiasts in a race against time, AI skeptics in a race against entropy

https://charitydotwtf.substack.com/p/ai-enthusiasts-are-in-a-race-against
1•ssivark•40m ago•0 comments

Amp Wave

https://www.ampwave.online
1•Wilcorleone•42m ago•1 comments

Ask HN: Are we as society going to let LLM companies take all the values?

16•randomdev123•47m ago•5 comments

I made Claude Code 100x better and 40% more efficient

https://claynicholson.com/blog/khlawde-code
6•claynicholson•49m ago•3 comments

Tiny community of English master thatchers: fight unfolding over dying tradition

https://www.nytimes.com/2026/06/03/realestate/thatch-roof-homes-england-long-straw-tradition.html
1•bookofjoe•51m ago•1 comments

John Drew Barrymore Double Feature

https://cinemasojourns.com/2026/06/07/john-drew-barrymore-double-feature/
1•jjgreen•51m ago•0 comments

Show HN: Code Island – teaches programming logic with drag-and-drop blocks

https://zslava.itch.io/code-island
1•zslava88•57m ago•0 comments

From Company Brain to an AI Operating System

https://medium.com/@calufa/from-company-brain-to-an-ai-operating-system-a9378d697f1a
1•_hfqa•59m 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.