Quentin Quadrat

Results 105 issues of Quentin Quadrat

Hi, I never developed with Panda3D but I needed to compile C++ code using Panda (Debian). This is a simple build shell script calling `-L/usr/lib/panda3d -lpanda` ... but it looks...

enhancement
good first issue
build

https://github.com/maemo-leste-extras/jib/commit/e3a2f2bdb1f552ba00ea49a6bdef337de3693f19

Trying to connect to your Google account ![image](https://github.com/user-attachments/assets/47d4e5d3-e55a-4451-9139-77570f8eaf8a) Idea of workaround: https://stackoverflow.com/questions/77732364/how-to-sign-in-to-google-account-with-chromium-embedded-framework-cef

Could be nice. Users requested it but it seems to be hard to implement. Need to Zipper::close() call Unzipper of the current data, parse the entries and copy data to...

help wanted

@wutzig I'm refreshing the code. It seems to me concerning std::vector is only updated on Zipper::close(), Ill check if we can refresh it once Zipper::add() has been called. Concerning Unzipper,...

help wanted

Add to Minizp CMake the option SKIP_INSTALL_ALL to prevent installing .a and .h files when embedded by Zipper's CMake

Hi! I've not yet tested your project which sounds great. Do you plan to load opendrive files? I give a link to a C++ project rendering opendrive roads and load...

enhancement

Hello ! I read the code source of the repeater node. ``` NodeStatus RepeatNode::tick() { ... bool do_loop = repeat_count_ < num_cycles_ || num_cycles_ == -1; setStatus(NodeStatus::RUNNING); while(do_loop) { ```...

Hello ! For a C++ Linux project, I do not want to do: ``` int main(int argc, char **argv) { if ( !PL_initialise(argc, argv) ) ``` but this instead: ```...