• 0 Posts
  • 51 Comments
Joined 1 year ago
cake
Cake day: June 30th, 2023

help-circle

  • Most games, image processing libraries and other compute demanding libraries already use WASM in the browser. Have been for quite some time. It’s already widely used in every case where it provides a substantial benefit.

    But writing for GUI, which is what 99% of JS is used for, WASM provides little benefit. The speed bottleneck is mostly in DOM manipulation. And every web GUI framework uses 200 npm packages with something like webpack. Getting that to somehow work with your WASM code would be a nightmare if it’s even feasible.




  • Your analogy doesn’t work at all.

    The answer you’re being asked for needs to be a solution (what can replace capitalism?). The answer in your analogy is an observation (the plane crashed).

    It’s fine to not have answers, but then your position is pretty useless. A societal system is a mandatory component of our lives. You can’t get rid of it without it being replaced with something else. If we don’t replace it, then one will arise naturally.

    To follow your cancer example, it’s like a cancer patient saying they don’t want chemo or radiation because it’s not good enough. When they are asked what they want to do instead they just say “I don’t have answers, I just know these treatments aren’t very good”.

    Winston Churchill is quoted saying

    Democracy is the worst form of government, except for all those others that have been tried.

    Pretty much the same applies to capitalism.


  • but being able to decide after the fact that you want a heated steering wheel isn’t one of them.

    No one is bitching about being able to decide that you want a heated steering wheel. You can decide to install it on literally any car brand or model.

    People are bitching about the hardware that they have paid for and they own being locked behind by a software paywall. This would cause a riot with practically any other consumer electronics. Imagine if the fingerprint scanner on your smartphone was an extra $50 to unlock? Or quick charge being an extra $75?

    That would be the most anti-consumer horseshit we’ve seen, and that’s exactly what Tesla is doing.










  • Ah yes, poor people and people living on minimum wage don’t need music. And if they really needed it, they would just skip a meal.

    Indexing and data hosting is worth $11 per month? Music uses very little space and bandwidth. Listening to 3 hours every day for a month ends up being around 10gb of bandwidth. If they were using expensive on-demand AWS bandwidth, that would cost them 50 cents. They aren’t, they have edge caches all over and almost certainly pay less than 10 cents.



  • It’s not a dark personality to misinterpret things. It’s just a poor grasp of the finer aspects of communication.

    For instance, Kathy Griffin made a controversial video holding a bloodied severed head of Trump, who was the US president at the time. That rightfully received a lot of backlash for being in poor taste. Making death threats against the president of the United States in a serious crime, however she was not arrested because it was correctly not seen as a threat by the law enforcement.


  • An uptick after these changes make sense. People want to continue their comfortable routines. However now that it’s draining their wallet, they will probably be on the lookout for cheap/free alternatives.

    It’s the same with increasing prices. Short term your revenue will spike, but it will bleed as you slowly lose customers because you offer less value.

    But the people who were previously paying is where Netflix is playing with fire. They released the customers who were paying only because they were sharing it and didnt want to cause an inconvenience.

    I think it’s a pretty big gamble by Netflix, it will take time to see how it played out.


  • There is this misconception of “using a lot of ram = bad”, but memory is not like cpu or gpu cycles.

    Unused memory is wasted memory. Chrome will use available memory to improve responsiveness. Primarily the memory use comes from keeping all open tabs in memory, so they are in the same state as you left them.

    When the system runs low on ram, chrome will start discarding old tabs and giving back memory to other processes. Firefox does the same thing.

    Also windows task manager is very inconsistent when it comes to memory usage. Right now it’s telling me chromium is using 1.4gb for 47 tabs. And memory usage is a lot more complicated anyway.