frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Survey: Norwegian skepticism toward the US reaches record high

https://www.aftenposten.no/verden/i/oEVKrB/nye-tall-viser-nordmenn-har-mistet-tilliten-til-usa
2•roschdal•3m ago•0 comments

Mozilla revokes Firefox signing key after unencrypted copy lands in GitHub

https://www.theregister.com/security/2026/08/11/mozilla-revokes-firefox-signing-key-after-unencry...
2•GaryBluto•6m ago•0 comments

llama.cpp

https://llama.app
1•kristianpaul•8m ago•0 comments

Wonderful Background Noise Website, Free/Ad-Free (2019)

https://noises.online
1•miek•10m ago•1 comments

A Look at the Milky Mist IPO

https://finshots.in/archive/a-look-at-the-milky-mist-ipo/
1•vismit2000•10m ago•0 comments

Can blockchain save London's gold trade?

https://finshots.in/archive/blockchain-save-londons-gold-trade-2/
1•vismit2000•10m ago•1 comments

85% of personal care products contain unlabeled suspected hazardous chemicals

https://medicalxpress.com/news/2026-08-everyday-personal-products-unlabeled-chemicals.html
1•WaitWaitWha•11m ago•0 comments

Powered by mushrooms, living computers are on the rise (2025)

https://engineering.osu.edu/news/2025/11/powered-mushrooms-living-computers-are-rise
2•GaryBluto•16m ago•0 comments

Open Science Framework Shutting down, Use ResearchBox Instead

https://datacolada.org/137
1•anitil•17m ago•1 comments

StoreCraft – Multipurpose WooCommerce Theme

1•hudawp•20m ago•0 comments

Magic: The Gathering Movie Adaptation Development Update

https://www.themovieblog.com/2026/08/magic-the-gathering-movie-adaptation-receives-development-up...
1•Gaishan•23m ago•0 comments

OllaLink: A Simpler Approach to Remote Access

1•rasal•23m ago•0 comments

Ask HN: How do you use LLMs for your research?

1•bbangjo•24m ago•0 comments

3B1B Virtual Career Fair

https://www.3blue1brown.com/talent/
1•E-Reverance•24m ago•1 comments

Live HN Project Show and Tell on "Fediverse" – Happening NYOW

1•dv35z•26m ago•0 comments

Why Software Factories Fail

https://twitter.com/dexhorthy/status/2080697380379427275
1•narayanahari•28m ago•0 comments

Dropbox, loved by the masses, a shareholder dead end

https://s-1.vercel.app/posts/why-dropbox-is-a-obvious-pe-target/
1•Taikhoom10•30m ago•0 comments

Thumbs Down for Clojure (2009)

https://www.loper-os.org/?p=42
3•LAC-Tech•38m ago•0 comments

OpenAI releases ChatGPT/Codex desktop app for Linux

https://thenewstack.io/openais-chatgpt-desktop-linux/
1•ilamont•39m ago•0 comments

Weaponized: Washington Farmer Targeted After Criticizing Government Regulations?

https://www.agweb.com/news/business/farmland/weaponized-washington-farmer-targeted-after-criticiz...
2•silexia•39m ago•0 comments

Show HN: Dev-loop – parallel coding agents, supervised not just spawned

https://github.com/choiyounggi/dev-loop
1•dch0202•39m ago•0 comments

Geometric Reasoning

https://sophontic.ai/
2•6510•41m ago•1 comments

Winemaking Home Page (2018)

https://web.archive.org/web/20200602092516/http://winemaking.jackkeller.net/index.asp
2•Ariarule•41m ago•0 comments

Honey Gets Terminated as Lawsuits Proceed [video]

https://www.youtube.com/watch?v=EXDemfGNGz0
2•nomilk•53m ago•0 comments

Death March (Project Management)

https://en.wikipedia.org/wiki/Death_march_(project_management)
3•Austin_Conlon•1h ago•0 comments

Apache Fory JSON: JSON Serialization for Java, 10x faster than Jackson

https://fory.apache.org/blog/fory_json_fastest_java_json_framework/
1•theanonymousone•1h ago•0 comments

YouTube sets Made For Kids flag on inappropriate video,won't let owner change it

https://twitter.com/nihaho13/status/2087317049278075130
1•Nition•1h ago•1 comments

The poverty of anti-tech thought

https://www.noahpinion.blog/p/the-poverty-of-anti-tech-thought
3•Ariarule•1h ago•1 comments

Show HN: Lethe is a portable identity layer – user consented

https://lethe-ai.vercel.app
1•NamanaManohar•1h ago•0 comments

Mark Zuckerberg: The Future Is for Everyone

https://about.fb.com/news/2026/08/the-future-is-for-everyone/
3•nedruod•1h 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`.