choco
choco
TTCTheo's Typesafe Cult
Created by Fred_ on 3/31/2025 in #questions
T3 Chat History Deletion vs Privacy Policy
i would ask it there
4 replies
TTCTheo's Typesafe Cult
Created by Fred_ on 3/31/2025 in #questions
T3 Chat History Deletion vs Privacy Policy
#t3-chat
4 replies
TTCTheo's Typesafe Cult
Created by choco on 3/27/2025 in #questions
Does anyone know how people animate their app usage like that?
what a small world, thank you so much, gpt and google couldn't help me to find anything useful 😭
7 replies
TTCTheo's Typesafe Cult
Created by shawn on 3/26/2025 in #questions
Auth in middleware
also you can still use middleware in next.js but for early return, and you still have to have another means of auth after middleware work.
27 replies
TTCTheo's Typesafe Cult
Created by shawn on 3/26/2025 in #questions
Auth in middleware
theo soon will release the video, in every api you usually use middleware as auth, but not in Next.js, next.js middleware is not really a middleware in the sense of those other frameworks.
27 replies
TTCTheo's Typesafe Cult
Created by shawn on 3/26/2025 in #questions
Auth in middleware
if you mean imageUploader middleware, then it does not use middleware from next.js :)
27 replies
TTCTheo's Typesafe Cult
Created by ak11 on 3/25/2025 in #questions
expo web uploadThing error
you can send it in #uploadthing
4 replies
TTCTheo's Typesafe Cult
Created by alextana on 3/24/2025 in #questions
user data encryption
encryption and hashing is not quite the same. Look into E2E encryption. This is what you are looking for.
11 replies
TTCTheo's Typesafe Cult
Created by choco on 3/21/2025 in #questions
How to make animation just like in uploadthing
thank you very much, apriciate it
5 replies
TTCTheo's Typesafe Cult
Created by cat on 2/20/2025 in #questions
whats the best database to use (like sql, postgress and those stuff)
depending on use case
5 replies
TTCTheo's Typesafe Cult
Created by choco on 2/20/2025 in #questions
Simple typescript function
absolutely
17 replies
TTCTheo's Typesafe Cult
Created by choco on 2/20/2025 in #questions
Simple typescript function
all of previous would be nice
17 replies
TTCTheo's Typesafe Cult
Created by choco on 2/20/2025 in #questions
Simple typescript function
first callback can be just empty, i just want to have types on previous callbacks results in arguments of the next callbacks
17 replies
TTCTheo's Typesafe Cult
Created by choco on 2/20/2025 in #questions
Simple typescript function
i have a problem with typescript types not the function implementation itself :(
17 replies
TTCTheo's Typesafe Cult
Created by choco on 2/20/2025 in #questions
Simple typescript function
it was something about that
function attemp<T extends any[]>(...callbacks: ((context: {
results: {[K in keyof T as K extends `${infer N extends number}`
? N
: never]: T[K]}
}) => T[number])[]) {
const context = {
results: {}
};
callbacks.map((callback, index)=>{
const result = callback(context);
context.results = {...context.results, [index]: result};
})
}
function attemp<T extends any[]>(...callbacks: ((context: {
results: {[K in keyof T as K extends `${infer N extends number}`
? N
: never]: T[K]}
}) => T[number])[]) {
const context = {
results: {}
};
callbacks.map((callback, index)=>{
const result = callback(context);
context.results = {...context.results, [index]: result};
})
}
17 replies
TTCTheo's Typesafe Cult
Created by Bored Student on 2/10/2025 in #questions
Nest.js CLI not working
have you download nest?
7 replies
TTCTheo's Typesafe Cult
Created by MrMasolov on 2/4/2025 in #questions
T3Chat constantly failing...
it is not really a question, you can give your feedback in #t3-chat
3 replies
TTCTheo's Typesafe Cult
Created by 泣いオオカミー ≛ 🏆 ≛ on 2/3/2025 in #questions
Theo recent auth video on JWT
ip or user role might have been changed
23 replies
TTCTheo's Typesafe Cult
Created by 泣いオオカミー ≛ 🏆 ≛ on 2/3/2025 in #questions
Theo recent auth video on JWT
each time to request access token are the times when you do operations that requires token rotation. In each of those times you want refresh token to have up to date information about user.
23 replies
TTCTheo's Typesafe Cult
Created by 泣いオオカミー ≛ 🏆 ≛ on 2/3/2025 in #questions
Theo recent auth video on JWT
how are you going to have up to date information in refresh token, if you dont rotate refresh token with access token.
23 replies