this post was submitted on 20 Nov 2024
15 points (94.1% liked)

Web Development

3443 readers
36 users here now

Welcome to the web development community! This is a place to post, discuss, get help about, etc. anything related to web development

What is web development?

Web development is the process of creating websites or web applications

Rules/Guidelines

Related Communities

Wormhole

Some webdev blogsNot sure what to post in here? Want some web development related things to read?

Heres a couple blogs that have web development related content

CreditsIcon base by Delapouite under CC BY 3.0 with modifications to add a gradient

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 15 hours ago (1 children)

As a security and DevOps engineer, HTMX has been such a pain in my butt lately.

Something are broken? -> Web devs blame WAF -> Me debugs and researches for hours when I has better stuff to do -> Finally me: WAF is fine. Is your broken JavaScript. Wut do? -> Web devs: Not know, write in HTMX, JS is abstracted, now we fix. -> 15 minutes later web devs: We fix! We do basic thing wrong! Now learn something new about HTMX. -> Me: Great. Thanks so much for that.

[–] Kissaki 1 points 11 hours ago* (last edited 11 hours ago) (1 children)

I didn't quite follow.

They're using htmx, make errors, and learning something new about using it?

That's like using any new tech though, right? Or - depending on the devs - happens even with established tech.

I've never seen htmx in production. I find it interesting though and want to explore using it. That won't be at work though. :)

[–] [email protected] 1 points 1 hour ago* (last edited 1 hour ago)

It's not HTMX (well kinda, see below). It's devs being like "These bugs aren't my fault until you prove they are."

And it's abstraction. I understand WHY we do it... I guess. I don't AGREE, and this is why. If you're playing with code that generates code that you don't understand and then can't debug... I've always preferred to write the code that's going to run. Don't give me APIs that interact with database, let me write SQL. Don't give me something with a "simple syntax" that behind the scenes generates a bunch of JavaScript doing who knows what that no one on the team understands (HTMX), it's gonna be easier on everybody to just write the JavaScript. The only reason the devs solved it was ChatGPT knew what they had missed... and I had to point them in that direction (I cut and pasted the errors into ChatGPT and then said "Guys, IDK what this means because I don't know anything about HTMX. Do YOU GUYS KNOW?")

I ended up spending hours of my life on some tech some hotshots wanted to use because it's the "new, sexy thing" and what I learned was "Oh, this is just abstracted syntax ontop of Ajax which is ALREADY abstracted syntax ontop of JavaScript." I find this annoying, not charming.