https://github.com/younghakim7/cppfront_training
C++ Training & My Youtube Channel - GlobalYoung https://www.youtube.com/@GlobalYoung7
https://github.com/younghakim7/cppfront_training
cppfront
Last synced: 11 months ago
JSON representation
C++ Training & My Youtube Channel - GlobalYoung https://www.youtube.com/@GlobalYoung7
- Host: GitHub
- URL: https://github.com/younghakim7/cppfront_training
- Owner: YoungHaKim7
- Created: 2023-12-05T13:54:25.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-26T06:58:36.000Z (almost 2 years ago)
- Last Synced: 2025-01-16T21:11:25.804Z (about 1 year ago)
- Topics: cppfront
- Language: C++
- Homepage:
- Size: 2.81 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cppfront_training
- (내가 공부하려고 정리)001_개고생하면서 배우는 C++front
- https://youtube.com/live/HQ9lhS9U6u0?feature=share
# cpp_front
- cpp_front공식 github?
- https://github.com/hsutter/cppfront
- https://github.com/modern-cmake/cppfront
- Cppfront - C++와 호환되는 실험적 컴파일러 (github.com/hsutter)
- https://news.hada.io/topic?id=8616
# find로 파일, 폴더 찾아서 지우기
- 현재 디렉토리 하위에서 디렉토리에 있는 ".DS_Store" 모든 파일 삭제
```
find . -type f -name ".DS_Store" -exec rm {} \;
```
https://shutcoding.tistory.com/entry/LINUX-FIND-%EB%A1%9C-%ED%8C%8C%EC%9D%BC%ED%8F%B4%EB%8D%94-%EC%B0%BE%EA%B8%B0-%EC%A7%80%EC%9A%B0%EA%B8%B0
# .gitignore (cppfront)
```
cpp2util.h
cppfront
*.out
*.vcxproj
*.filters
*.recipe
*.user
*.ilk
*.log
*.enc
*.tlog
*.idb
*.obj
*.pdb
*.suo
*.db
*.ipch
*.sln
*.txt
*.db-shm
*.db-wal
*.opendb
*.vsidx
*.lock
.editorconfig
*.xml
*.sarif
*.bin
*.exe
source/gen_version.bat
```