397
submitted 3 weeks ago by [email protected] to c/[email protected]
top 50 comments
sorted by: hot top controversial new old
[-] [email protected] 58 points 3 weeks ago
[-] [email protected] 45 points 3 weeks ago

I don't know how to React to this.

[-] [email protected] 21 points 3 weeks ago
[-] [email protected] 17 points 3 weeks ago

I think we all just need a different, Angular approach

[-] [email protected] 14 points 3 weeks ago* (last edited 3 weeks ago)
[-] [email protected] 4 points 3 weeks ago

You might say he was very svelte

[-] [email protected] 37 points 3 weeks ago

Made the mistake of using react for a mobile app and my god why is it this convoluted, why are the error messages always along the lines of "something went wrong with networking 🤷"

Unfortunately I'm stuck with it now

[-] [email protected] 15 points 3 weeks ago

react is better than the days when we jquery everything

[-] [email protected] 8 points 3 weeks ago

Am I the only one left writing pure JS webpages? I swear for the stuff I've done recently, adding React or even jQuery makes things 10x more complicated and bloated. The base JS support browsers have now is actually great. It's not like the old days trying to support every browser back to IE6

[-] [email protected] 3 points 3 weeks ago

When you are writing some complex web app, you will wish you used a framework. Some web apps can have more than 50 pages with multiple states that depend on remote data to be locally cached and synced depending if you are online/offline. Framework can handle a lot of the heavy state management for you and even provide a nice UI component library. But I do agree that React is too much, but jQuery is being replaced by vanilla JS. That is why I usually use Vue. But for simple stuff, yes, Vanilla JS is pretty much good enough

load more comments (2 replies)
load more comments (10 replies)
load more comments (6 replies)
[-] [email protected] 26 points 3 weeks ago
[-] [email protected] 17 points 3 weeks ago

You can write a stateless server. You can’t do stateless front-end since you have to deal with user interaction.

[-] [email protected] 2 points 3 weeks ago

I would not be so sure. Maybe for a static web page this is possible. Outside of that I think people are kidding themselves. Writing code that might be stateless in isolation but relies on a database isn't a stateless server imo, it's just outsourcing state to another service.

[-] [email protected] 8 points 3 weeks ago

With the SPA approach, you can have remarkably little state on the server because all the state associated with the user session lives on the frontend. The value of doing this obviously depends on the type application you're making, but it can be a sensible approach in some cases.

load more comments (14 replies)
[-] [email protected] 15 points 3 weeks ago

I didn't read the community name and wondered who tf thought the back end of a goose requires more attention than the front end

load more comments (1 replies)
[-] [email protected] 14 points 3 weeks ago

Often me. I make tools/interactions for learning management systems. So the back end is a thid party I have no controll over. Just take the api and make the magic happen.

You need me to save data somewhere but don't want to buy server space? Sure we can cram that into places it's not ment to go within the system. It will slow things down and likly cause issues but it's free.

[-] [email protected] 12 points 3 weeks ago* (last edited 3 weeks ago)

The proliferation of libraries that exist only to fix the problems introduced by making everything an SPA is hilarious. Everything in web tech from the last decade is basically “there was an old lady who swallowed a fly”*.

*see also Cloud and container DevOps

[-] [email protected] 6 points 3 weeks ago

I do think everything has its place. For example, you can do offline PWA with SPA since a page load doesn't need a call to the server for rendering it. It also saves processing time/bandwidth by offloading the server from the burden of rendering the page. Once the page has loaded, the web app only needs data, not markup nor style. And last is that it is great since it only requires a browser without needing to write native apps in myriad of languages. Distributing and installing it is also not limited by the Apple/Google tax.

For clouds, there are certain workflows that can surely benefit from it. Maintaining your own infrastructure 24/7 with minimal downtime can be overwhelming for SMALL teams, especially one man show. Even more so when the product/web apps suddenly blows in popularity and now need to scale. Even more so when it is being DDoSed. The point is, many things can go wrong. And when you are deploying it for 24/7 use, down times can be costly. Deploying to cloud early and then slowly building towards on-premise after the team gets bigger is a viable route IMHO

And last is container devops. I think it also solves a lot of problems in multi-tenancy or even when running multiple services. Not everyone will use the latest-and-greatest version of a shared library. If the library is somehow conflicting with other tenants/service, you will have a bad time. Also, developing inside a container or virtual env can make testing and messing around safer since you didn't affect your system installation.

load more comments (2 replies)
[-] [email protected] 12 points 3 weeks ago

That goose should be made mandatory in all customer meetings.

