Jeroen Claassens

Results 188 comments of Jeroen Claassens

Seconding this as it would be nice to do `g c --amend` etc or heck even a specific shortcut for amending in `g c a` or `g ca`

If you want to use server sided environment variables in NodeJS you should really use [DotENV](https://www.npmjs.com/package/dotenv). Simply have a file named `.env` (no name, just extension, just like `.gitignore` and...

@vegeta897 I have done some rework for my own hosting of this as described in https://github.com/vegeta897/d-zone/issues/55#issuecomment-389353389. This comment also shortly goes into how I did my dotenv. For my implementation...

since I haven't seen it mentioned yet I think it's also worth mentioning that a `--verbose` flag would pretty much "fix" the display of errors/warnings. no `--verbose` ==> Only display...

Previously I commented here that we had a solution for work. The short version is that it was based on @testerez work. Sadly for whatever reason that was a moment...

I can fully back this up. This calls for serious work on it again and considering the [status of youtube-center](https://github.com/YePpHa/YouTubeCenter/wiki#status-of-youtube-center) I fear the worst. This may very well be the...

@rayman89 doesn't work at all at least on Vivaldi. It still takes away the entire top bar and videos still don't play. Have you actually confirmed this fix working for...

@sleeksorrow yep looks like a duplicate indeed.

I just ran into this issue on a system whose primary OS is Windows 11 so my bios didn't even allow me to disable secureboot. That said however, the comment...

The idea is interesting. Instead of using a class extending null we can also leverage TS namespaces: ```ts export namespace PreconditionList { export function and(...entries: RecursivePreconditionStrings) { return entries; }...