frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Boeing Tackles Quality with a 'War on Defects'

https://www.nytimes.com/2025/11/25/business/boeing-737-max-factory.html
1•JojoFatsani•1m ago•0 comments

What Does "Capitalism" Really Mean, Anyway?

https://www.newyorker.com/magazine/2025/12/01/capitalism-a-global-history-sven-beckert-book-review
1•mitchbob•2m ago•1 comments

Quick Wins Become a Costly Addiction

https://ottic.ai/blog/marketing-quick-wins-with-examples/
1•rafaepta•3m ago•0 comments

Take Your Time

https://www.jmeiners.com/take-your-time/
1•speckx•5m ago•0 comments

Feedback on an open source Ruby – LLM project

https://github.com/pcarolan/magic
1•pcarolan•5m ago•1 comments

AMD could cancel RX 9070 GRE 16 GB due to explosive increase in memory prices

https://www.notebookcheck.net/AMD-could-cancel-RX-9070-GRE-16-GB-due-to-explosive-increase-in-mem...
1•doener•5m ago•0 comments

What Makes You Senior

https://terriblesoftware.org/2025/11/25/what-actually-makes-you-senior/
2•theanonymousone•8m ago•0 comments

Ret: Online Assembly Playground and Reverse Engineering Tool

https://ret.futo.org/
1•petabyt•8m ago•0 comments

Six Things I Bet You Didn't Know You Could Do with Chrome's Devtools, Part 1

https://www.readwriterachel.com/things-i-learned/2025/11/09/devtools-1.html
1•speckx•10m ago•0 comments

Mobile browsers see telephone numbers everywhere

https://sethmlarson.dev/mobile-browsers-and-telephone-numbers
1•SethMLarson•12m ago•0 comments

Ask HN: What did Stripe change (Value Add)?

2•dzonga•12m ago•1 comments

Europe's Cold Snap Puts New Heat Pumps to the Test

https://www.bloomberg.com/news/articles/2025-11-20/europe-s-cold-snap-puts-thousands-of-new-heat-...
2•toomuchtodo•13m ago•1 comments

Diffusers Welcomes Flux-2

https://huggingface.co/blog/flux-2
1•ibobev•14m ago•0 comments

One of the Greatest Polar-Bear Hunters Confronts a Vanishing World

https://www.newyorker.com/magazine/2025/12/01/one-of-the-greatest-polar-bear-hunters-confronts-a-...
2•mitchbob•16m ago•1 comments

Broken Promises: How Technology Companies Bait and Switched All Generations

https://josebriones.substack.com/p/broken-promises
1•toomuchtodo•18m ago•0 comments

Making tennis analytics more scaleable

https://splitstep.ai/
1•jwsmithers•19m ago•0 comments

PR CheckMate – automate lint, formatting, deps and NPM audit

https://www.npmjs.com/package/pr-checkmate
1•def-to-explore•21m ago•1 comments

Moloch: A Revival of the Metropolis LaTeX Beamer Theme

https://jolars.co/blog/2024-05-30-moloch/
1•gjvc•22m ago•1 comments

And fastest domain search website

https://instantdomainsearch.com
1•amukbils•22m ago•1 comments

Euclyd launches "Craftwerk" silicon to shave AI inference cost and power by 100×

https://euclyd.ai/
1•stefvw93•23m ago•0 comments

We Rewrote Our Startup from PHP to Gleam in 3 Weeks

https://www.radical-elements.com/minor-epiphanies/we-rewrote-our-startup-from-php-to-gleam-in-3-w...
2•kamilap•23m ago•1 comments

Show HN: SafeShare – Clean tracking params locally (PWA and bookmarklets

https://j-ai-71.github.io/Supersystem/
2•safeshare•25m ago•0 comments

Ilya Sutskever – We're moving from the age of scaling to the age of research

https://youtu.be/aR20FWCCjAs?si=SD1bp8f5jOcUdl78
4•blufish•27m ago•1 comments

AI Tools Dashboard (Updated Daily)

https://phshort.com/ai
1•mohamadkk7•27m ago•0 comments

Show HN: God's Eye – Subdomain recon with local AI analysis

https://github.com/Vyntral/god-eye
1•vyntral•27m ago•0 comments

Larry Ellison Met with Trump to Discuss Which CNN Reporters They Plan to Fire

https://www.techdirt.com/2025/11/25/larry-ellison-met-with-trump-to-discuss-which-cnn-reporters-t...
7•throw0101a•27m ago•0 comments

Nimbalyst: WYSIWYG Markdown editor with visual diffs powered by Claude Code

https://github.com/Nimbalyst/nimbalyst
5•wek•29m ago•2 comments

DJI ROMO robot vacuum [video]

https://www.youtube.com/watch?v=Iv7BYURURRI
1•surprisetalk•30m ago•0 comments

Show HN: StepKit, an open and cross-platform durable execution standard

16•tonyhb•30m ago•4 comments

93% Faster Next.js in (Your) Kubernetes

https://blog.platformatic.dev/93-faster-nextjs-in-your-kubernetes
1•chrisdoc•32m ago•0 comments
Open in hackernews

Ask HN: What are you currently trying to figure out?

3•gooob•7mo 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•7mo ago
Trying to figure out what to do next and what to do with my life.
gooob•7mo ago
how's that going? what are your current options?
sherdil2022•7mo ago
Not going good.
scottmcdot•7mo ago
How to build a segmentation model based on a sample of data that needs to be representative of the population.
turtleyacht•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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.