frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Learning on the Shop Floor

https://twitter.com/tobi/status/2053121182044451016
1•cmbailey•3m ago•0 comments

Show HN: A freehand drawing guestbook for my portfolio

https://paco.fyi/guestbook
1•leoverdura•3m ago•0 comments

Pixie, a local-first workbench for your tools and models

https://github.com/AlexKapadia/Pixie
1•alexkapadia1•4m ago•0 comments

Deep Dive into SHA-3: Understanding Keccak and Sponge Functions

https://kerkour.com/sha3
2•randomint64•5m ago•0 comments

REST in Peace GraphQL

https://raheeljunaid.com/blog/rest-in-peace-graphql/
1•raheelrjunaid•6m ago•0 comments

Show HN: Semble – Code search for agents that uses 98% fewer tokens than grep

https://github.com/MinishLab/semble
1•Bibabomas•8m ago•0 comments

Peter G. Neumann (RISKS) has died

https://mastodon.laurenweinstein.org/@lauren/116590409762570703
1•davidgerard•8m ago•0 comments

Memoirs from the old web: IE's crazy content rating system

https://www.devever.net/~hl/pics
2•pona-a•9m ago•0 comments

U.S. eyes attack-drone threat from Cuba

https://www.axios.com/2026/05/17/us-military-drones-cuba
1•cwwc•9m ago•0 comments

Solomon's Paradox

https://en.wikipedia.org/wiki/Solomon%27s_paradox
1•andrewstetsenko•13m ago•0 comments

AI license plate cameras tore this town apart and led to a state of emergency

https://www.washingtonpost.com/nation/2026/05/17/citys-ai-license-plate-cameras-led-an-uproar-sta...
2•greenburger•14m ago•2 comments

Handling the great code forge fragmentation

https://www.alexselimov.com/posts/forge_fragmentation/
1•mooreds•14m ago•0 comments

Show HN: Use-outside-click – tiny framework-agnostic outside click utility

https://www.npmjs.com/package/@kitsunechaos/use-outside-click
1•kitsunechaos•14m ago•0 comments

The German town where people print their own money [video]

https://www.youtube.com/watch?v=WzijH3lgzHI
1•dataflow•18m ago•0 comments

Show HN: A choose-your-own-adventure through 28 possible AI futures

https://es92.github.io/Singularity-Map/
1•evanevan•18m ago•1 comments

Object-oriented Programming in C (2017)

https://jordanlord.co.uk/blog/object-oriented-programming-in-c/
1•mooreds•20m ago•0 comments

Show HN: WhispHub CLI – push your projects to WhispHub from the terminal

https://crates.io/crates/whisphub
1•whispem•21m ago•0 comments

Who will maintain the web when PHP's veterans retire?

https://thenewstack.io/php-web-skills-hiring-age/
1•mooreds•21m ago•0 comments

Scientists Discover New Crystal Formed by Nuclear Blast

https://www.404media.co/scientists-discover-strange-new-crystal-formed-by-nuclear-blast/
1•Brajeshwar•22m ago•0 comments

Tool mapping 90 companies in the photonics and CPO supply chain

https://leonardo-boquillon.com/photonic-cop-supply-chain
1•lboquillon•23m ago•0 comments

Alan Kay at UCLA CS 201 2026-05-05 [video]

https://www.youtube.com/watch?v=V_Vn5rz6hL0
1•muhic•23m ago•0 comments

Voyager Spacecraft Code

https://spacedaily.com/nasa-still-maintains-some-of-the-voyager-spacecraft-code-in-a-1970s-era-pr...
2•ohjeez•26m ago•0 comments

Give every tool LLM wiki and bypass Claude Code SSH Throttle

1•jakemattison•27m ago•0 comments

Mojo: SIMD

https://mojolang.org/docs/std/builtin/simd/SIMD/
1•tosh•28m ago•0 comments

Germany's spy agency picks French AI firm over Palantir

https://www.politico.eu/article/germany-spy-agency-picks-france-ai-firm-over-palantir/
2•rustoo•33m ago•0 comments

The LLM Fine-Tuning Guide

https://www.promptinjection.net/p/the-ultimate-llm-ai-fine-tuning-guide-tutorial
1•JustMyNews•36m ago•0 comments

Show HN: Forecasting my backyard weather with a 22M time-series model

https://huggingface.co/spaces/bitsofchris/time-series-ai-weather-forecast
1•chrisdevs•37m ago•0 comments

Ecsypno and UT Austin ISO join forces for free services to non-profits

https://ecsypno.com/blogs/news/building-a-worldwide-web-vulnerability-scanner
1•tasos_laskos•38m ago•1 comments

Reduce software supply-chain risks with coordinated agentic review

https://thirdpass.dev/
1•rndhouse•39m ago•1 comments

RapidFire Lite – Zero-dependency API load tester in pure Python

https://github.com/arjuninfotechinc/rapidfire-lite
1•hifiarjun•45m 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.