frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

The SWE-Bench Illusion

https://www.microsoft.com/en-us/research/publication/the-swe-bench-illusion-when-state-of-the-art...
1•louiereederson•2m ago•0 comments

GitLab scan finds 17,000 secrets in public repos, leading to $9000+ in bounties

https://trufflesecurity.com/blog/scanning-5-6-million-public-gitlab-repositories-for-secrets
1•adrianwaj•5m ago•0 comments

Japan town retracts bear sighting warning sparked by AI image

https://www.japantimes.co.jp/news/2025/11/27/japan/society/japan-town-retracts-ai-bear-image/
1•geox•13m ago•0 comments

A world map where anyone can plant a digital bonsai

https://www.zen.com.ar/bonsais/
1•elandros•14m ago•1 comments

Pocketbase – open-source realtime back end in 1 file

https://pocketbase.io/
1•modinfo•15m ago•0 comments

Vintage Thanksgiving: Photos Showing How Families Gathered in 1950s and 1960s

https://rarehistoricalphotos.com/vintage-thanksgiving/
2•Brajeshwar•17m ago•0 comments

Show HN: AnyMusic – AI music generator (royalty‑free, songs,stems, lyrics)

https://anymusic.ai
1•lovelycold•19m ago•0 comments

China's BEV Trucks and the End of Diesel's Dominance

https://cleantechnica.com/2025/11/26/chinas-bev-trucks-and-the-end-of-diesels-dominance/
4•xbmcuser•19m ago•0 comments

Japan's human washing machines will go on sale to general public

https://soranews24.com/2025/11/28/japans-human-washing-machines-will-go-on-sale-to-general-public...
1•zdw•22m ago•0 comments

Why can't ChatGPT tell time?

https://www.theverge.com/report/829137/openai-chatgpt-time-date
1•ent101•26m ago•0 comments

OpenAI discloses API customer data breach via Mixpanel vendor hack

https://www.bleepingcomputer.com/news/security/openai-discloses-api-customer-data-breach-via-mixp...
1•DANmode•30m ago•1 comments

Shor's algorithm: the one quantum algo that ends RSA/ECC tomorrow

https://blog.ellipticc.com/posts/what-is-shors-algorithm-and-why-its-the-single-biggest-threat-to...
3•iliasabs•40m ago•0 comments

After such knowledge, what forgiveness?

https://www.stevesailer.net/p/after-such-knowledge-what-forgiveness
2•tartoran•45m ago•1 comments

PpenPanzer: JavaScript/HTML5 rewrite of Panzer General 2 game

https://github.com/nicupavel/openpanzer
1•ibobev•46m ago•0 comments

CiaoTool – No-Code Multi-Chain Token Creation and Management Platform

https://ciaotool.io/en-US
1•CiaoTool•48m ago•1 comments

OpenAI Codex Plan / Spec Mode – We'd Love Your Input

https://github.com/openai/codex/discussions/7355
1•wahnfrieden•49m ago•0 comments

The VPN panic is only getting started

https://www.theverge.com/tech/827435/uk-vpn-restrictions-ban-online-safety-act
13•cebert•52m ago•5 comments

Local LLM based code reviews at Scripbox

https://medium.com/@jpranav97/zero-cost-code-reviews-self-hosted-qwen2-5-coder-on-gitlab-ci-80104...
1•vasuadari•52m ago•1 comments

Tell HN: Gemini 3 found a stack smash in a hex dump that I missed

3•leo_e•55m ago•0 comments

Quantica: A Python-like language with native quantum computing built in

https://github.com/Quantica-Foundation/quantica-lang
2•gurukasi2006•1h ago•0 comments

My car charger can boil water really fast [video]

https://www.youtube.com/watch?v=INZybkX8tLI
1•zdw•1h ago•0 comments

What's in a Button?

https://belkadan.com/blog/2025/11/Whats-in-a-Button/
2•todsacerdoti•1h ago•0 comments

Nvidia reportedly no longer supplying VRAM to GPU partners due to memory crunch

https://www.tomshardware.com/pc-components/gpus/nvidia-reportedly-no-longer-supplying-vram-to-its...
2•lysp•1h ago•0 comments

Jeffrey Epstein Was the Unofficial Advice Columnist for the Elites

https://defector.com/jeffrey-epstein-was-the-unofficial-advice-columnist-for-the-elites
10•tartoran•1h ago•0 comments

Former MIT scientist Joscha Bach funded by Epstein made racist claims in private

http://www.bostonglobe.com/2025/11/21/metro/epstein-emails-mit-joscha-bach/
4•tartoran•1h ago•0 comments

Investigating a Possible Scammer in Journalism's AI Era

https://thelocal.to/investigating-scam-journalism-ai/
3•pseudolus•1h ago•0 comments

Ask HN: What's the point of starting a startup if the failure rate is so high?

3•anon115•1h ago•7 comments

Can RGB light strips produce 16M colors?

2•emmasuntech•1h ago•0 comments

Show HN: I built a website for games that catch my eye

https://alistof.games
2•RaycatRakittra•1h ago•1 comments

Show HN: RcloneView – a GUI for rclone with 50% Black Friday deal

https://rcloneview.com/
1•newclone•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•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.