frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Self-Evolving Skill – empirical results from a 5-round experiment

https://github.com/191341025/Self-Evolving-Skill
1•tiansenxu•2m ago•0 comments

What Is AI Reading?

https://generativepulse.ai/report/
1•doener•2m ago•0 comments

Rcarmo/piclaw: An all-in one agent environment with a mobile-first web UI

https://github.com/rcarmo/piclaw
1•rcarmo•7m ago•0 comments

Show HN: Termix – One dashboard for all your AI coding agents

https://github.com/rustykuntz/termix
1•rustykuntz•7m ago•0 comments

Show HN: Cardea, SSH bastion with per-key ACLs, TPM keys and session recording

https://github.com/hectorm/cardea
1•hectorm•12m ago•0 comments

Show HN: Appbun – Turn any URL into desktop app with one command Electrobun+bun

https://github.com/bigmacfive/appbun
1•bigmacfive•14m ago•1 comments

Dinner at When?

https://archive.aramcoworld.com/issue/196902/dinner.at.when.htm
1•pinkmuffinere•14m ago•0 comments

I built a cloud-native, quorum-free RSM for the JVM atop S3

https://github.com/io-s2c/s2c
2•mzazaipsc•18m ago•1 comments

Show HN: Importree – Import Dependency Trees for TypeScript Files

https://importree.js.org
1•alexgrozav•20m ago•0 comments

Show HN: SubstanceWiki – Open-source encyclopedia of psychoactive substances

https://www.substancewiki.org/
1•toprak123•20m ago•0 comments

Therac-25

https://en.wikipedia.org/wiki/Therac-25
3•hubraumhugo•25m ago•0 comments

Llm9p: LLM as a Plan 9 file system

https://github.com/NERVsystems/llm9p
4•mleroy•26m ago•2 comments

BlackRock caps withdrawals amid investor rush

https://www.msn.com/en-us/news/insight/blackrock-caps-exits-as-redemptions-surge/gm-GM1184A108
2•csomar•27m ago•0 comments

Show HN: Bookvoice – convert PDF books into audiobooks

https://github.com/Semtexcz/Bookvoice
1•semtex_cz•32m ago•0 comments

German political spies mistook a random Berlin woman and got her fired

https://www.eugyppius.com/p/how-german-political-spies-mistook
3•Jerry2•33m ago•1 comments

I'm Not Consulting an LLM

https://lr0.org/blog/p/gpt/
1•birdculture•34m ago•0 comments

Game Theory #9: the US-Iran War [video]

https://www.youtube.com/watch?v=jIS2eB-rGv0
1•flawn•35m ago•0 comments

Dotfiles for Consistent AI-Assisted Development – Dylan Bochman

https://dylanbochman.com/blog/2026-01-25-dotfiles-for-ai-assisted-development/
1•ankitg12•38m ago•0 comments

When the chain becomes the product: Seven years inside a token-funded venture

https://markmhendrickson.com/posts/when-the-chain-becomes-the-product/
1•mhendric•41m ago•0 comments

Making Firefox's right-click not suck, more, with userChrome.css

https://joshua.hu/firefox-making-right-click-not-suck-even-more-userchrome
2•nocy•42m ago•0 comments

Ask HN: Why there are no actual studies that show AI is more productive?

4•make_it_sure•46m ago•2 comments

Show HN: Run any VLM on real-time video

https://overshoot.ai/
1•zakariaelhjouji•49m ago•0 comments

What Automattic's AI Enablement Training Means for WordPress

https://automattic.com/2026/02/25/ai-enablement-wordpress/
1•taubek•49m ago•0 comments

Unredact

https://github.com/Alex-Gilbert/unredact
1•kruuuder•51m ago•1 comments

Ask HN: Meta ad / business account and pages gone

1•holistio•53m ago•0 comments

Show HN: Flora – Compile-time Dependency Injection for Go without reflection

https://github.com/soner3/flora
1•soner3•55m ago•1 comments

Fantasque Player

https://raphaelbastide.com/fantasque-player/
1•tarball•56m ago•0 comments

Salt Typhoon hacked 80 countries – AT&T can't confirm hackers are out

2•Abhscanink•57m ago•0 comments

Attackers prompted Gemini over 100k times while trying to clone it, Google s

https://arstechnica.com/ai/2026/02/attackers-prompted-gemini-over-100000-times-while-trying-to-cl...
5•joozio•59m ago•1 comments

Superpowers for Claude Code: Complete Guide 2026

https://www.pasqualepillitteri.it/en/news/215/superpowers-claude-code-complete-guide
3•doener•1h 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.