frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Claude Code Connected to Apple Car Play and Android Auto [video]

https://www.youtube.com/shorts/edA00WNhNwM
2•johnkg003•3m ago•1 comments

Are you richer than your neighbor?

https://brokeorrich.com/
1•Mawenzi•7m ago•1 comments

Meta's Big Tobacco PR Tactics

https://yadin.com/notes/toasted/
1•dryadin•8m ago•0 comments

The AI supply crunch is here

https://www.economist.com/leaders/2026/04/30/the-ai-supply-crunch-is-here
2•pingou•8m ago•1 comments

Barbara Liskov on Dijkstra, Abstraction, Distributed Systems [video]

https://www.youtube.com/watch?v=T9CGjbPZeaM
1•tosh•13m ago•0 comments

U.S. Seizes $15B in Bitcoin in Crypto 'Scam' Crackdown

https://www.forbes.com/sites/martinacastellanos/2025/10/14/us-seizes-15-billion-in-bitcoin-sancti...
1•maxloh•14m ago•1 comments

Monopoly Concepts in Microeconomics: De Beers and Diamond Industry

https://www.studocu.com/in/document/university-of-johannesburg/microeconomic-issues-in-developmen...
1•cathrinea•14m ago•0 comments

Show HN: Kencode – Compact Kotlin serialization for URLs and labels

https://eignex.com/posts/kencode-packing-data-for-strict-limits/
2•monom•14m ago•1 comments

If I Could Make My Own GitHub

https://matduggan.com/if-i-could-make-my-own-github/
1•vinhnx•22m ago•0 comments

Apple Says Mac Studio and Mac Mini Will Be in Short Supply for Months

https://www.macrumors.com/2026/04/30/mac-studio-mac-mini-constrained-months/
9•tosh•22m ago•0 comments

A text editor as a user interface

https://ratfactor.com/cards/text-editor-as-ui
1•vinhnx•22m ago•0 comments

Sure: The personal finance app, community fork of Maybe Finance

https://github.com/we-promise/sure
1•sebakubisz•23m ago•0 comments

Surviving Black Friday: 329B requests with Falcon

https://speakerdeck.com/ioquatix/surviving-black-friday-329-billion-requests-with-falcon
2•ksec•25m ago•0 comments

Reunderstanding the Power of AI Through Reverse Engineering

https://blog.huli.tw/2026/04/18/en/ai-reverse-engineering-op/
1•swq115•29m ago•0 comments

US freezes $344M in cryptocurrency said to be linked to Iran

https://www.cnn.com/2026/04/24/politics/us-freezes-cryptocurrency-iran
3•maxloh•29m ago•0 comments

Openpi-flash: Real-time inference engine for openpi

https://github.com/Hebbian-Robotics/openpi-flash
1•kstonekuan•30m ago•0 comments

Advocacy groups issue US travel advisory ahead of World Cup

https://www.washingtonblade.com/2026/04/29/advocacy-groups-issue-us-travel-advisory-ahead-of-worl...
1•latexr•32m ago•0 comments

Andrej Karpathy: From Vibe Coding to Agentic Engineering [video]

https://www.youtube.com/watch?v=96jN2OCOfLs
1•vinhnx•37m ago•0 comments

Do birds have accents? the regional differences in birdsong

https://theconversation.com/do-birds-have-accents-the-fascinating-regional-differences-in-birdson...
2•zeristor•39m ago•0 comments

Foundations of Metrology(1981) [pdf]

https://nvlpubs.nist.gov/nistpubs/jres/086/jresv86n3p281_A1b.pdf
1•pillars•46m ago•0 comments

Show HN: Self hosted video feed for children

https://github.com/vkolev/timmygram-server
1•vkolev•46m ago•0 comments

Open Source Does Not Imply Open Community

https://blog.feld.me/posts/2026/04/open-source-does-not-imply-open-community/
3•zdw•47m ago•1 comments

James Broadnax Executed After Being Sentenced to Death Based on Rap Lyrics

https://www.rollingstone.com/culture/culture-news/james-broadnax-executed-rap-lyrics-texas-123555...
3•latexr•47m ago•1 comments

Where would an offline fail-closed supervisor be useful?

https://madadh.systems
1•MADADAHSYSTEMS•53m ago•0 comments

CSS and vertical rhythm for text, images, and tables

https://vincent.bernat.ch/en/blog/2026-css-vertical-rhythm
1•vbernat•56m ago•0 comments

Sniffing EU Smart Meters with a Flipper Zero (WM-Bus / 868MHz)

https://github.com/i12bp8/wmbuster
1•i12bp8•59m ago•0 comments

GlowGoblin – a gift to mb pro users

https://github.com/jtc268/glowgoblin
1•husky8•1h ago•0 comments

Japan intervened in its Curreny price

https://www.fxstreet.com/news/usd-jpy-drops-over-2-as-intervention-warnings-lift-yen-after-move-a...
1•mark336•1h ago•1 comments

US telecom agency votes to expand tech crackdown on China

https://www.reuters.com/business/media-telecom/us-telecom-agency-votes-expand-tech-crackdown-chin...
5•l2dy•1h ago•0 comments

Anthropic Model inference runs fastest on AWS

https://twitter.com/theo/status/2050078772507124134
1•albert_e•1h ago•0 comments
Open in hackernews

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

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