#golang
github.com/Nomadcxx/sy...
#golang
github.com/Nomadcxx/sy...
#golang
github.com/dkorunic/be...
#golang
github.com/dkorunic/be...
#golang
github.com/titpetric/v...
#golang
github.com/titpetric/v...
#golang
dev.to/lovestaco/b...
#golang
dev.to/lovestaco/b...
#golang
cristiancurteanu.com/5-api-desig...
#golang
cristiancurteanu.com/5-api-desig...
#golang
github.com/happyDomain...
#golang
github.com/happyDomain...
www.youtube.com/watch?v=6PTJ...
www.youtube.com/watch?v=6PTJ...
#golang
github.com/ankur-anand...
#golang
github.com/ankur-anand...
npx shadcn-svelte@latest add $(ls -d ./src/lib/components/ui/*/ | xargs -n1 basename)
npx shadcn-svelte@latest add $(ls -d ./src/lib/components/ui/*/ | xargs -n1 basename)
super early days but let me know what you think! if its of use, etc 😀
super early days but let me know what you think! if its of use, etc 😀
It's not exhaustive though - there are sooo many more great Svelte libraries out there. But it's a good starting point and should help you fight the "Svelte ecosystem small???" doubts.
It's not exhaustive though - there are sooo many more great Svelte libraries out there. But it's a good starting point and should help you fight the "Svelte ecosystem small???" doubts.
linux/amd64
linux/arm64
darwin/arm64
windows/amd64
(“Things you should be very concerned about the crypto maintainer saying,” if you deploy to any others 😬)
linux/amd64
linux/arm64
darwin/arm64
windows/amd64
(“Things you should be very concerned about the crypto maintainer saying,” if you deploy to any others 😬)
SELECT v FROM t WHERE k = ?
and then
UPDATE t SET v = ? WHERE k = ? AND v = ?
and the UPDATE was not applying?
Turns out I was storing nil → NULL, and then reading []byte(stmt.GetText("v")) → []byte(""). NULL and the empty BLOB don't compare equal.
SELECT v FROM t WHERE k = ?
and then
UPDATE t SET v = ? WHERE k = ? AND v = ?
and the UPDATE was not applying?
Turns out I was storing nil → NULL, and then reading []byte(stmt.GetText("v")) → []byte(""). NULL and the empty BLOB don't compare equal.
'' and X'' and NULL show the same in the SQLite CLI (by default) but they don't compare equal!
I love SQLite, but weakly typed columns (by default) with strongly typed equality is criminal.
'' and X'' and NULL show the same in the SQLite CLI (by default) but they don't compare equal!
I love SQLite, but weakly typed columns (by default) with strongly typed equality is criminal.
conradresearch.com/articles/imm...
conradresearch.com/articles/imm...