• 0 Posts
  • 66 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.


  • 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.











  • Making something seem resilient and successful is very easy in the short term when you have control over what data is coming out of it.

    There were companies that were commiting fraud or were straight up ponzi schemes that seemed very successful, all while operating under some oversight from the western governments and the public. Some lasted many years before the facade crumbled and they collapsed.

    Now imagine what an entire corrupt government with full control of the reports, the media and no one to answer to, is capable of.

    Using resources on a war does stimulate the economy. That’s just the Broken Window Fallacy.



  • 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.





  • 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.