Taesung Hwang

Results 7 comments of Taesung Hwang

So far, I have not run into any major issues by forcibly enabling retina support in `Contents/info.plist` by adding ``` NSHighResolutionCapable ``` The images could be of higher resolution, but...

While the specification does describe other acceptable values for the `type` attribute, the `` elements created by feedgen fail the [W3C Feed Validation Service](https://validator.w3.org/feed/): > Not a valid MIME type:...

Thanks for the clarification. I see the documentation mostly uses terminology around packages, but I think it would also help if the CLI option description in `turbo run --help` could...

Can confirm as described in the [matplotlib API changes for 3.8.0: cbook removals](https://matplotlib.org/stable/api/prev_api_changes/api_changes_3.8.0.html#cbook-removals). Would appreciate if this fix could be merged @e-hulten, thanks.

The underlying [Modal component from @restart/ui](https://github.com/react-restart/ui/blame/c586de20ef0c9ef8351a4ead8f667a03ad9c13e0/src/Modal.tsx) should support unmounting after exiting. The actual DOM element may stick around slightly longer to support the sliding and fading animation, but the element...

Regarding "mappings that allow multiple values for the same key", do you have an example of such a structure used in practice? From my perspective, such a structure wouldn't quite...

How about a bit more prudent check? ```python if hasattr(headers, "copy") and hasattr(headers, "update"): ... else: ... ``` Any usage that works today would fall in the first branch and...