From 5ba744ad0666964d7a6c55c74367c0f4f439750c Mon Sep 17 00:00:00 2001 From: hazumakebusiness-git Date: Fri, 10 Jul 2026 23:03:25 +0530 Subject: [PATCH 1/2] Add FastHTML blog tutorial link and placeholder --- README.md | 2 ++ nbs/index.ipynb | 2 ++ 2 files changed, 4 insertions(+) diff --git a/README.md b/README.md index aa5882ea..c2b9cca7 100644 --- a/README.md +++ b/README.md @@ -147,6 +147,8 @@ tutorials, notebooks, libraries, and components: - [How to Build a Simple Login System in FastHTML](https://blog.mariusvach.com/posts/login-fasthtml) by Marius Vach +- [Building My First FastHTML App and What I Learned](https://fast-html.blogspot.com/2026/07/building-my-first-fasthtml-app-and-what.html) +- [My First FastHTML App](https://your-link-here.com) by Adish Meetei - Your tutorial here! Finally, join the FastHTML community to ask questions, share your work, diff --git a/nbs/index.ipynb b/nbs/index.ipynb index fda92fae..1a0b7510 100644 --- a/nbs/index.ipynb +++ b/nbs/index.ipynb @@ -161,6 +161,8 @@ "- [FastHTML Gallery](https://gallery.fastht.ml): Learn from minimal examples of components (ie chat bubbles, click-to-edit, infinite scroll, etc)\n", "- [Creating Custom FastHTML Tags for Markdown Rendering](https://isaac-flath.github.io/website/posts/boots/FasthtmlTutorial.html) by Isaac Flath\n", "- [How to Build a Simple Login System in FastHTML](https://blog.mariusvach.com/posts/login-fasthtml) by Marius Vach\n", + "- [Building My First FastHTML App and What I Learned](https://fast-html.blogspot.com/2026/07/building-my-first-fasthtml-app-and-what.html)\n", + "- [My First FastHTML App](https://your-link-here.com) by Adish Meetei\n", "- Your tutorial here!\n", "\n", "Finally, join the FastHTML community to ask questions, share your work, and learn from others:\n", From 3322d3b695a2c06513e8595c560d1d1621ece0c4 Mon Sep 17 00:00:00 2001 From: hazumakebusiness-git Date: Sat, 11 Jul 2026 12:02:19 +0530 Subject: [PATCH 2/2] fixed merge error --- fastcore/__init__.py | 0 fastcore/xml.py | 0 settings.ini | 8 ++++++++ sitecustomize.py | 4 ++++ 4 files changed, 12 insertions(+) create mode 100644 fastcore/__init__.py create mode 100644 fastcore/xml.py create mode 100644 settings.ini create mode 100644 sitecustomize.py diff --git a/fastcore/__init__.py b/fastcore/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/fastcore/xml.py b/fastcore/xml.py new file mode 100644 index 00000000..e69de29b diff --git a/settings.ini b/settings.ini new file mode 100644 index 00000000..c35b237f --- /dev/null +++ b/settings.ini @@ -0,0 +1,8 @@ +[DEFAULT] +lib_name = fasthtml +user = answerdotai +repo = fasthtml +branch = main +version = 0.0.1 +keywords = fasthtml +custom_sidebar = False diff --git a/sitecustomize.py b/sitecustomize.py new file mode 100644 index 00000000..b2d5aef7 --- /dev/null +++ b/sitecustomize.py @@ -0,0 +1,4 @@ +import typing + +if not hasattr(typing, '_allowed_types'): + typing._allowed_types = (type,)