frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

5 Takeaways on America's Boom in Billionaires

https://www.nytimes.com/2026/03/02/us/billionaire-boom-takeaways.html
1•bookofjoe•33s ago•0 comments

Ask HN: What is your AI workflow for software projects?

1•LostMyLogin•50s ago•0 comments

TX Ken Paxton calls Conduent 25M PII "largest hack in US history"

https://www.extremetech.com/internet/data-breach-exposes-25-million-americans-in-what-texas-calls...
1•burnt-resistor•1m ago•0 comments

Show HN: Btrc – I built a language with AI in a few weeknights that outputs C11

https://github.com/schiffy91/btrc
1•schiffy•1m ago•0 comments

I can't read books written in the first-person perspective

https://good.afternoonrobot.co.uk/i-cant-read-books-written-in-the-first-person-perspective/
1•robotmay•1m ago•0 comments

Real Good AI

https://www.realgoodai.org
1•sininxn•3m ago•0 comments

Show HN: Mailfeed – Your reading list, owned by you

https://github.com/toothbrush-inc/mailfeed
1•davidd8•3m ago•1 comments

Mexico Mandates Biometric SIM Registration for All Phone Numbers

https://reclaimthenet.org/mexico-mandates-biometric-sim-registration-for-all-phone-numbers
3•mikece•4m ago•0 comments

Testing the Datadog Explain Plan Visualizer with Oracle Execution Plans

https://tanelpoder.com/posts/testing-datadog-plan-visualizer-with-oracle-execution-plans/
2•tanelpoder•5m ago•0 comments

Age Verification: Protection Tool or Surveillance in Disguise?

https://itsfoss.com/news/our-take-on-age-verification/
2•mikece•5m ago•0 comments

Machine-made snow makes ski racing faster and riskier

https://theconversation.com/what-olympic-athletes-see-that-viewers-dont-machine-made-snow-makes-s...
2•PaulHoule•6m ago•0 comments

Ask HN: How do you monitor AI features in production?

2•llmskeptic•6m ago•0 comments

Repurposing Claude Code for Better Spotify Recommendations

https://fredbenenson.com/blog/2026/03/02/repurposing-claude-code-for-better-spotify-recommendations/
2•mecredis•6m ago•0 comments

Vibe coding toward the incident horizon

https://www.spinellis.gr/blog/20260302/
3•DSpinellis•6m ago•0 comments

Show HN: MassMAP – Masscan as a Service LOL

https://masscan.org
2•acid_vegas•7m ago•0 comments

Breaking up with Big Tech – Progress update

https://thedent.net/posts/breaking-up-with-big-tech-progress-update
2•speckx•7m ago•0 comments

Parse, Don't Guess

https://event-driven.io/en/parse_dont_guess/
1•ingve•7m ago•0 comments

John Baskerville's type punches released digitally

1•parkersweb•8m ago•0 comments

Show HN: Benchmarking the Keep memory system with LoCoMo

https://keepnotes.ai/blog/2026-02-28-benchmark/
1•inguz•9m ago•0 comments

Show HN: Agent Protocols Tech Tree

https://harvard-lil.github.io/agent-protocols/
1•JackC•10m ago•0 comments

Why every AI coding breakthrough feels normal within 90 days

https://www.augmentcode.com/blog/why-every-ai-coding-breakthrough-feels-normal-within-90-days
1•knes•10m ago•0 comments

Show HN: SwarmWatch – Live view of your coding agents at work

https://github.com/SwarmPack/SwarmWatch
1•prastik•11m ago•0 comments

Apple AI servers unused in warehouses due to low Apple Intelligence usage

https://9to5mac.com/2026/03/02/some-apple-ai-servers-are-reportedly-sitting-unused-on-warehouse-s...
11•_____k•13m ago•0 comments

Show HN: ParseForce – Turn emails into structured JSON and send them to webhooks

https://www.parseforce.io
1•nikola470•14m ago•1 comments

From coder to orchestrator: the mindset shift software engineers must make

https://fafa.bearblog.dev/from-coder-to-orchestrator-the-mindset-shift-software-engineers-must-make/
1•evakhoury•15m ago•0 comments

Solid in FP: Liskov Substitution – A Principle Beyond Inheritance

https://cekrem.github.io/posts/solid-in-fp-liskov-substitution/
2•birdculture•15m ago•0 comments

Outline-oriented codebase for a coding agent

https://blog.fooqux.com/blog/outline-oriented-codebase/
1•dotneter•16m ago•0 comments

Show HN: Metanoia Research

https://www.metanoia-research.com/
1•metanoia_•17m ago•0 comments

An Identity Crisis in Engineering

https://bgthread.github.io/an-identity-crisis-in-engineering/
1•treenode•18m ago•0 comments

How to replace Docker Hub with a simple self-hosted solution

https://thomasbandt.com/self-hosted-docker-registry-watchtower
2•asp_net•19m ago•0 comments
Open in hackernews

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

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