Nathan Ridge

Results 83 issues of Nathan Ridge

I would like to use Tomboy for two different sets of notes. The two sets of notes should be stored in different places on the hard drive (one inside an...

enhancement
help wanted

In JS, you don't need to have an instance of Node to access a constant like Node.TEXT_NODE. However, in the C++ bindings, Node::get_TEXT_NODE() is a non-static method, which means I...

The IndexedDB API has a [second edition](https://w3c.github.io/IndexedDB/) which supports some new methods like [`IDBObjectStore.getAllKeys()`](https://w3c.github.io/IndexedDB/#dom-idbobjectstore-getallkeys). It would be nice if Cheerp exposed these new methods.

In the following C++20 code: ```c++ enum class Foo {Bar, Baz}; void test() { using enum Foo; } ``` the `Foo` in `using enum Foo` does not get a semantic...

Is there a way to time out an `Editor::readline()` operation? That is, make it so that if the user doesn't enter anything within a time limit (say, 5 minutes), have...

enhancement

## Checklist - [x] I'm reporting a new site support request - [x] I've verified that I'm running youtube-dl version **2021.12.17** - [x] I've checked that all provided URLs are...

site-support-request

Fixes https://github.com/google/googletest/issues/4110

### Describe the issue clang-tidy produces a diagnostic for code in the expansion of the TEST() macro ### Steps to reproduce the problem 1. Install latest googletest trunk 2. Create...

Using the [Release checklist](https://github.com/clangd/clangd/wiki/Release-checklist) from the wiki as a template: ## Once the release branch is created - [x] https://github.com/llvm/clangd-www/pull/96 - [ ] Document any notable new features on the...

For the following code: ```c++ struct mutex_t {}; #define DEFINE_SPINLOCK(x) mutex_t x = mutex_t{} static DEFINE_SPINLOCK(inode_hash_lock); ``` `textDocument/documentSymbols` returns the following: ```json { "id": 5, "jsonrpc": "2.0", "result": [ {...

bug