Valeria

Results 7 comments of Valeria

Greetings. I'd like to help with this idea. I believe there should be a cascade of networks - with first one to determine the type of the image (Ultrasound, X-Ray,...

I've made [@emotion/css](https://emotion.sh/docs/@emotion/css) work with fresh for one of the projects. It works for islands and server-side rendered pages, but I **didn't test it enough** to call it production ready...

I use a *hack*-around for my SvelteKit TypeScript Node project: ```ts // Create a promise, therefore start execution const setup = doSomeAsyncSetup().catch(err=>{ console.error(err) // Exit the app if setup has...

@livehtml Sure ```ts const doSomeAsyncSetup = async ()=>{ await connectToDB() await runMigrations() await chantASpell() await doWhateverElseYouNeedAsyncSetupFor() } // Create a promise, therefore start execution const setup = doSomeAsyncSetup().catch(err=>{ console.error(err) //...

I'm not sure I agree with the restrictions you're setting. For example, I myself prefer to use whitespace and multi-word senseless passwords like `r0ck p@rrot dieSel`, which are easy to...

@connected-tcaceres Haven't tried, but it should be possible to [use without Jest](https://testing-library.com/docs/react-testing-library/setup#using-without-jest). I'll look into extending the functionality, I don't have a good answer yet :-)

Hi @connected-tcaceres! I've looked into extending tiny-jest and you can see progress in #8. Though, as I found out, `jest` has a lot of their functionality built-in within their context...