frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: A Win32 and DirectX runtime for running old games in the browser

https://bottleship.happydog.games/
1•jenissimo1•29s ago•0 comments

6status: IPv4/v6 dual stack status board

https://forge.sumit.im/djsumdog/6status
1•airhangerf15•1m ago•0 comments

Show HN: Beautiful QR Codes

https://scanwayy.com
6•janpmz•4m ago•0 comments

Codex starts encrypting prompts, uses ciphertext for inference instead

https://github.com/openai/codex/issues/28058
11•embedding-shape•4m ago•1 comments

The ChatGPT "Super App" Sort of Super Sucks

https://spyglass.org/chatgpt-gets-to-work/
2•ig0r0•5m ago•1 comments

Show HN: Planetary Facts – food and product impacts against the planet's limits

https://planetaryfacts.com
2•mikethemerry•6m ago•0 comments

DokuWiki Release 2026-07-14 "Mort"

https://www.dokuwiki.org/changes#release_2026-07-14_mort
2•kossmac•6m ago•0 comments

Real AI for video games (Iconic Games)

https://iconicgames.io/blog/pressure-point/
2•giltho•11m ago•0 comments

You Cannot Defend What You Cannot Inspect

https://www.first.org/blog/20260714-FIRSTCON26-CIRCUIT
2•jruohonen•12m ago•0 comments

The Day WhatsApp Goes Dark

https://xn--gckvb8fzb.com/the-day-whatsapp-goes-dark/
2•mindracer•12m ago•0 comments

Anubis – 15MB sidecar security gateway for OT/IIoT

https://sgneep.com/anubis/download.php
2•blackcool•14m ago•0 comments

Most UK media reports on June heatwave failed to mention climate crisis

https://www.theguardian.com/environment/2026/jul/14/most-coverage-june-heatwave-did-not-mention-c...
2•robtherobber•14m ago•0 comments

A Framework for Frontier AI and the Dawning of a New Age

https://demishassabis.substack.com/p/a-framework-for-frontier-ai-and-the-dawning-of-a-new-age
2•nbraga•14m ago•0 comments

Can humans hibernate their way to Mars?

https://www.theguardian.com/science/ng-interactive/2026/jul/14/human-hibernation-space-mars
3•n1b0m•17m ago•0 comments

Show HN: An Agentic Data Platform can generate dashboards, models in minutes

https://datarelax.io/
2•phienhn•17m ago•0 comments

When the facts change, adequacy must be reviewed

https://edri.org/our-work/when-the-facts-change-adequacy-must-be-reviewed/
2•jruohonen•18m ago•0 comments

Show HN: Rejourney – Open-source revenue leak prediction for web and mobile apps

https://github.com/rejourneyco/rejourney
3•mrr7337•20m ago•0 comments

The Future Worth Building Is Human – Thinking Machines Lab

https://thinkingmachines.ai/blog/the-future-worth-building-is-human/
3•bilsbie•20m ago•0 comments

Australia Just Found a Way to Put Solar on Apartments [video]

https://www.youtube.com/watch?v=tnkmcNDYXlo
3•thelastgallon•20m ago•0 comments

Actegories

https://bartoszmilewski.com/2026/06/30/actegories/
3•ibobev•20m ago•0 comments

X just gave us an interface that AI agents can use. I pointed it at my own posts

https://lemire.me/blog/2026/07/11/x-just-gave-us-an-interface-that-ai-agents-can-use-i-pointed-it...
2•ibobev•21m ago•0 comments

Dot product: Component vs. Geometric definition

https://eli.thegreenplace.net/2026/dot-product-component-vs-geometric-definition/
2•ibobev•21m ago•0 comments

Merged at the Speed of AI

https://chaosguru.substack.com/p/merged-at-the-speed-of-ai
2•taubek•22m ago•0 comments

Show HN: BYO AI free notetaking with optional screen reading for OpenClaw/hermes

https://stagewhisper.io/lite
2•piotraleksander•23m ago•1 comments

The US government warns that Russia state hackers are coming after your router

https://arstechnica.com/security/2026/07/the-us-government-warns-that-russia-state-hackers-are-co...
3•joozio•23m ago•0 comments

Show HN: Git Buoy | A living terminal harbor for Git worktrees

https://github.com/markg-05/git-buoy
2•m_george•24m ago•0 comments

Indian activist urged to give up hunger strike over exam leaks

https://www.reuters.com/world/india/indian-activist-urged-give-up-hunger-strike-over-exam-leaks-2...
2•thunderbong•26m ago•0 comments

The great digital fatigue: How digital burnout is changing social media use

https://blog.incogni.com/digital-fatigue-and-burnout/
5•derbOac•27m ago•0 comments

Content Defined Chunking for Go

https://www.plakar.io/posts/2026-06-14/go-cdc-chunkers-v1.1.0-faster-leaner-and-provably-correct/
2•vcoisne•27m ago•0 comments

Patients reportedly beating cancer with just one tablet a day (2022) [video]

https://www.youtube.com/watch?v=sq2dfgg70hs
2•thelastgallon•29m 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.