frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: SynapServe – zero-allocation HTTP server in Rust with io_uring

https://synapserve.io
1•Meatack•31s ago•0 comments

OSS Tool: Hard spending limits for AI agents

1•miridar•32s ago•0 comments

Productive Procrastination

https://www.ssp.sh/brain/productive-procrastination/
1•articsputnik•1m ago•0 comments

Show HN: BitClaw – A self-upgrading AI agent in 1,500 lines of code

https://github.com/NickTikhonov/bitclaw
1•nicktikhonov•1m ago•0 comments

Writing High Quality Production Code with LLMs Is a Solved Problem

https://escobyte.substack.com/p/writing-high-quality-production-code
1•menzoic•1m ago•1 comments

Meta to spend billions on AMD chips

https://www.reuters.com/business/amd-clinches-second-mega-chip-supply-deal-this-time-with-meta-20...
1•bjnstad•1m ago•0 comments

Show HN: SNKV – SQLite's B-tree as a key-value store (C/C++ and Python bindings)

https://github.com/hash-anu/snkv
3•swaminarayan•2m ago•0 comments

Show HN: Claude Copy – Drop-in fix for Claude Code's broken copy-paste

https://github.com/andersmyrmel/claude-copy
2•andersmyrmel•2m ago•0 comments

IRS Tactics Against Meta Open a New Front in the Corporate Tax Fight

https://www.nytimes.com/2026/02/24/business/irs-meta-corporate-taxes.html
1•mitchbob•4m ago•1 comments

Semantic Syntax Highlighting for Lisp in Emacs

https://github.com/calsys456/lisp-semantic-hl.el
1•oumua_don17•4m ago•0 comments

Show HN: PDP – A 'robots.txt' protocol for AI prompt privacy

https://github.com/oug-t/pdp
1•oug-t•5m ago•1 comments

SaaS is (ought to be) dead

https://dev.ribic.ba/saas-is-dead
1•ribice•7m ago•0 comments

Anthropic joins OpenAI in flagging distillation campaigns by Chinese AI firms

https://www.cnbc.com/2026/02/24/anthropic-openai-china-firms-distillation-deepseek.html
1•seydor•7m ago•0 comments

Show HN: SlayZone – Each card is a terminal, my record is 25 concurrent

https://slay.zone
1•debuglebowski•7m ago•0 comments

AI blamed again as hard drives are sold out for this year

https://www.theregister.com/2026/02/20/ai_blamed_again_as_hard_drives_sell_out/
1•tosh•7m ago•0 comments

Show HN: Lettoral – Send one message, get one back. No social hack

https://lettoral.com
1•hayner•7m ago•0 comments

I hacked ChatGPT and Google's AI – and it only took 20 minutes

https://www.bbc.com/future/article/20260218-i-hacked-chatgpt-and-googles-ai-and-it-only-took-20-m...
1•matthewsinclair•7m ago•0 comments

Constraints and the Lost Art of Optimization

https://denodell.com/blog/constraints-and-the-lost-art-of-optimization
1•MindGods•8m ago•0 comments

Mercari's Phishing-Resistant Accounts with Passkey

https://engineering.mercari.com/en/blog/entry/20251106-mercari-phishing-resistant-accounts-with-p...
1•Techbrunch•8m ago•0 comments

Embarrassingly Solved Problems

https://zjpea.substack.com/p/embarrassingly-solved-problems
1•zjp•9m ago•0 comments

Data centres seek credit ratings to unlock billions in funding for AI push

https://www.ft.com/content/e0d9d5f2-c09d-426e-af03-193b488b7b1e
1•alecco•9m ago•1 comments

The End of Snow

https://www.nytimes.com/2024/01/02/opinion/climate-angst.html
1•bilsbie•10m ago•0 comments

xAI and Pentagon reach deal to use Grok in classified systems

https://www.axios.com/2026/02/23/ai-defense-department-deal-musk-xai-grok
2•ironyman•10m ago•0 comments

IBM Sinks Most Since 2000 as Anthropic Touts COBOL Tool

https://www.bloomberg.com/news/articles/2026-02-23/ibm-shares-plunge-as-anthropic-touts-cobol-mod...
2•wslh•11m ago•2 comments

Show HN: I built a labor union for AI agents

https://aawu.ai
1•team_dale•13m ago•1 comments

Is This Article an AI?

https://www.researchgate.net/publication/400894138_Is_this_article_an_AI
1•fl-pster•13m ago•0 comments

The Landscape of Non-Equilibrium Memories with Neural Cellular Automata

https://arxiv.org/abs/2508.15726
1•PaulHoule•15m ago•0 comments

Join Algorithms

https://arpitbhayani.me/blogs/join-algorithms/
1•emschwartz•15m ago•0 comments

Antitrust Filing Says Google Cannibalizes Publisher Traffic

https://www.searchenginejournal.com/antitrust-filing-says-google-cannibalizes-publisher-traffic/5...
1•speckx•15m ago•0 comments

Simple Alarms App with Groups

https://sites.google.com/view/abhijitbhopatkar/superalarms
1•abhopatkar•15m 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.