• 0 Posts
  • 28 Comments
Joined 1 年前
cake
Cake day: 2024年10月5日

help-circle




  • spoonbilltoOpensourceGNU Taler for payments?
    link
    fedilink
    English
    arrow-up
    2
    ·
    8 个月前

    Honestly I don’t need to know anything about it at all except that it’s a payment system designed by GNU

    Then you seem to know even less then you thought? GNU supports development, but each project is independently designed and developed. Taler’s roots are in academia.




  • Windows 7 does not receive security updates anymore, so its use should definitely be discouraged even if it “works”.

    For software devs, they almost certainly don’t want to support an obsolete OS with a small number of users, as that requires time and effort on their side (e.g. if a user has problems on Windows 7 what should they do?). And if they want to refactor some code, do they really want to test on ancient OSs and add needed workarounds / compatibility fixes?










  • I really struggle to see where HATEOAS can be used. Obviously not for machine to machine uses as others have pointed out. But even for humans it would lead to terrible interfaces.

    If the state of the resource changes such that the allowable actions available on that resource change (for example, if the account goes into overdraft) then the HTML response would change to show the new set of actions available.

    So if I’m in overdraft, some actions are not available? Which means they are not shown at all? How can a user easily know that there are things they could do, it it wasn’t for the fact that they are in a specific state? Instead of having disabled buttons and menus, with help text explaining why they are not usable, we just hide them? That can’t be right, can it? So how do we actually deliver a useable UX using HATEOAS?

    Or is it just meant for “exploration”, and real clients would not rely on the returned links? But how is that better than actual docs telling you the same but much more clearly ?