Vincent Rubinetti

Results 267 comments of Vincent Rubinetti
trafficstars

Right, it seems like it would be the opposite of that endpoint. And yeah I'd probably need a POST endpoint, because the amount of text could be quite long. So...

Regarding your 3 questions. I dont think it matters to me whether it's `null` or absent. I believe what I'd need here is exact (full?) matches. I'm not sure either...

Hmm that is really slow. I kinda threw out that "case-insensitively" very causally, I hope you didn't feel like you had to spend time on it. Case sensitive should be...

Just to be clear, none of these issues that I've been making on `biolink` and `monarch-new` are show-stoppers. I'm creating issues to track everything that I would like to see...

Oh nevermind just noticed this project is dead. https://github.com/csscomb/csscomb.js/issues/461 bummer

Correct me if I'm wrong, but wouldn't this be solved if we simply had access to the `inputRef` for the actual input field? That way we could attach our own...

👍 for this. This would most conveniently be provided along with `currentAttempt` to the callback function in `operation.attempt(fn)`. Yeah you can calculate it with [the formula](https://github.com/tim-kos/node-retry#retrytimeoutsoptions) or with the `retry.timeouts`...

@deepakgupta25 I don't think I can help you there. What I think I meant by using `defaultValue` is that I needed, well, a default value... and I was looking to...

Here's another use case, albeit a very rare edge case. I have a website template I've made using Jekyll. It has a bunch of built-in "components" (`_includes`) that the user...

Just wanted to share my experience for anyone looking for the same issue. I had a simple button component like this: ```tsx interface Props { text?: string; icon?: string; }...