frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Open-source CLI to see your AI coding token usage and compare it

https://github.com/amiinwani/whoburnedmore.com
1•arhaam•1m ago•0 comments

Show HN: Bing Maps Leads Extractor

https://chromewebstore.google.com/detail/maps-leads-extractor/omnjmmkpblpilcjbdadamlaajdndjnnj
1•qwikhost•5m ago•0 comments

Text-to-Lottie: Generate Lottie animations with coding agents

https://github.com/diffusionstudio/lottie
2•vantareed•5m ago•0 comments

AI hasn't killed our bootstrapped enterprise software company yet

https://www.nocobase.com/en/blog/future-of-software-programmers-revenue-doubled
1•mountainview•8m ago•0 comments

Claude subscription changes for Conductor delayed indefinitely

https://www.conductor.build/blog/claude-subscription-update
1•bjhess•10m ago•0 comments

America has lost its war with Iran

https://www.independent.co.uk/voices/editorials/america-trump-iran-ceasefire-agreement-war-hormuz...
3•testing22321•16m ago•0 comments

The Effect of the Great Recession on U.S. Fertility

https://read.dukeupress.edu/demography/article/doi/10.1215/00703370-12664250/411033/The-Effect-of...
2•paulpauper•18m ago•0 comments

Tyler Cowen Is the Tycho Brahe of Economics

https://3quarksdaily.com/3quarksdaily/2026/06/tyler-cowen-is-the-tycho-brahe-of-economics.html
1•paulpauper•18m ago•0 comments

Zen and the Art of Machine Learning Research

https://blog.jxmo.io/p/zen-and-the-art-of-machine-learning
2•jxmorris12•19m ago•0 comments

The White House Is Ratcheting Up Its War Against Anthropic

https://www.theatlantic.com/technology/2026/06/trump-anthropic-export-control-ai-race/687555/
1•Filligree•19m ago•0 comments

Ask HN: Does anyone have their PMs shipping code to customer-facing products?

4•reluctant_dev•24m ago•1 comments

Earn lending-market yield on internet dollars

https://www.askthehive.ai/
1•prismoonprismo•29m ago•0 comments

Ratchets: a Rust tool that polices style violations with a flexible budget

https://github.com/imbue-ai/ratchets
1•nvader•30m ago•0 comments

Ai2 ACE2S – Simulate atmospheric variability – Scale of days to centuries

https://huggingface.co/allenai/ACE2S-SHiELD-plus
2•embedding-shape•34m ago•0 comments

Free Full on App Opensource. This One Is an Absolute Gem Find on GitHub

https://github.com/Prithvi-Web/Treemap
1•DaGoat487•34m ago•4 comments

Amazon Announces Multibillion-Dollar Data Center in Missouri

https://www.narracomm.com/amazon-announces-multibillion-dollar-data-center-in-missouri/
2•thelonelyborg•36m ago•1 comments

How the PH1 barrel became a legend in America's craft beer scene

https://www.washingtonpost.com/food/2026/06/15/how-ph1-barrel-became-legend-america-craft-beer-sc...
1•bookofjoe•39m ago•2 comments

The US just treated an LLM as a munition

https://substack.productmind.co/p/four-thoughts-on-anthropics-fable
2•okosisi•42m ago•1 comments

DeepFork – reverse-engineer any OSS repo into a clean-room rebuild blueprint

https://github.com/GerardoRdz96/deepfork
2•gerardordz96•47m ago•1 comments

Reviews have become expensive, rewrites have become cheap

http://ishmeetbindra.com/posts/reviews-have-become-expensive-rewrites-have-become-cheap/
2•arzh2•51m ago•0 comments

Explosions in Iran IRGC Infighting over "Deal", Hezbollah Attacks Israel [video]

https://www.youtube.com/watch?v=ZehgwIxh4eA
2•Bender•52m ago•0 comments

The Org Harness

https://pub.towardsai.net/the-org-harness-edef5844ba10?source=friends_link&sk=c7ddedd34684476842b...
1•tacoda•57m ago•0 comments

Xiaomi's agentic AI coding harness MiMo Code beats Claude Code at 200 step tasks

https://venturebeat.com/technology/xiaomis-new-open-source-agentic-ai-coding-harness-mimo-code-be...
3•gmays•58m ago•0 comments

Show HN: An Information Exchange for Agents

https://callsign.sh/
1•ric2z•59m ago•5 comments

FreeBSD 15.1-Release Now Available

https://lists.freebsd.org/archives/freebsd-announce/2026-June/000274.html
1•cperciva•1h ago•0 comments

Startup supposed to revolutionize California's wine industry 'It failed'

https://www.latimes.com/business/story/2026-06-15/this-startup-was-supposed-to-revolutionize-cali...
4•iancmceachern•1h ago•0 comments

The Exe.dev iOS App

https://blog.exe.dev/ios
1•bryanmikaelian•1h ago•0 comments

As a potential bug bounty hunter need an advice from bounty hunting veterans

1•SunShineDust•1h ago•0 comments

Eight Crew Members Believed Dead in B-52 Bomber Crash at California Air Base

https://www.wsj.com/us-news/b-52-bomber-crashes-shortly-after-take-off-at-california-air-base-253...
1•fortran77•1h ago•2 comments

UK social media ban for children: the privacy problems Australia exposed

https://proton.me/blog/uk-social-media-ban-privacy
3•jethronethro•1h 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.