Notas Hellout
Notas Hellout
Maybe this is relevant: https://github.com/phiresky/sql.js-httpvfs
AVA is noteworthy: https://github.com/avajs/ava/blob/main/docs/03-assertions.md#enhanced-assertion-messages **PS**: Mmh AVA is already mentioned in the README.
**PS**: for my use case, I can instead copy the relevant part of the file system, modify the copy, then replace the original with the copy. I am just curious...
In general, you cannot fix imports by adding a `.js` suffix. Is there a standard way to resolve the imports (the same way node.js does it)? Or are there many...
Can't [`require.resolve`](https://nodejs.org/api/all.html#modules_require_resolve_request_options) be used for that?
> Note that different logic will be required if you are using ECMAScript modules instead of the `require` API. Is this different logic available somewhere? The same way the node...
Here is a draft to answer part of the question: ```js const addLeadingDotIfNecessary = (path) => { if (path.startsWith('./')) return path; if (path.startsWith('../')) return path; return './' + path; };...
Happens every once in a while running i3-wm on arch. Does not seem to be related to window change of focus.
For example gmail: compose new mail > disable internet connection > edit mail > close window > stay on page > press b. If one opens a new tab after...
It would make the distinction between a slow executing command and an uncomplete command clearer than just the position of the cursor.