main f5c65ad9eac3 cached
4 files
2.2 KB
699 tokens
1 requests
Download .txt
Repository: ufoym/cpp-core-guidelines-cheatsheet
Branch: main
Commit: f5c65ad9eac3
Files: 4
Total size: 2.2 KB

Directory structure:
gitextract_plhyzj78/

├── .gitattributes
├── .gitignore
├── LICENSE
└── README.md

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitattributes
================================================
# Auto detect text files and perform LF normalization
* text=auto


================================================
FILE: .gitignore
================================================
# Prerequisites
*.d

# Compiled Object files
*.slo
*.lo
*.o
*.obj

# Precompiled Headers
*.gch
*.pch

# Compiled Dynamic libraries
*.so
*.dylib
*.dll

# Fortran module files
*.mod
*.smod

# Compiled Static libraries
*.lai
*.la
*.a
*.lib

# Executables
*.exe
*.out
*.app
.DS_Store


================================================
FILE: LICENSE
================================================
MIT License

Copyright (c) 2022 Ming

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


================================================
FILE: README.md
================================================
# cpp-core-guidelines-cheatsheet
 Cheatsheet for [the C++ core guidelines](https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) (by Bjarne Stroustrup & Herb Sutter), including a set of tried-and-true guidelines, rules, and best practices about coding in C++.


- [x] P: Philosophy
- [ ] I: Interfaces
- [ ] F: Functions
- [ ] C: Classes and class hierarchies
- [ ] Enum: Enumerations
- [ ] R: Resource management
- [ ] ES: Expressions and statements
- [ ] Per: Performance
- [ ] CP: Concurrency and parallelism
- [ ] E: Error handling
- [ ] Con: Constants and immutability
- [ ] T: Templates and generic programming
- [ ] CPL: C-style programming
- [ ] SF: Source files
- [ ] SL: The Standard Library

---

### P: Philosophy 
- [[Download PDF]](Philosophy.pdf) 
- [[Download PNG Image]](Philosophy.png)

![Philosophy](Philosophy.png)
Download .txt
gitextract_plhyzj78/

├── .gitattributes
├── .gitignore
├── LICENSE
└── README.md
Condensed preview — 4 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (2K chars).
[
  {
    "path": ".gitattributes",
    "chars": 66,
    "preview": "# Auto detect text files and perform LF normalization\n* text=auto\n"
  },
  {
    "path": ".gitignore",
    "chars": 280,
    "preview": "# Prerequisites\n*.d\n\n# Compiled Object files\n*.slo\n*.lo\n*.o\n*.obj\n\n# Precompiled Headers\n*.gch\n*.pch\n\n# Compiled Dynamic"
  },
  {
    "path": "LICENSE",
    "chars": 1061,
    "preview": "MIT License\n\nCopyright (c) 2022 Ming\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof th"
  },
  {
    "path": "README.md",
    "chars": 843,
    "preview": "# cpp-core-guidelines-cheatsheet\n Cheatsheet for [the C++ core guidelines](https://isocpp.github.io/CppCoreGuidelines/Cp"
  }
]

About this extraction

This page contains the full source code of the ufoym/cpp-core-guidelines-cheatsheet GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 4 files (2.2 KB), approximately 699 tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!