Andy Li
Andy Li
I was [asked](https://github.com/vitejs/vite/issues/1197#issuecomment-739136611) to open another issue for this. ## Describe the bug Vite doesn't inline svg files when the documentation says it would. ## Reproduction https://bitbucket.org/andylizi/test-vite-svg-inline/ #### Expected behavior...
`backtrace-rs` uses [`StackWalkEx`](https://docs.microsoft.com/en-us/windows/win32/api/dbghelp/nf-dbghelp-stackwalkex) on Windows, which calls [`SymLoadModuleEx`](https://docs.microsoft.com/en-us/windows/win32/api/dbghelp/nf-dbghelp-symloadmoduleex) in turn. The symbol modules are never unloaded afterward, keeping the PDB files open until the process exits. Normally this wouldn't be...
I was fiddling around with the settings when I saw the default hotkey for undo is `Ctrl-U`, and I thought to myself "Oh, and why would any hotkey that undo...
I don't believe there're any bytecode editors support this feature yet. It's not a high priority or very important (IMO, as I can't think of many cases where some changes...
### Google search terms * rollup windows path * rollup relative path windows ### Describe the bug ```js import '../Users/andylizi/js-react-boilerplate/chunks/shared-dc6c5192.js'; // ^^^^^^^^ what? console.log('background script'); ``` ### How do we...
### Summary This PR implements AVX2 runtime feature detection that works in `no_std` using the `cpuid` instruction. ### Motivation `memchr` provides low-level primitives, and it's unfortunate that we cannot make...
#### `worker.js` ```js importScripts("https://unpkg.com/comlink/dist/umd/comlink.js"); // importScripts("../../../dist/umd/comlink.js"); const obj = { foo(...args) { console.log(this); const list = this.bar(); console.log(list); list.push(...args); return list; }, bar() { return [1, 2]; } }; Comlink.expose(obj);...
### Description ```json { "type": "object", "minProperties": 1, "properties": { "phoneNumber": { "type": "string" }, "emailAddress": { "type": "string" } }, "additionalProperties": false } ``` This schema will fail with...
According to [RFC 7489](https://datatracker.ietf.org/doc/html/rfc7489#section-6.3), `pct` is optional and defaults to 100. Current code reject DMARC records without `pct=100`, which is unnecessarily strict. For example, `gmail.com` doesn't set `pct=100` for its...