• 0 Posts
  • 150 Comments
Joined 2 years ago
cake
Cake day: June 12th, 2023

help-circle
  • I loved BB10. It had gesture-based navigation years ahead of its time, the Hub was the best notification system I’ve ever used, and it could run Android apps alongside BB10-native apps. It helped that I liked the form factor of the devices with physical keyboards, too.

    Nowadays can choose between a large, glass rectangle, and an extra-large, glass rectangle in one of two flavours: Apple and Android. It’s no coincidence that Android has become more restrictive in terms of control over your own device, as the competition has dwindled and thinned.









  • ramjambamalam@lemmy.catomemes@lemmy.worldDouble or Nothing
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    2 months ago

    Your username checks out, lol. At 5% APR, 30 days’ worth of interest on this $390 purchase is ~$1.63.

    And if we consider that Nike is acting as a bookmaker in this case, the house edge for a bookmaker is around that amount anyway. Nike is likely to bake this edge into their margin anyway, but I don’t think it’s likely that you’d get a bonus of $1.63 if you win this bet, in this hypothetical.




  • ramjambamalam@lemmy.catoProgrammer Humor@programming.devSee MongoDB
    link
    fedilink
    English
    arrow-up
    29
    ·
    edit-2
    2 months ago

    Atomicity: either all parts of the transaction complete, or all parts of the transaction don’t complete; there’s no “partly complete” state

    Consistency: the state of the database after a transaction is stable; all “downstream” effects (e.g. triggers) of the query are complete before the transaction is confirmed.

    Isolation: concurrent transactions behave the same as sequential transactions

    Durability: a power failure or crash won’t lose any transactions

    Traditionally, ACID is where relational databases shine.