Lars Gyrup Brink Nielsen

Results 168 comments of Lars Gyrup Brink Nielsen

By the way, this project's license is [MIT as stated in package.json](https://github.com/LayZeeDK/energy-insights/blob/2ae91d0c0fb864c994778a23c0d91a4e693440d9/package.json#L4) but I will make it more discoverable in a license file, see #11.

> You can run `npx cypress cache path` to get the path: [docs.cypress.io/guides/guides/command-line#cypress-cache-command](https://docs.cypress.io/guides/guides/command-line#cypress-cache-command) > > That's the path of Cypress binaries: [docs.cypress.io/guides/getting-started/installing-cypress#Install-binary](https://docs.cypress.io/guides/getting-started/installing-cypress#Install-binary) Thank you very much, this is exactly what...

@geromegrignon How would I set up a job that installed Cypress using the cache without having to depend on `node_modules` and `yarn install`? Would I upload a build artifact from...

> You can run `npx cypress cache path` to get the path: [docs.cypress.io/guides/guides/command-line#cypress-cache-command](https://docs.cypress.io/guides/guides/command-line#cypress-cache-command) Hmm, it's kind of a pain that you need the `cypress` binary to get the Cypress cache...

@markostanimirovic says that it looks like `state.entities` are added in a different VM turn than `state.ids`.

@markostanimirovic Would it be okay to add `{ debounce: true }` to the `all$` selector? It seems to fix this issue, ```typescript all$ = this.select( this.select( { ids: this.ids$, entities:...

Node.js [outputs](https://github.com/nodejs/node/blob/57f92980906d272e0f02743fa171cf513f3f8508/deps/uv/src/win/error.c#L169) `E2BIG` when `ERROR_META_EXPANSION_TOO_LONG` is raised by Windows or for certain path operations, meaning > The global filename characters, * or ?, are entered incorrectly or too many global...

Node.js [outputs](https://github.com/nodejs/node/blob/2eaee2820e656a4da872ea078542b5169326bd5a/deps/uv/src/win/error.c#L129) `ENAMETOOLONG` when `ERROR_FILENAME_EXCED_RANGE` is raised by Windows, meaning > The filename or extension is too long. according to [Windows documentation](https://learn.microsoft.com/en-us/windows/win32/debug/system-error-codes--0-499-), or > Indicates that the filename is too...

The only published Code PushUp CLI code that uses `spawn` is `executeProcess` https://github.com/code-pushup/cli/blob/79dfce700e3dfc5af2a7bbc303c9a5fb12ee16a3/packages/utils/src/lib/execute-process.ts#L142 `executeProcess` is called by: - `executeRunnerConfig` https://github.com/code-pushup/cli/blob/79dfce700e3dfc5af2a7bbc303c9a5fb12ee16a3/packages/core/src/lib/implementation/runner.ts#L18-L22 - Coverage plugin https://github.com/code-pushup/cli/blob/79dfce700e3dfc5af2a7bbc303c9a5fb12ee16a3/packages/plugin-coverage/src/lib/runner/index.ts#L25 `executeRunnerConfig` is called by `executePlugin` https://github.com/code-pushup/cli/blob/79dfce700e3dfc5af2a7bbc303c9a5fb12ee16a3/packages/core/src/lib/implementation/execute-plugin.ts#L67...