frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

HomeDesignsAI

https://homedesigns.ai/
1•bellamoon544•4m ago•0 comments

AI and laser physics – a metaphor for cognitive collaboration

https://solitonmaths.substack.com/p/the-coherent-cavity
1•tompdavis•7m ago•1 comments

Why the UAE Left OPEC

https://www.ft.com/content/77f79126-bbf5-4343-90ea-c403c04c5640
1•bazzmt•10m ago•1 comments

Free Tournament Bracket Builder

https://tournament-studio.apps.jointjs.com/
1•durman•11m ago•0 comments

What Is an AI SDR? How AI Sales Agents Work in 2026

https://babuger.com/blog/what-is-an-ai-sdr-how-ai-sales-agents-work
1•lyuata•12m ago•1 comments

notebooklm-py makes Claude interact with NotebookLM

https://github.com/teng-lin/notebooklm-py
1•rippeltippel•14m ago•0 comments

NZ Government to Disestablish the BSA

https://www.beehive.govt.nz/release/government-disestablish-bsa
3•xupybd•19m ago•1 comments

Open Agents from Vercel is now open source

https://github.com/vercel-labs/open-agents
2•ssgodderidge•21m ago•0 comments

Agentic AI Community 2026

https://simplai.ai/simplai-university
2•peterparker01•23m ago•0 comments

Visualize Any Hugging Face Model

https://hfviewer.com/
3•rippeltippel•23m ago•0 comments

DeepSeek nears $45B valuation as China's 'Big Fund' leads investment talks

https://www.ft.com/content/daaf2e0a-4a0d-4d7c-a85b-445480f6b9c7
4•thm•27m ago•2 comments

Palo Alto Networks warns of firewall RCE zero-day exploited in attacks

https://www.bleepingcomputer.com/news/security/palo-alto-networks-warns-of-actively-exploited-fir...
2•defrost•35m ago•0 comments

Ask HN: Does your employer require everyone to use the same AI model?

4•kevinfarrugia•37m ago•1 comments

How Mobile Ethnography Is Transforming Research from Guesswork

https://figshare.com/articles/journal_contribution/_sup_How_Mobile_Ethnography_is_Transforming_Re...
1•aishasajjad•38m ago•0 comments

Show HN: BotParty, a native macOS chat app where conversations are documents

https://botparty.com/
2•captainbenises•41m ago•0 comments

Ghost map: Europe's first glimpse of Tenochtitlan shows a city destroyed

https://bigthink.com/strange-maps/aztec-capital-map/
1•bryanrasmussen•43m ago•0 comments

E-Bike Fleet Monitoring

https://tech.marksblogg.com/ebike-fleet-monitoring.html
1•marklit•44m ago•0 comments

Add EBCDIC support to VSCode's Hexedit inspector

https://github.com/microsoft/vscode-hexeditor/pull/598
1•rbanffy•44m ago•0 comments

Ask your agent to do Docker and K8s

https://ingresslabs.github.io/torque/
2•akrylov•47m ago•0 comments

Hell Is Not Having Adequate Gear

https://medium.com/luminasticity/hell-is-not-having-adequate-gear-b324e92bfd98
2•bryanrasmussen•50m ago•0 comments

Git worktree manager with fuzzy finder

https://github.com/d-kuro/gwq/tree/main
2•ankitg12•50m ago•0 comments

We're Not Building AI Features for the Money

https://zed.dev/blog/not-building-ai-for-the-money
3•throawayonthe•51m ago•1 comments

The Faster You Go, the Wronger You Get

https://hagakure.substack.com/p/the-bottleneck-was-understanding
2•alper•55m ago•0 comments

Deltax – structured reasoning for complex scientific claims

https://chatgpt.com/g/g-69f11b6a1bdc8191ab1100acf60f40cc-deltdx-free
2•DELTAX-Editions•55m ago•0 comments

Researchers turn ocean dead zones into talking skies for pilots

https://english.elpais.com/technology/2026-05-03/researchers-turn-ocean-dead-zones-into-talking-s...
3•olvy0•55m ago•3 comments

Show HN: How I solved my network state corruption in my Linux Tor proxy

https://github.com/onyks-os/TransparentTorProxy
2•onyks•57m ago•1 comments

50 AI Automations You Can Build This Weekend

https://twitter.com/eng_khairallah1/status/2045794365985935529
2•sahar_builds•58m ago•0 comments

AI Story Generator – Generate Story Online Instantly

https://www.wps.com/tools/ai-story-generator/
3•zaid-nadeem•1h ago•0 comments

Would HN Accept PRs?

3•jorisw•1h ago•4 comments

Recovoly – Built for Better Document Recovery

https://www.recovoly.com/
2•thisarajay•1h ago•0 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`.