A highly compatible design with no ads, unnecessary images, videos, animations, scripts that goes straight to point delivering you exactly the information you need and nothing else? Something that’s easily accessible even with old feature phones allowing older people to get information easily?
Simply something that loads instantly and just works?Who would want that?
Found the backend dev. “CUT THIS AESTHETICS NONSENSE! GIMME THE VARIABLE CONTENTS ALREADY! WE’RE 3.54 NANOSECONDS BEHIND!”
Frontend: “Come on, this needs at least some flair. This isn’t the 90s.”
Throws React at it
React ugh, everybody is using NextJs these da- …oh, what’s that? We’ve moved on already?
yeah, just css is enough.
you don’t need js unless you need to fetch data dynamically.
you can do all of your animations, dropdowns and transitions in css.
like this menu i made. no js in sight.also fully accessible and you can tab right into it without clicking enter or whatever
(and respects prefers-reduced-motion)
deleted by creator
basic responsiveness to support most devices
Dude, that is the mother of responiveness. It literally supports all the devices.
Entirely true.
I’m currently working on a little project that’s interesting to me (a low-spoiler walkthrough system for adventure games) and after a lot of back and forth, I decided to cut all of JS out of the picture. Just get rid of all of it, and do good old 90s server-side rendered HTML with modern CSS placed on top of it.
And that’s, honestly, a joy. The first draft of a page looks like the first screenshot, then you add some semantic classes to the html and throw some simple CSS at it and it looks acceptably neat. And I could get rid of so much janky toolchain I just fail to understand.
what is wrong with this frontend? not enough ads? loads too quickly?
No cookie banner with the worst dark patterns of UX imaginable
No designated time zone.
Honestly, no units
It’s the temperature in Paris so I assume it’s Celsius.
I would hire you as my lawyer.
just missing some flexbox basically
love me some flexbox
The page at the top looks perfectly fine. It’s useful, it gets the job done and it’s lightweight.
almost as good as the motherfucking website. :D
I like the better motherfucking website
You sound like a backend developer.
Good, that we have specialists for both and nobody is advocating that everyone should be doing full-stack work… oh wait.
As a full stack developer I can assure you I can easily produce the result displayed in both those panels in the image 😏
Full-stack development and devops: When you need an entire IT department but only want to pay for one person.
“Full-stack” is just a term invented by stingy employers who try to get 2 for the price of 1
The top one’s a motherfucking website, indeed.
RIP txti.es
What happened with it?
As far as I understand, they were offering free hosting and bad actors took advantage. They didn’t want to start charging so they closed down. Like giving out candies on Halloween and one asshole takes the whole bowl. No candies for you kid, sorry.
As a backend developer who occasionally has to work on the frontend, that top image is pretty accurate although it requires bootstrap smeared all over to pretty things up a bit. After that it will have the “Good Enough” seal of approval.
I do front and backend work. Biggest issue I see is people not thinking through interfaces properly (e.g. efficiencies & atomicity of operations), sanitizing inputs on both sides, error handling, and putting in the appropriate validation, authorization & testing.
A proper backend developer would have the query be a URL using the GET method with a parameter that the user can fill-in directly in the address bar and the result be a text/plain page with just a bunch of numbers separated by pipe characters (or an application/json page with that info encoded as JSON if you wanna be fancy).
This has the added advantage of working both for humans and as an API for use in machine to machine communications via HTTP.
From my experience, devs be like:
Backend, yay! Frontend, nay! … and I the end, not even the backend works properly.
So in the end, it doesn’t even matter?
I TRIED. SO. HARD.
As a full stack dev I’d like to say that the issue I see most from backend devs isn’t a lack of styling, it’s their need to wrap every element in 15 motherfucking divs. They don’t seem to understand that most html elements are self contained and can stand on their own.
What if I want the weather in Paris, TX?
You need to fire a gun and to a really good bald eagle impression.
The frontend developer made the backend so inefficient that it runs out of memory
God I wish weather pages were more like that first one.
I like to use this one: https://wttr.in/
You can get info for a specific city by appending it like this: https://wttr.in/newyork
It seems to be down right now, but if i remember correctly this one also works when you are using a terminal and curl, i.E.
curl wttr.in/newyork
Edit: It works again, you can use the command as written above :D
Nice thanks.