frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Nowmine

https://signal.nowmine.site/
2•tjjune•7m ago•0 comments

Ask HN: Why have we normalized jobs and soft skills bullshit so much?

3•thomasjeff1•7m ago•0 comments

The Scourge of x86 Emulation

https://fex-emu.com/Scourge-of-emulation/
2•dagmx•10m ago•0 comments

Ngrx Inspector

https://marketplace.visualstudio.com/items?itemName=fredyang.ngrx-inspector
1•freddy18•12m ago•0 comments

Reflections on Trusting Trust, Revisited: Poisoning Self-Modifying AI Coding

https://arxiv.org/abs/2609.17817
2•sbulaev•13m ago•0 comments

Hacker

2•jurryythg•16m ago•2 comments

Anderon (IBM) finalizes $1B CHIPS award for US quantum foundry R&D

https://newsroom.ibm.com/2026-09-16-anderon,-an-ibm-company,-finalizes-agreement-with-the-u-s-dep...
2•osnium123•17m ago•0 comments

A Bitter Lesson for Data Filtering

https://arxiv.org/abs/2605.19407
2•nujan_dev•18m ago•1 comments

Mojo 1.1: the compiler now accepts contributions

https://www.modular.com/blog/modular-26-6-open-compiler-contributions-audio-generation-and-expand...
2•user142•19m ago•0 comments

Show HN: Continuity – project state your AI sessions can't silently contradict

https://github.com/vikcena01/ai-continuity-plugin
1•vikcena01•23m ago•0 comments

Show HN: Free Tournament Bracket Maker and Generator

https://snapbracket.com/
1•littlelight•24m ago•0 comments

macOS 27 is a lifesaver for killing leftover AI Agent processes

https://9to5mac.com/2026/06/09/macos-27-golden-gate-makes-it-clear-when-apps-are-sneakily-running...
2•pierreneter•24m ago•2 comments

The Provenance Tax: How LLM Watermarking Changes AI Agent Behavior

https://www.lasso.security/blog/the-provenance-tax-understanding-the-impact-of-llm-watermarking-o...
2•fourfire•26m ago•0 comments

Waymo in Singapore

https://waymo.com/waymo-in-singapore/
3•ramanan•31m ago•1 comments

The Concerns Surrounding Rapid Rise of AI and What We Should Do About It

https://medium.com/@f9121212/this-article-addresses-the-concerns-surrounding-the-rapid-rise-of-ai...
1•ortrich•32m ago•0 comments

Age of Beyond [video]

https://www.youtube.com/watch?v=vp7xoPeWzEw
1•suopspaces•34m ago•0 comments

Natural General Intelligence

https://naturalgeneralintelligence.ai/
2•jbegley•39m ago•0 comments

Youper is shutting down – What kills mental health AI?

https://www.youper.ai/notice
2•batman2019•57m ago•0 comments

Show HN: Free GitHub Action that scans PR diffs for malicious code, not quality

https://github.com/marketplace/actions/vigil-pr-scanner
2•arsalsajjad•59m ago•0 comments

The Bitterest Lesson

https://typesafe.ai/blog/bitterest-lesson
2•emersonmacro•1h ago•0 comments

Google announces new experimental "CC" AI agent for families

https://arstechnica.com/google/2026/09/google-announces-new-experimental-cc-ai-agent-for-families/
2•geoffbp•1h ago•0 comments

Show HN: Green Screen Remover – free in-browser chroma key, nothing uploaded

https://greenscreenremover.net/
2•wangqing333•1h ago•0 comments

I built the fastest PHP webserver in the world

https://qbixserver.com
2•EGreg•1h ago•0 comments

Data

2•justavalidman•1h ago•0 comments

Running OpenBAO on Kubernetes with a CloudNativePG PostgreSQL Back End

https://www.cncf.io/blog/2026/09/16/running-openbao-on-kubernetes-with-a-cloudnativepg-postgresql...
2•geoffbp•1h ago•0 comments

Show HN: Concat: the open-source CapCut replacement.

https://github.com/jub0t/Concat
3•calanus•1h ago•0 comments

Pre-Greek: The lost language hidden within Ancient Greek

https://linguisticdiscovery.com/posts/pre-greek/
7•axiologist•1h ago•0 comments

Code Scans

https://devin.ai/blog/introducing-code-scans
8•geoffbp•1h ago•0 comments

Warez: The Infrastructure and Aesthetics of Piracy Culture

https://archive.org/details/b904a8eb-9c98-4bb1-bf25-3cb9d075b157
6•succinct_ideas•1h ago•0 comments

Show HN: Jinx – a link shortener you host free on GitHub Pages

https://jinx.fyi
2•SubmersibleZoom•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.