Jesse Claven

Results 17 comments of Jesse Claven

Thanks for the report @Lubits! I can't promise when I'll have time to look into it, but I'll give an update when I have a better idea. Which macOS version...

@Lubits that's helpful, thank you. @johanneslofgren haha, that's honestly good motivation. I'll keep you and your prophesying abilities in mind. ;)

@jmmygoggle thank you for the contribution! Since the output was automatically converted from the official theme, it means that if the scripts were re-run, these changes would be lost. I...

Intuitively I thought this might be to do with the > 255, and testing it out it looks like it might be. ``` gore> govalidator.IsDNSName("1.1.1.255") (bool)false gore> govalidator.IsDNSName("1.1.1.256") (bool)true ```...

I suppose it could be configurable if for passes and/or failures? Either one brings in that scenario where there's multiple tests running at once. Since if n > 1 tests...

I've at least used the automatic theme conversion tool to create a theme for the editor: https://github.com/jesse-c/ayu-jetbrains.

@soyaine, the script I made is setup to convert all `.tmTheme` files found in https://github.com/dempfi/ayu.git

Sounds good. :) I'll throw something together.

At least for me (and where I work), one of use cases is that it helps to quickly track exactly where that log message occurred. If a log message is...

Implementation-wise, it might be easier to let the `WithError()` `source` take precedence. From my cursory look, I was thinking of a change like this: ``` func NewEntry(log *Logger) *Entry {...