frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

NVIDIA Nemotron 3 Super

https://research.nvidia.com/labs/nemotron/Nemotron-3-Super/
1•tosh•1m ago•0 comments

TrueNAS Deprecates Public Build Repository and Raises Transparency Concerns

https://linuxiac.com/truenas-moves-build-system-internal/
1•speckx•1m ago•0 comments

Facebook Buys Moltbook [video]

https://www.youtube.com/watch?v=Lfvmlr2vhLY
1•EPendragon•1m ago•0 comments

Lost in the Middle at Birth: An Exact Theory of Transformer Context Bias

https://arxiv.org/abs/2603.10123
1•borundev•3m ago•1 comments

CUDA 13.2 Introduces Enhanced CUDA Tile Support and New Python Features

https://developer.nvidia.com/blog/cuda-13-2-introduces-enhanced-cuda-tile-support-and-new-python-...
1•pjmlp•6m ago•0 comments

Show HN: Encrypted queue architecture for zero-trust home screen widgets

1•bitbybit_ch•7m ago•0 comments

President Trump's Head-Spinning Pivot on an Emergency Oil Release

https://www.wsj.com/business/energy-oil/president-trumps-head-spinning-pivot-on-an-emergency-oil-...
3•alecco•7m ago•1 comments

A Guide to Multi-Agent Coordination

https://chatbotkit.com/guides/multi-agent-coordination-guide
1•_pdp_•7m ago•0 comments

Always Be Shipping

https://www.ivan.codes/blog/always-be-shipping
2•andout_•8m ago•0 comments

Study: Social media influencers increase the toxicity, power of misinformation

https://www.cardiff.ac.uk/news/view/3031495-social-media-influencers-increase-the-toxicity-and-po...
1•giuliomagnifico•9m ago•0 comments

Show HN: We got tired of managing Claude.md files, so we built something better

https://blog.codeyam.com/p/introducing-the-codeyam-cli-with
1•bastadanii•9m ago•0 comments

How much torment can my little homelab take?

https://www.enriquez.dev/blog/tormenting-my-homelab-part-one
1•ernesto905•9m ago•0 comments

Qt Creator 19 Released

https://www.qt.io/blog/qt-creator-19-released
2•mariuz•9m ago•0 comments

PEGI expands age rating criteria with interactive risk categories

https://pegi.info/news/pegi-expands-age-rating-criteria-interactive-risk-categories
1•TazeTSchnitzel•9m ago•0 comments

InvisiBILL puts a price on the little things you do for everyone else

https://getinvisibill.com/
1•fcpguru•10m ago•0 comments

Show HN: AgentBridge – Let AI agents control Classic Mac OS thru a shared folder

https://github.com/SeanFDZ/agentbridge
1•hammer32•11m ago•1 comments

Discord starts banning accounts on using message export tools

https://github.com/Tyrrrz/DiscordChatExporter/issues/1497
1•mystraline•12m ago•0 comments

Poland says foiled cyberattack on nuclear center may have come from Iran

https://www.reuters.com/world/poland-says-foiled-cyberattack-nuclear-centre-may-have-come-iran-20...
2•alephnerd•13m ago•0 comments

Morgan Stanley Private Credit Fund Hit with Redemption Requests

https://www.wsj.com/livecoverage/stock-market-today-dow-sp-500-nasdaq-03-12-2026/card/morgan-stan...
1•JumpCrisscross•13m ago•0 comments

Holy Smokes: MacBook Neo Is Crazy Fast [video]

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

We linted 5,046 repos on GitHub and here's what we found

https://clusteryield.app/blog/1/blog-post-1.html
1•cy_analytics•16m ago•0 comments

Better Launch

https://www.betterlaunch.co/
1•useqrkit•19m ago•0 comments

Ask HN: How are teams productionizing AI agents today?

1•yanitcorel•22m ago•0 comments

ChatGPT Confused this Morning oaicite index

https://copaseticflow.blogspot.com/2026/03/chatgpt-5-4-thinking-visible-citation-glitch-wrap-mode...
1•antigrav_kids•22m ago•0 comments

The web should remain anonymous by default

https://blog.mozilla.org/en/privacy-security/web-anonymity/
3•TangerineDream•22m ago•1 comments

Social media firms asked to toughen up age checks for under-13s

https://www.bbc.com/news/articles/cn48n18pg1eo
2•Brajeshwar•23m ago•0 comments

How far can you go with IX Route Servers only?

https://blog.benjojo.co.uk/post/how-far-can-you-get-with-ix-route-servers
2•ingve•23m ago•0 comments

Show HN: Upflag – Plain-English error alerts for apps built with AI coding tools

https://upflag.io
1•upflag•23m ago•1 comments

Ask HN: People outside the US how are your countries talking about AI?

1•le-mark•24m ago•0 comments

Why your AI writing sounds like everyone else's

https://usenoren.ai/blog/why-ai-writing-sounds-the-same
1•snoren•24m ago•0 comments
Open in hackernews

LazyFire – a lazygit-style terminal UI for Firebase Firestore

2•egosurffing•2h ago
Hi HN,

I built LazyFire, a terminal UI for Firebase Firestore inspired by lazygit.

I use Firestore a lot, but constantly switching to the Firebase Console to inspect data, run queries, or debug documents was slowing down my workflow. I wanted something that works entirely inside the terminal with keyboard navigation.

LazyFire lets you:

• browse Firestore collections and documents • inspect nested JSON easily • run queries • filter results with jq • navigate everything with vim-style keys • view Cloud Function logs

The goal is to make working with Firestore feel similar to tools like lazygit or k9s.

It's written as a CLI tool and works well if you're already developing from the terminal.

I'd love feedback from other Firebase users: - missing features - workflow improvements - bugs or UX issues

Thanks!

Comments

egosurffing•2h ago
Creator here

One feature people might find interesting is the “Collection Health Scan”.

Firestore has a number of limits that are easy to hit accidentally as a project grows (document size, number of fields, nesting depth, index entry limits, etc.). LazyFire can scan collections and highlight documents that approach or exceed those limits.

I originally built this because debugging Firestore issues in the Firebase Console was slow when working with large collections.

LazyFire also supports: • browsing collections and documents • running queries • jq filtering of results • vim-style keyboard navigation • viewing Cloud Function logs

If anyone here is using Firestore at scale, I’d be curious: - what’s the most annoying thing about the Firebase Console? - are there features missing that would make a terminal tool useful?