All Projects → apolukhin → Boost Cookbook

apolukhin / Boost Cookbook

Licence: bsl-1.0
Online examples from "Boost C++ Application Development Cookbook":

Programming Languages

cpp
1120 projects
cpp11
221 projects
cpp17
186 projects
cpp14
131 projects

Projects that are alternatives of or similar to Boost Cookbook

Rust Learning
A bunch of links to blog posts, articles, videos, etc for learning Rust
Stars: ✭ 7,431 (+2328.43%)
Mutual labels:  tutorial, book, teaching
Qliksense Extension Tutorial
A comprehensive tutorial how to create Qlik Sense Visualization Extensions.
Stars: ✭ 244 (-20.26%)
Mutual labels:  tutorial, recipes
Unity Shader Basics Tutorial
A introduction into creating shaders for Unity
Stars: ✭ 243 (-20.59%)
Mutual labels:  tutorial, tutorials
Oppia
A free, online learning platform to make quality education accessible for all.
Stars: ✭ 4,361 (+1325.16%)
Mutual labels:  tutorials, teaching
Fullstackpython.com
Full Stack Python source with Pelican, Bootstrap and Markdown.
Stars: ✭ 2,667 (+771.57%)
Mutual labels:  tutorial, tutorials
Regex For Regular Folk
🔍💪 Regular Expressions for Regular Folk — A visual, example-based introduction to RegEx [BETA]
Stars: ✭ 242 (-20.92%)
Mutual labels:  tutorial, book
reinforcement learning course materials
Lecture notes, tutorial tasks including solutions as well as online videos for the reinforcement learning course hosted by Paderborn University
Stars: ✭ 765 (+150%)
Mutual labels:  teaching, online-learning
Book
文言陰符 An Introduction to Programming in Wenyan Language
Stars: ✭ 194 (-36.6%)
Mutual labels:  tutorial, book
Choo Handbook
🚂✋📖 - Learn the choo framework through a set of exercises
Stars: ✭ 266 (-13.07%)
Mutual labels:  tutorial, book
Guide.elm Lang.org
My book introducing you to Elm!
Stars: ✭ 270 (-11.76%)
Mutual labels:  tutorial, book
Buildapks
Really quickly build APKs on handheld device (smartphone and tablet) in Amazon, Android, Chromebook, PRoot and Windows📲 See https://buildapks.github.io/docsBuildAPKs/setup to start building APKs.
Stars: ✭ 272 (-11.11%)
Mutual labels:  tutorial, tutorials
Webpack Book
From apprentice to master (CC BY-NC-ND)
Stars: ✭ 2,372 (+675.16%)
Mutual labels:  tutorial, book
Guides
Here you will find Guides mainly for Sonarr/Radarr/Bazarr and everything related to it.
Stars: ✭ 207 (-32.35%)
Mutual labels:  tutorial, tutorials
Awesome Android Complete Reference
Awesome Android references for everything like best practices, performance optimization, etc.
Stars: ✭ 2,701 (+782.68%)
Mutual labels:  tutorial, tutorials
Web Push Book
Web Push Book
Stars: ✭ 199 (-34.97%)
Mutual labels:  tutorial, book
School-Programming
Хранилище за свободно учебно съдържание по програмиране, информатика и ИТ за българските училища
Stars: ✭ 82 (-73.2%)
Mutual labels:  tutorials, teaching
Machine Learning Books
book
Stars: ✭ 290 (-5.23%)
Mutual labels:  tutorial, book
Judo Heroes 2
Universal Javascript sample application with React Router 4 and Express 5 (Enhanced version of https://github.com/lmammino/judo-heroes)
Stars: ✭ 182 (-40.52%)
Mutual labels:  tutorial, tutorials
Tutorials
📖 Community driven web development tutorials
Stars: ✭ 189 (-38.24%)
Mutual labels:  tutorial, tutorials
Remote-Work-and-Study-Resources
Free services, tools, articles and other resources for remote workers and distance learners
Stars: ✭ 49 (-83.99%)
Mutual labels:  teaching, online-learning

Boost C++ Application Development Cookbook, Second Edition

This repository contains all the code examples from the

Compile and Run Examples Online.

Build Status Build status Coverage Status codecov.io

Content

This repository contatins project files for QtCreator IDE. BoostBook.pro - is the main project file. See config.txt file for setupping platform specific flags.

QtCreator's project files are very simple and it's easy to understand what is required for example compilation by just opening the '.pro' file with any text editor.

All source code is distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

Coding style

Some of the C++ coding styles are broken to fit better cookbook educational format:

  • Headers are not always included in the beginning of source and header files.

This is done in attempt to show in which header which classes and functions are defined. Another goal of doing so, is to avoid errors while copying parts of code to book (it is simpler and safer to copy required peace of code at once, instead of gathering together headers and code parts all across the project).

  • Our own classes are declared in global namespace (instead of separate namespace).

This is done to reduce amount of unrequired text in book.

  • Usually no aliases for namespaces used and usually no using namespace used.

This is done for your simplicity. You may open any recipe, start it from the middle of 'How to do it' part and see a working part of code that does not require searching all around the chapter for an answer 'In what namespace is this class defined?'.

Thanks

Thanks to Heather Gopsill from Packt Publishing for giving a permission to make sources publicly available. Thanks to Nitin Dasan from Packt Publishing for getting all the necessary approvals for making sources publicly available for the second edition of the book.

Notes for book update

For year 2022+ :

  • Separate chapters on Graphs/Testing/Image processinggit
  • Remove description of all the Boost libraries that were added into C++11 (including Boost.Move)
  • More recipes for unordered containers
  • Move string_view into the first chapter
  • Pimpl example using ...?
  • Boost.Range recipes
  • boost::allocate_shared ?
  • Dig into the boost::function and statefull allocator support?
  • Boost.Convert examples
  • Add a very simple example on regexes.
  • MPL11 example (Something like "Finding the sequential layout ordering of N different types that would minimize padding due to alignment between them").
  • Add an example on stateful allocators in Boost.
  • Add an example on Boost.PolyCollection.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].