Gary, el Pingüino Artefacto
Gary, el Pingüino Artefacto
Explore posts from servers
TTCTheo's Typesafe Cult
Created by Exotic on 3/30/2025 in #questions
Is 1500 messages enough to get me through studying for 5 midterms
I don't think I've even sent 1,500 messages in my entire life.
3 replies
CDCloudflare Developers
Created by Gary, el Pingüino Artefacto on 3/23/2025 in #workers-help
Caching for Workers
10 million included in the plan is more than enough and managing 2 different buckets and changing a lot of code is not something I'm willing to do right now
7 replies
CDCloudflare Developers
Created by Gary, el Pingüino Artefacto on 3/23/2025 in #workers-help
Caching for Workers
Got it, thanks 😄
7 replies
CDCloudflare Developers
Created by Gary, el Pingüino Artefacto on 3/23/2025 in #workers-help
Caching for Workers
Is there any work around for this instead? Like a custom cache rule or magic header?
7 replies
DTDrizzle Team
Created by wagasa on 3/2/2025 in #help
$count
not in with
3 replies
DTDrizzle Team
Created by wagasa on 3/2/2025 in #help
$count
what needs to go in extras
3 replies
HHono
Created by Gary, el Pingüino Artefacto on 2/26/2025 in #help
Typing nested controlled
Got it, thanks 😄
9 replies
HHono
Created by Gary, el Pingüino Artefacto on 2/26/2025 in #help
Typing nested controlled
import { Hono } from "hono"

// reviews controller
export const reviewsController = new Hono<object, {}, "/api/books/:bookId/reviews">()
.get("/", (c) => c.json({ message: "Hello, world!" }))
.get("/:reviewId", (c) => {
const bookId = c.req.param("bookId")
const reviewId = c.req.param("reviewId")
return c.json({ bookId, reviewId })
})

// books controller
export const booksController = new Hono()
.get("/", (c) => c.json({ message: "Hello, world!" }))
.get("/:bookId", (c) => c.json({ message: c.req.param("bookId") }))
.post("/", (c) => c.json({ message: "Hello, world!" }))
.put("/:bookId", (c) => c.json({ message: c.req.param("bookId") }))
.delete("/:bookId", (c) => c.json({ message: c.req.param("bookId") }))
.route("/:bookId/reviews", reviewsController)

// main controller
export const controller = new Hono().route("/api/books", booksController)
import { Hono } from "hono"

// reviews controller
export const reviewsController = new Hono<object, {}, "/api/books/:bookId/reviews">()
.get("/", (c) => c.json({ message: "Hello, world!" }))
.get("/:reviewId", (c) => {
const bookId = c.req.param("bookId")
const reviewId = c.req.param("reviewId")
return c.json({ bookId, reviewId })
})

// books controller
export const booksController = new Hono()
.get("/", (c) => c.json({ message: "Hello, world!" }))
.get("/:bookId", (c) => c.json({ message: c.req.param("bookId") }))
.post("/", (c) => c.json({ message: "Hello, world!" }))
.put("/:bookId", (c) => c.json({ message: c.req.param("bookId") }))
.delete("/:bookId", (c) => c.json({ message: c.req.param("bookId") }))
.route("/:bookId/reviews", reviewsController)

// main controller
export const controller = new Hono().route("/api/books", booksController)
9 replies
HHono
Created by Gary, el Pingüino Artefacto on 2/26/2025 in #help
Typing nested controlled
I got away doing this but idk if it is correct
9 replies
TTCTheo's Typesafe Cult
Created by cloud on 2/26/2025 in #questions
What are some Free Database Providers that don't go to sleep on inactivity?
I think Xata doesn't sleep, but I'm not sure
9 replies
DTDrizzle Team
Created by san4d on 4/11/2024 in #help
Parameterized Interval in Where Clause
thanks dude 😄
6 replies
TtRPC
Created by Gary, el Pingüino Artefacto on 1/5/2025 in #❓-help
Type safe errors?
With the errorFormatter, these errors will be on every procedure even if the procedure doesn't procedure them
7 replies
TtRPC
Created by Gary, el Pingüino Artefacto on 1/5/2025 in #❓-help
Type safe errors?
Almost, but not quite there. For example, if a procedure requires some authentication, then in the error prop something like "AUTHENTICATION_ERROR", if the procedure also needs to validate permissions, then the error should be like "AUTHENTICATION_ERROR" | "MISSING_PERMISSIONS".
7 replies
HHono
Created by Gary, el Pingüino Artefacto on 1/3/2025 in #help
Type safety in middleware?
thanks for the help 😄
12 replies