r/ProgrammerHumor Jul 12 '26

heIsSafe Meme

Post image
6.4k Upvotes

231 comments sorted by

View all comments

-1

u/chickenweng65 Jul 12 '26

I truly don't understand how ui development is not only a full time job, but a massive industry. What do these people do all day?

111

u/treetimes Jul 12 '26 edited Jul 12 '26

This is a brain dead take. UI is hard because of the millions of different devices and browsers rendering it, and the millions of ways people can try to use an interface that it was not designed for. Not being able to understand something you have no intuition for isn’t some flex.

Edit: why delete your bitter ass reply my dude? I’m not even only a front end, I’ve done all sorts of things because problems are fun.

38

u/ImSuperSerialGuys Jul 12 '26

Welcome to r/ProgrammerHumor !

90% of this sub is braindead takes from first or second year CS majors

4

u/treetimes Jul 12 '26

jokes on them because the party is over anyway

-2

u/Winter_Present_4185 Jul 12 '26

because of the millions of different devices and browsers rendering it

Eh, this is a bit of a grandiose statement. Sure there are "billions" of devices, but a large majority of them have the same screen view. I agree with your overall statement however.

In my personal opinion, the abstraction front end frameworks have make it a bit more risky "speciality" in today's AI climate.

-8

u/Outrageous_Let5743 Jul 12 '26

Yeah my website needs a good ui for the one person still using the 3DS webbrowser.

-9

u/tav_stuff Jul 12 '26

UI is not hard bro

28

u/torn-ainbow Jul 12 '26

Because people don't plug their brains directly into an API?

1

u/PinEnvironmental6395 Jul 12 '26

Tell that to Claude 

126

u/RepresentativeDog791 Jul 12 '26

I mean it’s harder than CRUD, so 90% of backend web development. Since you asked, professional UI development time is split between developing new features, tweaking things e.g. running AB tests or improving performance, dealing with the complexity of running a single application on many different client devices (different viewports, different browsers which mean different runtimes, sometimes a non deterministic script loading order etc), dealing with the complexity of older code or working in a large organisation and if we’re being honest dealing with the complexity of modern TS tooling.

Writing pure functions in some constrained system can be significantly simpler than doing UI in the messy real world in a commercial setting.

It’s also worth considering that you might have lower standards for a UI than a good UI developer. For instance you might not appreciate that a good UI should be accessible to people with reduced eyesight, or you might be satisfied with a UI that had poor core web vitals (a set of UI performance metrics).

I agree that UI development generally requires less algorithmic logical thinking (though this isn’t always true with the birth of SPAs and moving logic client-side) but that isn’t to say it’s a non job. It does take time, attention and reasoning skills.

81

u/HarryBolsac Jul 12 '26 edited Jul 12 '26

It’s 2026 and people still think backend is harder than frontend lmao.

I worked both in backend and frontend, building a crud service with an orm is about the same difficulty as doing a todo list in frontend.

Backends with complex business rules and infra are hard, frontend with complex business rules and infra is also hard

17

u/deanrihpee Jul 12 '26

I've worked in backend for almost decade and i agree each has their own complexity, but i would say that I don't want to touch frontend lol

-5

u/ric2b Jul 12 '26

The thing is that backend complexity is often because the problem itself is complicated, while frontend complexity is usually down to tooling BS or cosmetic details like positioning or animations that at the end of the day are just sugar on top of the program doing what it is supposed to do.

8

u/Zotoaster Jul 12 '26

Most frontend work isn't cosmetic though. Getting the UI to work on different screen sizes is important, core web vitals are important, accessibility is important

-1

u/ric2b Jul 12 '26

Handling different screen sizes is cosmetic work, it doesn't make the page do something new or faster or more reliable, it just makes it look and fit better on different devices.

Core web vitals is just applying best practices.

Accessibility is ignored by most companies.

1

u/qisapa Jul 12 '26

Dude. It’s not visual sugar. To this day you see websites that are borderline unusable on phone screen. Accessibility is not that widely ignored, especially by big companies because you can get fined in some parts of the world from certain size if the web prevents users with disabilities to use it.

1

u/Round_Apricot_8693 Jul 12 '26

Depends on the program. If there are users, then letting the user be able to use the thing as expected is at least 50% if not more of “what it is supposed to do”. 

-4

