Jiří Pudil

Results 38 comments of Jiří Pudil

Hi, yes, sure, as soon as I'm able :) I was on a few vacations recently and now I need some time to catch up with work stuff first

Hi, this is strange, your original code snippet ```php $whenUtc = ZonedDateTime::parse('2021-07-18T07:00:00Z'); $whenUtc->getTimezone()->isEqualTo(TimeZone::utc()); ``` actually gives me `true`, at least on the latest master. `TimeZone::utc()` is always resolved to a...

Hello there. We faced a similar issue at work, so let me throw in my two cents: > Common task is convert date for human readability format A common task...

> The locale-based formatter is more obscure regarding possible formats That, I believe, both is and isn't true. Let me just bring a related thought to light: In Java, some...

Just for the record, we're facing a similar issue and I've tracked down where it comes from: ```php $user = $this->userRepository->findBy(['activateToken' => $token]); // SELECT `id`, `isActive`, `email` FROM `admin_user`...

`createIdentity` just does something like this: ```php return new Identity($user->id, [ 'language' => $user->language, //

Hi, I'm afraid I don't fully understand. The methods are marked `async` so that they consistently return a Promise. Even though they don't await anything, they use early-return and throw...

Hi, I'm closing this for inactivity. Feel free to reopen this issue if you have further insights into the problem.

`naja.load()` is a thing of the past, Naja hasn't been using the associated `load` event since 1.5.0, and 2.0.0 dropped it entirely. I guess it should suffice to wrap the...

I'm not familiar with the datagrid nor its treeview, but it seems that it's adding some elements to the page dynamically. The `naja.load()` method might have been used to attach...