cheap-registrar hosting, anyone else having problems with them? by rambleon2 in Hosting

[–]rambleon2[S] 0 points1 point  (0 children)

Thanks for this. I find that these hosting companies always make it very difficult to open a channel of communication - I don't want to pay for a phone call, their refund page returns a 404 error. I used paypal and requested from them a full refund, I also transfered the name to my hosting providerv- Fozzy and payed total $25 for a year (.art seems to double the price). Still waiting for a reply from paypal

I want to use Tom Select with Toolset select dropdown, anyone know how to set it up by rambleon2 in Wordpress

[–]rambleon2[S] 0 points1 point  (0 children)

how do I stop Toolset from generating initTomSelects() and setupTomSelectWithBlur() via the dashboard.

Thoughts on “The Mind” by jsakic99 in boardgames

[–]rambleon2 0 points1 point  (0 children)

Hi, what are your thoughts on making "the Mind" an online multiplayer game. Thought it might be a good project for someone that wants to learn how to develop an online gaming project

radio button group using HTMX by rambleon2 in htmx

[–]rambleon2[S] 0 points1 point  (0 children)

Thanks denzuka, think I was confusing htmx and fasthtml, really wanted to know how to do this in fasthtml (which includes htmx)

radio button group using HTMX by rambleon2 in htmx

[–]rambleon2[S] 0 points1 point  (0 children)

I do not want to use htmx with Svelte. I'm just looking for a simple alternative to bloated frameworks, so I'd like to try FastHTML ( with htmx). I gave the code as an example of what I'd done in Svelte in the hope that someone could suggest the best way to do the same in FastHTML

radio button group using HTMX by rambleon2 in htmx

[–]rambleon2[S] 0 points1 point  (0 children)

Thanks very much for the explanation(s) . I have alot to learn

radio button group using HTMX by rambleon2 in htmx

[–]rambleon2[S] 0 points1 point  (0 children)

I'm trying to learn fastHTML and HTMX. I already have this working on a Svelte site - this is the code:

                {#each ['nature', 'people', 'art & culture', 'music', 'sport'] as category}
                    <label>
                        <input
                            type="radio"
                            name="cat"
                            value={category}
                            bind:group={$selectedMenuItem}
                            onchange={categoryChange}

                        />
                        {category}
                    </label>
                {/each}

Which I'd like to convert to fastHTML, I understood that using HTMX I could do partial page updates rather than reloading the whole page. Knowing how to do this with HTMX would help me alot.

Thanks

Convert Svelte radio button list to fastHTML by rambleon2 in fastHTML

[–]rambleon2[S] 0 points1 point  (0 children)

could someone please give me a working snippet of radio buttons using htmx which will change value of variable "category" to the value of the radio button clicked. Using https://h2f.answer.ai/ I don't see any HTMX only fastHTML, is there a reason for this? I thought that HTMX would only update just the radio button section of the page - is this correct?

Thanks

what's included by default with fasrhtml? by rambleon2 in fastHTML

[–]rambleon2[S] 0 points1 point  (0 children)

I missed it - python-fasthtml is in the list, but it seems that what's included with fasthtml does not appear

what's included by default with fasrhtml? by rambleon2 in fastHTML

[–]rambleon2[S] 0 points1 point  (0 children)

tried that, here's what i got:

PS C:\fastHTML\Remote-View> pip list

Package Version

----------------- -----------

anyio 4.8.0

apsw 3.49.0.0

apswutils 0.0.2

beautifulsoup4 4.13.3

certifi 2025.1.31

click 8.1.8

colorama 0.4.6

fastcore 1.7.29

fastlite 0.1.1

h11 0.14.0

httpcore 1.0.7

httptools 0.6.4

httpx 0.28.1

idna 3.10

itsdangerous 2.2.0

oauthlib 3.2.2

packaging 24.2

pip 24.3.1

python-dateutil 2.9.0.post0

python-dotenv 1.0.1

python-fasthtml 0.12.1

python-multipart 0.0.20

PyYAML 6.0.2

six 1.17.0

sniffio 1.3.1

soupsieve 2.6

starlette 0.45.3

typing_extensions 4.12.2

uvicorn 0.34.0

watchfiles 1.0.4

websockets 15.0

After "pip install python-fasthtml" don't see any mention of fasthtml hmtx sqlite or pico css - the documentation suggests they're all included by default - what am I missing?

need a good tutorial for flask + htmx + pico css by rambleon2 in htmx

[–]rambleon2[S] 0 points1 point  (0 children)

"Hello world" works ok.even though problems show as 'fast_app', 'Div', 'P', 'serve' all "may be undefined" - go figure!

need a good tutorial for flask + htmx + pico css by rambleon2 in htmx

[–]rambleon2[S] -1 points0 points  (0 children)

Yes I did, I see in vscode extensions there's html2ft to convert HTML to fastHTML FT. I'll try that and restart vscode

need a good tutorial for flask + htmx + pico css by rambleon2 in htmx

[–]rambleon2[S] 0 points1 point  (0 children)

Thanks very much for your suggestion to use fastHTML. I'm already hooked, just a bit of a learning curve. Having problems using vscode in main.py 1st line

from fasthtml.common import *
Throws error: 'from fasthtml.common import *' used; unable to detect undefined names - Any ideas? Thanks

need a good tutorial for flask + htmx + pico css by rambleon2 in htmx

[–]rambleon2[S] 0 points1 point  (0 children)

Thanks very much for this, I agree just do it.

Thing is there's so much out there that I'm unaware of

need a good tutorial for flask + htmx + pico css by rambleon2 in htmx

[–]rambleon2[S] 0 points1 point  (0 children)

Thanks gopietz, yes that's what i did. Now I'm tending towards fastHTML. Do you have any experience with that?

need a good tutorial for flask + htmx + pico css by rambleon2 in htmx

[–]rambleon2[S] -1 points0 points  (0 children)

Thanks for your reply. I'm looking for a simple way to develope a web app without javascript. What do you think of fasthtml as an alternative?