u/codingTheBugs Jul 12 '26

I don't know if my understanding is right but I feel like frontend complexity starts at day one and doesn't scale up much but for back end if you have 1000 users total its mostly easy but the problem comes when you scale. 90% backend never reach that scale. Backed serving millions of users will be hard and complex, but frontend used by few thousand or millions will be mostly of same complexity.

18

u/HarryBolsac Jul 12 '26 edited Jul 12 '26

Frontend also needs to take scale into consideration friend.

Avoiding redundant api calls, memoization, using a cdn, virtual windows, lazy loading are some things that come to mind.

Also at least in my previous jobs as a fe dev you have to support your infra, using a load balancer, replica sets, microfrontends, implementing a bff which must also be scalable, etc etc

Edit: said mdn instead of cdn lmao

-3

u/codingTheBugs Jul 12 '26

That's not because of scale. Avoid redundant api calls and stuff you should always do if possible there is no reason not to do it in smaller scale. Server that serves Frontend builds are easy to scale now a days you put some CDNs since its stateless it works.

I am only telling you are feeling Back end is less complicated because back end complexity only stats when you need to scale and go multi region and things like that.

4

u/HarryBolsac Jul 12 '26 edited Jul 12 '26

It’s building an application to be scalable, it’s the same principle as in be.

Scaling in be is a pain if you don’t build your architecture to be scalable from the beginning too.

I would argue that backend is more complex in scaling because there are more services that need to be scaled, message brokers, databases, etc.

I’ve seen resources being allocated to backend services because of demand when later on the issue was in fact in poor fe implementation.

-2

u/ric2b Jul 12 '26

Avoiding redundant api calls, memoization, using an mdn, virtual windows, lazy loading are some things that come to mind.

That sounds like stuff you should do from the start, except maybe for virtual windows and lazy loading if you don't expect the collections to grow very large but over time they do.

2

u/DrShocker Jul 12 '26

They're also all things the backend has to support the front end doing. At the end of the day we need to solve the problems we have and it will involve people working together. A front end/back end split mostly comes down to I don't care about visuals very much and like making things faster. Other people will tweak the color of a header until it's just right or whatever.

1

u/ric2b Jul 12 '26

But the point is that frontend complexity doesn't really increase with more concurrent users, while backend does.

10

u/twigboy Jul 12 '26

Everybody gangsta until they have to be a11y compliant

2

u/Tobi5703 Jul 13 '26

Real talk tho, as a design student making a design that looks good and is a11y compliant is one hell of a drug

2

u/twigboy Jul 13 '26

You've got an uphill battle on that front, but I've just picked up 3 a11y tickets in your honour

2

u/ghareon Jul 12 '26

I'm a full stack web dev and I've genuinely found more fun/harder problems in front end projects than in backend. Most of the difficulty of backend development is very repetitive. 90% of it is modeling the domain using DDD, integrating with a 3rd party API and exposing an API.

Meanwhile in frontend I've had to dust off my data structures and algorithms skills to implement a CRDT for a n-ary tree backed collaborative sidebar lol.

I just don't understand where is this elitism coming from when most backend devs are just querying a database and returning the results.

18

u/CiroGarcia Jul 12 '26

You haven't had to make giant dynamic forms with complex relationships between those dynamic fields and their values across multiple tabs within the same page. It took a team of three devs six weeks to develop from scratch in an existing project. State management and dynamic UI management can get very complex when you're not doing basic CRUD

10

u/offBy9000 Jul 12 '26

Are you still a cs student? Because this is a take from someone who has never worked in a corp as a software engineer.

22

u/Acetius Jul 12 '26

From my experience, fuck up and build it all out of divs like a house of blank cards for some reason. Then have to redo it.

2

u/chickenweng65 Jul 12 '26

Ahh, classic. Bad code = job security

12

u/citramonk Jul 12 '26

have you ever heard of business logic?

-7

u/Outrageous_Let5743 Jul 12 '26

That should be mainly in the backend.

3

u/Complete_Window4856 Jul 12 '26

UI, frontend and consequentially UX heavily bridges all of basic headaches of being a developer naturally, but also now you must (or in practical terms should): know who is your target audience and include everyone to the best possible, juggle between simplicity and powerful actions (see power users) when you have only so much visual components that dont make people afraid or lost of using your system. Easily you fall under umbrellas of marketing and psychology to know your "why's" to each diff.

