this post was submitted on 13 May 2025
297 points (98.7% liked)

Programmer Humor

23356 readers
1270 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 5 points 6 days ago* (last edited 6 days ago) (1 children)

i found it pretty good to work with after i mastered the classes

helps a lot on those big boring internal panel projects

saves you quite a lot of time and effort of writing all the stuff yourself.

[โ€“] [email protected] 2 points 6 days ago

I honestly just find the extra layers to make it harder for me to know what my code is doing. I'd rather set proper CSS margin-bottom than mb-1. Having to learn the Bootstrap way of doing things when I already know the traditional way mostly feels like a waste of my time. It's not, but it's hard to stay engaged when I can already do a thing in a more standardised way.

Kind of like a site I've been stripping the jQuery out of. You don't need that to show/hide a couple of form fields, FFS. Or the special JS library for doing pop overs. Come on, there's three fields on the entire website that use them, just use HTML5 popovers.

I imagine Bootstrap is probably more useful for stuff where more complex layouts are needed, or when a site needs to be more responsive to different browser shapes (as in desktop vs. various mobile form factors).