Jay Goel
Jay Goel
Hello! I've written a little library which converts the .rm and the .zip files to an annotated PDF. I'd like to invite you to check it out! https://github.com/poundifdef/go-remarkable2pdf I have...
If a user specifically presses the "log out" button, it means that they do not want the app automatically doing updates or showing toast messages. We should keep track of...
With the following program, I'm not able to query `system.parts`. ``` go package main import ( "fmt" "github.com/chdb-io/chdb-go/chdb" ) func main() { result, err := chdb.Query("SELECT version()", "CSV") if err...
The goal of this ticket is to add a basic UI to add and delete new database destinations. This will be done purely in SvelteKit. The backend endpoints are already...
We want to launch a feature where users can create RESTful endpoints based on queries. This is an enhancement of "saved queries". I have started this work in a branch:...
Today, the `pkg/storage/database` package is responsible for fetching the credentials for a database. That interface contains a function called [GetDestinationCredentials()](https://github.com/scratchdata/scratchdata/blob/main/pkg/storage/database/database.go#L17). We want to refactor the code to use a separate...
The following inserts into bigquery will fail: ``` {"x": "y"} {"x": true} ``` ``` googleapi: Error 400: Invalid schema update. Field x has changed type from STRING to BOOLEAN, invalid...
Today, when data is queued, we immediately consume it and upload to the database. However, we want the ability to pause and resume workers for a specific table, or for...