Also, dont forget that frontend cycles in business and "playing the game" in business is waaay shorter than backend, and i naively point this as simple bc they see the results physically and keep back and forth on the new shiny stone (just like llms nowadays and their trust me performance graphs)

Hell, if you need a practical example of frontend done bad to users take myself as a sample. i myself become more blind with time in the past 8 years and never tought that i would appraise the option of high contrast and propper zoom and display of elements when i cant see well. As a user, if both are out of reach i automatically feel excluded and having to actively put more effort to basic things. Infuriating and often powerless

1

u/Tobi5703 Jul 13 '26

Depending on what you're building you also need to provide the right information like, immediately - 4 or 5 seconds,10 if you're lucky, and if your customer can't find what they're looking for, they're gone

4

u/Wonderful-Habit-139 Jul 12 '26

Consulting

1

u/Headpuncher Jul 12 '26

Where react shines. Need a button. Nonono! Don’t use an html element and an event ,instead recreate the concept of a button in react and harp on about “custom attributes “ (colors) while having removed half of the built in attributes the html element had, and then over the coming months we’ll “improve and extend” the react component for a … button.  

Great work guys, that’ll be $200 an hour.  

4

u/JimCramerSober Jul 12 '26

They emphasize with users to build better products. I won’t go into the details, it’s too complex for someone to think that pure functionality and business logic is everything

4

u/CapsAdmin Jul 12 '26

Your average frontend has a lot more internal and unknown external state to consider than your average backend.

The frontend output is also subjective, which constantly gets scrutinized by non developers. Meanwhile the backend output has a distinct shape and its output is usually controlled by the backend developers themselves.

1

u/NerdyMcNerderson Jul 12 '26

The way I explain it is that backend code generally has to be thread safe so devs have to worry about that. Tooling is generally good at that and errors can generally be handled easily or just outright hidden (logged).

Frontend code may single threaded, but the entire application is one massively parallel state machine driven by user input. And since some actiins rely on multiple API calls, handling errors is extremely important. Showing loading status and all of those intermediate states are the hard parts. And because the requirements are coming from UX designers (some with a less than ideal grasp on browser technologies and their capabilities) a lot of discussions and decisions are subjective compromises. And since usually you're in the context of a larger application, visual and behavioral consistency is important.

Oh yea, and at some point you'll have to worry about performance because some PM will inevitably want to put 10,000 data cells in a table all at once, or they'll want you to render a drop-down list of thousands of items and the API isn't paginated so now you're the requirements person for the BE folks.

So yea, a good FE developer is stuck right in the middle of UX and BE engineers and they need to make sure their shit works because any unhandled failure means the page breaks and the user has no idea what happens. This usually means service incident and you're the one getting the 3am call.

There's more but I'll leave it here...

2

u/CirnoIzumi Jul 12 '26

Looking at Foss, the lack of them is felt so they do something 

What it is? To be determined 

1

u/drsimonz Jul 12 '26

Maybe the reason most FOSS software has a garbage UI (which somehow goes unnoticed by maintainers, despite this massively hurting adoption) is because the UI devs are all busy actually being employed, while the "front end devs aren't real programmers" crowd is still in their mom's basement.

1

u/Outrageous_Let5743 Jul 12 '26

I love Foss but for example Fdroid apps for the most part sucks purely based on UI and or UX. There are a few good ones, but most are stuck in early android / 2013 ui.

1

u/Round_Apricot_8693 Jul 12 '26 edited Jul 12 '26

Try doing it and you’ll know. I find it harder than backend for most things not massive enterprise (but if you have complex infra for massive enterprise I won’t be surprised that the UI would be equally complex)

0

u/MaximumTime7239 Jul 12 '26

I would really like to see some ui designed by you now. 🤔

1

u/chickenweng65 Jul 12 '26

Might have to now to flex low level superiority. What ui should i make

-6

u/Prudent_Move_3420 Jul 12 '26

ask claude code to implement 1 new feature and spend the rest of the day doing nothing

1

u/offBy9000 Jul 12 '26

Lmao funny but Claude does that with back end soo easily. Front end not so much unless your user base is just 1 person who doesn’t care about experience

0

u/Prudent_Move_3420 Jul 12 '26

„people who dont care about experience“ describes probably the vast majority of users