Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
GoingNative 1: VC++ vNext, CRT, C++ and Beyond
Aug 26, 2011 at 2:24 AMI can't shake off the feeling that in terms of core language features of C++0x, vNext is going to be a bit of a letdown. We've had more confirmations of stuff not going to be available than stuff that's actually going to be implemented, like explicitly defaulted and deleted special member functions and non-POD initializer lists. I just hope that additions like scoped enums (a basic feature of Java/C#) will make it. It's especially painful because GCC already does all of this.
Mark Russinovich and Aaron Margosis: Introducing Windows Sysinternals Administrator's Reference
Jul 30, 2011 at 3:24 PMInteresting watch. GPU support seems kinda sketchy with nvidia optimus, but that's not really suprising since that's just a hardware hack.
C9 Lectures: Stephan T Lavavej - Advanced STL, 6 of 6
Jul 20, 2011 at 10:36 AMBTW STL, could you update your MinGW distro? New minor GCC and major Boost are out.
C9 Lectures: Stephan T Lavavej - Advanced STL, 6 of 6
Jul 13, 2011 at 7:13 AMWith the advent of domain specific libaries such as <atomic> and <thread> I'd say Unicode operations and data types could very well be part of the standard. It is exactly those platform specific functions and types that drive people to higher level languages like Java, even if those are heavily dumbed down; they at least provide this cross-platform functionality with easy to use interfaces.
Of course, Qt could be an option but I despise it. It's not even a library, it's a complete application framework that takes over your programming environment with custom build-tools and tries to reinvent the STL.
C9 Lectures: Stephan T Lavavej - Advanced STL, 5 of n
Jul 09, 2011 at 4:30 PM@STL
.
Good to know variadic templates have been implemented
Mohsen Agsen - C++ Today and Tomorrow
Jun 18, 2011 at 10:53 AMStrings in C++ are too generic, some classes specialized in encodings like UTF-8 would make things easier to use.
C9 Lectures: Stephan T Lavavej - Advanced STL, 5 of n
May 22, 2011 at 6:17 AMMarek, exactly, just use the OpenSSL crypto library. It contains every hash algorithm anyone would ever want to use. They're all implemented using the same set of functions (init, update, finalize). You won't have to implement anything yourself to support buffered I/O. The documentation seems to be outdated so browse the source to see what's available (sha256 is in the sha dir).