Search
61 results for “bmjhayward”
-
There is also a table under the “statistics” tab where you can sort by cpu, row count etc
-
There is also a table under the “statistics” tab where you can sort by cpu, row count etc
-
There is also a table under the “statistics” tab where you can sort by cpu, row count etc
-
There is also a table under the “statistics” tab where you can sort by cpu, row count etc
-
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 -
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 -
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 -
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 -
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.
https://querydiff.com
#sql #database #querydiff #queryplan
1/4 -
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.
https://querydiff.com
#sql #database #querydiff #queryplan
1/4 -
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.
https://querydiff.com
#sql #database #querydiff #queryplan
1/4 -
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.
https://querydiff.com
#sql #database #querydiff #queryplan
1/4 -
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.
https://querydiff.com
#sql #database #querydiff #queryplan
1/4 -
Excellent youtube playlist of all of Donald Knuth's lectures he has given at stanford university. Includes christmas lectures. Happy days
-
so now deepmind has gone and released alphafold3 code as well. must have been feeling the competition.
source code here: https://github.com/google-deepmind/alphafold3
-
Anyone want to get paid to make a RISC-V course?
-
So, Bytedance, the people behind tiktok have created protenIx, a pytorch recreation of alphafold 3
https://github.com/bytedance/Protenix
🧪🧬🖥️ #alphafold3 #ai #alphafold
-
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 #NegativeTest, updating Messenger to deliberately drain users' batteries to determine how power-hungry various options were. Hayward refused. FB fired him. He sued:https://nypost.com/2023/01/28/facebook-fires-worker-who-refused-to-do-negative-testing-awsuit/ 1/
https://twitter.com/doctorow/status/1622334469007867904 -
if you're using #kmeans or other clustering algorithms and you use the elbow-method or visual inspection to choose the number of clusters, this paper is for you.
-
It's like, kind of noisy trying to keep up with all of you.
#scitwitter #mathtwitter #academictwitter -
It's like, kind of noisy trying to keep up with all of you.
#scitwitter #mathtwitter #academictwitter -
It's like, kind of noisy trying to keep up with all of you.
#scitwitter #mathtwitter #academictwitter -
It's like, kind of noisy trying to keep up with all of you.
#scitwitter #mathtwitter #academictwitter -
Beautiful
```
struct RandomForest {
nodes: []Node
num_trees: i32
}struct Node {
feature: i32
threshold: f64
left: *Node
right: *Node
}
```