Vedant Roy

Results 94 issues of Vedant Roy

I have the following line in my code: ``` app.use(express.static("public", { maxAge: "1h" })); ``` Ideally, I'd only allow cors on this route. What would be a good way to...

question

I have a situation where I create a React component that has a shadow DOM inside using (https://github.com/Wildhoney/ReactShadow): ``` import { css, styled } from "goober"; import root from "react-shadow";...

discussion

I'm trying to create a bundle for running wasmer-js in the browser. However, I keep on running into issues. Specifically, the browser bindings seem to import a buffer/crypto polyfill. However,...

If I have the following handler, is it possible to get the text content / innerHTML? ```rust element!("title", |el| { let page_title = // some way to get the text...

Oftentimes when developing locally you want to keep on iterating on your schema until you find the best solution. Right now, this is doable but the end result might be...

I have received the error: `edb.errors.UnsupportedFeatureError: unsupported type intersection in schema`, however there is no pointer to where this is going on inside my schema: ``` module default { type...

It would be nice if the Edge DB JS client supported Cloudflare workers: https://workers.cloudflare.com/ To do this, any references to unsupported node polyfills would need to be removed. It seems...

enhancement

If I use a tailwind framework, like daisy ui, will this still work?

Taking a look at the transformer example: https://github.com/deepmind/dm-haiku/blob/main/examples/transformer/train.py, it seems like the layers are created using function calls. For example: ``` token_embedding_map = hk.Embed(vocab_size, d_model, w_init=embed_init) ``` How does Haiku...

What is the difference between this project and https://github.com/deuill/i3-gnome-flashback. I see that i3-gnome-flashback is largely based on this project, I'm just curious if you had any insight on the use...