Sightem
Sightem
**Is your feature request related to a problem? Please describe.** The administrator account should be able to disallow normal users from creating new libraries **Describe the solution you'd like** Per...
rofl kek
tfw the skid list is skidded
This pull request replaces the usage of QT's JSON library with nlohmann's JSON library in order to improve code readability and maintainability. QT's JSON library syntax can be unintuitive and...
I was looking at the selection combo box and there was no manul option?! how could this be?? this pull request should fix this issue
### Description It appears that the library has trouble with static linking (specifically in debug mode) when included using [CPM](https://github.com/cpm-cmake/CPM.cmake). I cannot reproduce this when building in release or release...
This PR refactors `CookieParser::before_handle` to use `std::string_view` for parsing the `Cookie` request header, avoiding extra `std::string` allocations during slicing and trimming Tested against the original code with around 20 inputs,...
The current `CookieParser::before_handle` implementation creates several `std::string` objects during the parsing of the `Cookie` header value. This can be optimized by using `std::string_view` to slice the header string directly. Addresses...
This PR implements a new "Step Until Return" debugger command that allows the CPU to continue until it encounters a return instruction (RET, RETI, etc.) at or above the current...