frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

PanTilt–desk pan-tilt tracker on Nim+ORT/OpenVINO+Nano(I debug on apples)

https://github.com/olesha-ai/pan-tilt-ai-tracker
1•olesha-ai•1m ago•0 comments

Red5 and Ezdrm Team to Streamline Delivery of Content

https://www.red5.net/blog/red5-and-ezdrm-streamline-delivery-of-content-security/
1•mondainx•1m ago•0 comments

New England RetroFest and the Maine Vintage Computer Society

https://www.goto10retro.com/p/new-england-retrofest-and-the-maine
1•rbanffy•1m ago•0 comments

The Curious Case of the Soulless Private Equity Cookie

https://www.weareravenous.com/the-curious-case-of-the-soulless-private-equity-cookie/
1•Geekette•4m ago•0 comments

SMPTE 2110

https://en.wikipedia.org/wiki/SMPTE_2110
1•gregsadetsky•4m ago•0 comments

Apple Excludes Older iPhones from New Camera Feature

https://www.macrumors.com/2026/09/22/apple-backtracks-camera-feature-compatibility/
2•tosh•8m ago•0 comments

Show HN: Rebuilding my journaling app to run on-device

https://www.tryweave.app/
1•cobrabts•8m ago•0 comments

Gladia to join OVH Groupe, accelerating Europe's sovereign voice AI ambitions

https://www.gladia.io/blog/gladia-joins-ovh-groupe
1•rolisz•13m ago•0 comments

Accelerated Server Sales Are Themselves Accelerating

https://www.nextplatform.com/compute/2026/09/21/accelerated-server-sales-are-themselves-accelerat...
1•rbanffy•15m ago•0 comments

FCIA's FC-SP-3: A Standard Ready for the Quantum-Computing World

https://www.storagereview.com/review/fcias-fc-sp-3-a-standard-ready-for-the-quantum-computing-world
1•rbanffy•16m ago•0 comments

When the Debugger Lies

https://danielmangum.com/posts/when-the-debugger-lies/
1•hasheddan•18m ago•0 comments

How to cut your AI agent bill without hurting output quality

https://www.vybe.build/blog/how-to-cut-your-ai-agent-bill
2•marwann•19m ago•0 comments

The Download: investigating deaths at the US border's "virtual wall"

https://www.technologyreview.com/2026/09/21/1144834/the-download-investigating-deaths-at-the-us-b...
1•joozio•19m ago•0 comments

Show HN: PowerTrace – local energy monitoring for Tuya smart meters

https://getpowertrace.com/
1•orthopaedist•19m ago•0 comments

Modern SaaS Landing Page Template – single-file HTML, dark theme, responsive

https://github.com/astra-intelligence/saas-landing-page-template
2•spedhead•19m ago•0 comments

JetBrains Air: A System of Products for Agentic Software Development

https://blog.jetbrains.com/blog/2026/09/22/introducing-jetbrains-air/
9•FinnLobsien•20m ago•2 comments

Show HN: Watch all the AI agents on your machine

https://github.com/markwylde/all-your-agents
1•turblety•23m ago•0 comments

When is a river no longer a river?

https://www.texasmonthly.com/interactive/rio-grande-water-wars/
2•littlexsparkee•26m ago•0 comments

Trying to read 30 year old floppies – the success rate surprised me

https://old.reddit.com/r/amiga/comments/1wmpp7b/spent_the_weekend_trying_to_read_30_year_old/
2•doener•26m ago•0 comments

Show HN: An atlas of system designs with interactive architecture diagrams

https://atlas-sysdes.vercel.app/
3•mertkahyaoglu•27m ago•1 comments

Show HN: BlockRazor – A lower-latency sequencer feed for Robinhood Chain

https://github.com/BlockRazorinc/robinhood-feed-speed
1•yuouiu•27m ago•0 comments

Forgot your phone PIN? Google could look to past to save you from factory reset

https://www.androidauthority.com/android-unlock-with-google-account-apk-teardown-3713919/
1•Markoff•27m ago•0 comments

Show HN: Spatium – any mathematical space, one C++23 library

https://github.com/Vaniell0/spatium
1•Vaniello•28m ago•0 comments

Travel disruption around UK after second air traffic control issue in two weeks

https://www.bbc.co.uk/news/live/cq4g5r4e949jt
3•zimpenfish•28m ago•0 comments

Why Is the Coast Guard Operating Surveillance Drones in the Great Lakes?

https://www.nytimes.com/video/us/100000011152107/coast-guard-saildrone-great-lakes.html
1•reaperducer•29m ago•0 comments

Ask HN: How do you prevent PII from reaching third-party services?

1•Securelytixdev•31m ago•0 comments

America is getting its AI race with China wrong

https://restofworld.org/2026/america-china-ai-race-trust/
5•rdmuser•32m ago•3 comments

Internal Set Theory

https://en.wikipedia.org/wiki/Internal_set_theory
1•nill0•32m ago•0 comments

Anthropic-linked CVEs pile up, attackers mostly shrug

https://www.theregister.com/security/2026/09/21/anthropic-linked-cves-pile-up-attackers-mostly-sh...
2•Betelbuddy•32m ago•0 comments

A Tokyo school counts the mornings it can see Mt. Fuji: 22 in 1965, 170 in 2023

https://jivx.com/fujimi
3•momentmaker•33m 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.