frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

How NOT to do serial interfacing

https://www.nickh.org/warstories/twowire.html
1•xk3•1m ago•0 comments

Agentcli-go – deterministic Go CLI scaffolding with harness engineering built in

https://github.com/gh-xj/agentcli-go
2•hn-xj•4m ago•1 comments

Community-maintained fork of MinIO, maintained by Pigsty

https://github.com/pgsty/minio
2•maxloh•5m ago•0 comments

Blue Owl Capital Is Collapsing

3•zerosizedweasle•7m ago•0 comments

Awesome-Onchain-Agents

https://github.com/sodofi/awesome-onchain-agents
2•tiagom87•9m ago•0 comments

Show HN: GrowthClaw, a workflow pack for deterministic growth execution

https://github.com/mrrkrieg/growthclaw
2•dankrieg•9m ago•0 comments

Top '28 Dems retreat on AI – sign of rising backlash

https://www.axios.com/2026/02/22/democrats-2028-retreat-ai-data-centers
4•1vuio0pswjnm7•13m ago•0 comments

Show HN: AI-Native Architecture Series (Open-Source)

https://github.com/myinvestpilot/ai-architecture
2•madawei2699•14m ago•3 comments

Synth modular controller treats music making like building with blocks

https://www.yankodesign.com/2026/02/21/synth-modular-controller-treats-music-making-like-building...
2•teleforce•17m ago•0 comments

Most web utility sites are going to die soon

2•hussachai•19m ago•2 comments

Show HN: Chorus –Let users improve the LLM without their data leaving the device

https://github.com/varmabudharaju/chorus
2•varmabudharaju•21m ago•0 comments

BasaltCRM – The Open Source AI-Native CRM Built on Next.js 16

https://github.com/pdovhomilja/nextcrm-app/discussions/76
2•mayordelmar•30m ago•3 comments

Qworum transforms the Web into an AI-ready application platform

https://drive.google.com/file/d/13xy5Yx8dMVqGiJqqWFhh9DOi_7akl_rW/view
2•dogaar•30m ago•1 comments

How the Dunning-Kruger Effect Impairs Judgement in High-Risk Professions

https://www.jsr.org/hs/index.php/path/article/view/5623
3•thunderbong•32m ago•0 comments

What Are Free Speech Warriors Doing About Trump's Censorship-Industrial Complex?

https://www.theunpopulist.net/p/what-are-heterodox-free-speech-warriors
5•bediger4000•32m ago•1 comments

Global Intelligence Boom

https://twitter.com/michaelxbloch/status/2025712344123236418
2•rayxi271828•33m ago•0 comments

AI-Free-Forever – 1000 free AI tools with no signup, no login

https://aifreeforever.com/
2•peter_d_sherman•36m ago•0 comments

Show HN: Say What You Should Have

https://mappymail.com
1•pruetj•45m ago•0 comments

Compulsively violent people might have lower IQs

https://www.psypost.org/people-who-engage-in-impulsive-violence-tend-to-have-lower-iq-scores/
7•karim79•48m ago•0 comments

Show HN: LucidExtractor – AI web scraper that understands plain English

https://lucidextractor.liceron.in
1•yukendiran_j•49m ago•0 comments

Ask HN: Does This Make Sense?

2•piratesAndSons•49m ago•1 comments

Show HN: ZuckerBot. API and MCP server for AI agents to run Meta/Facebook ads

https://zuckerbot.ai/
2•DavisGrainger•51m ago•0 comments

Weekly AI Pulse: Feb 23rd Edition

https://manojgopanapalli.substack.com/p/your-weekly-ai-pulse-india-ai-impact
1•thecontentboy•51m ago•0 comments

You Make Good Money...So Why Do You Still Feel Replaceable?

https://cpleveragingai.substack.com/p/you-make-good-money
2•cp18101985•53m ago•0 comments

Ask HN: Is there a workaround in OpenClaw for tab not found

2•jinen83•54m ago•0 comments

HN; Scheduled autonomous Claude agents using shell scripts and launchd

https://github.com/raulriera/MacPilot
2•raulriera•54m ago•1 comments

The Refrigerator Policy

https://alexover.dev/articles/the-refrigerator-policy/
3•alexoverdev•55m ago•1 comments

Show HN: A 4-tier self-healing system for local AI agents (was silently broken)

2•ramsbaby-dev•55m ago•1 comments

Tiny knife raised $450K in under a week

https://gearjunkie.com/knives/coin-tiny-knife-launch
2•teleforce•56m ago•0 comments

Show HN: 4-tier self-healing AI agent (was silently broken for weeks)

https://github.com/Ramsbaby/openclaw-self-healing
2•ramsbaby-dev•59m 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.