Giacomo Debidda

Results 11 comments of Giacomo Debidda

> Definitely need something like this. My particular use case is a long list of transactions (charges and payments) with an invoice number, a person's name and the transaction amount...

A possible workaround could be to avoid keeping a `index.html` in `public`, and have a `foo.html` instead. Then, when deploying the website, have a npm script hook called `predeploy` which...

Three.js has its own loader for OBJ files, but I haven't (yet) used it in this repo. Have a look at these links: - [Three.js Loading a .OBJ File](https://threejsfundamentals.org/threejs/lessons/threejs-load-obj.html) -...

If I understood correctly, this module would allow operations ranging from deleting a single runtime cache, to a complete storage dump, like the one Jake Archibald suggests in the section...

If you are hosting your site on Cloudflare Pages, you can set custom headers with a `_headers` file that should be placed in the Eleventy **build directory** (tipically `_site/`). This...

Another simple workaround is to use [entr](http://eradman.com/entrproject/) to watch your source files: ```json { "scripts": { "test:watch": "ls lib/*.js | entr -r mocha" } } ```

I created an eleventy plugin that can help you generate a `Content-Security-Policy` header (or a `Content-Security-Policy-Report-Only` header). It's in my monorepo of eleventy plugins: https://github.com/jackdbd/undici/tree/main/packages/eleventy-plugin-content-security-policy The plugin contains almost no...

Maybe showing the stack trace when `NODE_ENV=development`? Or vice versa hiding it when `NODE_ENV=production`? I have just started using fastify though, so I'm not sure about its stance in regard...

I forgot to mention that allowing a `data:` scheme is something that the **user** has to do. Instead, something that **Pagefind** could do is not embedding the SVG, and hosting...

Same thing for `.envrc` files. Each `$` in `PASSWORD_SECRET` (or any other environment variable) must be escaped.