Matt Mueller
Matt Mueller
Do you know why this doesn't work? ```ts const hotels = await prisma.hotels.findMany({ where: { checkin_date: new Date('2021-02-03') } }); ``` This would be my preferred way to fix this...
@tobiasdiez thanks for sharing. Let's hope this makes it in there. I could see us accepting a date as a string in the case when you have `@db.Date`. FYI, I'll...
This is similar to how Slack does IDs: - Users: `U + uid(8)` - Groups: `G + uid(8)` - Messages: `M + uid(8)` I also like this approach because it...
We'll do this for the table view. We'll do it for the tree view if it takes less than 1 hour, otherwise we'll tackle that post-Beta.
Quick brain dump of thoughts for slicing unstructured data: - Postgres supports subqueries on unstructured data: https://www.postgresql.org/docs/9.3/functions-json.html. So you could do `select '{"a":1,"b":2}'::json->>'b'` and get `2`. We could consider exposing...
Just started playing around with Templ today. Really great project! This was one of the first questions I bumped up against, "how do I style more than one element at...
Definitely down to chat more about the design! But here's some initial thoughts: > I have an example of using tdewolff's parser to add in support for interpolated variables, see...
@a-h Awesome! > What I'm hearing from templ users is that they want to be able to: Great to hear this is coming from user feedback! At the risk of...
Hey @zimdo, thanks for the prompt! I stepped away from working on UI stuff for a bit, but still planning on coming back to this! If anyone feels like picking...
Interesting idea! > I like this idea because it means people can just write regular css and use it in a template. +1, I like this about the proposal too,...