home.social

Search

61 results for “bmjhayward”

  1. There is also a table under the “statistics” tab where you can sort by cpu, row count etc


    3/4

  2. There is also a table under the “statistics” tab where you can sort by cpu, row count etc

    #sql #database #querydiff #queryplan
    3/4

  3. There is also a table under the “statistics” tab where you can sort by cpu, row count etc

    #sql #database #querydiff #queryplan
    3/4

  4. There is also a table under the “statistics” tab where you can sort by cpu, row count etc

    #sql #database #querydiff #queryplan
    3/4

  5. You just upload or copy paste your query plan as xml and go to the visual tab. Voila! Hover or click nodes to see details

    2/4

  6. You just upload or copy paste your query plan as xml and go to the visual tab. Voila! Hover or click nodes to see details
    #sql #database #querydiff #queryplan
    2/4

  7. You just upload or copy paste your query plan as xml and go to the visual tab. Voila! Hover or click nodes to see details
    #sql #database #querydiff #queryplan
    2/4

  8. You just upload or copy paste your query plan as xml and go to the visual tab. Voila! Hover or click nodes to see details
    #sql #database #querydiff #queryplan
    2/4

  9. I got a bit frustrated trying to compare query plans in sql server management studio so I made a website to do side by side comparisons.
    querydiff.com

    1/4

  10. I got a bit frustrated trying to compare query plans in sql server management studio so I made a website to do side by side comparisons.
    querydiff.com
    #sql #database #querydiff #queryplan
    1/4

  11. I got a bit frustrated trying to compare query plans in sql server management studio so I made a website to do side by side comparisons.
    querydiff.com
    #sql #database #querydiff #queryplan
    1/4

  12. I got a bit frustrated trying to compare query plans in sql server management studio so I made a website to do side by side comparisons.
    querydiff.com
    #sql #database #querydiff #queryplan
    1/4

  13. I got a bit frustrated trying to compare query plans in sql server management studio so I made a website to do side by side comparisons.
    querydiff.com
    #sql #database #querydiff #queryplan
    1/4

  14. so now deepmind has gone and released alphafold3 code as well. must have been feeling the competition.

    source code here: github.com/google-deepmind/alp

    🧪🧬🖥️

  15. So, Bytedance, the people behind tiktok have created protenIx, a pytorch recreation of alphafold 3

    github.com/bytedance/Protenix

    🧪🧬🖥️

  16. George Hayward not related to me, but good thread
    ---
    RT @doctorow
    When George Hayward was a Facebook data-scientist, his bosses ordered him to run a , updating Messenger to deliberately drain users' batteries to determine how power-hungry various options were. Hayward refused. FB fired him. He sued:

    nypost.com/2023/01/28/facebook 1/
    twitter.com/doctorow/status/16

  17. if you're using or other clustering algorithms and you use the elbow-method or visual inspection to choose the number of clusters, this paper is for you.

    arxiv.org/abs/2212.12189?utm_s

  18. Beautiful

    ```
    struct RandomForest {
    nodes: []Node
    num_trees: i32
    }

    struct Node {
    feature: i32
    threshold: f64
    left: *Node
    right: *Node
    }
    ```