frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Discover Model Context Protocol Servers

https://registry.modelcontextprotocol.io/
1•mooreds•4m ago•0 comments

The Hot Market for Jobs No One Wants [video]

https://www.youtube.com/watch?v=tokvTu0zNAo
1•mooreds•4m ago•0 comments

Dingo: A Meta-Language for Go

https://github.com/MadAppGang/dingo
1•thunderbong•5m ago•0 comments

Show HN: Wanted to Give Dang Appreciation

2•razodactyl•8m ago•0 comments

Solo miner scores a full Bitcoin block worth $270K despite 1 in 180M odds

https://www.tomshardware.com/tech-industry/cryptomining/hobbyist-miner-using-a-single-6-ths-asic-...
2•pseudolus•9m ago•0 comments

X's new country-of-origin feature reveals many 'US' accounts to be foreign-run

https://www.hindustantimes.com/world-news/us-news/xs-new-country-of-origin-feature-shakes-maga-an...
33•ourmandave•13m ago•0 comments

Cryptologist opposes push for non-hybrid security in post-quantum cryptography

https://it.slashdot.org/story/25/11/23/226258/cryptologist-djb-criticizes-push-to-finalize-non-hy...
1•MilnerRoute•15m ago•0 comments

Jack Conte – I'm Building an Algorithm That Doesn't Rot Your Brain

https://www.nytimes.com/2025/11/19/opinion/patreon-algorithms-social-media-internet.html
1•gpi•16m ago•0 comments

RFC 9518 – Centralization, Decentralization, and Internet Standards

https://www.rfc-editor.org/rfc/rfc9518.html
2•pabs3•20m ago•0 comments

How Good Are Chinese CPUs? Benchmarking the Loongson 3A6000

https://lemire.me/blog/2025/11/23/how-good-are-chinese-cpus-benchmarking-the-loongson-3a6000/
1•ashvardanian•20m ago•0 comments

An African energy revolution could save ALL of us

https://www.youtube.com/watch?v=oOmQJ6nKErs
2•doener•21m ago•0 comments

A Nicotine Analogue I Had Known and Didn't Love: 6-Methylnicotine

https://psychotechnology.substack.com/p/a-nicotine-analogue-i-had-known-and
2•eatitraw•22m ago•0 comments

Google's Antigravity IDE Sparks Forking Debate

https://visualstudiomagazine.com/articles/2025/11/21/googles-antigravity-ide-sparks-forking-debat...
2•cyrusradfar•22m ago•1 comments

GitHub Actions' VM image doesn't match published source code

https://lists.reproducible-builds.org/pipermail/rb-general/2025-November/003941.html
3•kpcyrd•24m ago•0 comments

Disney's Living Characters: A Broken Promise [video]

https://www.youtube.com/watch?v=NyIgV84fudM
1•brson•29m ago•1 comments

Show HN: Revisit – Session recording analysis that "watches" the video

https://revisit.pro/
2•egykettoharo•36m ago•0 comments

Qwen3 Running Locally in Browser

https://qwen-web.sdan.io/
1•heystefan•36m ago•0 comments

Spatial hashing for raytraced ambient occlusion

https://interplayoflight.wordpress.com/2025/11/23/spatial-hashing-for-raytraced-ambient-occlusion/
1•ingve•38m ago•0 comments

Page Weight

https://httparchive.org/reports/page-weight
1•cratermoon•38m ago•0 comments

Show HN: Web based Game of Life simulator renders multiple generations in 3D

https://conwaygame.life/
1•AnotherVinyasa•42m ago•0 comments

A Forty-Year Career

https://lethain.com/forty-year-career/
1•lunarcave•44m ago•1 comments

Germans Are Going Off Beer. That's Forcing Brewers to Adapt or Go Bust

https://www.nytimes.com/2025/11/22/world/europe/germany-alcohol-consumption-breweries.html
2•bookofjoe•44m ago•1 comments

Carbon Language: How we compile [video]

https://www.youtube.com/watch?v=HBUAWvwo3qg
1•PKop•47m ago•0 comments

Designing Stress Scenarios

https://alphaarchitect.com/stress-tests/
1•mooreds•47m ago•0 comments

The negentropy set-reconciliation protocol

https://github.com/hoytech/negentropy
1•todsacerdoti•56m ago•0 comments

Zync: Real-time ambilight clone for Linux using Rust and Zigbee2MQTT

https://github.com/hendemic/zync
1•gregsadetsky•59m ago•0 comments

Sunsetting Supermaven

https://supermaven.com/blog/sunsetting-supermaven
14•vednig•1h ago•0 comments

Officially, Sacramento still bans the sale of comic books to kids

https://www.latimes.com/world-nation/story/2025-11-23/sacramento-still-bans-sale-of-comic-books-t...
2•geox•1h ago•0 comments

Microsoft's OpenAI Investment Reveals the Fatal Architecture of AI Economics

https://shanakaanslemperera.substack.com/p/the-equity-method-trap-how-microsofts
4•jnord•1h ago•0 comments

Relationship Advice from 50 Years of Marriage (With the Gottmans) [video]

https://www.youtube.com/watch?v=nJ4RtT0T_BA
1•gmays•1h 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•6mo 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.