frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Greatgramps: A static site generator for GRAMPS family trees

https://bennuttall.com/blog/2026/06/greatgramps/
1•benn_88•1m ago•0 comments

Join .agent – Pre-Register Your Domain Free

https://agentcommunity.org/join
1•Anon84•8m ago•0 comments

The State of the AI Economy

https://intelligence.exponentialview.co/
2•marc__1•8m ago•0 comments

How a Star Wars Lego Dispute Triggered an Armed Police Raid in Utah

https://www.wsj.com/us-news/how-a-star-wars-lego-dispute-triggered-an-armed-police-raid-in-utah-c...
1•fortran77•8m ago•1 comments

Building While Becoming

https://pushapaula.substack.com/
1•paulawp•10m ago•0 comments

The Supreme Court's Era of Meaningless Rights

https://www.theatlantic.com/ideas/2026/06/supreme-court-decisions-unenforceable-rights/687713/
1•paulpauper•12m ago•0 comments

Show HN: I scanned 87 MCP servers for agent-authority hygiene – leaderboard

https://capframe.ai/leaderboard
1•euan21•13m ago•1 comments

Show HN: Hacker News on a Train Station Style Flip Board

https://popflame.quickish.space/hn-flipboard/
1•PaybackTony•14m ago•0 comments

The Duck Is Growing

https://gemenergyanalytics.substack.com/p/the-duck-is-growing
1•paulpauper•16m ago•0 comments

The State of the AI Economy

https://www.exponentialview.co/p/the-state-of-the-ai-economy
1•paulpauper•16m ago•0 comments

The formation of human populations in South and Central Asia

https://www.science.org/doi/10.1126/science.aat7487
1•teleforce•22m ago•0 comments

Show HN: Hatchr – Share Claude Designs with a public link

https://www.hatchr.link/
1•othmanosx•22m ago•0 comments

Show HN: Noise Lang, JIT stochastic programing language

https://noiselang.com/
1•manucorporat•23m ago•0 comments

PrismLib – semantic LLM cache and cluster mesh that cuts token spend

https://github.com/insightitsGit/prismlib
2•insightits•24m ago•0 comments

Economists have pushed for prediction markets. They're not what they'd hoped for

https://www.cnn.com/2026/06/21/business/prediction-markets-economists
1•JumpinJack_Cash•24m ago•0 comments

Routing for serverless servers with Pingora, Envoy, and Spanner

https://modal.com/blog/serverless-servers
2•birdculture•26m ago•0 comments

EU Trade Explorer

https://tradedashboard.eu/
1•abracadabrapouf•27m ago•1 comments

Utility for Multi-GPU Node Configuration

https://github.com/rghosh08/nvidia-nvswitch-setup/releases/tag/v0.1.0
2•rghosh8•32m ago•0 comments

Chief Mouser to the Cabinet Office

https://en.wikipedia.org/wiki/Chief_Mouser_to_the_Cabinet_Office
2•modzu•36m ago•0 comments

Build, Don't Posture

https://entertainmentindustry.ai/
3•DavidFrangiosa•37m ago•1 comments

We are capitalist, not socialist

https://www.thepromisetoamerica.com
3•donsupreme•41m ago•6 comments

U.S. Proposes to Drop Brake Pedal Requirements for Self-Driving Vehicles

https://www.cnbc.com/2026/06/25/us-proposes-to-drop-brake-pedal-requirements-for-self-driving-veh...
1•karakoram•42m ago•0 comments

Where Will Europe's Heatwave Be Most Deadly?

https://www.economist.com/graphic-detail/2026/06/25/where-will-europes-heatwave-be-most-deadly
1•karakoram•43m ago•1 comments

FIFA World Cup website in 2002

https://xcancel.com/WebDesignMuseum/status/2070517388290806137
1•airstrike•45m ago•1 comments

Add MCP Apps to Your AI SDK Application

https://vercel.com/kb/guide/ai-sdk-mcp-apps
1•flashbrew•47m ago•0 comments

Cartels of Mediocrity

https://blog.taylorwood.io/2026/06/19/social-norms-and-low-doers.html
3•1659447091•47m ago•0 comments

AI Powered Photo Gallery Without the Cloud

https://github.com/Arkalogy/best-photo-picker
1•anonu•51m ago•0 comments

I removed the vector database from my AI agent stack

https://github.com/usemoss/moss
2•philosopherr•52m ago•0 comments

Texas Public School Students Will Be Required to Read the Bible

https://www.nytimes.com/2026/06/25/us/texas-schools-book-list.html
3•droidjj•53m ago•2 comments

The Last Bottleneck Is Fear

https://runtimewire.com/article/the-last-bottleneck-is-fear
2•ryanmerket•57m ago•1 comments
Open in hackernews

Show HN: Conventional Comments in GitHub

https://github.com/pullpo-io/conventional-comments
2•francesc_holly•1y ago
Hey HN, Cesc here, co-founder at Pullpo.

We spend a lot of time doing code reviews on GitHub. One recurring frustration was deciphering ambiguous comments. Misunderstandings slowed us down.

We're big fans of the https://conventionalcomments.org (discussed previously here: https://news.ycombinator.com/item?id=23009467) standard for adding clarity, but remembering and typing the prefixes (suggestion, issue(blocking), etc.) felt like friction.

So, we built a simple, free, open-source Chrome extension to make using this standard effortless within the GitHub UI.

How it works:

• It adds a small toolbar above GitHub comment boxes.

• You click buttons for labels (issue, suggestion, praise, nitpick, etc.) and optional decorators (blocking, non-blocking, if-minor).

• It automatically formats the comment prefix for you.

• There's a "Prettify" option to display prefixes as visual badges (using Shields.io, linked to a simple explainer on pullpo.io).

• It adapts to GitHub light/dark themes.

We built it because we needed it ourselves to improve our internal review process, and thought others might find it useful too. It's completely free and open-source (MIT license).

• Install Link -> https://chromewebstore.google.com/detail/gelgbjildgbbfgfgpib...

• GitHub Repo -> https://github.com/pullpo-io/conventional-comments

• Quick Demo Video -> https://youtu.be/jLzXlZ78rNE?si=KMzIH9Vb43glekEW

We just launched it on the Chrome Web Store. Would love to hear your feedback, suggestions, or any pain points you have with code review comments! Thanks, Cesc

Comments

badmonster•1y ago
How does the extension hook into GitHub's DOM to inject the comment toolbar, and does it support dynamically loaded elements like in PR reviews with infinite scroll?
francesc_holly•1y ago
Chrome extensions let you execute JS on certain sites, so we can querySelect all target textareas and insert the toolbar anywhere. And yes! That includes dynamically loaded elements like the PR review window. We can even apply light/dark themes that match GitHub's ;)

If you want specifics you can check out the open-source repo here: https://github.com/pullpo-io/conventional-comments

I suggest looking at `content.js`, constant `TARGET_TEXTAREA_SELECTORS` and function `initializeToolbarForTextarea`.