• 1 Post
  • 87 Comments
Joined 2 years ago
cake
Cake day: October 1st, 2023

help-circle
  • What is Microsoft doing?

    In the world of digital infrastructure? Azure would be one big one. In this image, it would probably be a stone next to, or above AWS. Windows server and IIS, though that’s not that important in the grand scheme of things (or is becoming less so each passing year). MS-SQL is still a thing. .NET and its frameworks are a bit more important and lower down on this graph, luckily they’re also open source now. Having a stone as separate floating by itself is a little disingenuous if not ignorant, but we can forgive OP, since it is Microsoft :)




  • Ive not looked into it so I don’t know what kind of challenges they face. Theoretically, I don’t see where the problem is though…

    The primary input is a users “wishlist” of things they want. Each thing is then compared against a master list which confirms it exists and when it should be available (metadata). This is optional, but offers a more rich experience. Lastly, each thing is queried against a torrent index to try and find it. Its a relatively simple procedure. I guess the only question is whether books appear on these indices or not.

    After a quick glance at the notice on their site, it seems metadata was the problem… or more precisely, no work was being done to move to a new provider. It kinda reads like they lost steam and stopped developing it.












  • I access it through a reverse proxy (nginx). I guess the only weak point is if someone finds out the domain for it and starts spamming the login screen. But I’ve restricted access to the domain for most of the world anyway. Wireguard would probably be more secure but its not always possible if like on vacation and want to use it on the TV there…




  • It does to some degree.

    • “11” is string, 1 is an int, because strings can be added (+) convert int to string and combine: “11”+“1” = “111”
    • “11” is string, 1 is an int, because strings cant be subtracted (-) convert string to int and combine: 11-1 = 10

    I’m not into JS so I don’t know how it takes priority. ints can be added too, so I guess its basing it on the first variable which is compatible with the operator: in the first case string, in the second case int.

    If this is how it works, it makes sense. But imo its a case of the designers being preoccupied with whether or not they could, they didn’t stop to think if they should.