Posts by Cherry Red • 11 points
2 posts
-
0
votes2
answers942
viewsQ: How to make my function Len() return the size of Std::string, vector and const char *?
My job len() in C++ can return the size of std::string and of std::vector<std::string> but cannot return the size of const char *, 'Cause for that or I’d have to use strlen() or convert const…
-
0
votes1
answer295
viewsA: Minimize GUI in System Tray - Python 3
There are several alternatives. You can use pystray (It is necessary to install PIL): pip install pystray Or Systrayicon.py It is necessary to install pywin32 and have an icon file named 'icon.ico'…