/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

www.cppstories.com
| | www.bfilipek.com
1.1 parsecs away

Travel
| | Writing multithreaded code is hard. You want to utilize all of the machine's processing power, keep code simple and avoid data races at the same time. Let's see how C++17 can make writing parallel code a bit easier. Intro With C++11/14 we've finally got threading into the standard library. You can now create std::thread and not just depend on third party libraries or a system API.
| | www.bfilipek.com
0.8 parsecs away

Travel
| | Last week you might have read about a few examples of parallel algorithms. Today I have one more application that combines the ideas from the previous post. We'll use parallel algorithms and the standard filesystem to count words in all text files in a given directory. The Case In my previous post, there were two examples: one with iterating over a directory and counting the files sizes and the next one about counting words in a string.
| | cppstories.com
0.1 parsecs away

Travel
| | C++11 conformance GCC 4.81 - 100% Clang 3.3 - 100% Intel 14.0 - 84% Visual C++ 2013 - 66% Another year is almost over so it is a good time to check what is going on with C++. This time more stats and real data compared to my post from the previous year.
| | greenash.net.au
20.5 parsecs away

Travel
| [AI summary] The article discusses the challenges of installing the uploadprogress PHP extension on Mac OS X Leopard, requiring manual compilation as a 64-bit binary due to compatibility issues with the default 32-bit compiler.