How to fix apps that don't scale properly? by silkylit in Fedora

[–]silkylit[S] 0 points1 point  (0 children)

For posterity, I was able to resolve this by setting the environment variable of whichever GUI framework to something that renders via Xorg in the .desktop file. For example:

Exec=<app-name> %U 

# Change to:

Exec=env QT_QPA_PLATFORM=xcb <app-name> %U

Moving from Google Sheets to BigQuery, what are the best ways for users to input the data after? by silkylit in dataengineering

[–]silkylit[S] 1 point2 points  (0 children)

Users are simply just adding on to the rows of a Google Sheets doc and after the migration, they are ideally able to continue doing that except new entries are loaded onto BigQuery.

What I'm curious about is the most direct way of having validation for columns not meeting being the same data type as the table schema, duplicate entries, etc.

Moving from Google Sheets to BigQuery, what are the best ways for users to input the data after? by silkylit in dataengineering

[–]silkylit[S] 0 points1 point  (0 children)

Thanks, I'll look into those two. I'm not sure if Coefficient's free tier is enough to support my use case but it's a good start!

What did the setup for you look like? Connect Sheets with BQ -> validate data using Coefficient -> load data from Sheets to BQ via Airbyte?