MartinMueller.dev
MartinMueller.dev
TTCTheo's Typesafe Cult
Created by Typedef on 6/30/2023 in #questions
Need advice on handling 10,000 images on Lambda
nope can't find it anymore. I think was on a client in a private repo.
6 replies
TTCTheo's Typesafe Cult
Created by Typedef on 6/30/2023 in #questions
Need advice on handling 10,000 images on Lambda
@_typedef you can do some stream pipeline stuff with processing, zipping and uploading. It is a while back when I did that on lambda. I'll try to find the code.
6 replies
TTCTheo's Typesafe Cult
Created by mathels on 7/1/2023 in #questions
should i buy a mac ?
You are kind of carpenter or want to be one! Do you not deserve/need the best tool for it?! That is a mac.
20 replies
TTCTheo's Typesafe Cult
Created by Temp Change on 6/28/2023 in #questions
Storing a Triple Nested Object
You have some optiones as prisma allows those keywords createMany or create like
await ctx.prisma.hackathon.create({
data: {
...input.about,
organizer: { connect: { id: organizerId } },
themes: input.about
? {
createMany: {
data: input.about.themes.map((theme) => ({
name: theme.name,
})),
},
}
: undefined,
await ctx.prisma.hackathon.create({
data: {
...input.about,
organizer: { connect: { id: organizerId } },
themes: input.about
? {
createMany: {
data: input.about.themes.map((theme) => ({
name: theme.name,
})),
},
}
: undefined,
3 replies
TTCTheo's Typesafe Cult
Created by MartinMueller.dev on 5/22/2023 in #questions
City location
@JulieCezar thanks a lot. That looks super promising 🙂
9 replies
TTCTheo's Typesafe Cult
Created by thejhonny on 4/7/2023 in #questions
Tailwind or Chakra?
There are sites helping you with the component code when using Tailwind like https://flowbite.com/docs/components/accordion/ or https://ui.shadcn.com/docs/primitives/accordion
45 replies