frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The new best free project management tool

https://mytracker.today
1•rakanalalami•1m ago•0 comments

AMD GPU-Initiated I/O

https://thegeeko.me/blog/nvme-amdgpu-p2pdma/
1•hatgfx•3m ago•0 comments

I rebuilt Claude Desktop in 10 days. Here's why

https://raulriera.medium.com/i-rebuilt-claude-desktop-in-10-days-heres-why-2efb47133da9
1•ingve•7m ago•0 comments

Been using this Tourist eSIM while traveling, super cheap unlimited data

https://touristesim.net
1•globalnomader•7m ago•0 comments

OpenClaw is just cron, Markdown and a chat bot and that's why it matters

https://twitter.com/efexen/status/2034352992233672945
2•efexen•8m ago•1 comments

Show HN: Get a quick skincare analysis by uploading a photo

https://howolddoyoulook.com/skincare
1•beast200•17m ago•0 comments

Show HN: EasyShot – macOS screenshot thumbnails that don't disappear after 5s

1•amlug•17m ago•0 comments

AI Hairstyle Changer

https://hairstyleaichanger.com/
1•Fsen•23m ago•0 comments

Why Whisper Notes for Mac Left the App Store

https://whispernotes.app/blog/why-whisper-notes-left-mac-app-store
1•mazzystar•26m ago•1 comments

"I hope you don't use Generative AI"

https://rmv.fyi/notes/i-hope-you-don-t-use-generative-ai
2•garblegarble•27m ago•1 comments

The AI Morning Show: Automating German Humor

https://portfolio.bildsignal.de/p_gagflatrate/
2•pahn•28m ago•1 comments

Rippling AI

https://www.rippling.com/blog/introducing-rippling-ai
1•tosh•31m ago•0 comments

The Five Companies You Can Build in 2026

https://www.dylancollins.com/p/the-five-companies-you-can-build
1•dylancollins•31m ago•0 comments

AI Council: run mupliple LLMs on your question, get consolidated opinion

https://github.com/yanbrod/council
1•ianbrode•32m ago•0 comments

TBM 406: Seeing Everything, Understanding Nothing (The Context Trap)

https://cutlefish.substack.com/p/tbm-406-seeing-everything-understanding
1•kiyanwang•37m ago•0 comments

Gea: A Compile-Time Reactive UI Framework That's Just JavaScript

https://github.com/dashersw/gea
1•dokdev•39m ago•0 comments

The Reason Most People Are Terrible Communicators (and How to Fix It)

https://alifeengineered.substack.com/p/the-reason-most-people-are-terrible
1•kiyanwang•39m ago•0 comments

Bombadil: Property-based testing for web UIs by Antithesis

https://github.com/antithesishq/bombadil
1•Klaster_1•40m ago•0 comments

Management in the Age of AI – Stay SaaSy

https://staysaasy.com/management/2026/03/12/ai-management.html
1•kiyanwang•41m ago•0 comments

'Alright mate?': Amazon pins UK hopes on AI upgrade of Alexa

https://www.theguardian.com/technology/2026/mar/19/amazon-uk-ai-upgrade-alexa-voice-assistant-dev...
2•chrisjj•44m ago•0 comments

Wikigacha – Collect cards from articles on Wikipedia and use them in battle

https://wikigacha.com
1•helloplanets•45m ago•0 comments

Taste at scale. Why the hardest part of building products stayed human

https://designexplained.substack.com/p/taste-at-scale
1•kaizenb•48m ago•0 comments

Context Engineering for Coding Agents

https://martinfowler.com/articles/exploring-gen-ai/context-engineering-coding-agents.html
2•BerislavLopac•49m ago•0 comments

Ask HN: Have you cancelled any software subscriptions because AI replaced them?

1•maxim_bg•50m ago•1 comments

Google to Allow AI Opt-Out to Ease UK Competition Concerns

https://www.globalbankingandfinance.com/google-allow-ai-opt-out-ease-uk-competition-concerns/
1•_____k•50m ago•0 comments

Anonymous model Hunter Alpha is Xiaomi's model

https://mimo.xiaomi.com/mimo-v2-pro
1•sergdigon•51m ago•0 comments

Agentic CTF

https://jemini.live
1•4ppsec•55m ago•0 comments

Principles for sustaining open source in the age of generative AI

https://www.human-oss.dev/
1•starptech•55m ago•0 comments

Vance plans Hungary visit in show of support for Orban ahead of tight election

https://www.reuters.com/world/europe/vance-plans-hungary-visit-show-support-orban-ahead-tight-ele...
1•vrganj•57m ago•0 comments

Design Conductor: agent autonomously builds a 1.5 GHz Linux-capable RISC-V CPU

https://arxiv.org/abs/2603.08716
2•EvgeniyZh•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.