frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: ReadHere, a local-first PDF and ePub reader

https://readhere.app/
1•qmaruf•6s ago•0 comments

Oldest recorded voices, haunted dolls, and more from Tempest Instruments

https://cdm.link/oldest-recorded-voices-haunted-dolls-and-more-from-tempest-instruments/
1•bryanrasmussen•5m ago•0 comments

I stopped letting LLMs do arithmetic

https://medium.com/@jwbobbink/best-search-console-mcp-in-2026-gsc-wizard-7a63f91191ca
2•jwbobbink•9m ago•0 comments

Tell HN: No company scaled revenue as fast as AI companies

1•silexia•12m ago•0 comments

700 MB/s of Kafka throughput, on Postgres

https://rynr.dev/blog/700mbskafgres/
2•theanonymousone•13m ago•0 comments

AI Agents are breaking into Online Retailers for $25 a target

https://gambit.security/blog-posts/autonomous-ai-agents-online-retailers-25-a-company
2•geox•17m ago•0 comments

Taste Bench

https://www.omneky.com/tastebench
4•hsenju•17m ago•0 comments

Show HN: Knowledge Signal – A JEV-powered rubric assessment tool for study notes

https://github.com/sumant1122/knowledge-signal
1•paperplaneflyr•19m ago•0 comments

You sent the wrong attachment and leaked the banks deal list. What happens next?

https://www.ft.com/content/8124e18d-ca77-424f-aa43-97983653eec4
2•helsinkiandrew•23m ago•0 comments

Developer Process Automation: The sane way to automate developer hours

https://12gramsofcarbon.com/p/agentics-what-is-developer-process
1•theahura•24m ago•0 comments

Show HN: Miru: Zoomer Daemon for Wayland

https://blog.vaishnavs.is-a.dev/miru/
1•vaishnav110504•26m ago•0 comments

When Agent Met Agent

https://www.flybridge.com/ideas/the-bow/when-agent-met-agent
1•ddaniel10•27m ago•0 comments

New RSA attack forges signatures without factoring the key

https://arstechnica.com/security/2026/09/theres-a-new-way-to-break-rsa-thats-faster-than-anything...
2•utiiiD•28m ago•0 comments

Pressures building up in yen carry trade

https://www.wsws.org/en/articles/2026/09/24/qvhs-s24.html
1•t-3•28m ago•0 comments

TileRT Takes the Top Spot on AgentX with AMD Instinct MI355X GPUs

https://www.tilert.ai/blog/tilert-amd-agentx.html
2•pella•32m ago•0 comments

Show HN: SelMem – selective reconstructive memory for LLMs

https://github.com/jbsalles/Selmem
1•Jibs79•34m ago•0 comments

Show HN: A benchmark comparison of C++ vs. Node.js performance

https://vikky2810.github.io/blog/cpp-vs-node/
1•vikky2810•37m ago•0 comments

Tracking Singularity – A Curated Log of Important Events in AI Since Mid 2026

https://trackingsingularity.com/
2•dejavucoder•53m ago•0 comments

SunCalc – sunrise, sunset, shadow length, solar eclipse

https://www.suncalc.org
2•gregsadetsky•54m ago•0 comments

Picking a domain name is hard

https://aetherspe.cc/blog/20260925-picking_a_domain_name_is_hard/
1•weakened_malloc•58m ago•1 comments

Show HN: Sitcom Flavour – Season your Claude Code chats with sitcom replies

https://ada.tools/sitcom-flavour/
1•EmreErkan•58m ago•0 comments

Stanford used AI to replace Hispanic student with Black woman in photo

https://www.msn.com/en-ca/money/general/stanford-used-ai-to-replace-hispanic-student-with-black-w...
3•pykello•1h ago•1 comments

Goodbye Google

https://robert.ocallahan.org/2026/09/goodbye-google.html
63•Murmuring9087•1h ago•30 comments

Krakatoa, an interactive 2.5D painting of the 1883 eruption

https://www.echohive.ai/experiments/krakatoa
2•echohive42•1h ago•0 comments

Jev Based Code Review

https://github.com/egma-ai/jev-code-reviewer
4•namanbhulawat•1h ago•2 comments

Plex: Remote Streaming via Third-Party Apps to Require a License

https://netguide.io/news/en/2026/09/22/plex-remote-streaming-via-third-party-apps-to-require-a-li...
4•sippingabonedry•1h ago•0 comments

Proofmode

https://proofmode.org/
3•F3nd0•1h ago•0 comments

Vulnerability Cve-2026-82958

https://vulnerability.circl.lu/vuln/cve-2026-82958
1•anonyoum•1h ago•0 comments

What your phone is made of

https://anas-sabbar.ca/writing/what-your-phone-is-made-of/
2•Roccan•1h ago•0 comments

Fzakaria/omnibin: Every binary nixpkgs ever shipped, on your PATH

https://github.com/fzakaria/omnibin
1•Tomte•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.