Trying to implement infinite scroll with infinite query
So i was looking at this video to see how this guy implememented infintie scroll: https://www.youtube.com/watch?v=nzJsYJPCc80&t=3592s (his github repo in description, and the part of the video is labeled), and the way he made it is kind of glitchy, when I scroll down, it just fetches the same data over and over which happens in his video as well, and when I print the nextcursor, which is the id of the next record, its always the same for some reason.
I pretty much have the same code as him except I just have my own schema that i use instead of tweet, which shouldn't make a difference at all....
Tailwind's Intellisense VSCode extension does not appear to work in TSX files in T3 App
Hi there, I recently spun up a T3 project for the first time and noticed that Tailwind's Intellisense extension was not working in TSX files. I then noticed that the T3 boilerplate uses a ts file extension for the Tailwind config file. In the docs they state "In order for the extension to activate you must have tailwindcss installed and a Tailwind config file named tailwind.config.js or tailwind.config.cjs in your workspace." I then saw they recently released that they added support to enable ES...
Backend deployments
Based on Theo's recommendations... all infra recommendations are for frontend technologies.... What if one wants to develop the backend on expressjs? Where is the infra recommendation to deploy such codebase?
To build global loader to view file upload status
I wanna make a loader where we can see the files being uploaded like in google drive .
can anyone something for this
I am using next js and thinking to use zustand to handle the global state , does anybody have example for this or any suggestion , do I need to store the api response to the localstorage ?...

Middleware redirect not working
the path is returning the right path but it is not being rendered on the page

Next.js & ApolloClient Best practices
Hi folks, I'm starting to learn Next with GraphQL and Apollo and I've got some questions. In the Next Github's examples I found this template https://github.com/vercel/next.js/tree/canary/examples/with-apollo with a specific configuration of Apollo Client. Should it look like this? Here's a link to my repo, where I've copied and adjusted the config:
https://github.com/Lyczeq/graphql-swapi/blob/main/src/lib/graphql/apolloClient.ts
The next thing is usage of
getServerSideProps with ApolloClient. As I understand, Apollo caches the data from requests, so is it a good practice to do things like below?
```ts...Github actions and .env
Hey all,
Loving the T3 stack so far. I was wondering if anyone is deploying to fly?
The default fly deploy locally copies in my .env file to all the env vars I need are there....
Utilising more cores in node
Since nodejs uses single thread , if I deploy my application in AWS with autoscaling enabled, won't it increase cost , since it uses only single core of the instance?
Having two subdomains
How can I accomplish having two subdomains in a Nextjs project that works well with Clerk? I want www. for public facing (homepage,about,etc...) and app. subdomain for logged in part of my site.
Should I create a trpc procedure for third party apis?
Should I be creating trpc procedures for calling third party apis, or should I just fetch them directly or use React Query by itself? For example, if I'm using the YouTube or Spotify search api in my app and doing nothing else with my db is it worth it to wrap this call into a procedure?
dependent react hooks
how do I wait for the sessionData to resolve before using the useUserPlaylists hook
```
const { data: sessionData } = useSession();
const { isLoading, serverError, playlists } = useUserPlaylists(
sessionData?.user.token...
Using Google Cloud SQL with Prisma
Hi, I am looking at using Prisma for a work project. We use GCP, so I figured Cloud SQL would be the best bet. I am having difficulty getting it to connect for development purposes. I have added my IP to allowed networks, set up a user account to access the DB, but I am struggling to work out what I should set for the host - anyone had any experience with this? There seems to be conflicting information online.
Seeding with prisma
hey guys i'm new to prisma orm i'm trying to seed some data to the database with model relationships but i can't figure why I have this error

nextjs v13.3.0 error when building
yo i just upgraded to 13.3.0, what does this error mean?
https://gist.github.com/navincodesalot/4727305dd4b4940e9b082a7a44eb3498...
How to disable site/deployment/auth temporarily? (Vercel)
I would like to have a "killswitch" to teporarily disable my site on Vercel. This is just a safety measure if anything goes wrong.
What would be the easiest way to do so? The only thing I found is the "Password protection", but it is not allowed for hobby projects.
It would be fine for me to have a way to disable the whole deployment as well.
Additionally, it would be nice to be able to disable sign in/sign up with NextAuth.js temporarily. Is there something easy one can do? The
session callback does not allow return false or null, so even returning false from the signIn callback will still allow users with session to get authenticated....How to disable console logs in colors and fancy formats
This is a bit distracting and I want to revert to the usual mode without any formats

Cloudinary for image database
Does anyone have any thoughts or opinions on using Cloudinary as a primary image database and storing the image links as a field in my sql database? I wanted to create a website just for fun and don’t want to pay for an s3 bucket. Cloudinary has a free tier which I could take advantage of and was wondering if that would be my best option.
https://cloudinary.com...
Expo interactive mode on turborepo
How do enable interactive mode t3 clerk turborepo? if this is even possible.
how do you get the query string in next app dir api routes?
like on
GET example.com/api/foo?bar=%22baz%22 i want to get { bar: "baz" }