frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Local static analysis for coding agents

https://blog.codacy.com/introducing-codacy-skills-part-4-scan-and-fix-your-code-before-you-push
1•claudiacsf•1m ago•0 comments

I'm Worried about the Web

https://patrickbrosset.com/articles/2026-09-15-im-worried-about-the-web/
1•speckx•2m ago•0 comments

Mecatl: A Cloud Native Harness

https://mecatl.dev/
1•jbeda•2m ago•0 comments

GM to Offer Apple CarPlay After Shift Away from the System

https://www.bloomberg.com/news/articles/2026-09-15/gm-s-new-user-interface-includes-apple-carplay...
1•apparent•2m ago•1 comments

Man threatens to shoot fish if his meme coin doesn't reach 1M market cap

https://twitter.com/DefiantLs/status/2099877650135433557
1•lando2319•2m ago•0 comments

EthosLM – natural language to walkable Minecraft cities

https://github.com/chaitbuilds/EthosLM
2•chaitbuildz•5m ago•0 comments

GEFS on OpenBSD: A Early Preview

https://marc.info/?l=openbsd-tech&m=178948744271633&w=2
2•sippingabonedry•5m ago•1 comments

Gemini 3.8 Live Extended Thinking audio-to-audio

https://ai.google.dev/gemini-api/docs/models/gemini-3.8-live-extended-thinking
2•thisisauserid•5m ago•0 comments

I'm a doctor. Here's why I wouldn't get a full-body MRI scan

https://www.washingtonpost.com/wellness/2026/09/14/im-doctor-heres-why-i-wouldnt-get-full-body-mr...
3•bookofjoe•5m ago•1 comments

Does Code Matter Anymore?

https://jimmyislive.dev/posts/does-code-matter-anymore/
2•jimmyislive•6m ago•0 comments

Metastatic Cancer Disappeared After Two Doses of Experimental Therapy

https://www.sciencealert.com/a-3-year-olds-metastatic-cancer-disappeared-after-two-doses-of-exper...
2•speckx•6m ago•0 comments

Show HN: AirmailAI, a BYOK LLM chat app with a browser extension backend

https://airmailai.net/
2•blake__dev•6m ago•1 comments

New sign-ups and upgrades to the ChatGPT Pro $200 plan are temporarily paused

https://help.openai.com/en/articles/9793128-about-chatgpt-pro-tiers
2•nkmnz•8m ago•0 comments

A labor forecasting approach built to keep pace with AI and robotics

https://endoflabor.org/
2•abaharmast•9m ago•0 comments

Ho Chi Minh City offers free bus routes

https://en.baochinhphu.vn/hcmc-to-offer-free-bus-travel-from-july-through-year-end-11126061914494...
2•minimal3•9m ago•0 comments

GNU Coreutils 9.12 Released

https://lists.gnu.org/archive/html/coreutils-announce/2026-09/msg00000.html
3•thunderbong•9m ago•0 comments

Pulley is shutting down in December

https://pulley.com
3•jschorr•10m ago•1 comments

Is AI Solving Math Too Fast?

https://www.quantabooks.org/is-ai-solving-math-too-fast/
2•digital55•11m ago•0 comments

Broken Windows, Abstractions and the Cost of Always Keeping Things Simple

https://pgilmartin.substack.com/p/broken-windows-abstractions-and-the
2•birdculture•11m ago•0 comments

The Candidates Putting Bullets in Flock Cameras

https://www.motherjones.com/politics/2026/09/shooting-flock-cameras-seth-bodnar-adam-heimerman/
3•cdrnsf•11m ago•0 comments

GadgetDetox – The box that breaks your phone addiction

https://gadgetdetox.co
2•krypta•13m ago•1 comments

Which crossword generator do you use?

3•irusik•13m ago•0 comments

We asked creative experts to rank AI image / video models. Here's what happened

https://openart.ai/arena
2•cocokechun•15m ago•1 comments

Leaving Linux

https://jackevans.bearblog.dev/leaving-linux/
3•speckx•15m ago•4 comments

Show HN: TrailVid – Cinematic Travel Animations

https://trailvid.com/
2•ShellfishMeme•15m ago•0 comments

The Brutal Origins of Bear-Baiting

https://nautil.us/the-brutal-origins-of-bear-baiting-1285024
2•Brajeshwar•15m ago•0 comments

The Download: AI doomers, whistleblowing agents, and de-aged livers

https://www.technologyreview.com/2026/09/15/1144141/the-download-ai-extinction-whistleblowing-age...
2•joozio•15m ago•0 comments

SuperColoring – a simple crossword generator for learning and fun

2•irusik•16m ago•0 comments

Draw and track property lines on drone video

https://pixly.app/tools/drone-video-property-lines
2•jankratochvil•17m ago•0 comments

Did Venus Eat Its Own Moon?

https://nautil.us/did-venus-eat-its-own-moon-1285021
3•Brajeshwar•17m 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.