Tolki

Results 18 comments of Tolki

Did that and it indeed works! Was able to implement a ZSTDDisk class instead which is both faster and compresses better than the existing JSONDisk class.

I'm having the same issue with a standard `timestamp with timezone` grouping query instead of a JSONB: ```python from_hour = sqlalchemy.func.DATE_TRUNC( "hour", db.models.InOutCount.timestamp_from ).label("hour") hourly_query = ( sqlalchemy.select( from_hour, sqlalchemy.func.SUM(db.models.InOutCount.fw_count).label("sum"),...

Running the raw `SQL` query through the session works without any issue. Using `.group_by(sqlalchemy.text("hour"))` also work: ```python # This one is OK from_hour = sqlalchemy.func.DATE_TRUNC( "hour", db.models.InOutCount.timestamp_from ).label("hour") hourly_query =...

Thanks for the help! It feels a bit hacky but it works. I usually try to have as little raw string values as possible when composing queries to minimize errors,...

As written in the `README.md`: > As `discord.py` is not maintained anymore and the LCS player association has developed its own matchmaking system, this bot is not maintained anymore as...

Same issue here, is there a possible workaround while this is getting worked on? As long as we know the keycode those new functions are supposed to send, it should...

Any update on that issue? I'm trying to use mypy + pydantic + sqlalchemy in a project and needing to write `# type: ignore` on *every single session opening* is...

Similar issue here while using `insta`: https://github.com/mitsuhiko/insta Failing tests create temporary snapshots with a `.new` extension for review. So when running `bacon test`, if it fails it creates a new...

Compiled and tried it and it works properly. As the temp files are called `.new` it was indeed the right workflow. Thanks for the help and the quick addition!

Having good normal mode navigation would be great for keyboard-centric workflows! I've been missing that in every knowledge I've tried so far (Notion, Obsidian, Loqseq, ...), and that usually makes...