Posts by Matheus Toniolli • 50 points
8 posts
-
0
votes0
answers38
viewsQ: Compare map<string,any> c++ 17
I can’t compare two maps . Ex: map<string, any> columnsMap = { {"status", 1}, {"client_delivered", 0}, {"client_notification", 0}}; map<string, any> columnsMap2 = { {"status", 1},…
-
0
votes2
answers236
viewsA: How to change the language of the Flutter Image Picker plugin?
The plugin does not have this functionality, you can suggest to developers here or you can clone the project and implement yourself by helping the community.…
-
0
votes1
answer327
viewsQ: Check if table exists before entering value in the Sqflite -- Flutter database
I am developing an app, my problem is that with app updates I can use other tables that do not yet exist in the existing database. The solution that came to mind was always before entering a value…
-
0
votes1
answer118
viewsA: Flutter is compiling forever (Not over)
It started working again after changing the linux kernel. I was using linux-zen and it seems that the latest version did not go well with flutter. As last resource I changed the kernel to linux-lts…
-
2
votes0
answers63
viewsQ: Simulate a mouse click using X11
I’m trying to simulate a mouse click using the X11 library on linux. Using the command xev in the terminal I have the following exits. For a real click: ButtonPress event, serial 32, synthetic NO,…
-
0
votes1
answer214
viewsA: Warning: libssl.so. 1.0.2, needed by /usr/lib/gcc/x86_64-linux-gnu/6/.. /.. /.. /x86_64-linux-gnu/libcurl.so, may Conflict with libssl.so. 1.1
I solved the problem by installing the curl updated outside the repository. From what I understood the libssl is more up-to-date than the curl in Debian 9 and this causes the library conflict…
-
1
votes1
answer61
viewsQ: Save function status in Haskell
I want to implement a button that every time it is clicked changes state in Haskell. If it is on when press it should turn off and vice versa. In c++ I would save the state in a global variable, but…
haskellasked Matheus Toniolli 50 -
0
votes1
answer214
viewsQ: Warning: libssl.so. 1.0.2, needed by /usr/lib/gcc/x86_64-linux-gnu/6/.. /.. /.. /x86_64-linux-gnu/libcurl.so, may Conflict with libssl.so. 1.1
I’m trying to copy a program that needs some libraries LIBS = -g -lmysqlcppconn -lpthread -lcurl -lboost_serialization -lreadline -lz -luWS -lssl The problem is that -lcurl and some programs need to…