JWT vs DB, if user is deleted from DB
Hello guys, I have a question, right now I am working on app, and the app refetches the session on windowsFocus, which is great, because it will always refresh the data/user and check if that user still exist on the DB. Now though this only work if the strategy on the next auth is "database" is it possible to have the same behavior if its "jwt"
How safe is it to push updates to main in vercel with users using the site?
So recently some of the sites that I have up in vercel (nextjs) have been gaining alot of users and Im always kinda scared when pushing updates to main in the middle of the day when things are very active.
I know there are some things that 100% will cause issues like changing returns from the server will cause the client to error out if the new returned data is missing something that the previous build needed (seen it happen so I guessed that happens all the time)
But other than that doing simple UI changes, adding pages, or even SEO changes shouldnt break anything while deploying right?...
Remix vs NextJS
What are your thoughts specifically on the data fetching aspect? Remix seems to be able to load data in parallel which significantly reduces load time. I think Next13 is trying to achieve the same effect. What if there was a T3 app but with Remix?
Computer Vision Camera recommendation
Hey amazing team Theo, I am looking for OpenCV camera replacement for OAK-1/OAK-D, does anyone have similar experience? Is it recommended to replace it with cheaper options? What could be the drawback?
Powering camera while streaming?
To my resident streamers: How do you power your camera during a stream? I have a Canon (EOS M50 I think) and just wanna put it on a stand and forget about it.
Issue with server.msj
I've updated the .env to something like this:
```NEXTAUTH_URL=http://localhost:3000
NEXTAUTH_SECRET=supersecret
DATABASE_URL=mysql://something@eu-central.connect.psdb.cloud/demo-system?sslaccept=strict
NEXT_PUBLIC_AWS_ACCESS_KEY_ID=key...

ChatBot Options for website
Hi!
I want to integrate chatbot into a website which is main website . There are plenty of options out there to start with
But they all have their own dashboards from where we have to reply.
Is there any service which lets me add chatbot to one of website and reply from any other website which is an internal tool for organization only
That's important need . Having an extra dashboard just for chatbot feels like an overhead!...
Upsert seems to give me an error about returning type any?
Been reading through the create t3 app. Working to understand prisma, zod, and router. I created a Model like the following:
```
model Transcoder {
id String @id
name String...
Typescript noob question
Hooboy i have a typescript noob question...
I have a function that returns an array of either {ok: true} or {ok: false, error: "message"} items
how would you describe the return type?...
How to App.getInitialProps in CT3A?
Heyah - Im trying to use jotai to set an atom read from cookie (sidebar state and color scheme) but I have no clue if Im doing it with typesafety and passing the right session prop
```ts
const MyApp = ({
Component,
pageProps: { session, showSidebar, ...pageProps },...
nvim lsp tsserver taking forever to initialize
New to vim/nvim the lsp tsserver takes a while to initialize 2-3 minutes in my project is this normal?

Next.js + NextAuth protect all routes
I want my users to be redirected to NextAuth login page if they try to access any routes in my Next app.
I tried adding middleware
export { default } from "next-auth/middleware"
But this doesn't really work because I get redirected to login page even after I log in...Tiptap editor not updating as expected.
My tiptap editor is being passed the content value via props but when the prop updates, the content does not update.
This is what my component looks like -
```...
tRPC change settings
I have 2 tRPC endpoints, one for gettings current settings and one for mutating them.
The issue is:
How can I to make settings editable on the frontend, like I need to wait till the user clicks the submit button, and mutate only then. So how can I do it? (I don't have any IDEAS for 2 days already)...

Wait for useQuery result
```javascript
const favShop = trpc.favorite.getById.useQuery({
userId: session.data?.user?.id,
shopId: coffeeShop.id,
})...
Flex box full width
Any idea on what property i should change so that the text will take up the whole width? Been trying to figure it out for couple of hours. Any pointers are appreciated!
https://codepen.io/spaceyyn/pen/ZEjrWRx...

Building an API for the first time
I've seen many videos where they use MongoDB and Express.js. Do you recommend any better alternative for 2022? What does Theo recommend using? I think he doesn't really stand Express.js if I'm not mistaken. I'm planning on using the t3 stack.
Problem with websocket in t3-app
Hi there, I create an app with t3-stack and I was trapped in point when I tried to implement WebSockets. I found the root cause of the problem, but I can't handle it.
Example: https://github.com/kewinzaq1/t3-ws-test. It works very well, but when I have added next auth, it causes problem (the app open and closes connections non-stop)
Do you have an idea, how to solve the issue?...

playing sound effects for a game on the web
should i try to implement this myself using native apis from scratch or is there a good npm package i can use?
