Skip to content

Commit d519c83

Browse files
Adding gitignore + brazil flag.
1 parent 46a5b9d commit d519c83

File tree

2 files changed

+55
-1
lines changed

2 files changed

+55
-1
lines changed

.gitignore

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# Build directories
2+
**/build/
3+
**/build-*/
4+
**/cmake-build-*/
5+
6+
# CMake
7+
CMakeCache.txt
8+
CMakeFiles/
9+
cmake_install.cmake
10+
Makefile
11+
*.cmake
12+
!CMakeLists.txt
13+
14+
# Compiled binaries
15+
*.exe
16+
*.out
17+
*.app
18+
*.so
19+
*.dylib
20+
*.dll
21+
22+
# Object files
23+
*.o
24+
*.obj
25+
*.ko
26+
*.elf
27+
28+
# Debug files
29+
*.dSYM/
30+
*.su
31+
*.idb
32+
*.pdb
33+
34+
# Python
35+
__pycache__/
36+
*.py[cod]
37+
*$py.class
38+
*.pyc
39+
*.pyo
40+
.Python
41+
env/
42+
venv/
43+
.venv
44+
45+
# IDE
46+
.vscode/
47+
.idea/
48+
*.swp
49+
*.swo
50+
*~
51+
.DS_Store
52+
53+
# Dependencies
54+
_deps/

cppcon2025/cppcon_2025_slides.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ _paginate: false
1111
## A Practical Journey
1212

1313
- Daniel Lemire, *University of Quebec* :canada:
14-
- Francisco Geiman Thiesen, *Microsoft* :us:
14+
- Francisco Geiman Thiesen, *Microsoft* :brazil: :us:
1515

1616
CppCon 2025
1717

0 commit comments

Comments
 (0)