frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: What Are You Building with AI?

1•fraXis•3m ago•1 comments

Ask HN: Evidence for JavaScript ecosystem being more vulnerable than Rust's?

1•pascahousut•4m ago•0 comments

Locksmith scams: 'I was shut out with my baby and charged £2,200 to get back in'

https://www.theguardian.com/money/2026/jul/15/the-scary-rise-of-locksmith-scams-i-was-shut-out-wi...
2•YeGoblynQueenne•6m ago•0 comments

The Myth of Sisyphus

https://en.wikipedia.org/wiki/The_Myth_of_Sisyphus
1•chistev•6m ago•1 comments

Show HN: A tool that reviews subreddit promotion rules before you post

https://wheretopost.com/
1•elng•8m ago•0 comments

What Do ASML's Q2 2026 Results Tell Us About the AI Boom?

https://mrkt30.com/what-do-asmls-q2-2026-results-tell-us-about-the-ai-boom/
2•technewssss•9m ago•2 comments

Show HN: OpenSCAD Models for Industrial Grade R/C Lawnmower

https://github.com/zelon88/RC_Mower_Trailer
1•zelon88•12m ago•0 comments

FreeBSD 16 Retires the Last GPL Code from Its Base System

https://www.phoronix.com/news/FreeBSD-16-Goes-GPL-Free
1•brandhout•12m ago•0 comments

Chipotle to open its first restaurant in Mexico this week

https://ktla.com/news/nationworld/chipotle-opens-first-location-in-mexico/
1•mikhael•13m ago•0 comments

What makes an AI coding tool worth paying for?

https://vibecodingagency.com/gpu-cloud/
1•vibeagency•16m ago•1 comments

Grok Faces a Trust Crisis After Developers Flag a Major Privacy Concern

https://www.inc.com/julie-lee/elon-musks-grok-faces-a-trust-crisis-after-developers-flag-a-major-...
1•baranul•17m ago•0 comments

Mozilla Syncstorage-Rs (Self-Hosted Firefox Sync)

https://mozilla-services.github.io/syncstorage-rs/
1•hosteur•18m ago•0 comments

Should a smartwatch track the user's emotions?

1•accofrisk•18m ago•2 comments

Always Go with a Monorepo

https://kore-nordmann.de/blog/always_go_with_a_monorepo.html
1•ingve•18m ago•0 comments

Rebuilding Our Notification Platform for Timely Notifications

https://www.patreon.com/engineering/posts/how-we-scaled-162544709
1•birdculture•22m ago•0 comments

Why Are Japanese Retail Traders Shorting the US Dollar?

https://www.disruptionbanking.com/2026/07/15/why-are-japanese-retail-traders-shorting-the-us-dollar/
2•emsidisii•25m ago•0 comments

Web Design Museum

https://www.webdesignmuseum.org/
1•fortuitous-frog•27m ago•0 comments

Code was our medium for thought

https://wattenberger.com/thoughts/code-is-a-medium-for-thought/
2•goranmoomin•28m ago•0 comments

Pebble July 2026 Update

https://repebble.com/blog/pebble-mega-update-july-2026
1•smig0•28m ago•0 comments

An Unprecedented Data Center Boom Means New Challenges for Texas

https://www.texastribune.org/2026/06/08/texas-regulation-data-centers-electricity-power-water/
2•turtleyacht•31m ago•0 comments

Semantic Primes (2018)

http://machinamenta.blogspot.com/2018/01/semantic-primes.html
1•txoria•32m ago•0 comments

Show HN: PixFinder – Free offline AI+OCR Image Search

https://pixfinder.app/
1•alexkh•32m ago•0 comments

AI eating software: IBM crash

https://www.bargo.ai/research/ibm-ai-capex-cannibalization
1•Kavon2992•34m ago•0 comments

SpaceXAI's Unpermitted Data Center Power Project Impacts Black Communities

https://gizmodo.com/spacexais-unpermitted-data-center-power-project-impacts-black-communities-ana...
2•baranul•38m ago•0 comments

Blog about hiring was written 23 years ago (Still valid)

http://www.aaronsw.com/weblog/hiring
2•rushil_b_patel•39m ago•0 comments

Decibri – unified audio layer for AI agents and Voice AI applications

https://decibri.com
2•vyrotek•45m ago•0 comments

Magic Cap OS

https://en.wikipedia.org/wiki/Magic_Cap
2•doener•46m ago•0 comments

Clean Up Kernel (2020)

https://lkml.org/lkml/2020/5/29/1038
2•downbad_•46m ago•0 comments

Show HN: VulnCast – open-source e-paper dashboard for live CVE/exploit Intel

https://github.com/vulnersCom/VulnCast
2•isox•51m ago•0 comments

We need to talk about the Bun Rust rewrite [video]

https://www.youtube.com/watch?v=kAjNWanR3n8
2•baranul•53m 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.