frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The Untold Story of Charlie Munger's Final Years

https://www.wsj.com/finance/investing/charlie-munger-life-final-years-berkshire-7c20c18e
1•erex78•7m ago•0 comments

EU new car registrations: +1.4% in Oct 2025 year-to-date; BEV 16.4% market share

https://www.acea.auto/pc-registrations/new-car-registrations-1-4-in-october-2025-year-to-date-bat...
1•breve•10m ago•0 comments

GitHub suspended my account for forking a work repo

https://bsky.app/profile/ijsbol.dev/post/3m6omfw2hwk27
2•abigailphoebe•13m ago•3 comments

War Stories: Crash Bandicoot (2020)

https://all-things-andy-gavin.com/2020/02/27/war-stories-crash-bandicoot/
1•tosh•16m ago•0 comments

Poetiq announces new SOTA on the ARC-AGI-1 and 2

https://poetiq.ai/posts/arcagi_announcement/
1•fofoz•23m ago•0 comments

Show HN: VeriIA – AI detector for Spanish and English text

https://detectordeia.pro
1•tanchaowen84•24m ago•0 comments

Benchmarking Checksum Tools

https://heitorpb.github.io/bla/checksum-benchmark/
1•furkansahin•25m ago•0 comments

Everything's Fake Now – Liam Fallen

https://liamfallen.substack.com/p/everythings-fake-now
2•bariscan•26m ago•0 comments

Model Madness: Making Sense of Today's LLM Chaos

https://medium.com/@yassien/model-madness-making-sense-of-todays-llm-chaos-26331cdcfc61
1•yassien•26m ago•0 comments

Trump says US will 'permanently pause' migration from 'third world countries'

https://www.bbc.com/news/articles/cdxweyy157go
1•breve•33m ago•0 comments

Show HN: I vibe-coded a complete React rewrite of my audio waveform editor

https://naomiaro.github.io/waveform-playlist/
1•st0ryteller•37m ago•0 comments

AI-Powered Y Combinator Company Research

https://fyicombinator.com
1•cmpit•38m ago•0 comments

A Python Script to End All Life and Take the Universe with It

https://starkeblog.com/dos/denial-of-service/weird/2025/11/28/universal-denial-of-service.html
1•bootbloopers•39m ago•0 comments

Ten Kubernetes Superpowers You Forget to Use

https://oneuptime.com/blog/post/2025-11-27-ten-kubernetes-superpowers-developers-overlook/view
2•ndhandala•39m ago•0 comments

Ask HN: What's your go-to strategy for programmatic SEO in 2025?

2•liquid99•40m ago•2 comments

Ask HN: What's the most underrated VS Code extension?

1•liquid99•41m ago•0 comments

AI Voice Agents: Transforming Customer Conversations in 2025

https://www.aiheadshotreviews.com/articles/ai-voice-agents-guide
2•naveensky•42m ago•0 comments

Nbaranker

https://nbaranker.com/
1•NBAnba•43m ago•1 comments

Zero-Width Space – The Sneaky Unicode Character

https://starikov.co/zero-width-space/
1•liquid99•45m ago•0 comments

Dumbindent: Because 93% of the time was spent in Clang-format

https://nigeltao.github.io/blog/2020/dumbindent.html
2•fanf2•45m ago•0 comments

The Performance Inequality Gap, 2026

https://infrequently.org/2025/11/performance-inequality-gap-2026/
1•ColinWright•46m ago•0 comments

Show HN: I made a free Git repository viewer

https://graph.gat.sh
1•rafmardev•46m ago•0 comments

The Math of Why You Can't Focus at Work

https://justoffbyone.com/posts/math-of-why-you-cant-focus-at-work/
2•0x79de•47m ago•0 comments

Denmark sets up 'night watch' to monitor Trump after Greenland row

https://www.theguardian.com/world/2025/nov/27/denmark-sets-up-night-watch-to-monitor-trump-since-...
1•saubeidl•47m ago•0 comments

iSmartPack| the smartest backpack for work, travel and life

https://ismartpack.com/
1•fisnikmaxhuni•49m ago•1 comments

A Repository with 44 Years of Unix Evolution

https://www.spinellis.gr/pubs/conf/2015-MSR-Unix-History/html/Spi15c.html
2•lioeters•55m ago•0 comments

A Day at the Park (2013)

https://kiriakakis.net/comics/mused/a-day-at-the-park
1•gebdev•55m ago•0 comments

When Playdate Stopped Being Fun

https://blog.gingerbeardman.com/2025/04/15/when-playdate-stopped-being-fun/
2•latexr•56m ago•0 comments

Quantum Safe E2EE File-Transfer

https://github.com/collapsinghierarchy/noisytransfercli
1•whitenoises•57m ago•1 comments

Organizations Are Distributed Systems

https://www.industrialempathy.com/posts/organizations-are-distributed-systems/
1•smartmic•59m ago•0 comments
Open in hackernews

Ask HN: What are you currently trying to figure out?

3•gooob•7mo 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•7mo ago
Trying to figure out what to do next and what to do with my life.
gooob•7mo ago
how's that going? what are your current options?
sherdil2022•7mo ago
Not going good.
scottmcdot•7mo ago
How to build a segmentation model based on a sample of data that needs to be representative of the population.
turtleyacht•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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•7mo 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.