frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

The Evidence for AI Consciousness, Today (2025)

https://newsletter.ai-frontiers.org/p/the-evidence-for-ai-consciousness
3•mellosouls•27m ago•1 comments

The original Linux distro source

https://www.kernel.org/pub/linux/kernel/v1.0/
2•maxxxxxxxxxxxxx•30m ago•0 comments

Speaking with the Mind – Neuralink [video]

https://www.youtube.com/watch?v=_j806JHhCRo
1•Eridanus2•36m ago•0 comments

Dylan Patel's Information Machine

https://substratemag.com/dylanpatel/
1•gmays•36m ago•0 comments

Ask HN: Remember N8n? Anyone?

2•sankalpdomore•37m ago•0 comments

Extract all comments from a Google Sheet

1•bsunter2•49m ago•0 comments

Show HN: I made Niri-like terminal colm (cmux alternative)

https://colm.sh/
1•al3rez•55m ago•0 comments

NASA-IBM Lunar Foundation open-Source Geospatial AI Model

https://newsroom.usra.edu/usra-contributes-planetary-science-expertise-to-nasa-ibm-lunar-foundati...
6•noobplus•55m ago•0 comments

Show HN: Seal – Letters and passwords that open for your family after you die

https://github.com/jasonepage/Seal
8•jpage2•1h ago•2 comments

A Black-Box Audit of Provider-Side Token Inflation in LLM Services

https://arxiv.org/abs/2609.20370
1•donk8r•1h ago•0 comments

San Francisco Onion Futures Company

https://onionfutures.com/
83•z-mach9•1h ago•28 comments

OpenLoco Version 26.09 Released

https://openloco.io/news/2026/09/openloco-v26.09.html
1•jandeboevrie•1h ago•0 comments

Show HN: A static reference for 5,142 supplement interactions

https://synstax.uppervoid.app/interactions/
2•reloading2008•1h ago•0 comments

Brownie Mary

https://en.wikipedia.org/wiki/Brownie_Mary
1•arittr•1h ago•0 comments

Google AI Studio 'Delete' is a scam: Your prompts are not deleted, just hidden

https://medium.com/@istokovicsgyorgy79/your-prompts-are-not-deleted-they-are-just-hidden-e0016bd4...
4•CanusLupus79•1h ago•0 comments

Harm Laundering in GPT Models: Gender Discrimination Transformed Rather Than

https://arxiv.org/abs/2609.20779
5•sbulaev•1h ago•0 comments

Vibe coding did not kill making money out of engineering, open source and SaaS

https://i18n-keyless.com/
3•arnaudambro•1h ago•3 comments

Virtual Memory: Page Tables, TLBs, and Linux Internals

https://blog.codingconfessions.com/p/virtual-memory
2•fagnerbrack•1h ago•0 comments

Isomorphic Collapse of Primorial Modulus- Bypassing Arithmetic in Cryptanalysis

https://zenodo.org/records/22840364
1•GeometryKernel•1h ago•0 comments

Dashes suggest which model you're copy-pasting from

https://will-keleher.com/posts/your-dashes-suggest-which-model-youre-copy-pasting-from/
1•vismit2000•1h ago•1 comments

USB 3 Speeds Come to a Non-Pro iPhone

https://pxlnv.com/blog/usb-3-speeds-finally-come-to-a-non-pro-iphone/
1•robbiet480•1h ago•1 comments

Reality Is the Final Verifier: On Two Key Gaps in Agentic Software Engineering

https://arxiv.org/abs/2609.12039
1•matt_d•1h ago•0 comments

The Destruction of the Scottish Canon

https://asteriskmag.com/issues/15/the-destruction-of-the-scottish-canon
1•barry-cotter•1h ago•1 comments

OpenAI expects to burn $280B by 2030

https://www.ft.com/content/6011d061-eee3-4193-b3b7-8ee4155f538c
4•JumpCrisscross•1h ago•2 comments

Left Brain, Right Brain: Facts and Fantasies

https://pmc.ncbi.nlm.nih.gov/articles/PMC3897366/
1•diwank•1h ago•0 comments

Static site generator for Ghost CMS

https://github.com/SimonMo88/ghost-static-site-generator
1•Curiositry•2h ago•0 comments

Teaching Fractions According to the Common Core Standards(2011) [pdf]

https://math.berkeley.edu/~wu/CCSS-Fractions_1.pdf
1•o4c•2h ago•0 comments

Why You Can't Overcook Mushrooms and the Science Behind Them [video]

https://www.youtube.com/watch?v=XLPLCmwBLBY
3•thunderbong•2h ago•0 comments

Bringing Back Caesar IV Online

https://xetera.dev/article/bringing-back-caesar-iv-online
1•xetera•2h ago•0 comments

Inventor of ChatGPT and RLHF Launches Typesafe.ai

https://techcrunch.com/2026/09/18/a-new-kind-of-ai-model-from-a-chatgpt-inventor-is-thrilling-dev...
3•ryan_j_naughton•2h ago•0 comments
Open in hackernews

Extract all comments from a Google Sheet

1•bsunter2•49m ago
I spend a lot of time working in Google sheets. Often, I will collaborate with up to 50 other people in the same workbook. One specific org I worked at had a strong preference for using comment threads in Sheets extensively to ask questions, give feedback, and raise risks. Sheets would regularly get 70+ comment threads across multiple tabs with dozens of contributing teams. As the owner of the sheet, I wanted a way to document the comments to retain traceability on all of the various conversations.

To my surprise, there was no function built into sheets to scrape, count, sort or manage comments at all. I also couldnt find any good third party add-ons to solve the problem. So I built one myself.

I discovered that the Drive API gives you the comment text, author and state, but doesnt give the location of the comment which was crucial. Thankfully, the .xlsx export has xl/threadedComments with the cell reference, timestamp, author, resolved flag and parent ID.

How it runs: JSZip in the browser, no sign-in, nothing uploaded anywhere. A browser version of the tool is available at: https://github.com/bsunter93/commentpulse

It's also live in the Google Marketplace at this link: https://workspace.google.com/marketplace/app/comment_export_for_sheets/856300539801

Feel free to take and use it - would love any feedback!