Tootfinder

Opt-in global Mastodon full text search. Join the index!

No exact results. Similar results found.
@wtfismyip@gnu.gl
2024-03-26 12:52:01

The depth of testing behind sqlite is insane: sqlite.org/testing.html

@al3x@hachyderm.io
2024-03-29 10:12:39

TIl With SQLite you can write the results of queries directly to files. It also supports many different formats.
```
.headers [on|off]
.mode line
.output filename
SELECT * …
.output stdout
```
#sqlite

@msfjarvis@androiddev.social
2024-02-06 16:18:23

Been trying to get gud at #sqlite by moving some of the post-processing of data in Claw into SQLDelight queries themselves and I'm pleasantly surprised on the daily by how capable SQLite is. Sorting rows by a date column and then grouping them by month was less lines in SQLite than Kotlin and actually ended up being faster too.

@tenderlove@mastodon.social
2024-04-20 19:31:24

I set up Gitea on my local file server and it was really easy (though it tries to talk you in to setting up mysql but I insisted on using sqlite). It works really well! I didn't think I'd use a self hosted git server, but it turns out I'm using it a lot. Definitely recommend about.gitea.com<…

@buercher@tooting.ch
2024-04-28 10:03:41

The Untold Story of SQLite
chtbl.com/track/7D91G/traffic.

@JasonPunyon@fosstodon.org
2024-04-08 14:50:39

Ever wanted to do something with the #stackoverflow data dumps but found their multi gigabyte XML files too hard to deal with?
SEqlite's for you! It's the info from the dumps you probably care about, preprocessed into SQLite databases with indexes.
The 2024-04-01 version is now up at

sleeping shaq meme

stack exchange data dump in pile of xml files: i sleep

stack exchange data dump in sqlite databases with indexes, y'know so you can actually use it: real shit
@khalidabuhakmeh@mastodon.social
2024-03-15 14:48:39

Trying out SQLx in the #rustlang stack in #RustRover. The mapping to tuples is neat and the presence of connection pools is cool.
The docs say SQLx is NOT an ORM. It's a query API.

A SQL query against SQLIte in RustRover.
@migueldeicaza@mastodon.social
2024-02-09 13:28:31

Me: opens Xcode
Me: “ok nerds, watch and learn”
Me: chat.OpenAI.com
“How do I remove duplicate rows from a table where the id matches in swift using the c SQLite api”

@msfjarvis@androiddev.social
2024-02-06 16:18:23

Been trying to get gud at #sqlite by moving some of the post-processing of data in Claw into SQLDelight queries themselves and I'm pleasantly surprised on the daily by how capable SQLite is. Sorting rows by a date column and then grouping them by month was less lines in SQLite than Kotlin and actually ended up being faster too.