frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

Trump Media Makes $2B Bitcoin Bet

https://unchainedcrypto.com/trump-media-makes-2-billion-bitcoin-bet/
1•wslh•42s ago•0 comments

Getting 5 to 10 spam calls / voicemails - what changed?

2•tlogan•1m ago•0 comments

Show HN: Fiig - a New AI Academic Search Engine and Annotation Platform

https://app.ubik.studio/chat?agent=fiig
1•ieuanking•4m ago•0 comments

Recursively self improving AI might not work without these functions

https://secondsight.dev/2025/07/recursively-self-improving-ai-wont-work-without-these-functions/
1•ffwd•6m ago•0 comments

I Tried Homebrew on Linux

https://www.howtogeek.com/i-tried-homebrew-on-linux/
1•dxs•7m ago•0 comments

Godfather of AI: I Tried to Warn Them, but We've Lost Control [video]

https://www.youtube.com/watch?v=giT0ytynSqg
3•novateg•8m ago•1 comments

LLMs Tend to Be Overconfident

https://link.springer.com/article/10.3758/s13421-025-01755-4#Sec62
1•giuliomagnifico•9m ago•0 comments

Goodbye, Ozzy [video]

https://www.youtube.com/watch?v=3ofrYzMU6cw
2•hypertexthero•9m ago•0 comments

Scalable and Modular Architecture for CSS

https://smacss.com/
2•tosh•10m ago•0 comments

Show HN: Fast YouTube Embed Iframes

https://github.com/embedlite/embedlite
2•corentin88•12m ago•0 comments

Show HN: Dead simple transcription command-line

https://github.com/spolu/atr
1•spolu•15m ago•0 comments

More than you wanted to know about how Game Boy cartridges work

https://abc.decontextualize.com/more-than-you-wanted-to-know/
2•todsacerdoti•15m ago•0 comments

We built an air-gapped Jira alternative for regulated industries

https://plane.so/blog/everything-you-need-to-know-about-plane-air-gapped
2•viharkurama•15m ago•1 comments

Ozzy Osbourne, Black Sabbath Singer and Heavy Metal Pioneer, Dead at 76

https://www.rollingstone.com/music/music-news/ozzy-osbourne-black-sabbath-dead-obituary-1227265/
2•hackertux•16m ago•2 comments

Black Sabbath singer Ozzy Osbourne dies aged 76

https://www.cnn.com/2025/07/22/entertainment/ozzy-osbourne-death
2•anigbrowl•16m ago•1 comments

The Raspberry Pi's Wi-Fi Glow-Up

https://www.kali.org/blog/raspberry-pi-wi-fi-glow-up/
2•bundie•16m ago•0 comments

For visualization of network graphs, Gephi was ahead of its time

https://gephi.org/
3•hbarka•17m ago•1 comments

The AIs Don't Agree

https://accelerateordie.com/p/hyperchat-is-live-and-surprising
2•MediaSquirrel•20m ago•1 comments

Bivalent mRNA-LNP Vaccine for Effective Protection Against Pneumonic Plague

https://advanced.onlinelibrary.wiley.com/doi/10.1002/advs.202501286
2•PaulHoule•20m ago•0 comments

Show HN: Ellaa – Build knowledge graphs from user insights

https://ellaa.app
2•ThisIsJustUs•21m ago•0 comments

Brave Blocks Microsoft Recall

https://twitter.com/brave/status/1947721520446382261
4•dirkragnarok•21m ago•0 comments

Show HN: SteadGoods – E-Commerce for Home-Based Sellers

https://steadgoods.com
2•keithwirch•22m ago•1 comments

Mistral reports on the environmental impact of LLMs

https://mistral.ai/news/our-contribution-to-a-global-environmental-standard-for-ai
3•Kydlaw•23m ago•0 comments

AI chip upstart FuriosaAI won over LG with its power-sipping design

https://www.theregister.com/2025/07/22/sk_furiosa_ai_lg/
1•rntn•23m ago•0 comments

Monads as Graphs (2019)

http://neilmitchell.blogspot.com/2019/10/monads-as-graphs.html
2•todsacerdoti•24m ago•0 comments

China behind global hack involving multiple US agencies

https://www.politico.com/news/2025/07/22/microsoft-sharepoint-hack-china-federal-agencies-00467254
3•c420•26m ago•1 comments

Americans Are Paying for Tariffs, Not Foreign Companies

https://www.bloomberg.com/news/articles/2025-07-22/us-companies-and-consumers-are-paying-for-trump-s-tariffs
26•petethomas•27m ago•7 comments

Startup (Quaise) wants to use beams of energy to drill geothermal wells

https://www.technologyreview.com/2025/07/22/1120545/geothermal-drilling-quaise/
2•gnabgib•28m ago•0 comments

The Solution to Tactical Dehydration

https://www.stripes.com/sponsored-content/2025-06-30/the-solution-to-tactical-dehydration-18293227.html
4•Michelangelo11•32m ago•0 comments

A practical debugging guide for media driver developers

https://www.collabora.com/news-and-blog/blog/2025/07/22/a-practical-debugging-guide-for-media-driver-developers/
2•losgehts•32m ago•0 comments
Open in hackernews

Show HN: Carrick – Automated API Validation Across Microservices

https://www.carrick.tools/
2•daveymoores•6h ago

Comments

daveymoores•6h ago
Hi HN, I’m David, introducing Carrick.

For a while I’ve been thinking about how traditional CI is blind to the world outside its own repository. A change in one service can silently break another, and you often don't find out until it's too late.

Carrick is a GitHub Action that tries to solve this with a new approach. It builds a dependency graph of your microservices to catch these cross-repository issues before they merge.

Here’s how it works:

1. It uses static analysis (via SWC) to find API producers in your Express apps.

2. It then uses LLM reasoning to find the corresponding API consumers across your other services.

3. It associates them via API routes and flags common issues such as: - Mismatched types - Incorrect package versions - Wrong HTTP verbs - Missing or deprecated endpoints

The goal is to get fast, low-effort feedback directly in your PRs. It’s currently designed for teams with Express and TypeScript services spread across multiple repositories, but I will be rolling it out to other languages soon.

I’ve written a blog post about some of the engineering and a deeper dive into the problem space here → https://www.carrick.tools/blog/the-multi-repository-typescri...

If you would find this kind of tooling helpful, you can find the Github action in the marketplace → https://github.com/marketplace/actions/carrick-api-analysis

Signup at https://www.carrick.tools/ and I’ll send you an API key.

mjelweezy•5h ago
How does this differ from tRPC?
daveymoores•5h ago
tRPC works within the context of a monorepo and provides utilities for type safety, typically between frontend/backend. Carrick allows you to check API producers/consumers across different repositories. It isn't a library for development, its a Github action that you add to your workflow files and it gives you CI feedback if your PR changes will cause issues with your other services.