Nipun Paradkar
Nipun Paradkar
On trying to check/uncheck hidden checkboxes, it gives the following error: `Could not compute content quads`. Is there any way to check/uncheck hidden checkboxes?
**Describe the bug** Currently, Slidev auto-selects the "cover" layout for the first slide and "default" for the rest. I feel it should select the "intro" layout for the first slide...
**Describe the bug** While creating a theme, when you update a file, it takes too long for Slidev to pick up the changes and refresh the browser. Even sending `SIGKILL`...
When you're using version control like git, you only want RuboCop to run on the parts of the file which were changed. Since there are many version control systems, it...
I ran `ctags -R --exclude=node_modules` and checked the generated `tags` file and found out that the `node_modules` folder was successfully excluded from the output. But when I do the same...
`XMLHttpRequest` sends cookies if they are present in a `Cookie` request header, and also sets them if the `Set-Cookie` response header is present. I wanted to test this scenario in...
I have the following code: ```js import mock from "xhr-mock"; /** * ... setup and teardown ... */ it("should make jest fail", function() { expect.assertions(1); mock.get("/", function(req, res) { expect(true).toBe(false);...
We're trying to implement Video on Demand using this module with HLS configuration in Remote mode. We have a Rails server responsible for serving the MP4 files. The way our...
Hello @danott Great work on this package as this was exactly what we were looking for for our use case. I just have one question. Since this package uses the...
Assume the following RBS file: ```rbs class Foobar @baz: Integer def initialize: (Integer baz) -> void end ``` and the following Ruby file: ```rb class Foobar def initialize(baz) @baz =...