Tessa Bradbury
Tessa Bradbury
When I have the following as part of my csp header config: ```ruby config.csp = { frame_ancestors: %w[*.foo.com http://www.foo.com], preserve_schemes: true, ... } ``` and I'm serving my frame over...
I don't know how much this is to do with your code or Emscripten, but if your python code raises an exception, the `do_str` promise never resolves. Eg: ```js import...
I tried pulling in this npm package and compiling it with webpack but I get the following errors: ``` ERROR in ./node_modules/micropython/index.js Module not found: Error: Can't resolve 'fs' in...
I ran into the same issue as #570 and I've been trying to think of a good way to fix the issue. The solution is not entirely obvious but as...
Hi! I was looking through this code for unrelated reasons and happened to notice that `redcarpet_stack_push` is calling `redcarpet_stack_grow` significantly more often than necessary. My assumption from reading the code...
## What I did Trying to create a table of contents from a page with nested heading levels, I generated the following markup: ``` Fruit Apples Oranges Animals Dogs Cats...
## What I did We currently have a "skip to main content" link at the top of our page but theoretically it requires the main content to be focusable by...
When a job is canceled, parent processes send a SIGTERM (by default) to child processes to try and gracefully fail. If a child doesn't finish after a period of time,...