frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Bark Air FAQ

https://air.bark.co/pages/faq
1•mooreds•2m ago•0 comments

Understanding high-entropy random number generation

http://memosisland.blogspot.com/2025/11/leymosun-high-entropy-randomness.html
1•northlondoner•3m ago•1 comments

How Should Shareholders Vote?

https://www.bloomberg.com/opinion/newsletters/2025-11-12/how-should-shareholders-vote
1•ioblomov•3m ago•0 comments

Looking for Hidden Gems in Scientific Literature

https://elicit.com/blog/literature-based-discovery
1•ravenical•5m ago•0 comments

I Sued my landlord and maybe you should too

https://medium.com/@brendan.salisbury/i-sued-my-landlord-maybe-you-should-too-af7fc938c530
1•hprotagonist•7m ago•0 comments

You won't believe the excuses lawyers have after getting busted for using AI

https://arstechnica.com/tech-policy/2025/11/lawyers-keep-giving-weak-sauce-excuses-for-fake-ai-ci...
1•sipofwater•10m ago•0 comments

Reproachfully Presenting Resilient Recursive Descent Parsing

https://thunderseethe.dev/posts/parser-base/
2•adamch•12m ago•0 comments

From ExoPlayer2 to Media3: Lessons from a Full Playback Rewrite

https://www.patreon.com/posts/from-exoplayer2-to-media3-143429708
1•patreon-eng•12m ago•1 comments

Our first look at the Steam Machine, Valve's ambitious new game console

https://www.theverge.com/tech/818111/valve-steam-machine-hands-on-preview-specs-announcement
1•DavideNL•14m ago•1 comments

Show HN: ShellDash – Browser server dashboard with SSH and globe monitoring

https://shelldash.com
1•mannders•14m ago•0 comments

The Marines and Tet: The Battle That Changed the Vietnam War

https://newseumed.org/tools/artifact/marines-and-tet-battle-changed-vietnam-war
1•gmays•14m ago•0 comments

More Synthetic, Functional Phages

https://www.pnas.org/doi/10.1073/pnas.2523871122
1•ahessel•14m ago•1 comments

GPT-5.1: A smarter, more conversational ChatGPT

https://openai.com/index/gpt-5-1/
47•tedsanders•14m ago•31 comments

Show HN: HumaLab – The Intelligence Validation Platform

https://humalab.ai/
1•juhgiyo•15m ago•0 comments

X goes down with a security 'Yubikey' error affecting Twitter users

https://www.windowscentral.com/software-apps/live/x-goes-down-hard-with-a-security-yubikey-error-...
5•mfiguiere•16m ago•0 comments

A Domain for the Queer Community, by the Queer Community

https://www.dotmeow.org/en/what
1•birdculture•16m ago•0 comments

Soft Exosuit Based on Fabric Muscle to Assist Shoulder Joint Movements

https://ieeexplore.ieee.org/document/11177570
2•PaulHoule•18m ago•0 comments

Research on AI Mental Health

https://www.talktoash.com/posts/connection-hope-and-real-progress-findings-from-our-first-real-wo...
1•neilparikh11•18m ago•1 comments

A tiny probabilistic programming language in Gleam

https://a5s.eu/blog/gleam-ppl/
1•crowdhailer•19m ago•0 comments

Infinite scale: The architecture behind the Azure AI superfactory

https://blogs.microsoft.com/blog/2025/11/12/infinite-scale-the-architecture-behind-the-azure-ai-s...
1•aprdm•20m ago•0 comments

Windows president says platform is evolving into an agentic OS

https://www.windowscentral.com/microsoft/windows-11/windows-president-confirms-os-will-become-ai-...
2•ryandrake•21m ago•3 comments

Synthetic Genomics is a BOOM in waiting

https://supernaturalselection.substack.com/p/life-is-a-program-that-continuously
1•ahessel•21m ago•0 comments

Google Workspace Outage Affecting Google Docs, Google Drive, and Google Sheets

https://www.google.com/appsstatus/dashboard/incidents/viWmkGEagnWrqYfb7VpS
2•lamsey•22m ago•1 comments

What Should I Work on Next? A Framework for High-Impact Security Work

https://engseclabs.com/blog/what-should-i-work-on-next/
1•alexsmolen•23m ago•0 comments

Backyard Apt: A Raccoon Story

https://engseclabs.com/blog/raccoon-diaries/
1•alexsmolen•25m ago•0 comments

Backblaze Cloud Provider Performance Stats for Q3 2025

https://www.backblaze.com/blog/backblaze-performance-stats-for-q3-2025/
2•dabinat•26m ago•0 comments

Transform campaign and asset development with Creative Agent

https://advertising.amazon.com/resources/whats-new/unboxed-2025-creative-agent
1•malshe•28m ago•0 comments

Ford CEO shocked taking apart Tesla and Chinese EVs

https://www.businessinsider.com/ford-ceo-taking-apart-tesla-chinese-evs-jim-farley-2025-11
3•testing22321•29m ago•2 comments

EU's "Chat Control 2.0" Sparks Fierce Privacy Backlash

https://reclaimthenet.org/the-disguised-return-of-the-eus-private-message-scanning-plot
1•mikece•29m ago•0 comments

A Reversal of Cosmic Expansion?

https://www.centauri-dreams.org/2025/11/12/a-reversal-of-cosmic-expansion/
1•JPLeRouzic•30m ago•0 comments
Open in hackernews

Launch HN: JSX Tool (YC F25) – A Browser Dev-Panel IDE for React

