oljimenez.bsky.social
@oljimenez.bsky.social
Reposted
28 Mar 2025
March 28, 2025 at 7:21 PM
@timneutkens.bsky.social @storyhb.com

Hi, sorry for the tag.But i wanna make some question about Nextjs ISR + Streaming

I'm trying to achieve some way the following

When using ISR and not declaring statics params, in the first time Nextjs uses SSR, then save the static part in the CDN

/continue
March 13, 2025 at 4:15 AM
I love @tanstack.com Query, but i really wish some day we could have this

@tkdodo.eu any idea how could this be? I know that's something can't be on RQ core, but i could build a package if i've the correct idea.

Maybe not fetch because it's too native but a wrapper around fetch.
December 9, 2024 at 9:28 AM
@tkdodo.eu Hi, i'm building HTTP layer ala tRPC or Zodios, but using a diferent approach.

- REST based
- Returing Result as default

So, i also building a React Query integration, and i saw this github.com/trpc/trpc/di... discution on the TRPC repo.

But i wanna know how to:

🧵
November 29, 2024 at 12:02 PM
@typeholes.bsky.social

Hi, i've a TS performance question for you.

Is the following TS types code
```
type Example> = {
...some logic
}
```
more performant than this
```
type Example = {
...some logic
}
```
Or this make things slower by typechecking?
November 19, 2024 at 8:21 AM
@mattpocock.com

Hiii 👋. I have a typescript question for you.

In the Typescript docs about performance.

In the union section, they don't give you a real alternative.

They're like just saying "don't use complex unions".

What real alternative we have to solve this?

github.com/microsoft/Ty...
Performance
TypeScript is a superset of JavaScript that compiles to clean JavaScript output. - microsoft/TypeScript
github.com
November 11, 2024 at 5:05 PM