Migrated account from @CosmicTurtle@lemmy.world

  • 2 Posts
  • 191 Comments
Joined 1 year ago
cake
Cake day: April 9th, 2024

help-circle

  • CosmicTurtle0@lemmy.dbzer0.comtopics@lemmy.world*Permanently Deleted*
    link
    fedilink
    English
    arrow-up
    30
    arrow-down
    1
    ·
    4 days ago

    Come on man.

    Grapes and watermelon are a shitton better than cake. Grapes and Watermelon may have a lot of sugar but they both contain a lot of fiber, let alone vitamins. Grape juice by itself is no better than soda but grapes are tons better than grape juice.

    OP: You’re doing the right thing. As a man in his 40s who has lost 50 pounds and is in better shape now than I was in my 30s, eating better is better than “cheating”.

    Having the support of your family makes the journey a whole lot easier.





  • CosmicTurtle0@lemmy.dbzer0.comtoProgrammer Humor@programming.devSee MongoDB
    link
    fedilink
    English
    arrow-up
    13
    arrow-down
    1
    ·
    18 days ago

    You’ve gotten good answers from other folks but I’ll provide a ELI5:

    Basically a set of rules in the database to make sure that it is immediately consistent.

    NoSQL databases offer eventual consistency in exchange for speed so they are generally not considered to be ACID compliant.

    Most traditional databases (MySQL, postgresql, etc.) are.

    There are a couple of emerging companies that try to tackle speed for traditional databases. CockroachDB offers a postgress-based database that scales more like NoSQL while still offering ACID transactions.

    TiDB is a similar company but for MySQL.



  • You can always do something but its efficacy will vary. For example, spinning up a third party candidate a week before the election would be pointless.

    If you look at my post history on Nov 5 has several posts on starting a third party. Right after the election would have been perfect. A lot of runway to find candidates, push them into the spotlight, have them lead the protests against Trump.

    But we were understandably numb.

    The second best time was after the inauguration. The third best time was after the first protest. The fourth best time was after the second protest.

    We’re about 8 months before the first primary. We could start a third party after the Labor Day protests.

    With me being out of work, I’ve given serious thought about starting one here locally.




  • I think the logic here is that the code to deliver an ad is protected by copyright and your modification of that code is considered a derivative work that is protected under copyright law.

    But that’s not what happens at the browser level.

    The HTML code is sent, whole cloth, to the browser. The browser inspects the code, you know, to do browser stuff.

    During this inspection, the code is put against the ad block rules. Nothing is modified. If the code violates some sort of logic, it doesn’t get rendered properly.

    Hell, the opposite argument is probably more damning. Say you have this literal HTML:

    <html>
    <title>I use arch</title>
    <p>
    Btw
    hello
    World</html>
    

    You could argue the browser is NOT showing your code the way you intended (e.g. “Btw hello World” being rendered though I’m not sure if spaces would be there or not).

    At the end of the day, unless you send your webpage as an image, you can’t guarantee how the browser will render it.


  • As much as I would like to agree with you, permissive licenses are killing open source software as a whole since corporations absolutely abuse the software, provide very little value back to the code in return, and often DEMAND the authors patch their vulnerabilities.

    Open source props up the world and the least that corporations could do is throw 0.0001% of their revenue their way. But they can’t even be bothered to do that.