frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Exponential Smoothing

https://lisyarus.github.io/blog/posts/exponential-smoothing.html
1•ffin•5m ago•0 comments

The Part of Me That Doesn't Believe AI Is Fine

https://danunparsed.com/p/ai-is-fine
1•sambellll•7m ago•0 comments

HermOS – a local-first AI agent IDE

https://hermos.is-a.dev/
1•WFekik•7m ago•0 comments

We tackled the blockchain trilemma with multi‑bucket parallelism (niumeta)

https://github.com/niumeta/niumeta
1•niumeta_TZ•8m ago•1 comments

Lyft Charged Me $150 for Vomiting in a Car, but I Didn't Do It

https://www.nytimes.com/2026/08/20/travel/lyft-cleaning-charge.html
1•lxm•11m ago•0 comments

Domestic cats kill 1.3–4.0B birds and 6.3–22.3B mammals annually

https://www.nature.com/articles/ncomms2380
2•agnosticmantis•13m ago•0 comments

Just finished building a security audit tool

1•AIwebPageSEO•16m ago•0 comments

Stay logged out of Reddit and keep the old.reddit.com layout. Beta testers plz

https://github.com/kookaburrabarrel/sheddit/
1•kookaburrabarre•16m ago•1 comments

The Airlink Embraers just flew dangerously low over DHL Stadium in Cape Town

https://www.reddit.com/r/aviation/comments/1w1pcbs/the_airlink_embraers_just_flew_dangerously_low/
1•mcapodici•17m ago•0 comments

Show HN: RecQL – A portable query language for search and recommendation

https://github.com/recql
2•jonahharris•19m ago•0 comments

Show HN: Niu Lai Series Website

https://niulaify.com
1•bookbyter•20m ago•0 comments

Show HN: Shell utility for encrypting and decrypting files using scrypt

https://github.com/nodesocket/cryptr
1•nodesocket•21m ago•0 comments

Show HN: How to Fish Game Wiki

https://howtofish-game.org/
1•bookbyter•22m ago•0 comments

The Absurdity of Desktop Linux

https://www.augustl.com/blog/2026/absurdity-of-desktop-linux/
2•ingve•23m ago•1 comments

Copilot code review: Resolution reasons and expanded capabilities

https://github.blog/changelog/2026-08-27-copilot-code-review-resolution-reasons-and-expanded-capa...
1•kyisaiah47•32m ago•0 comments

Before NTP there were Time and Daytime

https://www.jeffgeerling.com/blog/2026/rfc-867-868-time/
1•ingve•36m ago•0 comments

The Shapes of Agent Memory – Files, Stores, and Experience

https://pinglin.tw/blog/the-shapes-of-agent-memory/
1•gmays•38m ago•0 comments

Special Is Optional

https://nik.art/special-is-optional/
2•herbertl•41m ago•0 comments

Creative Clarity

https://herbertlui.net/creative-clarity/
3•herbertl•42m ago•0 comments

Clips Kitty Open-source local AI video clipping and editing

https://github.com/ColinGPT9/clips-studio
1•ColinGPT•45m ago•1 comments

Understanding ChatGPT Work

https://simonwillison.net/2026/Aug/30/understanding-chatgpt-work/
16•gmays•49m ago•1 comments

Reimagine-it – redesign existing HTML from its own content (CLI)

https://github.com/Kayforkind/reimagine-it
1•kazimrmerchant1•54m ago•0 comments

PocketJS: UI runtime for every kind of computer

https://pocketjs.dev/
4•tomcam•1h ago•1 comments

Transitous – Community-run public transport routing service

https://transitous.org
2•rickcarlino•1h ago•0 comments

Learn about Meshtastic and Austin Mesh

https://www.austinmesh.org/about/
1•simonpure•1h ago•0 comments

Cursor launches Origin code hosting platform as GitHub outage exposes opening

https://venturebeat.com/infrastructure/cursor-launches-origin-code-hosting-platform-as-github-out...
2•gmays•1h ago•0 comments

Minutes to 33 Seconds

https://luca.lowndes.net/blog/bun-tests-10-minutes-to-33-seconds
2•lucalow•1h ago•0 comments

Sitegeist – The ultimate design extraction toolkit

https://chromewebstore.google.com/detail/sitegeist/npgjkgkkjcbbafihmojgodekkfgnjgdc
2•BillyMangino•1h ago•0 comments

Gram Editor Release 3.3.0

https://gram-editor.com/posts/release-3.3.0/
2•signa11•1h ago•0 comments

Google Maps Changes Lake Ontario to 'Lake America' on US Phones

https://thehill.com/policy/transportation/6059553-google-maps-renames-lake-america/
6•LopRabbit•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`.