Astra
Astra
TTCTheo's Typesafe Cult
Created by Woet on 4/21/2024 in #questions
Run migration with Drizzle for Neon
The error you're giving is that you don't have 3 ENV variables defined, not necessarily the migration file
11 replies
TTCTheo's Typesafe Cult
Created by Kenzo on 4/11/2024 in #questions
RANT - I hate ESLINT and I WANT TO KMS
is this the react-google-maps/api library or im just reaching? coz the the markers api from google maps is being deprecated and and may be no longer supported
23 replies
TTCTheo's Typesafe Cult
Created by Tomnar on 4/9/2024 in #questions
Resize Image
https://docs.uploadthing.com/api-reference/react#uploadbutton @Tomnar i think using the onBeforeUploadBegin should do it
8 replies
TTCTheo's Typesafe Cult
Created by Tomnar on 4/9/2024 in #questions
Resize Image
https://docs.uploadthing.com/getting-started/solid#use-the-hook You can use the useUploadThing hook and write a compression algorithm before uploading the file
8 replies
TTCTheo's Typesafe Cult
Created by FleetAdmiralJakob 🗕 🗗 🗙 on 4/6/2024 in #questions
SQL/Drizzle Where Query Search Optimization
you can write the query and would technically get the same result
or(
like(users.name, "%" + input.name + "%"),
like(users.germanName, "%" + input.name + "%"),
like(users.region, "%" + input.name + "%"),
),
or(
like(users.name, "%" + input.name + "%"),
like(users.germanName, "%" + input.name + "%"),
like(users.region, "%" + input.name + "%"),
),
you can also use ilike if you dont want it to be case sensitive
9 replies