Leandro Facchinetti

Results 212 comments of Leandro Facchinetti
trafficstars

I disabled `check-clauses` in `judgement-form.rkt` by comment out its body and making it return `rest`. The error stays the same. I went even further and redefined `raise-syntax-error` to a no-op...

Of course, you are right. Disabling the check—i.e., returning `cs` instead of raising an error with `raise-ellipsis-depth-error`—changes the error message in the test to "syntax: missing ellipsis with pattern variable...

I can confirm the issue. It happened exactly the same to me. I believe a suitable solution is just to remove the part mentioning `unique` as a meta-function. I don't...

@maxb2: Yes, I have some thoughts! 😃 First, thanks for the contribution! It’s great to hear from you again. Second, some questions: 1. Do you think that the same behavior...

For what it’s worth: I updated to OBS 28.0.2 & https://github.com/Palakis/obs-ndi/actions/runs/2977380826 and it’s working great. Awesome job @tt2468 and other people who are involved 😁 Thank you very much!

For what it’s worth, I’m running into a similar issue: `nvm`’s `default` is `18.11.0`, but a new terminal is using `19.0.0`. I [tried `xcode-select --install`](https://github.com/nvm-sh/nvm/issues/2669#issuecomment-984900062) and [also tried reinstalling `nvm`](https://github.com/nvm-sh/nvm/issues/2669#issuecomment-984457942)....

@ljharb First, thanks for the response. (And for all your work on open-source software 😁) I’ve never created `.nvmrc` files myself. I also checked the following locations: - Project folder...

> > @ljharb: > It could be in any folder up to /, but the only other likely place is $HOME. Yes, I checked them. That’s what I meant by...

Hi @jeffrson, Thanks for reaching and for the bug report. For the time being, you can try something like: ```typescript import { default: caxa } from 'caxa' ``` I haven’t...

@jeffrson & @GabenGar: caxa starting version 3.0.0 is an [ESM-only package](https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c). This means there’s no more awkward imports: ```typescript import caxa from "caxa"; ``` 👏