frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Tesla Sued over Another Fatal Crash in Growing Scrutiny of Doors

https://www.bloomberg.com/news/articles/2025-11-21/tesla-sued-over-another-fatal-crash-in-growing...
1•voxadam•1m ago•0 comments

Ask HN: How Newton did so much without tea or coffee?

2•upxx•1m ago•0 comments

Show HN: Use AI to Clean Data at Scale

https://www.cluedin.com/home
1•jerrong•6m ago•0 comments

Show HN: Elasticsale.com, an open-source SaaS for retail cashback campaigns

https://elasticsale.com
1•dcvr•6m ago•0 comments

Some fundamental theorems in math – Oliver KNILL [pdf]

https://people.math.harvard.edu/~knill/graphgeometry/papers/fundamental.pdf
2•marysminefnuf•13m ago•0 comments

The European startup market is ready for the limelight

https://techcrunch.com/2025/11/21/the-european-startup-market-is-ready-for-the-limelight/
2•paulatreides•17m ago•0 comments

Show HN: smtp.js, a drop-in relay to prevent your sites spamming your users

https://community.qbix.com/t/drop-in-smtp-relay-to-combat-bots-and-prevent-spamming-users/780
1•EGreg•17m ago•0 comments

Chomsky had deeper ties to Epstein than previously known, documents reveal

https://www.theguardian.com/us-news/2025/nov/22/noam-chomsky-jeffrey-epstein-ties-emails
5•clanky•17m ago•0 comments

An Interview with a YouTube Writer Behind 500M+ Views

https://www.humaninvariant.com/blog/youtube-interview
1•humaninvariant•18m ago•0 comments

A Fast 64-Bit Date Algorithm (30–40% faster by counting dates backwards)

https://www.benjoffe.com/fast-date-64
2•benjoffe•19m ago•1 comments

Simple One-Time Passcode Inputs

https://cloudfour.com/thinks/simple-one-time-passcode-inputs/
1•gm678•25m ago•0 comments

The Lost Cat of Sullivan's Island

https://www.trulyadventure.us/lost-on-sulls-island
1•gmays•27m ago•0 comments

GCC SC approves inclusion of Algol 68 Front End

https://gcc.gnu.org/pipermail/gcc/2025-November/247020.html
25•edelsohn•28m ago•0 comments

Build with Nano Banana Pro google official developer blog post

https://blog.google/technology/developers/gemini-3-pro-image-developers/
1•visioninmyblood•30m ago•1 comments

An Economy of AI Agents

https://arxiv.org/abs/2509.01063
3•nerder92•38m ago•0 comments

"We're in an LLM bubble," Hugging Face CEO says–but not an AI one

https://arstechnica.com/ai/2025/11/were-in-an-llm-bubble-hugging-face-ceo-says-but-not-an-ai-one/
3•gmays•39m ago•0 comments

AI bots shake up hiring process

https://fortune.com/2025/11/18/hiring-job-seekers-recruiters-talent-acquisition-ai-doom-loop-appl...
1•visioninmyblood•42m ago•0 comments

What a CTO should know about tech

https://deadsimpletech.com/blog/cto_tech_capabilities
1•thelastgallon•43m ago•1 comments

Confido, by Kurt Vonnegut

https://esl-bits.eu/ESL.English.Listening.Short.Stories/Confido/default.html
1•adamwong246•44m ago•1 comments

Rybbit – The Modern Open Source Google Analytics Replacement

https://rybbit.com/
2•inesranzo•52m ago•0 comments

Simple web app to teach financial responsibility to kids

https://familypay.us
1•yashwanthcp•57m ago•1 comments

Best AI Coding Agents – Gosu Evals

https://gosuevals.com/agents.html
1•behnamoh•1h ago•0 comments

U.S. Citizens and Chinese Nationals Arrested for Exporting AI Tech to China

https://www.justice.gov/opa/pr/us-citizens-and-chinese-nationals-arrested-exporting-artificial-in...
3•kylecazar•1h ago•1 comments

The Strange and Totally Real Plan to Blot Out the Sun and Reverse Global Warming

https://www.politico.com/news/magazine/2025/11/21/stardust-geoengineering-janos-pasztor-regulatio...
1•pseudolus•1h ago•0 comments

Three Years from GPT-3 to Gemini 3

https://www.oneusefulthing.org/p/three-years-from-gpt-3-to-gemini
2•JumpCrisscross•1h ago•0 comments

Dingo: A Meta-Language for Go

https://github.com/MadAppGang/dingo
1•todsacerdoti•1h ago•0 comments

Knowing When to Hold, Fold, or Walk Away from Tech

https://kyle.cascade.family/posts/knowing-when-to-hold-fold-or-walk-away-from-tech/
2•gm678•1h ago•0 comments

AI assets are an unconscionable risk for premium-priced games

https://www.gamesindustry.biz/ai-assets-are-an-unconscionable-risk-for-premium-priced-games-opini...
1•DDSDev•1h ago•0 comments

Experimenting with Robin Hood Hashing

https://twdev.blog/2025/11/robin_hood/
2•todsacerdoti•1h ago•0 comments

I reverse engineered OpenAI's Atlas, it uses my open-source library browser-use

1•MagMueller•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•6mo 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•6mo 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.