frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

5120x2160 100Hz Android Desktop Mode on Razor Fold

https://old.reddit.com/r/motorola/comments/1ufzwyt/i_just_got_5k2k_5120x2160_100hz_smoothly_on_a/
1•politelemon•3m ago•0 comments

AI glasses help students cheat in exams – test-obsessed Asia is ground zero

https://www.rnz.co.nz/news/world/628396/ai-glasses-are-helping-students-cheat-in-exams-test-obses...
3•billybuckwheat•7m ago•0 comments

Certainty Volatility Theory: Stable Uncertainty vs. Fluctuating Certainty

https://theguptalog.blogspot.com/2026/06/adaptive-certainty-theory-maybe-we-dont.html
1•GeorgeWoff25•11m ago•0 comments

Everything* – An interactive voyage through all orders of magnitude

https://www.everything.one/#overview
1•bj-rn•13m ago•0 comments

Lore: Next-generation open source version control

https://github.com/EpicGames/lore
1•taubek•20m ago•0 comments

Gambling disorder cases skyrockets in states where sports betting is legal

https://twitter.com/cremieuxrecueil/status/2070651565107446116
1•MrBuddyCasino•20m ago•0 comments

The New York Times Amends Lawsuit Against OpenAI and Microsoft

https://www.nytimes.com/2026/06/25/technology/times-lawsuit-openai-microsoft.html
1•1vuio0pswjnm7•22m ago•0 comments

Promptetheus – Trace, detect, and auto-repair AI agent failures

https://github.com/obro79/promptetheus
1•tar-ive•23m ago•0 comments

People Inc. CEO accuses Google of abusing its market power

https://www.axios.com/2026/06/23/people-inc-google-ai-search-crawler
3•1vuio0pswjnm7•25m ago•1 comments

Ask HN: How much memory is useable by GPU in MacBook?

1•mzubairtahir•25m ago•1 comments

Rich and famous families teach their kids Mandarin as China's influence grows

https://www.abc.net.au/news/2026-06-27/musk-trump-bezos-zuckerberg-children-learning-mandarin/106...
2•defrost•26m ago•0 comments

My gf's birthday is my yearly reminder that I'm bad at gift-giving

https://giftmaxxing.vercel.app/
1•tar-ive•26m ago•0 comments

I HATED having to stop playin instrument togo thru pages onPDFso I used blinking

https://verceleye.vercel.app/
1•peenut•27m ago•1 comments

OpenTTD 16.0-Beta1

https://www.openttd.org/news/2026/06/25/openttd-16-0-beta1
1•untilted•29m ago•0 comments

Mythos available for select organisations

https://twitter.com/anthropicai/status/2070665903440871779
1•dsr12•31m ago•1 comments

Air conditioning torn from homes under net zero clampdown

https://www.telegraph.co.uk/money/consumer-affairs/air-conditioning-torn-from-homes-under-net-zer...
2•razor-thin•35m ago•1 comments

Photos by Om

https://www.photosbyom.com
1•adityaathalye•35m ago•1 comments

Modern GPU Programming for MLSys

https://mlc.ai/modern-gpu-programming-for-mlsys/#
1•sonabinu•49m ago•1 comments

Coding agent harness written in native Golang with built-in file and Git viewer

https://code.intellios.ai
1•coolwulf•49m ago•0 comments

2026 FIFA Worldcup Predictor

https://nutmeg-4eg.pages.dev/
1•chriszng•56m ago•2 comments

Isn't US Government trying to monopolize AI as a super power?

2•StizzurpXDD•1h ago•0 comments

SpaceX stock is a terrible buy – what that means for the bull market

https://www.msn.com/en-us/money/topstocks/spacex-stock-is-a-terrible-buy-what-that-actually-means...
2•WheelsAtLarge•1h ago•1 comments

Apple seeks to buy memory chips from blacklisted Chinese company

https://www.ft.com/content/d72a25e2-7bde-4aa9-bd8d-0c4f3d6cb2cb
1•ilreb•1h ago•0 comments

Agentic Trading on Robinhood

https://robinhood.com/us/en/agentic-trading/
4•huragok•1h ago•2 comments

(Planet Money, NPR) "We almost had a smartphone in the 90s. Why did it fail?"

https://www.npr.org/2026/06/26/nx-s1-5872785/general-magic-sony-magiclink-constraints
1•wnc3141•1h ago•2 comments

I built a marketplace where the money can be verified by anyone

https://old.reddit.com/r/SubliminalsVerytasium/comments/1ufhleb/i_built_a_marketplace_where_the_m...
1•bbenevolence•1h ago•0 comments

Find the right AI agents to build

https://www.agentideahub.com
1•mattmerrick•1h ago•0 comments

TUI email client in native Golang with LLM based drafting functions

https://mail.intellios.ai
1•coolwulf•1h ago•0 comments

Nomad: Portable, offline media server powered by the ESP32-S3 in a thumbdrive

https://www.instructables.com/Jcorp-Nomad-Mini-WIFI-Media-Server/
1•thunderbong•1h ago•0 comments

US allows Anthropic to release Mythos AI to 'trusted' US organizations

https://www.reuters.com/technology/us-releases-anthropic-model-mythos-some-us-companies-semafor-r...
1•swolpers•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.