frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Boston Review: A Brief History of AI Psychosis

https://www.bostonreview.net/articles/a-brief-history-of-ai-psychosis/
1•t0lo•6m ago•1 comments

Show HN: Arrival Radar

https://entropicthoughts.com/arrival-radar
2•kqr•10m ago•1 comments

How AI will change GTM?

1•imwoody•10m ago•0 comments

Show HN: Export Your YouTube Subscriptions to OPML (and Use Any RSS Reader)

https://gist.github.com/jillesvangurp/b43cc5bbdbc0a9a29c7f0944d6cc5854
1•jillesvangurp•11m ago•0 comments

When the Bubble Bursts

http://theprogrammersparadox.blogspot.com/2026/02/when-bubble-bursts.html
2•r4um•12m ago•0 comments

Spatial AI-native graph workspace

1•aXlireza•13m ago•0 comments

Show HN: MotionDesk: Physics-driven, Metal-accelerated wallpapers for macOS

2•motiondeskapp•13m ago•0 comments

Show HN: Nano Banana 2 – Sub-second AI image gen via Gemini 3.1 Flash

https://nano-banana2.me/
1•naxtsass•17m ago•0 comments

Show HN: Conduit – Automatic Port Forwarding for Docker Containers

https://github.com/Oranda-IO/Conduit
1•orandaio•17m ago•0 comments

RFC 9925: Unsigned X.509 Certificates

https://datatracker.ietf.org/doc/rfc9925/
1•raquuk•20m ago•0 comments

I used Claude AI to build this website that shows upcoming indie game festivals

https://festival-watch.vercel.app/
2•rotub•21m ago•1 comments

Chivalry Test

https://chivalryscore.com
1•onSmallMessage•21m ago•1 comments

We found 118 performance bugs across 2 PRs written with Claude Code

https://www.codeflash.ai/blog-posts/hidden-cost-of-coding-agents
4•misrasaurabh1•22m ago•1 comments

Vegetarians have 'substantially lower risk' of five types of cancer

https://www.theguardian.com/society/2026/feb/27/vegetarians-have-substantially-lower-risk-of-five...
1•plaguna•22m ago•0 comments

Man jailed after selling £7M of fake plane parts

https://www.bbc.com/news/articles/c78xz5j848vo
1•dataflow•22m ago•0 comments

Pplx-Embed: Embedding Models for Web-Scale Retrieval

https://research.perplexity.ai/articles/pplx-embed-state-of-the-art-embedding-models-for-web-scal...
1•jxmorris12•24m ago•0 comments

CoreWeave slides as surging capex, backlog risks overshadow small revenue beat

https://www.reuters.com/business/coreweave-beats-fourth-quarter-revenue-estimates-2026-02-26/
1•petethomas•30m ago•0 comments

Indian ISPs block Supabase due to a ministry order

https://twitter.com/supabase/status/2027249469545386102
1•alt-glitch•31m ago•0 comments

Google paid startup Form Energy $1B for its 30GWh, 100-hour battery

https://techcrunch.com/2026/02/26/google-paid-startup-form-energy-1b-for-its-massive-100-hour-bat...
1•epistasis•35m ago•0 comments

I stopped writing code. I only review AI-generated PRs now

https://alec.is/posts/how-i-went-from-code-reviewer-to-code-reviewer/
1•arm32•36m ago•0 comments

'Really Simple Licensing' (RSL) – Open Licensing Standard for AI Crawlers

https://en.wikipedia.org/wiki/Really_Simple_Licensing
1•evolve2k•54m ago•1 comments

The AI Transformation Framework

https://zapier.com/playbooks/ai-transformation-framework
1•swolpers•56m ago•0 comments

Shifting Security Left for AI Agents with GitGuardian MCP

https://blog.gitguardian.com/shifting-security-left-for-ai-agents-enforcing-ai-generated-code-sec...
1•umairnadeem123•57m ago•0 comments

Feature-Sliced Design

https://feature-sliced.design/
1•saikatsg•57m ago•0 comments

High Speed Rail by Country 2026

https://worldpopulationreview.com/country-rankings/high-speed-rail-by-country
2•thunderbong•59m ago•0 comments

Trend Is Concerning

https://techcrunch.com/2026/02/26/jack-dorsey-block-layoffs-4000-halved-employees-your-company-is...
1•melvinodsa•1h ago•0 comments

Show HN: I built a Chrome extension to record demo videos without editing

https://zoomflow.rovelin.com/
1•hritik7742•1h ago•0 comments

Judge says he will order Greenpeace to pay $345M in oil pipeline case

https://apnews.com/article/greenpeace-energy-transfer-dakota-access-pipeline-30bfb9939dea06f1e976...
4•e2e4•1h ago•1 comments

Model Collapse Ends AI Hype

https://www.youtube.com/watch?v=ShusuVq32hc
3•signa11•1h ago•0 comments

Research suggests mating direction bias between Neanderthals and humans

https://www.theguardian.com/science/2026/feb/26/male-neanderthals-human-females-mating-research-d...
3•uxhacker•1h ago•1 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.