Skip to content

Commit 071e6c1

Browse files
committed
chore: remove published frontmatter from notes
1 parent 3f26612 commit 071e6c1

26 files changed

+0
-26
lines changed

01. How C++ Works.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ tags: ["Compilation", "Linking", "Build Process", "Preprocessing"]
77
description: "An overview of the C++ build process, covering preprocessing, compilation into object code, and linking to create an executable."
88
author: "Vaibhav Deokar"
99
image: "/notes/cpp/img-data/cpp_thumbnail.jpg"
10-
published: true
1110
---
1211
# How C++ Works - [▶️YouTube](https://www.youtube.com/watch?v=SfGuIVzE_Os&list=PLlrATfBNZ98dudnM48yfGUldqGD0S4FFb&index=6)
1312
## A Deep Dive into C++ Compilation and Linking

02. How the C++ Compiler Works.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ tags: ["Compiler", "Preprocessing", "Assembly", "Optimization", "Visual Studio",
77
description: "A breakdown of the C++ compiler's stages, focusing on preprocessing directives, generating assembly, optimization, and handling compiler options/errors in Visual Studio."
88
author: "Vaibhav Deokar"
99
image: "/notes/cpp/img-data/cpp_thumbnail.jpg"
10-
published: true
1110
---
1211
# How C++ Compiler Works - [▶️YouTube](https://www.youtube.com/watch?v=3tIqpEmWMLI&list=PLlrATfBNZ98dudnM48yfGUldqGD0S4FFb&index=6)
1312

03.How the C++ Linker Works.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ tags: ["Linker", "Linking", "Build Process", "Object Files", "Symbols", "LNK2019
77
description: "Explains the role of the C++ linker in combining object files, resolving symbols, and common errors like LNK2019 (unresolved external) and LNK1169 (multiple definitions)."
88
author: "Vaibhav Deokar"
99
image: "/notes/cpp/img-data/cpp_thumbnail.jpg"
10-
published: true
1110
---
1211
# How the C++ Linker Works - [▶️YouTube](https://www.youtube.com/watch?v=H4s55GgAg0I)
1312

04.Variables in C++.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ tags: ["Variables", "Data Types", "int", "float", "double", "char", "bool", "Mem
77
description: "An explanation of variables in C++, covering basic data types (int, float, double, char, bool), their sizes in memory, and usage examples."
88
author: "Vaibhav Deokar"
99
image: "/notes/cpp/img-data/cpp_thumbnail.jpg"
10-
published: true
1110
---
1211
## Variables in Programming
1312

05.Functions in C++.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ tags: ["Functions", "Parameters", "Return Values", "Code Reusability", "Call Sta
77
description: "Explains C++ functions, including syntax, parameters, return values, avoiding code duplication, call overhead, and best practices."
88
author: "Vaibhav Deokar"
99
image: "/notes/cpp/img-data/cpp_thumbnail.jpg"
10-
published: true
1110
---
1211
# Functions in C++ - [▶️YouTube](https://www.youtube.com/watch?v=V9zuox47zr0&list=PLlrATfBNZ98dudnM48yfGUldqGD0S4FFb&index=9)
1312

06.Header Files in C++ .md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ tags: ["Header Files", "Declarations", "Definitions", "Include Guards", "#pragma
77
description: "Explains the purpose and use of header files in C++ for declarations, include guards (#pragma once), include directives, and avoiding common errors like circular dependencies."
88
author: "Vaibhav Deokar"
99
image: "/notes/cpp/img-data/cpp_thumbnail.jpg"
10-
published: true
1110
---
1211
# C++ Header Files - [▶️ Full Playlist](https://www.youtube.com/watch?v=9RJTQmK0YPI&list=PLlrATfBNZ98dudnM48yfGUldqGD0S4FFb&index=10)
1312

07.How to DEBUG C++ in VISUAL STUDIO.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ tags: ["Debugging", "Visual Studio", "Breakpoints", "Stepping", "Memory Inspecti
77
description: "A guide to debugging C++ code in Visual Studio, covering breakpoints, stepping through code (F10, F11, Shift+F11), and using debugger windows like Autos, Locals, Watch, and Memory."
88
author: "Vaibhav Deokar"
99
image: "/notes/cpp/img-data/cpp_thumbnail.jpg"
10-
published: true
1110
---
1211
# Debugging C++ in Visual Studio - [▶️ Playlist](https://www.youtube.com/watch?v=0ebzPwixrJA&list=PLlrATfBNZ98dudnM48yfGUldqGD0S4FFb&index=10)
1312

08.CONDITIONS and BRANCHES in C++ .md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ tags: ["Conditional Statements", "if", "else", "Branching", "Control Flow", "Boo
77
description: "Explains conditional statements (if, else if, else) and branching in C++ for controlling program flow based on boolean logic and evaluations."
88
author: "Vaibhav Deokar"
99
image: "/notes/cpp/img-data/cpp_thumbnail.jpg"
10-
published: true
1110
---
1211
# C++ Conditions and Branches (if statements)
1312
**Playlist Link:** [The Cherno - C++ Series](https://www.youtube.com/watch?v=9RJTQmK0YPI&list=PLlrATfBNZ98dudnM48yfGUldqGD0S4FFb&index=10)

09.Loops in C++.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ tags: ["Loops", "for", "while", "do-while", "Iteration", "Control Flow"]
77
description: "Covers the different types of loops in C++ (for, while, do-while), their syntax, usage, and key differences for controlling repetitive execution."
88
author: "Vaibhav Deokar"
99
image: "/notes/cpp/img-data/cpp_thumbnail.jpg"
10-
published: true
1110
---
1211
# 🔄 Loops in C++ (for, while, do-while) - Complete Notes
1312
**Video Reference:** [Loops in C++ by The Cherno](https://www.youtube.com/watch?v=_1AwR-un4Hk) | [Full Playlist](https://www.youtube.com/watch?v=9RJTQmK0YPI&list=PLlrATfBNZ98dudnM48yfGUldqGD0S4FFb&index=10)

10.Control Flow in C++.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ tags: ["Control Flow", "continue", "break", "return", "Loops", "Functions"]
77
description: "Explains C++ control flow statements: continue (skip loop iteration), break (exit loop/switch), and return (exit function)."
88
author: "Vaibhav Deokar"
99
image: "/notes/cpp/img-data/cpp_thumbnail.jpg"
10-
published: true
1110
---
1211
# Control Flow in C++ (continue, break, return)
1312
**Video Reference:** [Control Flow in C++ by The Cherno](https://www.youtube.com/watch?v=a3IZ8WaIFAA)

0 commit comments

Comments
 (0)