Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Human brain is two separate organs, Stanford Medicine-led research finds(stanford.edu ↗)
    51comments
  2. If math is more than proof, we need to better celebrate the rest of it(terrytao.wordpress.com ↗)
    26comments
  3. GPT-6 Astra Solves a WWI German Radio Cipher(prinzai.com ↗)
    34comments
  4. San Francisco Onion Futures Company(onionfutures.com ↗)
    60comments
  5. Android 17 is the first since 3.x to add new APIs without releasing to the AOSP(grapheneos.social ↗)
    394comments
  6. Typesafe-computer-use drives a Mac toward a goal for 1/50th of a cent per step(github.com/awlevin ↗)
    35comments
  7. Science Is Open Software(jepedersen.dk ↗)
    33comments
  8. SDCC – Small Device C Compiler(sourceforge.net ↗)
    16comments
  9. Cloudflare Quick Tunnels(cloudflare.com ↗)
    275comments
  10. You can run Git on object storage if you re-make packfiles(tigrisdata.com ↗)
    10comments
  11. Saving another 100TB of RAM(cloudflare.com ↗)
    68comments
  12. How to Write with an LLM(sockpuppet.org ↗)
    321comments
  13. Why building a Rust LSP is hard(rust-glancer.github.io ↗)
    30comments
  14. NASA-IBM Lunar Foundation open-Source Geospatial AI Model(usra.edu ↗)
    2comments
  15. How OpenAI Used Its Own LLMs to Design Its Jalapeño Chip(ieee.org ↗)
    82comments
  16. The first new cat species discovered in 100 years(nationalgeographic.com ↗)
    102comments
  17. Goroutine Leak Profiles(go.dev ↗)
    2comments
  18. Ctenophores: Wonders of Biology(quantamagazine.org ↗)
    4comments
  19. OpenJev(openjev.com ↗)
    259comments
  20. Show HN: Cactus Needle 3: 8-29MB automation models can match DeepSeek V4 Flash(cactuscompute.com ↗)
    88comments
  21. Photon-Emission-Guided Laser Fault Injection Enables RP2350 Secure Debug(ledger.com ↗)
    67comments
  22. Apple M6 Pro Achieves the Highest Single-Core CPU Score in Geekbench 7(geekbench.com ↗)
    discuss
  23. Suppress vulnerabilities applying Kubernetes context to scans(github.com/alegrey91 ↗)
    1comments
  24. Veronese's Dogs(publicdomainreview.org ↗)
    discuss
  25. Cache-to-Cache: Direct Semantic Communication Between LLMs (2025)(arxiv.org ↗)
    12comments
  26. Minimal Phone 2(minimalcompany.com ↗)
    218comments
  27. Stepfun Step 5 Preview (LLM): On AA Pareto frontier(artificialanalysis.ai ↗)
    2comments
  28. The Farnese letter(simonklee.dk ↗)
    6comments
  29. Cyclomatic Complexity in C#(ndepend.com ↗)
    19comments
  30. Warez: The Infrastructure and Aesthetics of Piracy (2021)(archive.org ↗)
    55comments

Firebug extension has been discontinued

74 pointsby 9y agogetfirebug.com
26 comments
9y agoHN ↗

Came here to say the same thing except MTFBWY

9y agoHN ↗

"Live Long and Prosper" according to Google... I misread your comment as LDAP and spent a couple of seconds trying to work out what LDAP had to do with Firebug (and having flashbacks to trying to debug a call to LDAP with firebug many years ago).

"May the force be with you" for the comment below.

9y agoHN ↗

In my opinion Firebug started a revolution in web development, making JS webapps feasible for regular devs for the first time.

Thank you for giving us a lot of the interfaces and tools that live on as "developer tools" in today's browsers.

9y agoHN ↗

Precisely. The web-developer world we take for granted was singlehandedly brought to life by Firebug. What used to be alert("foo") was replaced with console.logs, and there was no going back. Its probably a good thing that Firebug is discontinued. It has fared well, and made the world a better place.

9y agoHN ↗

It certainly made it easier for me to copy code and dissect it :)

9y agoHN ↗

Been a while since I've done web development; are the Firefox Dev Tools as good as Firebug?

9y agoHN ↗

I think the Dev Tools are better at some things (browsing the elements on the page) but not as good at others (seeing the contents of the POST/GET and contents of cookies).

9y agoHN ↗

No, they lack a few features, and what's even worse, they are buggy sometimes. For example, the styles panel disappears for me completely sometimes. I'm really sad to see Firebug go.

9y agoHN ↗

If you don't mind Chrome, it has the best debugging tools I know. I love Firebug, but I can understand why they are discontinuing it.

9y agoHN ↗

Maybe a little melodramatic, but WTF 2016!?!

9y agoHN ↗

I remember using Firebug years ago and it was absolutely awesome. It made developing on Firefox about 100 times easier than on any other browser.

Then, of course Chrome came out and Firefox added built-in dev tools, so it makes sense to stop development.

Still, such a good product.

9y agoHN ↗

Firebug is the reason IE lost it's dominance. Once it was easier to test on firefox rather than IE (which was ~99% of browsers at the time) the compatibility problem solved itself.

9y agoHN ↗

Nooooo.

I use both and Firebug is so much better :( :( :(

For example Firebug outputs the entire nested array, while the dev tools just say "Array[len]" for nested arrays (or objects).

The problem with that is if you are debugging and something changes the values inside that array (after you output it) you have no record of the old values, since clicking on the Array[len] shows you the new values, not the old ones.

In general that's my biggest problem with the Dev Tools - it likes to reuse windows, and make you click on things for more info. So if you click on Network and want to see the response from two requests at once you can't - both show their info in the same window, and overwrite each other.

In firebug in contrast you click + and it simply expands, inline, and you can see both at once.

I don't suppose anyone knows a setting I can change to fix that and make Dev Tools more usable?

9y agoHN ↗

it's a bit hacky but you can solve that with:

console.log(JSON.parse(JSON.stringify(myArrToDebug)));

It fully clones the array (impossible to have odd refs hang around).

9y agoHN ↗

Use console.dir(var) for a moment-in-time snapshot. The side panel you get when you click on a var is a debug view, which is a lot more useful as a "live" value watcher.

9y agoHN ↗

Firebug changed JavaScript debugging forever. Gone but not forgotten as they say

9y agoHN ↗

First TamperData now FireBug. Seems like Mozilla is not interested in having professionals on their platform anymore.

9y agoHN ↗

The best tool ever. I'd still be using it if Chrome didn't copy it and make it better. It's probably why Chrome took off so well. I even used Firebug lite in IE at some stage in mid 2000's to troubleshoot stuff in it.

9y agoHN ↗

Thanks to all who worked, supported and helped with Firebug. It was the first really great tool to help make the web and web development better for us all.

9y agoHN ↗

An unceremonious end to a go-to tool for me.