What should a web designer know?

Status
Not open for further replies.
First you say asynchronous doesn't make anything fast and then start comparing it with multi threading and now you are saying it's not about being faster. Make up your mind first.

Probably you are just high or ignorant. Either way technical stuff is not your cup of tea. Don't be ashamed to google it if you don't know how it works.
Ok mister toungue twister... here's the deal..

With asynchronous processing which makes it super fast
IS A FALASY.


It does not make anything fast or slow. It is just a feature that helps with concurrent performance (without going into the details... ofcourse)..

If you really want to increase the speed, send your processor intensive tasks to the worker. That's how your perception of "fast work by node js" works.

The truth is, you just read that shit somewhere, and regurgitating that here.

If you preach, you should atleast be accurate about it.
 
Ok mister toungue twister... here's the deal..


IS A FALASY.


It does not make anything fast or slow. It is just a feature that helps with concurrent performance (without going into the details... ofcourse)..

If you really want to increase the speed, send your processor intensive tasks to the worker. That's how your perception of "fast work by node js" works.

The truth is, you just read that shit somewhere, and regurgitating that here.

If you preach, you should atleast be accurate about it.

You are way far from reality but it's not your fault You don't seem to be from a technical background just using jargons of the internet.
 
You are way far from reality but it's not your fault You don't seem to be from a technical background just using jargons of the internet.
ok ser
 
I confirm. Node.js is useless and you need Laravel Swoole and Java Spring. Ditch node.js. And ditch ad personam arguments. It's childish.

OP, you confuse web design with web development. A web designer is more of an artist (no github or css here), web development is about writing code (here you use github, css, and programming). So web designer is coming up with the UI (looks), UX (user experience). And web developer is coding those things, so they use code (mostly frameworks) to put it out there on the internet. They use a lot of so-called APIs to connect frontend (view layer) with backend (and database).

If you want to do IM, you'll be better learning web development and probably something like machine learning maybe. Some data scraping and manipulation is useful too.
 
Last edited:
If you are using await, you are waiting anyway.

Ok here’s a correction. In the heat of the moment, I totally forgot the fact that you cannot await outside an async function. So.. await shouldn’t block execution on the global context atall, in any situation.

Sorry for this little error, but that doesn’t change anything in the grand scheme of things lol.
 
The things you mentioned are important, basic starting points.

Are you going for full stack? If so, then you want a programming language, some PHP, data structures, and a database language.

So, something like:

- Javascript (and a design based framework).
- PHP (mostly for wordpress themes & plugins).
- MySQL or NoSQL.
I'm trying to create a list of things to learn step by step.
 
Status
Not open for further replies.
Back
Top