pszemus

Results 15 comments of pszemus

@ShiqiYu don't you think the [`std::vector`](https://en.cppreference.com/w/cpp/container/vector) API is better for returning data collection rather than mangling with this [`(pResults + 1)) + 16*i`](https://github.com/ShiqiYu/libfacedetection/blob/b6634f6914e9872bfc587d68ef66d42b8075c657/example/detect-image.cpp#L95) ?

There goes another month. Does anyone know anything about the status of this extension in the Gnome extensions repository? @zhrexl?

Hi @rogerlittin, I was considering that, but thought that `null` could indicate that the property is not set, while empty indicates that that the playlist has no arguments specified by...

It won't work for: ``` ``` all 3 playlists are started (including both past playlists). We could split my condition into 2 different `if` statements and introduce a local variable...

@rogerlittin does the following look better to you? ``` schedules.add(schedule); if (schedule.start.before(now)) schedules.stream() .sorted() .filter(s -> s.start.before(now) && s != schedule) .findFirst() .ifPresent(pastSchedule -> { if (pastSchedule.start.before(schedule.start)) schedules.remove(pastSchedule); else schedules.remove(schedule);...

Another idea: always keep the last past schedule at index 0: ``` if (!schedules.isEmpty() && schedule.start.before(now)) { ScheduledItem lastPastSchedule = schedules.get(0); if (!lastPastSchedule.start.before(now)) schedules.add(0, schedule); else if (lastPastSchedule.start.before(schedule.start)) schedules.set(0, schedule);...

Hi! I'm on Fedora 41 and winehq-stable (wine-9.0) and have the same problem - program window appears, I can even load presets from external .ini file but can't open (add...

I've installed wine-mono-9.3.0: ![image](https://github.com/user-attachments/assets/67c7aded-e9cd-4201-b1da-15c0d78691b2) But adding files still does not work (I can select files from "Add files" dialog, but none of them appear in the main window then). I'm...

@eibol Now it works really well! Thank you! ![image](https://github.com/user-attachments/assets/5769f52b-02a6-4a5e-aed1-73362d761b77)