frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

BlackRock Launches $100M Skilled Trades Initiative

https://www.blackrock.com/corporate/newsroom/press-releases/article/corporate-one/press-releases/...
1•toomuchtodo•3m ago•0 comments

5 Games I Use to Teach English as an Alt

https://landenlove.com/five-games-i-use-to-teach-english/
1•LandenLove•4m ago•0 comments

Duckstation is ending Android support

https://www.androidauthority.com/duckstation-ends-android-support-3648430/
1•flykespice•4m ago•0 comments

Browserbase Founder Rejected by 500 Internships before founding $300M company [video]

https://www.youtube.com/watch?v=Eyuo1kG_APQ
2•dutilh•8m ago•0 comments

Apple releases iOS 15.8.7 to fix Coruna exploit for iPhone 6S from 2015

https://support.apple.com/en-us/126632
2•seam_carver•12m ago•0 comments

Show HN: Hyper, AI voice notes for spontaneous conversations

https://gethyper.space/
3•shainvs•14m ago•0 comments

Show HN: SwarmClaw – Manage a swarm of OpenClaw agents from one self-hosted UI

https://github.com/swarmclawai/swarmclaw
2•jamesweb•14m ago•0 comments

Halide cofounder Sebastiaan de With joins Apple's design team

https://9to5mac.com/2026/01/28/halide-cofounder-sebastiaan-de-with-joins-apples-design-team/
2•CharlesW•15m ago•1 comments

Paradise Episode 1 (KRAZAM)

https://www.youtube.com/watch?v=AS9y-d2BvZU
2•parkaboy•17m ago•0 comments

How much of HN is AI?

https://lcamtuf.substack.com/p/how-much-of-hn-is-ai
5•surprisetalk•19m ago•0 comments

The iPhone 17e

https://daringfireball.net/2026/03/the_iphone_17e
2•vismit2000•20m ago•0 comments

Watershed Moment for AI–Human Collaboration in Math

https://spectrum.ieee.org/ai-proof-verification
2•Brajeshwar•26m ago•0 comments

Ask HN: What on this "List of Unsolved Problems in Physics" Has Your Attention?

2•ghastmaster•32m ago•0 comments

Open-source GPU virtualization and pooling for Kubernetes

https://github.com/NexusGPU/tensor-fusion
3•killme2008•37m ago•0 comments

Iceberg was once the biggest in the world. Now it has just weeks left

https://www.bbc.co.uk/news/resources/idt-20f878f1-f4af-4022-9f62-b0515b9f4b20
4•gmays•39m ago•0 comments

Boosting Android Performance: Introducing AutoFDO for the Kernel

https://android-developers.googleblog.com/2026/03/BoostingAndroid%20PerformanceIntroducingAutoFDO...
2•ndesaulniers•39m ago•0 comments

On The Need For Understanding

https://blog.information-superhighway.net/on-the-need-for-understanding
2•zdw•42m ago•0 comments

Are we doing UX for AI the right way?

https://uxdesign.cc/are-we-doing-ux-for-ai-the-right-way-aea01e14138e
2•Akcium•44m ago•0 comments

Show HN: A tool that audits healthcare ML models for safety and trust

https://htas.runable.site/
1•AyodeleFikayomi•47m ago•0 comments

Show HN: Bus Core 1.0.3 Local-first manufacturing system for small shops

https://buscore.ca/
2•True-Good-Craft•50m ago•0 comments

My father left gold and cash. He left zero words for his family-I built the fix

https://eternalegacy.life
2•eterna_legacy•52m ago•2 comments

Grammarly Is Facing a Class Action Lawsuit over Its AI 'Expert Review' Feature

https://www.wired.com/story/grammarly-is-facing-a-class-action-lawsuit-over-its-ai-expert-review-...
2•healsdata•52m ago•0 comments

Show HN: K9 Audit – Causal intent-execution audit trail for AI agents

https://github.com/liuhaotian2024-prog/K9Audit
2•zippolyon•55m ago•0 comments

Measure of Justice: Covering the Cerîde-I Adliye Covers (2017)

https://www.denizcemonduygu.com/2017/05/measure-of-justice/
2•benbreen•55m ago•0 comments

Happy Birthday YC/HN

5•ellis0n•55m ago•3 comments

Microsoft's 'Xbox Mode' Coming to Windows 11 PCs Next Month

https://www.pcmag.com/news/microsofts-xbox-mode-coming-to-windows-11-pcs-next-month
3•0in•57m ago•1 comments

Ask HN: Embedding Claude Code as infrastructure?

2•technocrat8080•58m ago•0 comments

Show HN: I built an open harness that excels at autonomous ML research

https://github.com/snoglobe/helios
2•snwy•1h ago•0 comments

AI should help us produce better code

https://simonwillison.net/guides/agentic-engineering-patterns/better-code/
3•birdculture•1h ago•0 comments

DIY scanner to visualize sound waves in 3D [video]

https://www.youtube.com/watch?v=Ky7AWh8nd-A
2•i2pi•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.