Actually we don't even need the f-string. `H1('Hello ', name)` would work too…
SOFTWARE
-

New ‘My Files’ search feature for AI tools
By
–
"My Files" mode seems to be a dedicated file search feature that potentially will be available to personal and team accounts Currently, you can query uploaded files already from the Upload context. In the future, you may be able to query from all previously uploaded
-

FastHTML rejects JSX syntax, leverages Python functions instead
By
–
I've had quite a few people ask if we plan to add syntax like jsx to FastHTML. We don't. That's because Python's function syntax is already a perfect 1:1 match to html element trees. JS isn't, so they needed something new. Here's an example I just showed on the HTMX discord:
-
H100 DGX Node Performance Metrics for 405B Model
By
–
What's your TTFT and throughput on 1 H100 DGX node for the 405b?
-
FastHTML: Core Concepts and Development Goals Explained
By
–
If you're not sick of reading about FastHTML yet (and let's face it, you're not, because you can't get enough), here's 5000 words about the underlying concepts and goals that I just posted to our blog:
-
JSX Syntax Sugar Makes JavaScript Component Development More Readable
By
–
If you look at the original react component syntax that jsx is sugar for, you'll see it's horrific — js really needs the jsx sweetening! 😀
-
Building Search Technology Remains Complex Challenge
By
–
Search is already so hard and time-consuming to build. Gotta stay focused on it.
-
FastHTML Code Formatting Challenges and Best Practices
By
–
Having said that, I don't recommend using a formatter for FastHTML code. There aren't any formatters yet that understand how to lay out functional HTML components correctly. I found that to make the code somewhat readable with a formatter I had to use more intermediate vars.