frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

US Draft Rules for Power over Nvidia's Global Sales

https://www.bloomberg.com/news/articles/2026-03-05/us-drafts-rules-for-sweeping-power-over-nvidia...
2•spenvo•58s ago•0 comments

A Guide to Wine Certification Programs

https://www.wineenthusiast.com/basics/guide-to-wine-certification-programs/
1•Anon84•1m ago•0 comments

Iranian strikes on Amazon data centers highlight industry's vulnerability

https://apnews.com/article/amazon-aws-data-center-uae-iran-bahrain-71066b0a822c4cfd88b61e3fe79af917
1•gritzko•2m ago•0 comments

The Download: The startup that says it can stop lightning, and inside OpenAI's

https://www.technologyreview.com/2026/03/03/1133900/the-download-the-startup-that-says-it-can-sto...
1•joozio•2m ago•0 comments

Building a Database on S3

http://muratbuffalo.blogspot.com/2026/03/building-database-on-s3.html
1•todsacerdoti•3m ago•0 comments

The largest open-source humanized voice library

https://github.com/jaymunshi/open-swara
1•Anon84•4m ago•0 comments

Congress Is Considering Abolishing Your Right to Be Anonymous Online

https://theintercept.com/2026/03/05/kosa-online-age-verification-free-speech-privacy/
1•cdrnsf•5m ago•0 comments

Olmo Hybrid

https://allenai.org/papers/olmo-hybrid
1•tosh•5m ago•0 comments

RedDragon: LLM-assisted IR analysis of broken/incomplete code across languages

https://github.com/avishek-sen-gupta/red-dragon
1•armorer•6m ago•1 comments

Exfiltrating passwords with no interaction using autofill

https://varun.ch/posts/autofill/
1•varun_ch•6m ago•0 comments

Show HN: Plought – Reduce noise in decision making

https://plought.app
1•robinoross•6m ago•0 comments

The Brand Age

https://paulgraham.com/brandage.html
2•bigwheels•7m ago•0 comments

We Only Accept Pre-Revenue Projects

https://www.leanvibe.io/blog/bp-1772314620433
1•LeanVibe•7m ago•1 comments

My application programmer instincts failed when debugging assembler

https://landedstar.com/blog/posts/how-my-application-programmer-instincts-failed-when-debugging-a...
1•lifefeed•7m ago•0 comments

Launch HN: Vela (YC W26) – AI for complex scheduling

4•Gobhanu•7m ago•0 comments

Which H100 Instance to Train Nanochat – Benchmarking PCIe, SXM, and NVL

https://bluenotebook.io/blog/h100-nanochat-training/
1•k2so•8m ago•1 comments

Düren's Hydrogen Bet: The Math Behind a Looming Liability

https://cleantechnica.com/2026/03/01/durens-hydrogen-bet-the-math-behind-a-looming-liability/
1•simonebrunozzi•10m ago•0 comments

Using Structured Light Scanning and Photogrammetry in Cultural Heritage

https://www.mdpi.com/2078-2489/17/3/237
1•PaulHoule•11m ago•0 comments

Financial AGI announced – outperforms human experts on 12 professional exams

https://portfoliopilot.com/technology/financial-agi
2•aharm•12m ago•1 comments

Most AI agent demos won't survive enterprise security review

1•ibreakthecloud•12m ago•0 comments

Show HN: Experiment- enforcing accessibility guardrails during AI UI generation

https://github.com/nadav-senseit/ai-accessibility-enforcement
1•nadav_senseit•13m ago•0 comments

Ask HN: Have you noticed how the number of 'Show HN' posts has skyrocketed?

1•nodivbyzero•13m ago•1 comments

CSUN Assistive Technology Conference 2026 files

https://daisy.org/news-events/articles/csun-conference-2026-files/
1•bryanrasmussen•13m ago•0 comments

Show HN: Chatddit.com Fresh off the vibe press

1•gitprolinux•14m ago•0 comments

I'm a Coin Boy, Too (2023)

https://taylor.town/coin-boys
1•surprisetalk•14m ago•0 comments

Formal Verification in the Age of AI

https://verse.systems/blog/post/2026-03-05-formal-verification-ai/
1•matt_d•14m ago•0 comments

I Love Email (2023)

https://blog.xoria.org/email/
1•surprisetalk•14m ago•0 comments

Case Study: lynnandtonic.com 2025 refresh

https://lynnandtonic.com/thoughts/entries/case-study-2025-refresh/
1•surprisetalk•14m ago•0 comments

A Day in the Life of an Enshittificator [video]

https://www.youtube.com/watch?v=T4Upf_B9RLQ
1•surprisetalk•14m ago•0 comments

Collabora at Embedded World 2026: Open-Source AI and Embedded Innovation

https://www.collabora.com/news-and-blog/news-and-events/bringing-the-ai-experience-to-embedded-wo...
1•losgehts•14m ago•0 comments
Open in hackernews

Show HN: ExtraSuite – pull / push for Google Drive

https://github.com/think41/extrasuite
1•ksri•1h ago
ExtraSuite is a terraform like tool for google drive files - sheets/docs/slides/forms/app scripts. It is meant for agents to make targeted edits to files.

While ChatGPT / Claude etc can create the initial versions of the files, the real complexity is in the workflow after the initial version. Team members add comments to provide feedback, or you decide several days later to make minor edits. Re-generating the entire sheet or doc is just not feasible. Our team members resorted to manual edits.

We looked around for a library to edit google drive files. We found gspread for google sheets - and our first version used it. It worked well - but it used way too many tokens. Every change required writing python code. This led to the first version of `extrasheet` - which pulls a spreadsheet and converts it into data.tsv, formula.json and several other files. Initial versions duplicated the formula in every cell for a column; subsequently we detected a formula was the same for a range and automatically compress it. Result - our teams were able to make more complex excel models, make targeted edits and perform analysis using fewer tokens and less capable models.

Subsequently, we followed the same approach for google docs. This turned out WAY COMPLEX. The batchUpdate API for google docs in insanely complex - you have to painstakingly compute the index. `extrasuite doc push` now detects changes, computes indexes, resolves internal dependencies and ultimately pushes the changes only to google docs.

As usage increased, we added google slides (this is pre-alpha), google forms, and even app scripts - all using the same pull-edit-push workflow.

One more differentiator is the usage of service accounts for the agent. The SA has no permissions other than the ability to read/comment/edit the specific files that have been shared with it. This means that agent edits are completely auditable. It is clear to everyone in the team that "Alice used her agent to write this document" - because it shows up clearly in the documents version history.

To achieve this service account, we deploy a lightweight gateway server that mints 1:1 service accounts per employee on demand. This isn't scalable as there are limits to how many service accounts you can create in a google cloud project (typically 100) - but this hasn't been a problem for us as yet.

The gateway server is strictly optional. You can download service account JSON keys and use it to authenticate if you wish, but we dislike giving keys to employees. A gateway server simplifies the workflow significantly for non-tech users.

Try it out, and hopefully it is of use to others.

P.S. This complements gog and gws, does not replace it. Neither of those tools has a workflow to perform in-place complex edits in a declarative manner.