-
-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathmkdocs.yml
74 lines (56 loc) · 1.71 KB
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
site_name: CPP Optimizations diary
site_description: Tip and tricks to optimize your C++ code.
site_author: Davide Faconti
copyright: 'Copyright © 2020 Davide Faconti'
theme:
name: 'material'
custom_dir: overrides
language: en
logo: 'img/cpp.png'
palette:
primary: blue grey
accent: purple
font:
text: Ubuntu
code: Roboto Mono
icon:
logo: material/library
repo: fontawesome/brands/git-alt
repo_name: 'CPP_Optimizations_Diary'
repo_url: 'https://github.com/facontidavide/CPP_Optimizations_Diary'
extra:
social:
- icon: fontawesome/brands/twitter
link: https://twitter.com/facontidavide
markdown_extensions:
- admonition
- codehilite
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
extrahead:
nav:
- Home: index.md
- Reference and move semantic:
- Use references: prefer_references.md
- Vectors are your best friend:
- Use reserve: reserve.md
- Avoid std::list : no_lists.md
- You may not need std::map : dont_need_map.md
- Small vector optimization: small_vectors.md
- "It's just a string...":
- Strings are vectors: strings_are_vectors.md
- Small string optimization: small_strings.md
- String concatenation: strings_concatenation.md
- Don't compute it twice:
- More efficient 2D transforms: 2d_transforms.md
- Iterating over a 2D matrix: 2d_matrix_iteration.md
- Fantastic data structures:
- Boost flat_map to the rescue: boost_flatmap.md
- Case studies:
- Faster and simpler PCL filter: pcl_filter.md
- More PCL optimizations: pcl_fromROS.md
- Fast palindrome: palindrome.md
- About me: about.md