frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Million Bricks – a 3D tower of one million bricks you can buy for $10

https://www.millionbrickshomepage.com
1•keslert•5m ago•1 comments

Show HN: MRDown – a Mac Markdown app that diffs what your AI just rewrote

https://github.com/MR-TABATA/MRDown
1•hitoshi1964•6m ago•1 comments

Are LLMs Becoming Commodities?

https://frontierai.substack.com/p/llms-are-becoming-commodities-de1
1•ltononro•6m ago•0 comments

Meta new layoff goal of 60% to AI after moving 30% engineers to labelers

https://blog.pragmaticengineer.com/the-pulse-meta-wanted-to-reduce-teams-by-60-because-of-ai/
3•ltononro•8m ago•0 comments

Crew, a multiplayer workspace for humans and AI agents to work together

https://github.com/JamelHammoud/crew
2•alihammoud21•8m ago•0 comments

Update on RISC-V Standards and Adoption at Hot Chips 2026 – ServeTheHome

https://www.servethehome.com/update-on-risc-v-standards-and-adoption-at-hot-chips-2026/
1•rbanffy•9m ago•0 comments

Running LLMs in the browser with three JavaScript

https://ben3d.ca/blog/running-llms-in-the-browser-with-threejs
1•ltononro•9m ago•0 comments

Show HN: Open-source ERP for small manufacturing shops

https://github.com/OlegUshakov-pl/CRM
1•OlegUshakov•10m ago•0 comments

Microsoft unveils Project Zenith, to run 30B+ parameters locally

https://www.theverge.com/news/990051/microsoft-project-zenith-windows-developers
1•utiiiD•10m ago•0 comments

LangBrain

https://github.com/youssouf994/LangBrain
1•youssouf994•11m ago•0 comments

iPhone USB reverse tethering on Windows

https://github.com/0xbaksa/iphone-usb-reverse-tethering-windows
1•0xbaksa•12m ago•0 comments

Show HN: What if AI did the prompting – and humans did the thinking?

https://www.antiagent.site
1•EnthusiastShiv•12m ago•0 comments

Google AI Mode shows same products 21.6% more expensive than traditional search

https://productrise.app/blog/google-ai-mode-prefers-more-expensive-products
1•DeepLogin•12m ago•0 comments

Citemark – Check if ChatGPT/Gemini/Claude mention your business

https://getcitemark.com/checker
1•jackkap•13m ago•0 comments

Adobe Announces Anil Chakravarthy to Become President and CEO

https://news.adobe.com/
1•mak8•16m ago•0 comments

Programming Z3

https://z3prover.github.io/papers/programmingz3.html
1•Bluestein•16m ago•0 comments

Discovery of a new OpenAI agent message board

https://collusion.wiki/
2•moultano•16m ago•0 comments

Estonian defense minister resigns after procurement scandal

https://www.politico.eu/article/estonian-defense-minister-resigns-after-procurement-scandal/
3•sam_lowry_•18m ago•1 comments

Kernels, Margins, and Ensembles

https://stochastic.blog/kernels-margins-and-ensembles/
1•Anon84•18m ago•0 comments

Google Slides AI is laughably bad

https://theopenpresenter.com/blog/google-slides-ai-is-laughably-bad/
1•michaelsalim•19m ago•0 comments

Getting Agents to Tell on Themselves

https://blog.thinkst.com/2026/09/getting-agents-to-tell-on-themselves.html
2•mh_•20m ago•0 comments

Fidelity 2026 Q2 Retirement analysis

https://about.fidelity.com/data-and-insights/q2-2026-retirement-analysis
1•cebert•20m ago•0 comments

Psilocybin prevents chemo-induced peripheral neuropathy

https://www.science.org/doi/10.1126/science.aec6116
2•jodacola•22m ago•0 comments

Discovery of a new OpenAI agent message board

https://collusion.wiki/index.html
3•Re-Tails•23m ago•2 comments

Physics-Informed Neural Networks – Making Your Neural Networks Even Smarter

https://abelabraham3.substack.com/p/the-rabbit-hole-2-making-your-neural
1•vismit2000•23m ago•0 comments

What Did Jurassic Forests Sound Like? Like This

https://www.nytimes.com/2026/09/03/science/what-did-jurassic-forests-sound-like-like-this.html
1•tintinnabula•25m ago•0 comments

The Code They Leave Behind: Beyond Benchmark Scores

https://bitbin.de/qualitative-benchmarks/
1•stbenjam•25m ago•0 comments

Agenci – CI/CD testing for AI agents

https://github.com/klinditafa1/agenciandhttps://x.com/tryagenci
1•KT1616•27m ago•0 comments

AI Philosophy Competition

https://www.zacharygoodsell.com/ai-philosophy-competition
1•paraschopra•27m ago•0 comments

Private equity faces existential crisis in US as unsold companies pile up

https://www.theguardian.com/us-news/2026/sep/04/private-equity-boom-hospital-job-layoff
3•bell-cot•32m 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.