René Kijewski

Results 130 comments of René Kijewski

One option that only just now came to my mind: ```jinja2 {% match x %} {% when Some(x) %} x = {{x}} {% when None {} %} None {% endmatch...

The advantage would be, that we could possibly mark arbitrary types as safe, so the HTML escaper has to be called less often, e.g. when printing numbers.

@maboesanman, that's exactly how I implemented it :) https://github.com/ParkMyCar/compact_str/blob/fde06e5dae3077e4051202d3ce56897740c40a8f/compact_str/src/cow.rs#L103-L118 https://github.com/ParkMyCar/compact_str/blob/fde06e5dae3077e4051202d3ce56897740c40a8f/compact_str/src/cow.rs#L434-L439

Implemented for 'static. Making any 'lifetime usable would still be useful, but the implementation is this PR is not needed anymore.

Thank you for working on this! According to and AIX has its own time zone naming scheme, incompatible with the names in the Time Zone Database. So I guess there...

I would scan `/etc/environment` for `TZ=…`, same as in illumos. This way the logic is the same as in our other platform implementations. Maybe you don't even need to add...

As far as I understand it, every name in the Olson database is a valid value for a POSIX tz string, but the reverse is not true. I am only...

Yes, I think it's fine to enable tvOS support, even if untested. I did the same for solaris in #55, because it *should* work the same as in illumos.