[-] [email protected] 11 points 3 weeks ago

Lol. I fucking hate websites that take up half the page with a navbar.

[-] [email protected] 6 points 3 weeks ago

Or a page that uses only half the screen width in the center. Just use the damn screen!

[-] [email protected] 3 points 3 weeks ago

Yes! Let the user resize the window if they want it take up half their screen!

[-] [email protected] 11 points 3 weeks ago

If that were true, you'd have more front end devs being able to do backend instead of the other way around.

[-] [email protected] 18 points 3 weeks ago

These are completely different types of skills. Front end is complex because there's an explosion of different states driven by how the user interacts with the UI. On the other hand, backend workflows tend to be a lot more structured. You get a request, do some processing, fetch some data, and return a response.

[-] [email protected] 6 points 3 weeks ago

From where I sit, it seems like frontend is closer to being a graphic designer than on backend.

[-] [email protected] 3 points 3 weeks ago

Then you haven't developed a non-trivial user interface before.

[-] [email protected] 5 points 3 weeks ago

I've made UIs, and at least one I'd say was complex, but it was also really ugly. What am I missing?

This wasn't a put-down, BTW. I couldn't be a graphic designer either.

[-] [email protected] 4 points 3 weeks ago

Making good UX is fucking hard. I say UX because making it good is really about the user’s experience, not graphic design. An ugly front end can be good if it’s intuitive and easy to use. But a visually gorgeous front end will still be garbage if it’s clunky and confusing.

It’s really something you have to experience to fully understand. Ultimately it comes down to this: front ends have to deal with people, backends only have to deal with computers. So backends can be cleanly organized and well structured. Applying backend design principles to a front end will get you a CRUD interface - something that’s usable but no one really wants to use.

load more comments (2 replies)
[-] [email protected] 3 points 3 weeks ago* (last edited 3 weeks ago)

How about UIs that are essentially web apps. I’m talking about needing to handle drag and drop, graphs and the like.

There is also the mess that is responsive design, multi browser support and proper accessibility.

[-] [email protected] 3 points 3 weeks ago

The complexity of dealing with different states a UI can be in. The user can navigate the interface of an app in many different ways. The US has to be able to handle all the different combinations of actions the users takes. This means maintaining a consistent state, loading data that's needed, keeping track of navigation, etc. The logic in an interface of an app like an email client is far more complex than most backend workflows.

load more comments (6 replies)
[-] [email protected] 5 points 3 weeks ago

Backend devs can do frontend?

[-] [email protected] 24 points 3 weeks ago* (last edited 3 weeks ago)
<!DOCTYPE html>
<html>
  <body>
    <p>Hello World</p>
  </body>
</html>

here i wrote you a frontend

[-] [email protected] 5 points 3 weeks ago* (last edited 3 weeks ago)

And yet it still works better than a MB of JS

load more comments (2 replies)
[-] [email protected] 10 points 3 weeks ago* (last edited 3 weeks ago)
[-] [email protected] 8 points 3 weeks ago

Yes. It'll look like a Geocities page, but yes.

[-] [email protected] 3 points 3 weeks ago

Pah, as if Geocities had the good taste to use courier new.

Also, more seriously, if all the client needs is a geocities page is it reasonable for a front end developer to build it in react?

[-] [email protected] 5 points 3 weeks ago* (last edited 3 weeks ago)

As a backend person, lol no. I mean I can make a thing that works, but it will require eye bleach afterwards, and I'll hate every moment of building it.

load more comments (3 replies)
[-] [email protected] 4 points 3 weeks ago

Frontend devs are the perps and victims at the same time.

Anti Commercial-AI license

[-] [email protected] 3 points 3 weeks ago

As an infra guy... What's backend in this context?

[-] [email protected] 3 points 3 weeks ago

Backend code, basically what is ran on the server and manages user requests, database interactions, etc.. Frontend is the user end, so managing input, displaying information from server requests, etc. and is in the form of an app or website page.

[-] [email protected] 3 points 3 weeks ago

As a network guy...open up your favorite web-managed application and open the developer console. Inspect the transactions you see and compare it to the applications REST API reference, and you'll likely find a lot of commonality (and maybe some undocumented endpoints!).

Backend made the API and everything that is performed by it. Front end is doing the GUI based off the response and promoting for input.

load more comments (1 replies)
[-] [email protected] 3 points 3 weeks ago

É você que financia essa merda!

load more comments
view more: next ›
this post was submitted on 26 Apr 2024
397 points (96.9% liked)

Programmer Humor

30643 readers
658 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 4 years ago
MODERATORS