Julien Ripouteau

Results 124 comments of Julien Ripouteau

Guys if you are looking to update your charts tick by tick in real time, check out my PR which do exactly that: https://github.com/liihuu/KLineChart/pull/168

Hey, thanks you ! I am afraid that this is not possible. Since the graphic is drawn using unicode characters, it is not possible to draw other characters on top...

Hey, i'm [working on a small library](https://github.com/Julien-R44/hot-hook) to have some sort of "HMR" with Node ( using the query params hack in the import path ) and I met this...

I would say we should do the reverse. I mean, change the names of the environment variables I know this was the case on V5: we had variables SES_ACCESS_KEY_ID etc.....

it won't be possible since `only()`, `except()` and `apiOnly()` are called AFTER using `resource()` method this means that you won't be able to accumulate type information in a generic. because...

that looks cool dude, well done. making a typecript plugin really doesn't look easy ahah my two cents on this: with V6, we've finally been able to get rid of...

after some research, I noticed that Next.JS also offers a typescript plugin: Doc : https://nextjs.org/docs/app/building-your-application/configuring/typescript#typescript-plugin Source : https://github.com/vercel/next.js/blob/b8a7efcf1361da29994247f7d2dd6b58912b6a9e/packages/next/src/server/typescript/index.ts In fact, im afraid that it's looks too "magical", or that it...

I would suggest trying something like this : ```ts // utils.ts export function isModuleInstalled(moduleName: string) { const require = createRequire(import.meta.url) try { require.resolve(moduleName) return true } catch (error) { return...

i agree a breaking change just for that would be a bit annoying I would say : - lets re-export `withAuthFinder` from the `mixins` submodule right now - lets also...

Looks like a `moduleResolution` related problem or something like that. Could you share tsconfig please? Otherwise, happy to receive a PR for that :pray: