|
You are here |
www.cppstories.com | ||
| | | | |
www.bfilipek.com
|
|
| | | | | Thank you for all the comments about the string_view performance! Last week I got a lot of feedback on how to improve the initial string split code. Have a look at how can we update the code and get some better performance. Intro Last week I showed a few examples of string_view. | |
| | | | |
www.bfilipek.com
|
|
| | | | | 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. | |
| | | | |
www.bfilipek.com
|
|
| | | | | Let's put C++17 in practice! One of the good ways to do it is to take part in a coding challenge. So together with Jonathan Boccara from Fluent C++ we invite you to participate in "The Expressive C++17 coding challenge". The Expressive C++17 coding challenge Jonathan made a few contests on his blog (for example this one), and I thought it might be fun to do something similar for C++17. | |
| | | | |
ericlathrop.com
|
|
| | | I often need to view a bunch of static HTML files in my browser locally, and I often need to open them with http:// rather than file:// URLs so related CSS or JavaScript files load correctly. Luckily, Python provides a simple web server, and most Linux distros include Python. | ||