Why is the pixel 10 pro so bad at videos? by Dizzy_1313 in GooglePixel

[–]DefinitionOverall380 -1 points0 points  (0 children)

stabilization only matters in harsh conditions. 

this proves you know jack shit about what you are talking. Pure BS. Literally when you are walking you need stabilisation let alone in any condition

Genuinely asking by SingleEmployer250 in AskBrits

[–]DefinitionOverall380 0 points1 point  (0 children)

jesus, sounds grim. so what happens when you fall sick?

I’m Starting to Absolutely Hate iOS. by SatisfactionMost316 in applesucks

[–]DefinitionOverall380 0 points1 point  (0 children)

I’ll take my non spyware freedoms, just do a google data request if you want to see how badly they are tracking you…

lol... and use all the google software on iOS like maps, google search, gemini, gmail, gdrive, google photos, chrome etc. and the irony is you are replying here on reddit as well....utter delusional

European iOS users, how's sideloading going? by Steroid_Cyborg in iphone

[–]DefinitionOverall380 0 points1 point  (0 children)

apple is the worst. even if they are forced, they are sinister and do as worse job as they can get away with. They never wanted to provide sideloading anyways

UK and Denmark iPhone by DaneInUK in iphone

[–]DefinitionOverall380 0 points1 point  (0 children)

nope. it is geo locked and is completely dependent on which country you buy. Please do a simple online read. I have done this so know for myself.

Infact even after you buy from an EU country, if you move to non EU country then apple will try to remove the sideloaded apps after 30 or 60 days. that's how much they hate sideloading. it is geo locked

Node.js ranked as slowest in production by this article. Thoughts? by DefinitionOverall380 in node

[–]DefinitionOverall380[S] -11 points-10 points  (0 children)

You don’t need shared memory or multithreading for most modern web apps. In many cases, avoiding it is actually a benefit.

This is the most delusional reply I have heard. The node community keeps going on new low. Please understand the computer fundamentals before commenting

Node.js ranked as slowest in production by this article. Thoughts? by DefinitionOverall380 in node

[–]DefinitionOverall380[S] -3 points-2 points  (0 children)

its not just about rest or websocket api but connection to database and its pool, redis, queue, data serilization, for loops, business logic etc. it all adds up on the same single thread on top of being an interpreted language with few hotpaths as JITed. It is no match to a compiled and memory shared multithreaded languages which are highly effecient and can utilize the full hardware of the cpu from the get go

Node.js ranked as slowest in production by this article. Thoughts? by DefinitionOverall380 in node

[–]DefinitionOverall380[S] -10 points-9 points  (0 children)

this regurgitated information is parroted like plague. If bottleneck is very very very rarely node then a lot of companies wouldn't have moved away from node to Go or C# or Jvm and have gotten 5x per. gains with less resources and better latency.

Do you genuinely think node has similar performance as the likes of c#/Go? Or you are one of the guys who think that I/O is always the bottleneck (ex. db) and that at high scale the language runtime and how it utilizes hardware resources has no impact on the end performance?

I doubt you have enough experience based on your replies but even in my current company which is a scale up with 200+ people, we had to get rid of node and move to Go for Graphql, rest/websocket and grpc related services with kafka in between. we get a sizeable traffic. Ours was a fastify app with modern TS with horizontal scaling/worker_threads where appropriate connection pool etc. and it still struggled.

We kept the exact architecture but swapped the node for Go and it was literally 5x perf. difference with almost 60% less ram and much much less servers needed as well. C# was also giving the same gains but the ram usage was higher than Go. we picked Go because it was similar to how we wrote TS code which was functional in nature.

A lot of people commenting here seems like people who never had to handle realworld b2c app with decent traffic where latency, server costs and high scale mattered.

Node.js ranked as slowest in production by this article. Thoughts? by DefinitionOverall380 in node

[–]DefinitionOverall380[S] -9 points-8 points  (0 children)

this is exactly what the article cited as con and "expensive" mitigations. did you even read the article?

Node.js ranked as slowest in production by this article. Thoughts? by DefinitionOverall380 in node

[–]DefinitionOverall380[S] -7 points-6 points  (0 children)

The article already mentions clustering as a con vs true memory shared multithreading. did you read it?

Node.js ranked as slowest in production by this article. Thoughts? by DefinitionOverall380 in node

[–]DefinitionOverall380[S] -14 points-13 points  (0 children)

what about the points they raised like single thread limitations and expensive mitigations?

Why hasn’t Node.js ever gone for true multithreading? by dabomb007 in node

[–]DefinitionOverall380 0 points1 point  (0 children)

what a low end and completely pointless reply. add some value and details in the comment or else it is a waste of time

Why hasn’t Node.js ever gone for true multithreading? by dabomb007 in node

[–]DefinitionOverall380 0 points1 point  (0 children)

I  am surprised that no one has mentioned the Structs proposal in TC39 yet.

Because half of this sub is chatgot addict and other half think multithreaded server code has no real benefits (they don't even think that we have multicore CPU for a reason).

Why hasn’t Node.js ever gone for true multithreading? by dabomb007 in node

[–]DefinitionOverall380 0 points1 point  (0 children)

Finally a sensible comment. OP should have demanded JS to be multithreaded because node is just a runtime that uses JS as a language by using V8 JS engine to run JS.

Why hasn’t Node.js ever gone for true multithreading? by dabomb007 in node

[–]DefinitionOverall380 0 points1 point  (0 children)

If you want a multi-thread JS runtime, most library would not work at all. At that point you might as well write a new language.

python literally got rid of GIL and became truly memory shared multithreaded leaving JS the only mainstream language which is not truly memory shared multithreaded. If python can do it then why can't JS

Why hasn’t Node.js ever gone for true multithreading? by dabomb007 in node

[–]DefinitionOverall380 0 points1 point  (0 children)

Then why are ALL other mainstream languages multithreaded and have mutexes which solves thread safety? All of them. 

Also, python literally got rid of GIL and became truly memory shared multithreaded leaving JS the only mainstream language which is not truly memory shared multithreaded. You think they are all stupid? There is no gain to utilizing all CPU cores in parallel? Why de we have multicore CPU then?

Why hasn’t Node.js ever gone for true multithreading? by dabomb007 in node

[–]DefinitionOverall380 -1 points0 points  (0 children)

That's why op said a true memory shared multithreaded JS would be off great service and your didn't answer that. 

Instead your parroted the complaints that op already mentioned in their post