I’m noticing how I’ve been ordering more and more just from Amazon over the past few months. I should feel bad about supporting such a profit-hungry corporation, but the fast deliveries, easy returns, and wide selection of products are just too tempting.
View
On Saturday morning I experimented a bit. Whenever I used SQLite in a Go application, I used the popular package mattn/go-sqlite3. Not a bad choice, after all it implements the database/sql interface. One drawback, however, is the need for a C compiler, since Cgo is used to run the original SQLite code in the background.
View