Should I use next 13 or t3 stack for my current project (long term project)
React Query + Next 13 + Vercel?
SWC compiler allows const variable re-assignment
const variable.
PS: when the function is not arrow function or when the code is out of that function, it throws the appropriate error....
Alternatives to redux for app state management
Server side trpc call

Generate Documentation based on comments TypeScript
how bad of an idea is it to write to a pageViews column in the db on every pageload lmao?
Connecting entities in Prisma
connect two entities in prisma which share a many-to-many relationship. I have defined the relationship in my prisma schema as an implicit many-to-many relation. It works fine if the connection does not already exist, and prisma is smart enough to ON CONFLICT DO NOTHING when it finds the connection already exists. However, it does not throw an error when this happens.
As an example, my code for the route in question looks something like this:
```typescript
// studentRouter...Types error with Image component and NextAuth session
Type 'string | null | undefined' is not assignable to type 'string | StaticImport'
Component looks like this:
```<Image
20 | src={session?.user?.image}| ^...
Securirty issue next auth

Importing country codes as an enum
Create-t3-app but Vue
Shadow Database Prisma & Planetscale
Conditionally change color of icon
<FontAwesomeIcon
icon={faStar}
key={coin.id}
className={hover:text-yellow-500`}...How to use fetched data as State?
next session is lost on refresh
Global Auth middleware tRPC problem

NativeWind vs twrnc for react native(+web) Tailwind solution?
How to implement manual authentication without TTL entry
expiresAt seconds if they don't confirm their account via email.
What is the conventional way to accomplish this if there is no TTL functionality as it seems like Prisma doesn't support an expiresAt feature.
I want to avoid a ton of userTokens accumulating in my DB if someone maliciously keeps signing up new accounts - besides rate limiting them and banning their ip etc. Just interested in db level cleaning solutions.. or alternatives to creating this userToken...