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

help-circle
  • Their outside communication is nonexistent at best

    Eh, they’re decently active on Reddit, I guess. They send the occasional newsletter regarding new features if you don’t unsubscribe (and they’re pretty good at not spamming with those, imo).

    development speed is unbearably slow

    I see people say this all the time, and while feature updates are kind of slow, I’m also not lacking anything, personally. I would appreciate it if they smoothed-out SimpleLogin’s extension, though. That thing is weirdly clunky to use.

    Agree on the Linux bit, though. I’m surprised they haven’t put more work into that.

    Overall, I’ve been a happy customer for a few years, personally.


  • Yeah, if you listen to any content creator talk about sponsorship revenues it basically eclipses all other form of revenue for them.

    I think it was Pokimane who got tired of people donating money and then being assholes if she wasn’t basically gushing over them for hours, so she just went “You know what, I don’t actually need your Twitch dontations.” and just turned them off.

    Content creators make thousands of dollars per sponsorship deal minimum if they have a decent amount of viewers. Bigger creators like Ludwig get millions for some deals (Redbull gives him a crapload of money for product placement, for example).









  • In certain situations, it even disallows making assumptions about equality and ordering between floats.

    I’m guessing it does this when you define both floats in the same location with constant values.

    The correct way to compare floats whose values you don’t know ahead of time is to compare the absolute of their delta against a threshold.

    i.e.

    abs(a - b) <= 0.00001

    The idea being that you can’t really compare floats due to how they work. By subtracting them, you can make sure the values are “close enough” and avoid issues with precision not actually mattering all that much past the given threshold. If you define 2 constant values, though, the compiler can probably simplify it for you and just say “Yeah, these two should be the same value at runtime”.









  • There’s actually legal precedent against scrapping a website through unofficial channels, even if the information is public. But basically, if you scrape a website and hinder their ability to operate, it falls under “virtual trespassing”.

    I’m assuming it would be even worse now that everyone is using the cloud and that scrapping their site would cause a noticeable increase in resource cost (and thus, directly cost them more money because of cloud usage fees).

    It’s why APIs are such a big deal. They provide you with an official, controlled, entry point to a platform’s data.