#cpp

36 posts · Last used 4d

Back to Timeline
Stéphane Charette 🇨🇦 @charette@mstdn.ca · 4d ago
I think the hardest part of working on Munin plugins is that Munin only runs every 5 minutes. Every time you make a change and re-install the plugin, you must wait until it runs again to see if the change worked.. #Munin #Cpp
0
0
0
Stéphane Charette 🇨🇦 @charette@mstdn.ca · Aug 04, 2026
C and C++ developers often use !, && and ||. Many don't know that not, and and or (among others) have been part of C and C++ for 3 decades. They were introduced to C in 1995, and to C++ in 1998. if (!ok) if (not ok) if (var_a && var_b) if (var_a and var_b) if (var_c || var_d) if (var_c or var_d) Personally, I much prefer using the keywords not, and, and or. I find it makes the code much easier to read naturally. #C #Cpp
1
2
1
Daily CyberSecurity @DailyCyberSecurity@infosec.exchange · Jul 27, 2026
Apache Fory vulnerabilities hit Java, C++, and Rust deserialization, including CVE-2026-64606. Upgrade to Fory 1.4.0 to fix all four flaws. #ApacheFory #Deserialization #Java #Rust #Cpp #Vulnerability #OpenSource #Cybersecurity https://securityonline.info/apache-fory-vulnerabilities/?utm_source=mastodon&utm_medium=jetpack_social
0
0
0
Stéphane Charette 🇨🇦 @charette@mstdn.ca · Jul 14, 2026
Too used to the convenience of cv::Mat constructors. Looking at std::vector and surprised to see there is no constructor where you can give it a memory location to adopt without having it copy the bytes. #cpp
0
0
0