Yurii Nakonechnyi

Results 10 issues of Yurii Nakonechnyi

# Description After trying to use (**amazingly useful**) code from [gui_localfiles/qhtml5file_html5.cpp](https://github.com/msorvig/qt-webassembly-examples/blob/master/gui_localfiles/qhtml5file_html5.cpp) (for opening/saving files via browser's file dialog), (in non-Qt application, by using currently latest `emsdk` (v2.0.16)), I noticed an...

During reading sources in https://github.com/DioxusLabs/taffy/blob/main/src/compute/grid/track_sizing.rs I found a lot of direct checks for `f32::INFINITY`. This is the place where this comparison is used most often . We can easily check...

code quality

I found, that currently it imposible to edit `imspiner.h` from browser, since it's non-utf-8: ![image](https://github.com/dalerank/imspinner/assets/20372668/d65ff9bd-b3df-482a-8d4d-a9f6cd9248fd) Can you please change encoding for it? This will be very useful, because now, even...

Fixed broken link for UDP example: [examples/linux](https://github.com/mavlink/mavlink/tree/master/examples/linux) -> [examples/c](https://github.com/mavlink/mavlink/tree/master/examples/c)

For making `psychic-ui::signals` much portable (in case of standalone usage) - added small fix to make it compilable with C++11. In Signal::unsubscribe(), inside of std::remove_if(), in lambda used 'auto' item...

Hi! I'm trying to use `uvgRTP` "directly": ```cmake cmake_minimum_required(VERSION 3.5) project(my_project LANGUAGES CXX) set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD_REQUIRED ON) add_executable(my_project main.cpp) # ------------------------------------------------------------------------------ # uvgRTP library set(UVGRTP_DISABLE_CRYPTO ON CACHE BOOL "" FORCE)...