21•jsunderland323•1h ago
Hi HN, We’re Jamie & Dan, building JSX Tool (https://jsxtool.com) a new inspector/dev panel IDE that allows you to navigate to any line of your React project’s JSX with just a click and a command click to explore your render stack.

Demo video: https://www.youtube.com/watch?v=JIIXvN7vhrs

I’ve been writing React code for nearly a decade. Since I first saw source maps in the days of Babel and Redux, I’ve always wanted to be able to edit my code from the source maps. I’ve also always wanted to be able to inspect my JSX like it was HTML.

Last year, I found my first real use of AI was taking ad-hoc CSS changes in the Chrome element inspector, pasting them into ChatGPT, and asking for the equivalent in Tailwind. I’d then paste those changes into my React TSX files.

I wanted to streamline this process but came to the conclusion that to do so I needed to build a JSX inspector. I had to write a custom AST parser to create a mapping between the JSX and HTML. So I hacked on an inspector for a couple of months that connected JSX to the DOM in both directions.

The next feature was adding a CSS editor, like the one in the browser inspectors but for JSX. Unlike styling a piece of HTML I decided that any in memory style edits to a React fiber should be globally applied, as if you had tweaked that line of code in your codebase.

Finally, I was able to add the two AI features I really wanted: (1) prompt for in-memory styles for when I was pixel tweaking, and (2) save those temporary changes back to my codebase in the convention of the codebase I was working in.

To accomplish talking to the filesystem from the Chrome extension I built a little local server that mounts from the root of your project and allows the extension to send file-system commands back to your project root. We named this the “Dev Server”. (Note: You can fully use us as a JSX inspector without this server installed.)

After all that, I found that to convert myself as a user I needed it to be a pretty fully functional IDE. I needed vim bindings, I needed a typechecker, I needed auto-complete, I needed a linter, I needed code search and I needed a proper file explorer. Fortunately we were able to take advantage of the dev-server architecture we had stumbled onto in order to add an LSP server and Rip Grep. At this point, after months of dog fooding, I use JSX Tool for almost all of my website edits.

We’re still rough around the edges for mobile but we’re working on that.

All of the IDE stuff not involving AI is free and works fine without AI. We let you get a taste of the prompting stuff for free but apply some rate limits.

The extension itself is not open source but the dev server with the LSP is. It’s a great foundation if you want to build any sort of in-browser IDE and it's nearly React agnostic. Building the dev server was a big undertaking so I’d love to see someone fork it and find value in it.

In the future we want to start adding things that we are in a position to take advantage of over something like Cursor, such as letting AI give you code suggestions for runtime exceptions or work with the network logs. We think that the convenience of having your IDE in the dev panel gives us a leg up in convenience and workflow context.

Anyway, regardless of how you feel about AI coding, I wanted to make something that was useful with or without AI. We’d love it if you gave it a spin and we want to share anything we can about the technical side of the product that you might find interesting.

Comments

imvetri•1h ago
How are you planning to acquire customers?

Is this sponsored by yc?

Who are the target audience?

Are the target audience companies or businesses or individuals?

Congratulations

jsunderland323•1h ago
> How are you planning to acquire customers?

We haven't gotten much further than just launching and praying.

> Is this sponsored by yc?

I mean we're a YC portfolio company, so sort of I guess. I used to work at YC, so I suppose YC has been sponsoring me for a while now.

> Who are the target audience?

React developers

> Are the target audience companies or businesses or individuals?

Both, I hope. We definitely went more along the lines of supporting individual developers spiritually but there is no reason it shouldn't work if you have colleagues.

> Congratulations

<3 Thanks so much!

cadamsdotcom•1h ago
Sorry, just trying to understand.

Are you saying you invented hot reload? And a dev tools css editor?

I am confused, because the ability to edit code and have the page update instantly exists with Vite, and next.js, and a bunch of other frameworks. It’s janky at times but good enough for most - and your edits are in your repo ready to commit. And browser CSS inspectors are really great. And there’s the React DevTools if you need to see props & component hierarchy.

Can you explain the value add over all these free things we already have?

jsunderland323•1h ago
> Are you saying you invented hot reload?

I'm not saying that, no. We are super dependent upon HMR servers from Vite/Next.

We made the ability to write back from your dev panel to your filesystem and made a JSX inspector. As far as I know these are not things supported by either Next or Vite.

> And browser CSS inspectors are really great

I couldn't agree more. I agree so much that we wanted to make one so that you could do the same to JSX as you can do to HTML.

> Can you explain the value add over all these free things we already have?

You should watch the demo video!

tnolet•58m ago
Interesting that this is now a venture-scale company, according to YC.
brazukadev•11m ago
Right? There is at least 3 years that I don't get impressed by any Launch HN.
hmokiguess•45m ago
Pretty cool project! I love to see progress on the UX of how we write and manage code.

My honest feedback to you here is, this isn’t very valuable by itself as a local dev tool. Make it so it can be run targeting a git repository with live preview and deployment to a real environment and you may have something much better!

Take a look at Theia IDE, maybe you could find a bridge to do that?

Good luck on the launch!

jsunderland323•40m ago
Gotta respectfully disagree here but yeah, I definitely understand the remote workflow use case and why some folks want that.

I think if you're building something that is targeting designers that is the way to go.

Thanks for checking it out though!

ARussell•19m ago
I'm a bit confused by the marketing verbiage and tool name. Is this going to target React only, or will it (eventually) support other solutions which use JSX, such as SolidJS?
jsunderland323•16m ago
It's a bit of an aspirational name. For now it's just React, but we hope to get to support other frameworks that use JSX when we have more bandwidth!