TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

FastHTML – Modern web applications in pure Python

867 pointsby bpierre10 months ago

72 comments

jph0010 months ago
Hi all. Jeremy here -- I created this project. Thank you @bpierre for sharing it!<p>I wrote my first web app ~30 years ago, and have built some pretty big projects, including founding fastmail (written in Perl) and leading the first major production version of Kaggle (written in C#). Frankly, I&#x27;ve enjoyed creating web apps less and less over the last few years. So I decided to try to create something that I&#x27;d personally enjoy using. I like coding with Python, it&#x27;s got a great ecosystem, and deployments like Dropbox and Instagram show that it can scale right up.<p>FastHTML brings together Python, hypermedia based apps with HTMX, the powerful and flexible ASGI&#x2F;Uvicorn&#x2F;Starlette trio, a new Python component system called FastTag (FT -- based on many similar projects from the functional programming world), an API design inspired by FastAPI, and a few more bits and pieces into something I&#x27;ve now written around a dozen apps with. I&#x27;m really loving it!<p>I hope some of you get a chance to try it out -- let me know what you think.
Yenrabbit10 months ago
I&#x27;ve been using this while it was in development and it&#x27;s a pleasure to work with. Highlights for me:<p>- Incremental complexity - starts super simple and I can add stuff as I need it. I don&#x27;t like frameworks where step 1 already leaves you with lots of files and a bunch of things you need to know.<p>- Easy escape hatches. I like some of the simpler demo&#x2F;dashboard things but inevitably hit a ceiling that suddenly requires a lot of hacking to get past. Since FastHTML is a lot more transparent it&#x27;s very easy to go right in and do something with JS or mess with the request or make something custom. So you&#x27;re not stuck with only the widgets a framework gives you or anything like that.
kylerush10 months ago
Nice work! I think the Python community definitely needs something like this. The thought never occurred to me to use HTMX w&#x2F;Python for both server rendered HTML and dynamic behavior in the browser.<p>I have a few questions for you.<p>1. Why do you recommend conda or pip and not uv? Is this because the plug and play deployment platforms are configured to use pip?<p>2. Do you plan to make this “batteries included” like Django? E.g. it looks like currently you have to manage database schema and migrations outside of FastHTML.<p>3. Perhaps not in scope for this, but it seems to me making LLM API requests in the FastHTML backend could cause some scaling problems since these i&#x2F;o operations can take a really long time and tie up the same threads required to render web pages. Any thoughts on that?<p>EDIT: Added third question.
评论 #41104730 未加载
评论 #41106415 未加载
throwaway8998810 months ago
Hi Jeremy, congratulations for the launch and the website looks very nice indeed.<p>I am honestly mostly interested in your reason, to mix HTML&#x2F;CSS generation into the Python code. Disclaimer, I am very biased towards separation of concern and like my backend just returning JSON&#x2F;XML&#x2F;whatever data and a templating system. Of course this increases the ramp-up time to learn a framework, but then it is IMHO very powerful, flexible and fast.<p>Could you perhaps elaborate on your choice for FastHTML and what tradeoffs you see?
评论 #41107098 未加载
评论 #41107247 未加载
sadlion10 months ago
I wasn’t expecting to see Jeremy when I opened the link. I’m a long time fan of his work and have been recently playing with Claudette. Claudette is written using a Jupyter notebook in a literate programming style. Seeing Jeremy deconstruct problems and build solutions from first principles is always amazing. I have experience with multiple JS frameworks and I am excited to try fasthtml. Thank you Jeremy for all your contributions.
lyjackal10 months ago
I’ve been trying out fasthtml as a more scalable prototyping tool for a side project. I’ve really enjoyed using it! I tried gradio first, but 1. didn’t like the look, and 2. You can’t really go off the beaten path. So far I’ve really enjoyed working with fast HTML and htmx. Honestly my biggest complaint on working with “Python-only” dev has been the CSS. I wanted to give the app an easy, but unique&#x2F;customized look. Most CSS libraries expect to be part of a JS based build pipeline for any type of customization. bootstrap still requires scss customizations, tailwind is its own thing of configuration, pre-processors and tree shaking. Really wish there was a robust css library that relied on css-variables to customize. There are a few but they’re relatively anemic. Anyone know of any good options out there that would be a good fit, or did tailwind just eat everything up?
评论 #41105468 未加载
评论 #41115536 未加载
polyrand10 months ago
Very cool! After trying different approaches to render HTML from Python objects (including lxml, xml, etc.) I ended up liking htpy[0] the most, and the apps I built look similar to the examples in the FastHTML docs. I&#x27;ll definitely try it.<p>One pattern I use is putting all the functions that generate HTML inside their own class. That way, I can more easily create and reuse components like:<p><pre><code> class Views: ... def comp1(self): return Div(self.header(), P(&quot;too&quot;)) </code></pre> Then `self.header()` can be reused in other parts, or to return partial HTML. It also makes it easy to pass the &quot;request&quot; object to the class, and do conditional rendering based on it (cookies, auth, language, etc).<p>[0]: <a href="https:&#x2F;&#x2F;htpy.dev&#x2F;" rel="nofollow">https:&#x2F;&#x2F;htpy.dev&#x2F;</a>
评论 #41106238 未加载
ianbutler10 months ago
I was talking with my cofounder today about how we&#x27;d likely need to become a multilingual platform once we eventually take on more than backend applications and I&#x27;m glad to see projects like this. They give me hope that we won&#x27;t have to make that jump.<p>I&#x27;m really excited to give this a try seeing as this should just run on our cloud with minimal to no changes given the premise.<p>I know of one or two other projects like this in the ecosystem, but this approach seems the most promising so far.<p>Also I&#x27;m not sure when Jeremy finds time to sleep given all the other exciting work from Answer.AI. and his various courses :P<p>I recently implemented deepspeed + qlora in a finetuning library and that was also entirely based on the fsdp implementation him and his various associates wrote.<p>So he really is just making great contributions all over the place.
hamelsmu10 months ago
I am a python developer who has been envious of modern application dev frameworks &amp; typescript, but never had the time to invest in another stack. This is so exciting. I suspect this might be catalyst that empowers more people to ship stuff
评论 #41104568 未加载
chompychop10 months ago
One check I always like to do with a new Python-based framework is this - does it support the creation of a dynamic number of components at runtime, AND each having their own component state? Most frameworks I&#x27;ve tried support one or the other, but not both. Is there an example that demonstrates something like this in FastHTML - user provides a number n at runtime, n cards are generated, each card has its own text field which can be modified by the user without affecting the other cards&#x27; text fields.
评论 #41106345 未加载
jll2910 months ago
While the design of it violates the separation of concern principle (keep data and code separate), I have to say this is most impressive, thanks for writing and sharing it.<p>I have always been reluctant to accept any boilerplate code (esp. such that one cannot fully understand) in my codebase, and this does not have ANY! All the sample code looks absolutely beautiful, so I will give this a try for my next Web app projects.
评论 #41106063 未加载
durraniu10 months ago
This looks really cool. I have experience with shiny apps in R, and Python has a shiny package too now. FastHTML looks a lot like Python shiny without routes. I think both of these frameworks are great for people with no web dev experience. It would be great if there is some discussion of htmx and why it is used in the tutorials section of FastHTML docs.
评论 #41105968 未加载
BerislavLopac10 months ago
I&#x27;m personally always confused with those batteries-included frameworks like Django, FastAPI and similar. Sure, they might be easier for a beginner to quickly whip up a simple Web site&#x2F;app, but in my experience as your requirements grow they quickly start getting in your way.<p>Starting with more flexible initial components (e.g. Starlette) and adding batteries (SQLAlchemy, Jinja2, HTMX...) as needed allows for a sensible evolutionary approach and prevents painting yourself into a corner with early decisions.
评论 #41106998 未加载
评论 #41112449 未加载
评论 #41113596 未加载
jeanlucas10 months ago
Hey, just looking this quickly, the ideal case are for python developers that don&#x27;t use Flask or Django? I&#x27;m a web developer for just 10 years, and I like seeing HTMX being applied, but I don&#x27;t see why I should consider adopt it.<p>Maybe I&#x27;m not the ideal user, but would like to know from you who do you think this is for.
评论 #41105327 未加载
skeledrew10 months ago
This looks really nice. I&#x27;m just wondering how it would combine with Pyscript, which I&#x27;ve been watching for a good while now. As a primarily Python user wanting to do some web dev, I&#x27;d rather not touch JS&#x2F;TS at all, beyond importing 3p packages.
评论 #41105983 未加载
darkteflon10 months ago
Oh my goodness. I like to keep things boring where possible and swore I would never stray from Django + HTMX + Django Ninja, but I am exceedingly tempted to use this in an upcoming project. Lovely architectural choices - bravo!
评论 #41105848 未加载
jaehong74710 months ago
FastHTML is an impressive and innovative idea. It seems like a web development tool similar to Streamlit, but with more precise control.<p>FastHTML&#x27;s concept led me to consider a feature that allows direct deployment of PyQt code as web services, even without HTML knowledge, like &quot;PyQtWeb.&quot;<p>PyQtWeb &gt; FastHTML &gt; [Streamlit, Gradio]
ptero10 months ago
Thank you! I&#x27;m another engineer who uses python (and C, Matlab and a few others) and whenever I want a web app I end up with some Rube Goldberg style contraption. Looking forward to trying your software.
harel10 months ago
First, I welcome any project that enriches a software ecosystem, and this project no doubt does just that. However, I have two points which will deter me from using this (or any python-&gt;html&#x2F;js framework) in a commercial production project:<p>1. It silos front end development in Python world. It might be great if your entire team are and always will be Python devs, but what happens when you want dedicated from end developers? What happens when you need to deviate out of what the framework gives you in a front-end context? What happens when you need to eject from &quot;python&quot; into a dedicated front end environment? All your front end code is now written in Python. Worst, you now might even have JavaScript code embedded inside Python code. I keep hearing &quot;CoffeeScript&quot; in the back of my mind...<p>2. Any python project using FastAPI (which is fantastic), flask, etc. and is growing in scope, will ultimately build Django. For example, FastAPI (which is great), has SqlModel (which is awesome) which makes SqlAlchemy less sucky and more like Django. Start to factor in all the other batteries we got used to getting with Django, and it starts adding up. If the project is smallish in scope and well defined to know it will stay such, sure it&#x27;s a valid and excellent choice. The same applies here - unless batteries are included, or this is (as suggested in a comment) available as a Django app, you&#x27;ll end up building Django.
评论 #41105457 未加载
评论 #41105661 未加载
评论 #41108210 未加载
评论 #41110004 未加载
vikaspooddar00110 months ago
Hey fastHTML team, congratulations on first public release of fastHTML. I just want to point out fastHTML, fastAI and fastAPI can bering together to form a python stack for training, deploying ml application python native fashion. The stack will known as faststack
pokipoke10 months ago
I haven&#x27;t seen such bad Python code (fasthtml repo) for a long time. It feels like its written in 2008 using Python2
评论 #41108827 未加载
评论 #41107918 未加载
openrisk10 months ago
What would be cool++ (and potentially very impactful) is if somebody builds a python&#x2F;htmx native &quot;wordpress&quot; on top of this. The Python ecosystem offers django&#x2F;wagtail and some other CMS like options but imho they have not (yet?) taped into the vast potential of the Python ecosystem once the algorithmic &#x2F; data science part is natively integrated with cms type web apps.<p>The .ml domain extension may be exactly the placeholder needed :-)
评论 #41115760 未加载
bartron10 months ago
I have been looking for something like this for a while and am very excited to see this project.<p>I am currently settled on [ludic](<a href="https:&#x2F;&#x2F;getludic.dev" rel="nofollow">https:&#x2F;&#x2F;getludic.dev</a>) which is very similar to my eyes and has been discussed here [1]. The developer is responsive and the repo has a comparable number of stars to FastHTML on github.<p>Ludic&#x27;s big feature is type-guided-components[2] that allow compile time checking of the compatibility of components forming a structure---and autocomplete while writing. So for example the component `WithSideBar` from the catalog[3] needs to contain a `SideBar` component and a list oof other child components. It seems elegantly put together too.<p>Looking forward to trying out FastHTML.<p>[1] <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=39776199">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=39776199</a> [2] <a href="https:&#x2F;&#x2F;getludic.dev&#x2F;docs&#x2F;components" rel="nofollow">https:&#x2F;&#x2F;getludic.dev&#x2F;docs&#x2F;components</a> [3] <a href="https:&#x2F;&#x2F;getludic.dev&#x2F;catalog&#x2F;layouts#sidebar" rel="nofollow">https:&#x2F;&#x2F;getludic.dev&#x2F;catalog&#x2F;layouts#sidebar</a>
pietz10 months ago
This looks cool and I will check it out but I&#x27;m also quite happy with my tech stack.<p>I started to couple my FastAPI backend with native Jinja2 templates and noticed that I hate Jinja2 with passion (no disrespect). I tried HTPY which seemed great but this Python abstraction of HTML just felt weird and I found myself converting HTML to HTPY all the time. I even created a GPT for it. Then I found JinjaX and noticed that this hits the nail on the head for me. It&#x27;s a Jinja2 preprocessor that allows the usage of components instead of the weird extends and macro syntax.<p>I&#x27;m happy to look at FastHTML but I&#x27;m not sure what type of benefit I can expect.
评论 #41118622 未加载
pzo10 months ago
Look very nice, I love simplicity. Wondering how it would scale in real life - game of pi example feels slow.<p>Is it possible to mix it with gradio? E.g. Make most of layout and UI in fastHTML but reuse some complex high level components from gradio?
评论 #41106285 未加载
amai10 months ago
What is the advantage over e.g. <a href="https:&#x2F;&#x2F;streamlit.io&#x2F;" rel="nofollow">https:&#x2F;&#x2F;streamlit.io&#x2F;</a> ?
评论 #41109681 未加载
giancarlostoro10 months ago
One thing I&#x27;m dying to see is a Python template engine that builds to WASM. This is the killer feature of C# for me right now. Blazor removes any need for me to ever touch React or JavaScript ever again. I think if done as a stand alone template engine, then every web framework could benefit from it, including this one.<p>I just might have to research.
评论 #41109104 未加载
ostwilkens10 months ago
&quot;What&#x27;s the FastAPI of frontend?&quot; - A tweet I wrote 2022 I&#x27;ll give this a go for my next project!
vaylian10 months ago
This looks really impressive. What is the idiomatic way to test webapps created with FastHTML?
评论 #41106608 未加载
CodeCompost10 months ago
Sorry, but I <i>hate</i> server-side &quot;helper&quot; functions that generate HTML. For one thing it&#x27;s never the same as what eventually gets shown on the page. 99.9% of the time you&#x27;re missing attributes when needs to be hacked around. Debugging is a nightmare. Refactoring is hell. And css programmers have no clue what to do with this.<p>Maybe I&#x27;m missing something here. Why not a templating engine?
评论 #41106273 未加载
评论 #41106734 未加载
评论 #41109668 未加载
DonnyV10 months ago
Python isn&#x27;t really known for its speed. The syntax seems like a nightmare. Very magic syntax like Ruby on Rails. I feel bad for the person that will need to maintain this in 5 years when its grown to large.
throwaway8658610 months ago
Did you try Reflex.dev? Any opinions on it?
评论 #41106003 未加载
EternalFury10 months ago
Python is fast compared to something? Maybe fast enough to generate HTML.
评论 #41106250 未加载
评论 #41106718 未加载
评论 #41106186 未加载
评论 #41106398 未加载
评论 #41107237 未加载
langcss10 months ago
Are there any UI libraries developed for this? Or other ecosystem stuff.
评论 #41106302 未加载
hopfenspergerj10 months ago
I&#x27;m looking at the very first example, and I&#x27;m a little confused. The function `home()` displays a list of messages, but they aren&#x27;t passed into `home()`. Instead, `messages` is basically a global variable, and some other functions can append messages to it. Then I went looking at some more examples, and I see this pattern repeated. Is this how you&#x27;re supposed to build webapps with this package? How does it isolate the list of messages for different users?
评论 #41105851 未加载
looop10110 months ago
Not a very good &quot;ad&quot; as your page is quite slow and skips many frames, especially when scrolling past &quot;The fastest way to create a real web application.&quot;<p>&quot;Fast&quot;
评论 #41105989 未加载
ammar_x10 months ago
Hi Jeremy, congratulations for the launch.<p>How does this compare to Dash?<p>I&#x27;ve used Dash for many applications, so I&#x27;m wondering what are the advantages of FastHTML?
6510 months ago
I looked through the examples and man is the code ever unreadable to me. If you&#x27;re using HTMX why not just use Flask or Django and use much easier to read templating engines?<p>I always found trying to read function calls as markup to get unwieldy. Realistically people are most likely going to either be using Python with traditional templating engines or Python as an API with a JS framework on top.<p>Good luck to this project, perhaps it isn&#x27;t for me.
2wrist10 months ago
It&#x27;s you!<p>Just wanted to say, nice job, love how much work has gone in to this and especially the site&#x2F;docs to help people get going.
anoojb10 months ago
Thank you for building this :-)<p>Can you address the longevity question? Do you think you and&#x2F;or other highly motivated&#x2F;enthusiastic folks could be maintaining this project for the long-term?<p>Or should we only be building projects on top of this framework with a 2-3 year time-frame?
smrt10 months ago
Jeremy, this is awesome. I hope this catches on
hum3hum310 months ago
I have used and liked FastHTML although I was going in a different direction (not very modern and no javascript) <a href="https:&#x2F;&#x2F;github.com&#x2F;drummonds&#x2F;lofigui">https:&#x2F;&#x2F;github.com&#x2F;drummonds&#x2F;lofigui</a>. It works well.
nurbl10 months ago
Looks neat! It seems at least superficially similar to <a href="https:&#x2F;&#x2F;github.com&#x2F;getludic&#x2F;ludic">https:&#x2F;&#x2F;github.com&#x2F;getludic&#x2F;ludic</a> which I quite like too.
Art968110 months ago
I love everything about this. I have been using HTMX heavily for a side project and glad to see it used in this project. Is fast.ai hiring? I would love to make contributions to their mission.
iamcreasy10 months ago
This looks very interesting.<p>Is it possible to inject custom JS wherever I want in the app? Also, is the generate html&#x2F;css&#x2F;javascript readable as the application scale up?
evanhughes10 months ago
I&#x27;m so going to use this for my next project
OutOfHere10 months ago
GitHub link to project: <a href="https:&#x2F;&#x2F;github.com&#x2F;AnswerDotAI&#x2F;fasthtml">https:&#x2F;&#x2F;github.com&#x2F;AnswerDotAI&#x2F;fasthtml</a>
bruce34343410 months ago
Whoah, this comment section is surreal. People really aren&#x27;t bothered by the propensity for runtime errors in python? How slow it is? That it has no good features for managing complexity in large codebasea? The fact that abstractions like these pretty much always break, or at some point you want to do something more outside of the box, and you have to put in a monumental effort?<p>I&#x27;m working on a Django+graphQL app and I&#x27;m basically considering buying a farm at this point. Python is really not the right language.
评论 #41106854 未加载
评论 #41107225 未加载
评论 #41107816 未加载
评论 #41106953 未加载
评论 #41106937 未加载
评论 #41106869 未加载
评论 #41107215 未加载
crimsoneer10 months ago
Honestly, Jeremy and the Fast.ai team really deserve some kind of award&#x2F;medal of honour&#x2F;general sainthood at this point.
ultrasounder10 months ago
Came here to post this but HN hivemind beat me to it. Can&#x27;t stress this enough. This Coupled with generative AI for code generation will make the barrier to entry sure low. Time to migrate my bootstrapped Flask&#x2F;JINJA2 templates website(www.voxtodo.com) to this shiny new.
rekabis10 months ago
Will there be a FastHTML.NET, using C# and F# instead of Python?
Nathanael_M10 months ago
Weirdly topical. Currently investigating Django as a backend for product redevelopment. I&#x27;d like to avoid a fully separate frontend app, because frankly it&#x27;s overkill. I was thinking of HTMX, Alpine, and cobbling together some component-esque template organization. I&#x27;ll check this out!
leke10 months ago
This looks like a lot of fun, but I wouldn&#x27;t probably have any need for it. I currently find an AI prompt in the code editor, along with AI code completion, a fantastic way to rapidly code. Mixing Latte template files with a minimal framework like Flight PHP, and HTMX makes me just as productive. I guess python devs would be more appreciative though.
09879910 months ago
Yikes. I&#x27;m going to follow this one cause it&#x27;s right up my alley, but I&#x27;m worried I will absolutely hate the process if some standards don&#x27;t change, e.g. having to have multiple functions called &quot;get()&quot; for them to be a GET request is going to drive mypy&#x2F;flake8 mad.
评论 #41107073 未加载
bapetel10 months ago
Python to Python HTML to HTML JS to JS CSS to CSS<p>That&#x27;s it, no more complexity
ironfootnz10 months ago
I think this is a very useful framework to write about on Wikipedia on how not to use HTML in your python code. There&#x27;s a canonical reason on why we shouldn&#x27;t.<p>Readability, reusability ... the list goes on.
评论 #41106154 未加载
wodenokoto10 months ago
How does this compare to streamlit?
hyuuu10 months ago
does this integrate with django?
评论 #41105086 未加载
truth_seeker10 months ago
will it compatible with pypy now or in future to speed it up ?
nothrowaways10 months ago
Cool domain, fastHT.ML
sweca10 months ago
Fantastic design!
yashbindal10 months ago
This is so cool
lofaszvanitt10 months ago
This is the future, right after React.
Iacjr10 months ago
IS It work in termux?
kissgyorgy10 months ago
Frameworks like this are really next-gen, but I wish people would think in terms of the bigger Python ecosystem and not just their own framework. This is about the fifth web framework which are not compatible with each other: Streamlit, ReactPy, FastHTML, Dash, Shiny, etc..<p>I created a truly reusable Python component framework which is just a a string generation library and can be used for ANY existing Python web framework and even more: HTML, XML, RSS, SVG generation, even robots.txt generation as a silly example. I use it with Django and HTMX but it doesn&#x27;t have an opinion about anything how should you use it. If you pass a Component to Django HttpResponse instead of a string or template, it just works.<p>I guess I should just write some documentation and release it before the 6th one of these appears :) so we ALL can collaborate with the same API on a bunch of Component sets like Twitter Bootstrap or Material components!<p><a href="https:&#x2F;&#x2F;github.com&#x2F;kissgyorgy&#x2F;compone">https:&#x2F;&#x2F;github.com&#x2F;kissgyorgy&#x2F;compone</a>
评论 #41106541 未加载
评论 #41106286 未加载
评论 #41108559 未加载
评论 #41107951 未加载
评论 #41108321 未加载
评论 #41109632 未加载
评论 #41108627 未加载
评论 #41108537 未加载
评论 #41107683 未加载
评论 #41107794 未加载
评论 #41109982 未加载
fraugdib10 months ago
Dude - Fastmail was the shit back in the day
MemphisTrain10 months ago
I have no interest on magical sugary functions that make something quick. The modern reactive concept doesn&#x27;t impress me. What I want is a very well thought-out set of tools that allow me to do anything and everything, because I will be refactoring and fine-tuning my functions a lot, and I will do it my own way, I don&#x27;t need some automatic shortcut which is not going to help me if I can&#x27;t modify its full functionality. (I don&#x27;t mind decorators if they make sense)<p>I want to see how I can manually wire and create anything I want, is what I&#x27;m saying and this demo felt like it capitalized on how fast you can do very simple functionality with a couple of functions, which was a let down.<p>I want to see how I can route (GET&#x2F;POST), create a database schema, use the database, use CSS (this is very important) yet what I saw was a simple calls to some database store, and no CSS examples. And &quot;a single python file&quot; sounds unrealistic since anything complex enough is going to be split into a series of files. Maybe I&#x27;m not the target audience.<p>I felt very comfortable using Flask recently because it allowed me to do anything I needed.<p>I do like the idea of building and manipulating HTML elements through python, so hopefully something good comes out of this.
评论 #41109988 未加载
bbminner10 months ago
I have been reading about these kinds of projects for some time, and even prototyped my own a while back, but one question that keeps popping up is - all these python abstractions over how html and js and dom interact tend to be extremely leaky. So, as soon as you go beyond the simple todo example, you need to manage BOTH the standard browser model and the abstraction model in your head, and all the funny ways in which they interact. Do these kinds of libraries prove useful for people beyond their authors (who have a good mental model of a framework in their head anyway because they are developing it)?
评论 #41110025 未加载
评论 #41109984 未加载
rasmus161010 months ago
We have 75 comments and no one has mentioned the awesome domain name? c&#x27;mon :D<p>really excited for this project. I hope it catches on. It has some really nice ideas in it, like all the stuff jeremy does!
评论 #41106819 未加载
评论 #41107080 未加载
评论 #41115389 未加载
评论 #41110011 未加载
tiffanyh10 months ago
<p><pre><code> &lt;!doctype html&gt; &lt;&#x2F;!doctype&gt; </code></pre> OT: is there a reason to open&#x2F;close the DocType at the beginning of the homepage source?
评论 #41109281 未加载
评论 #41109996 未加载
cynicalsecurity10 months ago
People do all kinds of crazy useless things just in order not to do it the proper way in PHP.
评论 #41108144 未加载
评论 #41109809 未加载
评论 #41108365 未加载
评论 #41110028 未加载
jwmoz10 months ago
This is not the way to do html with python.
评论 #41107652 未加载
评论 #41106463 未加载