Oleksandr Dzhychko

Results 10 comments of Oleksandr Dzhychko

If you like the idea, I could try to implement it.

Adding filters/search would be nice. The search could look for the text in title, description, speaker name, location name and track name. By default I would sort by start time....

@johnjohndoe I will mind the issue for searching and filtering [#3]. What do you think about adding the list view somehow like this: | ![Screenshot from 2020-01-05 00-33-43](https://user-images.githubusercontent.com/49478222/71772918-2dc70f00-2f54-11ea-9f0f-8539e53bd1fb.png) | ![Screenshot...

Visualizing **overlapping favorites** only helps if you have the sessions favorized. But it does not help if one wants to know which sessions (that are not favorized) start in the...

I could reproduce the error. # steps 1. Open *gnome-terminal* on the **secondary screen**. 2. Tile *gnome-terminal* (Floating mode -> Ctrl + e -> the next tiled mode) 3. Close...

> Hm, why do you need exactly LIST and it can't be just some kind of Tuple3 class? I'm not sure, I understood your question correctly. I want to serialize...

I just noticed that I made a mistake in the example. I changed the following in the example just now: ``` 58,59c60,61 < @OptIn(InternalSerializationApi::class) (buildClassSerialDescriptor ( < "dev.oleks.ListOfThreeElements", *typeParameters ---...

@pdvrieze Thanks for the suggestion, but I do not understand how to apply it. Could you perhaps elaborate further? I found the [documentation for `JsonTransformingSerializer`](https://github.com/Kotlin/kotlinx.serialization/blob/master/docs/json.md#json-transformations) and the [KDoc for `StructureKind.LIST`](https://github.com/Kotlin/kotlinx.serialization/blob/10778f3bb86e2e42433fbc7b2bcca5d647126d1d/core/commonMain/src/kotlinx/serialization/descriptors/SerialKinds.kt#L196-L206)....

There exists the [a variant of the `post` function](https://github.com/ktorio/ktor/blob/8414caf84478d7467ec6a46ade211c8e68c629c9/ktor-server/ktor-server-plugins/ktor-server-resources/common/src/io/ktor/server/resources/Routing.kt#L101-L113), that takes the type of the body as a second type parameter. So instead of ```kt post { parameters -> val...