Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)SA
samc @lemmy.world
Posts 17
Comments 7

A few nice new features in this release. Allowing ORDER BY aggregate functions could be very useful.

0

Batch size one billion: SQLite insert speedups, from the useful to the absurd

Interesting post on how to speed up batch inserts with SQLite.

0

Short post about how SQLite sometimes creates indexes just for a single query. The SQLite documentation has a little more information.

It can be worth setting up and monitoring the error log for SQLITE_WARNING_AUTOINDEX warnings as good indication a persistent index should be created.

0
corecursive.com The Untold Story of SQLite - CoRecursive Podcast

On today's show, I'm talking to Richard Hipp about surviving becoming core infrastructure for the world. SQLite is everywhere. It's in your web browser, it's in your phone, it's probably in your car, and it's definitely in commercial planes. It's where your iMessages and WhatsApp messages are stored...

The Untold Story of SQLite - CoRecursive Podcast

Interview with Richard Hipp about the history of SQLite.

0

SQLite 3.43.0 released

The main changes look to be contentless-delete FTS5 tables and performance enhancements to the query planner and JSON functions.

0

sqlite-utils - CLI tool and Python library for manipulating SQLite databases

From the homepage:

> This library and command-line utility helps create SQLite databases from an existing collection of data. > > Most of the functionality is available as either a Python API or through the sqlite-utils command-line tool. > > sqlite-utils is not intended to be a full ORM: the focus is utility helpers to make creating the initial database and populating it with data as productive as possible. > > It is designed as a useful complement to Datasette. > > Cleaning data with sqlite-utils and Datasette provides a tutorial introduction (and accompanying ten minute video) about using this tool.

0

Handy utility to diff SQLite databases.

0
turriate.com Making SQLite faster in Go

Make sqlite faster with a connection pool and prepared statements.

Making SQLite faster in Go

The author managed to reach 56,600 req/s!

While written about Go, not all the techniques used are Go specific.

0
fly.io How SQLite Scales Read Concurrency

Understanding how the write-ahead log turns your scaling up to 11.

How SQLite Scales Read Concurrency

Explains how using WAL allows writes without blocking reads.

0

FerretDB - MongoDB protocol for SQLite or PostgreSQL

github.com GitHub - FerretDB/FerretDB: A truly Open Source MongoDB alternative

A truly Open Source MongoDB alternative. Contribute to FerretDB/FerretDB development by creating an account on GitHub.

Converts MongoDB protocol to SQL using SQLite or PostgreSQL as the database engine.

Could be useful if wanting to migrate off MongoDB.

0
fly.io How SQLite helps you do ACID

Let's take a peek at how the rollback journal works.

High level overview of how SQLite rollback journal works.

0

sqlpkg - The (unofficial) SQLite package registry.

sqlpkg.org The (unofficial) SQLite package registry.

Easily find and manage SQLite extensions.

Registry of SQLite extensions along with a package manager to install them.

0
fly.io SQLite Internals: Pages & B-trees

Let's open a hex editor and see what this thing is made of

Interesting brief overview of SQLite internals.

0
github.com GitHub - nalgeon/sqlean: The ultimate set of SQLite extensions

The ultimate set of SQLite extensions. Contribute to nalgeon/sqlean development by creating an account on GitHub.

A useful collection of extensions for SQLite

0
Inspiron 14 5140 Touchpad issues
  • I had a very similar issue, the touchpad in my Dell laptop would randomly stop working but I could still click. I couldn’t work out why until one of my keys stopped working. I replaced the keyboard and the touchpad issues disappeared. I suspect the cause was the faulty keyboard not sending the key up event as I had noticed pressing keys sometimes unfroze it. It could also have been a loose connection though.

    If you’re using GNOME, you could try disabling the “disable touchpad on while typing” setting: gsettings set org.gnome.desktop.peripherals.touchpad disable-while-typing false

    Verify the keyboard is not disabled when pressing keys and see if the issue still happens. If that fixes it then it might be keyboard that’s the problem.

    To enable “disable touchpad while typing”: gsettings set org.gnome.desktop.peripherals.touchpad disable-while-typing true

  • SQLite experimental high-concurrency backend HC-tree

    While not ready for production, it looks really promising.

    There’s some tests showing > 1 million write transactions per second in some cases.

    0
    Google Domains shutting down, assets sold and being migrated to Squarespace
  • That’s sucks, hopefully squarespace will be alright. I had considered moving to Google too but was wary of Google support, glad I didn’t now.

    If you need an alternative, Cloudflare has a decent DNS editor and offers free email forwarding. Plus you don’t have to move your domains to them so easy to try out. I’m not a fan of how much of the internet depends on them but they are decent.

  • Why sqlite3 temp files were renamed 'etilqs_*' (2006)
  • I remember a similar issue with some newsletter software I worked on. The free version added a powered by line to newsletters among other limitations.

    Unfortunately, spammers started using it which inevitably led to people thinking we were spamming them and a lot of angry emails.

    The software enforced unsubscribe links but the spammers modified it to remove that. Weirdly, they left the powered by link… maybe it helped pass spam filters? Or they just didn’t care.

    There wasn’t much we could do to stop them so in the end the free version had to be discontinued.

  • Why sqlite3 temp files were renamed 'etilqs_*' (2006)

    github.com sqlite/src/os.h at 18cf47156abe94255ae1495ba2da84517dce6081 · mackyle/sqlite

    Unofficial git mirror of SQLite sources (see link for build instructions) - sqlite/src/os.h at 18cf47156abe94255ae1495ba2da84517dce6081 · mackyle/sqlite

    Saw this on Hacker News, seemed interesting.

    1

    SQLite 3.42.0

    Adds the ability for JSON functions to read JSON5 which could be handy.

    0