Nikita Golubov

Results 14 comments of Nikita Golubov

First of all, I really like using your plugin, it helps a lot to enforce usage of variables in a project. But I'm having a bit of a trouble writing...

Here's the full output for beta: ```bash brew install sunshine-beta ==> Fetching lizardbyte/homebrew/sunshine-beta ==> Cloning https://github.com/LizardByte/Sunshine.git Cloning into '/Users/chill/Library/Caches/Homebrew/sunshine-beta--git'... ==> Checking out tag v2025.221.143652 HEAD is now at e3079da1 ci(flatpak):...

Tried both 20 and 17, no change for me, still `'filesystem'/'cstddef' file not found` ``` clang -v Apple clang version 17.0.0 (clang-1700.0.13.3) Target: arm64-apple-darwin24.4.0 Thread model: posix InstalledDir: /Library/Developer/CommandLineTools/usr/bin ```

Found a workaround — use duration instead of from/to: ```javascript moment.relativeTimeThreshold('d', 180) const end = moment('2017-12-01') const start = moment('2017-10-30') end.from(start) // "in 31 days" moment.duration(end.diff(start)).humanize(true) // "in 32 days"...