frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Claude Microfactory

https://claude.ai/artifact/7nCPrrWTcQsWFfkXFRHDLR
1•jaksa•1m ago•1 comments

London buses in decline? Why public transport in global cities is slowing

https://www.theguardian.com/uk-news/ng-interactive/2026/sep/23/london-buses-in-terminal-decline-w...
2•world2vec•3m ago•0 comments

Longtime SUSE staff asked if they'd opt for 'voluntary separation'

https://www.theregister.com/software/2026/09/22/longtime-suse-staff-asked-if-theyd-opt-for-volunt...
1•pelasaco•3m ago•0 comments

Nemotron-H: A Family of Accurate, Efficient Hybrid Mamba-Transformer Models

https://research.nvidia.com/labs/adlr/nemotronh/
1•Bluestein•6m ago•0 comments

Show HN: What's Next – make Claude Code respond with choice, not prose

https://github.com/kvitapp/kvit-plugins
1•skolos•7m ago•0 comments

Enables Nvidia DLSS Frame Generation (DLSS-G) on RTX 30-series and RTX 20-series

https://github.com/sdli1995/dlssg_for_sm86
1•metrofun•8m ago•0 comments

Show HN: ToolRoots, local alternatives to the tools you use

https://toolroots.com
1•drdruide•10m ago•0 comments

Qwen-Audio-3.1-TTS

https://fun-resource-shanghai.oss-cn-shanghai.aliyuncs.com/cuijiayan.cjy/tmp/exp/qwen_audio_3_tts...
1•nthypes•10m ago•0 comments

Tokens Too Cheap to Meter

https://jyn.dev/tokens-too-cheap-to-meter/
1•teoruiz•11m ago•0 comments

MNT Station – A modular, open hardware desktop computer and server

https://www.crowdsupply.com/mnt-research/mnt-station
1•birdculture•13m ago•0 comments

Directus The back end for your whole team

https://directus.com/
1•Bluestein•15m ago•0 comments

Next version of OpenClaw uses a decision model to decide between steer or queue

https://twitter.com/steipete/status/2102667004557832497
1•tosh•17m ago•0 comments

Show HN: A running app that turns your runs to a garden

https://apps.apple.com/us/app/run-tracker-run-grow/id6745428070
1•Utkarshn101•19m ago•0 comments

Positive emotions toward AI outweigh negative ones in 34 out of 37 countries

https://news.gallup.com/poll/714593/optimism-globally-widespread-despite-uneven.aspx
1•giuliomagnifico•20m ago•0 comments

Netherlands bracing for potentially devastating US sanctions against the ICC

https://apnews.com/article/icc-trump-sanctions-eu-israel-netherlands-2c1cc314732f920c2de59396d3b5...
12•vrganj•22m ago•0 comments

A New DNA Analysis May Solve the Centuries-Old Medici Mystery

https://www.smithsonianmag.com/smart-news/did-this-duke-poison-his-brother-a-new-dna-analysis-may...
2•thunderbong•34m ago•0 comments

Oryn, an ultra fast compact decision model

https://huggingface.co/timosarkar/oryn
2•timosarkar•36m ago•0 comments

Agent-Shell 0.78 Updates

https://xenodium.com/agent-shell-0-78-updates
1•xenodium•36m ago•0 comments

Synchrony AI – AI Powered Investment Research and Portfolio Management Platform

https://www.synchrony-ai.com
1•emmanuelcooke•39m ago•0 comments

Responsive Iframes in Chrome 154

https://developer.chrome.com/blog/responsive-iframes
3•twapi•41m ago•0 comments

Trump TV Flops in Embarrassing Numbers Disaster

https://www.thedailybeast.com/trump-tv-immediately-flops-in-embarrassing-numbers-disaster/
4•doener•41m ago•0 comments

New U.S. sanctions against the ICC threaten European sovereignty

https://ioplus.nl/en/posts/new-us-sanctions-against-the-icc-threaten-european-sovereignty
5•doener•42m ago•1 comments

Using shallow-Git tarballs for CI

https://people.kernel.org/monsieuricon/using-shallow-git-tarballs-for-ci
1•garo-pro•43m ago•0 comments

AiNetProfit

https://ainetprofit.com/
1•weeber•43m ago•0 comments

Abandoning Scientific Linux Was a Mistake

https://blog.melashri.net/posts/scientific-linux-mistake/
20•elashri•45m ago•12 comments

I used to get paid to hang out with famous people

https://www.blackbirdspyplane.com/p/i-used-to-get-paid-to-hang-out-with-famous-people
1•pr337h4m•49m ago•0 comments

Ju Ju Tsu A book about jj / jujutstu

https://arialdo.codeberg.page/ju-ju-tsu/
3•fanf2•50m ago•1 comments

Data Privacy: Handling Data minimisation as a reactive strategy

https://scrutora.com/blog/data-minimisation-from-the-code-up
2•vimaldwivedi86•50m ago•0 comments

A garden and photovoltaic panels on the roof of the house [video]

https://www.youtube.com/watch?v=QPRrpcEwZV0
1•moltean•53m ago•0 comments

"What is still exciting in tech?"

https://merveilles.town/@neauoire/117315783660903484
1•gum_wobble•53m 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.