devxlogo

Recent

DevX - Software Development Resource

Android Mobility: Open Source Hits the Road

ven prior to Google’s splashy announcement about Android late last year, rumors were swirling about the so-called “gPhone.” Now that programmers have had several months to experiment with early releases

DevX - Software Development Resource

Expecting Multi-Core Miracles

Here’s the average developer’s newest dilemma: Intel and other CPU manufacturers have moved full steam ahead into creating multi-core chips to speed up computing. These chips increase processing speed not

DevX - Software Development Resource

C++ 0x – The inside joke…

You have to be truly geeky to get it, but do you know what the inside joke is with the proposed C++ 0x standard? Simply that it has been labeled

DevX - Software Development Resource

C++0x Automates Type Deduction with auto

nother C++0x feature is going to simplify the way you write C++ code. Instead of tediously writing the type of a variable when you declare it, a C++0x compiler will

DevX - Software Development Resource

To Iterate Is Human, to Range Is Divine

ost Standard Library algorithms operate on sequences whose boundaries are designated by a pair of iterators: one iterator marks the beginning of the sequence and another marks its end. Combining