Mathias Lafeldt
Mathias Lafeldt
The debugger must be able to manage both code and hook lists of the cheat engine. This is required to add new codes and hooks remotely (via ntpbclient) while a...
Implement read, write, and execute breakpoints with proper address mask support. Watchpoints only watch for certain addresses to be executed. When the breakpoint/watchpoint hits, the game pauses and reports back...
Assuming that #3247 is fixed by #3248, executing [this large JS file](https://github.com/mlafeldt/boa-playground/blob/91754356dcd6ffc80ed59d79b149165d887816f2/broken/ethers-5.7.2.umd.min.js) will never finish: ``` ❯ boa --version boa 0.17.0 ❯ boa broken/ethers-5.7.2.umd.min.js ``` Using `boa --trace` shows that...
This makes `create_runtime_snapshot` more useful for embedders who add their own extension(s) to the runtime in build scripts. --- I guess the alternative would be to use the method as-is...
Hi, I started using TomDoc for some shell scripts of mine and I really like it so far. One thing I'm not entirely sure how to do best though is...
Before or after pushing a new release. Based on the new API endpoints: http://blog.packagecloud.io/eng/2015/04/27/announcing-package-and-versions-api/
Note: This isn't so much a fix (yet) but a starting point for discussion. We've been running into a panic in `to_v8_error`: `Custom error class must have a builder registered:...
After reading https://v8.dev/blog/sandbox, I wonder whether you plan to enable the sandbox feature anytime soon? > The V8 Sandbox is a new security mechanism designed to prevent memory corruption in...
e.g. to get the worker's name for `wrangler tail` ```ts const site = new sst.cloudflare.StaticSite('Example', { path: 'dist', }) return { kv: site.nodes.assets.id, worker: site.nodes.router.nodes.worker.name, } ``` Closes #843
HEAD or POST requests currently result in this exception: { "stack": " at saveCache (worker.mjs:71:19)\n at respond (worker.mjs:85:13)\n at fetch (worker.mjs:35:22)", "name": "TypeError", "message": "Cannot cache response to non-GET request.",...