frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Kani TTS – Open-source fast TTS with just 370M params

https://huggingface.co/nineninesix/kani-tts-370m
1•joeyeh_•15s ago•0 comments

Pavel Durov on Lex Friedman podcast [video]

https://www.youtube.com/watch?v=qjPH9njnaVU
1•BoumTAC•56s ago•0 comments

Clerky – Delaware C-Corp Governing Law Jurisdiction

1•Solomonrajput1•59s ago•0 comments

Microsoft Agent Framework: Open-Source Engine for Agentic AI App

https://devblogs.microsoft.com/foundry/introducing-microsoft-agent-framework-the-open-source-engi...
1•warthog•4m ago•0 comments

No more scribbling: Indian court tells doctors to fix their handwriting

https://www.bbc.com/news/articles/cn0r88nrx70o
1•sonabinu•4m ago•0 comments

Show HN: Gitsafe-CLI – Transparent file encryption for Git repos

https://pypi.org/project/gitsafe-cli/
1•bitpilot•6m ago•0 comments

October 1, 2006: The day GIF became free to use, forever

https://dfarq.homeip.net/the-day-gif-became-free-to-use-forever/
1•giuliomagnifico•7m ago•0 comments

China's K-visa plans spark worries of a talent flood

https://www.cnbc.com/2025/10/01/cnbcs-the-china-connection-newsletter-chinas-k-visa-plans-spark-w...
2•speckx•7m ago•0 comments

Radicle 1.5.0 Released

https://radicle.xyz/2025/09/30/radicle-1.5.0
1•gtirloni•11m ago•0 comments

DataGrip is now free for non-commercial use

https://blog.jetbrains.com/datagrip/2025/10/01/datagrip-is-now-free-for-non-commercial-use/
2•StanislavGar•12m ago•0 comments

Nvidia Has Been Supplying NDA'ed Docs to Red Hat for Helping NVK Driver

https://www.phoronix.com/news/NVK-Vulkan-Red-Hat-NDA-Docs
3•freedomben•14m ago•0 comments

Substack is a social media app

https://post.substack.com/p/substack-is-a-social-media-app
4•ShaggyHotDog•14m ago•0 comments

Lapse in government funding: Information on nih.gov may not be up to date

https://www.ncbi.nlm.nih.gov/
4•teekert•15m ago•0 comments

AI vs. AGI vs. ASI – What's the Actual Difference?

https://bignorthmarketing.com/blog/ai-vs-agi-vs-asi-a-history-of-evolving-definitions
1•bignorthchris•17m ago•1 comments

Will Computer Science become useless knowledge?

https://arnoldkling.substack.com/p/will-computer-science-become-useless
1•Ariarule•17m ago•0 comments

NFS at 40

https://nfs40.online/
1•fanf2•18m ago•0 comments

Karpathy's comments on the Sutton/Dwarkesh podcast

https://twitter.com/karpathy/status/1973435013875314729
4•cckolon•19m ago•0 comments

Stanford CS230 – Autumn 2025 – Lecture 1: Introduction to Deep Learning [video]

https://www.youtube.com/watch?v=_NLHFoVNlbg
1•simonpure•20m ago•0 comments

ALS Breakthrough Shows Fatal Disease Is Driven by Immune Attack

https://www.bloomberg.com/news/articles/2025-10-01/immune-cells-found-to-attack-neurons-in-als-of...
3•danaos•20m ago•0 comments

Parlay the Predictions

https://www.bloomberg.com/opinion/newsletters/2025-10-01/parlay-the-predictions
1•ioblomov•20m ago•1 comments

Why startup biz dev deals almost never get done (2014)

https://longform.asmartbear.com/startup-biz-dev/
2•mooreds•20m ago•0 comments

Refocusing Vendor Security on Risk Reduction

https://engseclabs.com/blog/refocusing-vendor-security-on-risk-reduction/
2•alexsmolen•20m ago•1 comments

The Rights of Man by Thomas Paine (1791)

https://www.gutenberg.org/ebooks/3742
1•firefax•21m ago•0 comments

Stop Avoiding Politics

https://terriblesoftware.org/2025/10/01/stop-avoiding-politics/
20•matheusml•24m ago•5 comments

AI data centers are raising electricity costs for nearby residents

https://www.bloomberg.com/graphics/2025-ai-data-centers-electricity-prices/
2•burningion•27m ago•0 comments

Hollywood performers union condemns AI-generated 'actress'

https://www.reuters.com/sustainability/sustainable-finance-reporting/hollywood-performers-union-c...
1•anigbrowl•27m ago•0 comments

Arm plans to appeal final ruling in Qualcomm dispute

https://www.reuters.com/business/arm-plans-appeal-final-ruling-qualcomm-dispute-2025-10-01/
2•wicket•28m ago•0 comments

IEEE Spectrum the Hidden Behemoth Behind Every AI Answer

https://spectrum.ieee.org/ai-energy-use
2•oldnetguy•30m ago•0 comments

OpenTSLM: Language Models That Understand Time-Series (Stanford, ETH, Google)

https://www.opentslm.com/
9•rjakob•35m ago•1 comments

Russia pilots state-linked Digital ID through Max app

https://reclaimthenet.org/russia-pilots-state-linked-digital-id-through-max-app
1•uyzstvqs•36m ago•0 comments
Open in hackernews

Fossabot: AI code review for Dependabot/Renovate on breaking changes and impacts

https://fossa.com/blog/fossabot-dependency-upgrade-ai-agent/
48•robszumski•1h ago

Comments

johnnyyw•39m ago
Why didn't GitHub come up with this? This seems like such an obvious use case.
chadfurman•18m ago
It's a niche for AI, which creates some great opportunities for context engineering :)
robszumski•16m ago
It requires you to go deep in both the code analysis and the research, which is expensive at their scale

And, as someone who's start up (EdgeBit was acquired by FOSSA recently) wrote a new JS/TS static analysis engine, it's just hard to get correct.

rohitpaulk•26m ago
Always felt dependency updates are a perfect fit for AI agents:

(a) they’re broadly similar across companies,

(b) they aren’t time-sensitive, so the agent can take hours without anyone noticing, and

(c) customers are already accustomed to using bots here, just bad ones

XiZhao•20m ago
One would imagine they are broadly similar; but that's off the assumption that codebases are similar as well.

Migrations between versions can have big variance largely as a function of the parent codebase and not the dependency change. A simple example of this would be a supported node version bump. It's common to lose support for older node runtimes with new dependency versions, but migrating the parent codebase may require large custom efforts like changing module systems.