frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What counts as cooking? In defense of the store-bought sauce

https://iza.ac/posts/2026/06/what-counts-as-cooking/
1•infinitewalk•57s ago•0 comments

Pure Terminal Text Editor

https://github.com/roblillack/pure
1•skogstokig•1m ago•0 comments

We Caught a North Korean Operative in a Hiring Pipeline

https://www.alex.com/blog/hiring-pipeline-fraud-detection
1•jenthoven•2m ago•0 comments

Rampart: 14.7MB model for privacy by redacting personal information

https://ndstudio.gov/posts/say-hello-to-rampart
1•cahaya•4m ago•1 comments

What Breaks a Cell's Ribs Can Make It Stronger

https://www.quantamagazine.org/what-breaks-a-cells-ribs-can-make-it-stronger-20260629/
1•jnord•4m ago•0 comments

South Korea to spend $1T on more memory chip production and humanoid robots

https://arstechnica.com/ai/2026/06/south-korea-to-spend-1t-on-more-memory-chip-production-and-hum...
1•jnord•6m ago•0 comments

Utility boss warns US faces blackouts due to power supply shortfall

https://www.ft.com/content/14d2e591-7cd5-4456-904f-1b7fdc5cbc1a
2•petethomas•6m ago•0 comments

Show HN: Fault-tolerant 4-neighbor hardware mesh with auto-rerouting

https://github.com/PJHkorea/consciousness-auto-rotation-artificial-neural-bypass/blob/main/fluxme...
1•PJHkorea•8m ago•0 comments

Uncapping the U.S. House is achievable and impactful

https://cmarmitage.substack.com/p/a-wildly-undervalued-tool-for-restoring
1•JumpCrisscross•9m ago•0 comments

Scientists find molecular-level evidence for two structures in liquid water

https://phys.org/news/2026-06-scientists-molecular-evidence-liquid.html
1•wglb•9m ago•1 comments

One Man's Delusion Is Another Man's Dream

http://guerrillademocracy.blogspot.com/2026/06/one-mans-delusion-is-another-mans-dream.html
1•GDNews503AD•11m ago•1 comments

The Artificial Neuron on a Silicon Chip

https://spectrum.ieee.org/artificial-neurons-on-silicon-chips
2•jnord•12m ago•0 comments

Ask HN: Best PR Review Experience?

1•prats226•12m ago•0 comments

GLM5.2 vs. Opus 4.8

https://www.youtube.com/watch?v=M4YEk4qVNOE
1•pvergadia•12m ago•1 comments

The composable AI thesis

https://openenvelope.org/writing/composable-ai-thesis/
1•ashconway•15m ago•0 comments

Mathematical finance, formally verified in Lean 4

https://github.com/raphaelrrcoelho/formal-mathfin
1•raphaelrrcoelho•17m ago•0 comments

There's a Reason Women Aren't Swooning over AI Like Men Are

https://thenoosphere.substack.com/p/theres-a-reason-women-arent-swooning
2•Anon84•17m ago•0 comments

US offers $10M for info on group behind Signal and WhatsApp hacking

https://arstechnica.com/information-technology/2026/06/us-offers-10-million-for-info-on-group-beh...
2•Gaishan•18m ago•0 comments

Please pause the data center buildout

1•DaveZale•18m ago•3 comments

Eevdf Scheduler in the Linux Kernel

https://docs.kernel.org/scheduler/sched-eevdf.html
1•gurjeet•18m ago•0 comments

Codex: Introducing a familiar rich-text editing experience

https://twitter.com/khudonogov/status/2071715076814561759/video/1
1•hellodarknessmy•19m ago•0 comments

Predict churn before customers leave

https://github.com/team-telnyx/telnyx-code-examples/tree/main/ai-customer-churn-predictor-python
1•sona-coffee11•20m ago•0 comments

A bounty to forge a synthetic identity past our hardware-bound auth

https://gate.kenshikilabs.com/challenge
2•shfishburn•22m ago•0 comments

Hop 0.2

https://hoplang.com/blog/releasing-hop-0.2
3•lyxell•24m ago•0 comments

Next-Edit in Kilo, Powered by Inception Diffusion LLMs

https://blog.kilo.ai/p/announcing-next-edit-in-kilo-powered-by-inception
2•volodia•25m ago•0 comments

How working with a blind client revealed invisible accessibility gaps

https://iinteractive.com/resources/blog/read-only
2•fortyseven•28m ago•0 comments

Ten Years of Terms and Conditions

https://henryach.com/blog/tsandcs/
2•ChrisArchitect•29m ago•0 comments

Show HN: Ask Yes/No – Daily question puzzle game

https://askyesno.com
2•salelder•31m ago•1 comments

Agent memory is leaving the cute "remember this" demo phase

https://self.md/signals/2026-06-17-expertise-context-memory
5•decorner•32m ago•0 comments

From news overload to actionable intelligence

https://sarniq.com/
2•zack001•32m 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.