Bryan Jones

Results 610 comments of Bryan Jones

You sure you meant to have three "o"'s in the word "cooler"? CodeKit just runs Dart Sass. It does not change the way Dart Sass resolves imported files. If you...

I'm not familiar with Vite. But again: CodeKit just invokes Dart Sass. It has nothing to do with resolving `@use` or `@forward` statements. The explanations I can think of off...

I’m unfamiliar with how vue and react manipulate the DOM on page load, but I suspect that’s the cause. When CodeKit refreshes the page on a non-stylesheet change, it waits...

As for the brief flash to the top: that’s expected. I have to wait a short bit for the DOM to be ready before attempting to reset the scroll offset—when...

I haven't really tested on versions of macOS where Muzzle got sherlocked, but my guess is that by flipping on the allow notifications option, you cause macOS to stop calling...

Hmm. There's a lot of overhead involved in sharing the screen, so I'm surprised that Bartender relies on that. That's also a very large attack surface to have constantly exposed....

Hmm. Restarting the server is not a common task. In theory, you should never have to do it at all. That’s why the command is somewhat buried in the server...

Yep. CodeKit simply replaces _every_ instance of the external server name that it finds on the page, using simple string-replacement. It does not parse the HTML (because that would be...

Ha. Regex is not available in C, which is what CodeKit's server is written in. Regex is also very bad for performance --- there's a reason C is hundreds of...