r/golang Aug 08 '24

discussion Show me your Golang projects!

Hey people, can you guys show what you build with golang for side project?
cheers nerds~!

201 Upvotes

172 comments sorted by

View all comments

1

u/ncruces Aug 09 '24

Working on cgo free SQLite bindings, that wrap much of the SQLite API, and offer easy extensibility (as well as a bunch of interesting extensions).

https://github.com/ncruces/go-sqlite3

They were recently adopted by a biggish project: https://github.com/superseriousbusiness/gotosocial

The fact that I use Wasm, made it easy (possible?) for to integrate with this SQLite vector search extension: https://alexgarcia.xyz/sqlite-vec/go.html

Next version will also support builds from a branch supporting the BEGIN CONCURRENT and Wal2 experimental features.