frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Rhome, a social app for media recs from friends instead of algorithms

https://preview.rhomeapp.com/profile/rohannihalani
2•rohannih•1m ago•0 comments

One-liner to get Claude Code usage stats

https://github.com/anthropics/claude-code/issues/13585
1•behnamoh•1m ago•0 comments

Move over stoics Why we should all embrace nihilism

https://www.theguardian.com/books/2026/feb/23/nihilism-why-we-should-embrace-it
3•devonnull•1m ago•0 comments

Anthropic Accuses Chinese Companies of Siphoning Data from Claude

https://www.wsj.com/tech/ai/anthropic-accuses-chinese-companies-of-siphoning-data-from-claude-63a...
1•mrbonner•1m ago•0 comments

Cancer, Water, Religion, Tooze, Weiss, Land, Diff Jobs

https://www.thediff.co/archive/longreads-open-thread-166/
1•paulpauper•2m ago•0 comments

Daniel Litt on AI and Math

https://marginalrevolution.com/marginalrevolution/2026/02/daniel-litt-on-ai-and-math.html
1•paulpauper•3m ago•0 comments

OpenClaw – My Automation Setup

https://krausefx.com//blog/openclaw-my-automation-setup
2•domysee•3m ago•0 comments

Cartographic Symbologies: The Art and Design of Expression in Historic Maps

https://exhibits.stanford.edu/cartosym/browse
2•starkparker•3m ago•0 comments

Hidden Cause of Permanent Hearing Loss Identified

https://neurosciencenews.com/hearing-loss-tmc1-membrane-apoptosis-30163/
1•mikhael•4m ago•0 comments

Every SaaS Is Now an API. Whether They Like It or Not

https://twitter.com/nicbstme/status/2025643017571541378
1•nbstme•4m ago•0 comments

Play is sub-optimal, and just what we need in the Climate Crisis

https://www.theremake.org/play-is-sub-optimal-and-just-what-we-need-in-the-climate-crisis/
2•AmosLightnin•5m ago•0 comments

Off topic: NAI_Journal

https://medium.com/@NAI_Journal
1•CerNai•5m ago•0 comments

US Gov Deploys Grok as Nutrition Bot, It Advises for Rectal Use of Vegetables

https://futurism.com/artificial-intelligence/us-government-grok-nutrition
4•latexr•5m ago•0 comments

The Global Battery Race Heats Up as China Tightens Its Grip

https://oilprice.com/Energy/Energy-General/The-Global-Battery-Race-Heats-Up-as-China-Tightens-Its...
1•PaulHoule•5m ago•0 comments

So I've Been Thinking About Static Site Generators

https://wolfgirl.dev/blog/2026-02-23-so-ive-been-thinking-about-static-site-generators/
1•speckx•6m ago•0 comments

Benji's Guide to Machine Creativity

https://machinecreativity.substack.com/p/benjis-guide-to-machine-creativity
1•benjismith•7m ago•0 comments

How to Filter a Todo.txt File in Obsidian – Without Plugins

https://ellanew.com/2026/02/23/filter-todotxt-in-obsidian-no-plugins
3•jethronethro•7m ago•0 comments

Why SWE-bench Verified no longer measures frontier coding capabilities

https://openai.com/index/why-we-no-longer-evaluate-swe-bench-verified/
1•tedsanders•8m ago•0 comments

Ask HN: Cool hardware blogs and new company's in the the hardware space

1•monkmartinez•9m ago•0 comments

South Carolina Hospitals Aren't Required to Disclose Measles-Related Admissions

https://www.propublica.org/article/south-carolina-measles-hospital-admissions
4•digital55•9m ago•0 comments

Detecting and Preventing Distillation Attacks

https://www.anthropic.com/news/detecting-and-preventing-distillation-attacks
1•meetpateltech•9m ago•0 comments

New Microsoft gaming chief has "no tolerance for bad AI"

https://arstechnica.com/gaming/2026/02/new-microsoft-gaming-chief-has-no-tolerance-for-bad-ai/
1•oldnetguy•9m ago•0 comments

Writing about Agentic Engineering Patterns

https://simonwillison.net/2026/Feb/23/agentic-engineering-patterns/
1•mfiguiere•10m ago•0 comments

Pure-Rust HDF5 – zero C deps, 55x faster file open, no_std

https://github.com/rustystack/edgehdf5
1•redclaw•10m ago•1 comments

Study shows two child household must earn $400k/year to afford childcare

https://finance.yahoo.com/news/two-child-household-must-earn-195951419.html
2•toomuchtodo•10m ago•1 comments

CMS with Graphical Simulator for Finite Automata, Mealy, and Turing Machines

https://tursim.org
1•ferri-emanuele•10m ago•1 comments

Bootstrappable Builds

https://bootstrappable.org/
1•tosh•11m ago•0 comments

Claude Code on the Web broken?

1•powera•12m ago•0 comments

Show HN: I got tired of leaking API keys, so I made .env files safe to commit

https://github.com/MrPrinceRawat/dotlock
1•mrprincerawat•12m ago•1 comments

Claude Relentlessly Got Nancy Drew (XP, 2007) Running on My M1 (400 Tool Calls)

https://www.joelreske.com/blog/claude-nancy-drew/
4•joelres•13m ago•2 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.