tags:

views:

178

answers:

2

I came across this recommendation for reading the C++ report magazine. However, when I searched for it, i realized it has become defunct.

Can someone please recommend me some other magazine / rss etc which is of the same genre ? I look forward to read more about some of the elusive and other C++ techniques that veterans are using in the field.

I came across Dr. Dobb's journal -> C++ feeds and I think they're pretty good too. Subscribed++

Thanks!

+2  A: 

Uncle Bob Martin's Object Mentor publications include all his classics from C++ Report.

duffymo
I'd be *very* wary of these, as they pretty much all predate the C++ standardization. This in itself isn't a huge problem, but it means they also predate modern C++ practices (which means it's more about C with Classes than about what we would consider C++ today)
jalf
Not really. If you read them, you'll see that the concepts are usually generic OO, not outdated C++ syntax.
duffymo
+4  A: 

The obvious choices would be C Vu and Overload, both published by the ACCU (formerly known as the Association of C and C++ Users).

Also, even though this isn't a magazine, a great source of C++related material that is updated quite often is Herb Sutter's blog: Sutter's Mill.

Alexandros Gezerlis