frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How Apple uses faulty silicon to power fab new devices

https://www.cultofmac.com/news/apple-chip-binning
1•wslh•48s ago•0 comments

AOS GLM Language Engine – Beta Test

https://github.com/ThePikey/AOS_GLM_language
1•imageanet•4m ago•0 comments

Ask HN: How do you test Lambda/ECS code before deploying?

1•ioanarebeca•6m ago•2 comments

Work, Wellbeing, and Choice: Empirical Lessons for AI Futures

https://arxiv.org/abs/2609.11019
1•gwintrob•6m ago•0 comments

Local AI News Feed

https://local-ai-signal.vercel.app/
1•agcat•8m ago•2 comments

The Fine-Grained City Needs an Operating System

https://courtyardurbanist.com/p/the-fine-grained-city-needs-an-operating
1•idbnstra•11m ago•0 comments

Small Modular Reactors: a short history of a nuclear pipe dream

https://engelsbergideas.com/essays/smrs-a-short-history-of-a-nuclear-pipe-dream/
1•bazzmt•12m ago•0 comments

LensVLM: Compressing long context as images, expanding only relevant pages

https://huggingface.co/apple/LensVLM-9B
2•victormustar•12m ago•0 comments

Ask HN: Do you offload your coding to AI, or keep your skills sharp?

3•Hex08•13m ago•1 comments

Can internal model transparency tame the AI race?

https://blog.karthiktadepalli.com/p/internal-model-transparency
1•gmays•14m ago•0 comments

The meta-harness for coding agents

https://soloterm.com/
1•ibobev•15m ago•0 comments

Show HN: Jev-mice – mouse colony simulation using Jev and deterministic engine

https://mice.jev.carsonsweet.com/
1•carsonsweet•16m ago•0 comments

Discover Solo: The Ultimate AI-Integrated Control Panel

https://blog.master.dev/introducing-solo/
1•ibobev•18m ago•0 comments

Steam Frame Teardown

https://www.ifixit.com/News/119488/steam-frame-teardown-were-fans-except-of-the-fan
1•Lwrless•19m ago•0 comments

SpaceX Starshield

https://en.wikipedia.org/wiki/SpaceX_Starshield
1•simonebrunozzi•20m ago•0 comments

Mexican Navy's tall ship Cuauhtémoc will be at the Embarcadero all week

https://www.kqed.org/news/12101113/tall-ship-san-francisco-mexican-navy-cuauhtemoc-free-public-tours
1•higgins•20m ago•0 comments

A Worthwhile Trade

https://voices.nejm.org/doi/full/10.1056/VOICESpost2600056?referrer=https://t.co/
2•brandonb•22m ago•0 comments

Loopjacking in A2A Implementations: Hijacking Human-in-the-Loop Approvals

https://adithyanak.com/loopjacking-in-a2a-implementations/
1•akoffsec•25m ago•0 comments

How AI Helps and Hampers Junior Workers

https://www.nominalnews.com/p/how-ai-helps-and-hampers-junior-workers
2•NomNew•26m ago•0 comments

Jackrong/Qwopus3.8-27B-Flash-V2

https://huggingface.co/Jackrong/Qwopus3.8-27B-Flash-V2
1•verdverm•27m ago•0 comments

Nemotron 3 Diarization

https://huggingface.co/blog/nvidia/nemotron-diarization
2•arbayi•28m ago•0 comments

CKKS – Encryption and Decryption

https://www.jeremykun.com/2026/09/23/ckks-encryption-and-decryption/
1•ibobev•28m ago•0 comments

What AI pays the people who train it

https://blastradius.dpdns.org/
2•codebyaditya•29m ago•0 comments

Cloud Agents Are Inevitable AI Prisons

https://normanponte.io/19df691f
2•nponte•32m ago•0 comments

Ask HN: Why so many dead comments lately?

2•mattm•33m ago•2 comments

Illinois, California governors fast-track AI safety measures with EOs

https://www.transparencycoalition.ai/news/illinois-california-governors-fast-track-ai-safety-meas...
2•tolugenius•34m ago•0 comments

Gvnr

https://gvnr.io/
5•juliainstruxi•35m ago•0 comments

HySparse2: Hybrid Sparse Attention with Two-Level KV Sharing

https://arxiv.org/abs/2609.26368
1•ksec•38m ago•0 comments

The Vigilante Who's Taking Down Recruitment Scammers, One Fake Job Ad at a Time

https://www.wsj.com/tech/the-vigilante-whos-taking-down-recruitment-scammers-one-fake-job-ad-at-a...
3•fortran77•38m ago•1 comments

Pretraining data, not verifiability, is why LLMs are good at math (and coding)

https://www.lesswrong.com/posts/xvdngZAqFZfek7KGH/pretraining-data-not-verifiability-is-why-llms-are
1•gmays•38m 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.