fosdem.org/2025/schedul...
There is much support emerging for vector indexes:
1) MariaDB has full support - mariadb.com/kb/en/vector...
2) FB MySQL has full support via Faiss
3) there is the MyVector plugin - github.com/p3io/myvecto...
4) Upstream has ...
fosdem.org/2025/schedul...
There is much support emerging for vector indexes:
1) MariaDB has full support - mariadb.com/kb/en/vector...
2) FB MySQL has full support via Faiss
3) there is the MyVector plugin - github.com/p3io/myvecto...
4) Upstream has ...
https://github.com/p3io/myvector-dev
Event Attributes
https://github.com/p3io/myvector-dev
Event Attributes
if(any(!is.na(myvector))){
newvector <- myvector[min(which(!is.na(myvector))): length(myvector)]
newvector <- na.locf(newvector)
myvector <- c(rep(NA, min(which(!is.na(myvector)))-1), newvector)
}
return(myvector)
}
if(any(!is.na(myvector))){
newvector <- myvector[min(which(!is.na(myvector))): length(myvector)]
newvector <- na.locf(newvector)
myvector <- c(rep(NA, min(which(!is.na(myvector)))-1), newvector)
}
return(myvector)
}
for (auto itty = myVector.begin(); itty != myVector.end();) {
doSomething(*itty);
if (needsDeleting(*itty)) {
itty = myVector.erase(itty);
} else {
++itty;
}
}
Don’t do the above if doSomething() might add or remove items from myVector, too.
#cplusplus
for (auto itty = myVector.begin(); itty != myVector.end();) {
doSomething(*itty);
if (needsDeleting(*itty)) {
itty = myVector.erase(itty);
} else {
++itty;
}
}
Don’t do the above if doSomething() might add or remove items from myVector, too.
#cplusplus
They are saying YES.
I’ve had a call a week every week so far this year.
My intention: 50 calls in 2024.
(I anticipate taking two weeks off…)
If you’re up for speaking with a #mentee 3-5 times this year, let me know!