###### tags: `건국대` `챗GPT 디지털 글쓰기` `한국R사용자회` # 8월 19일 (건국대) # https://bit.ly/3P57Xnv - 소프트웨어 카펜트리 - https://statkclee.github.io/2023-08-05-konkuk/ - 챗GPT 유닉스 쉘 - https://ebook-product.kyobobook.co.kr/dig/epd/ebook/E000005358063 - https://jeroenjanssens.com/dsatcl/ - 컴퓨터 과학 언플러그드 - https://r2bit.com/book_unplugged/ - 버전 제어(Git/GitHub) - https://swcarpentry.github.io/git-novice/ - https://r2bit.com/konkuk/git_github.html - (고급) 프로그래밍 - https://r2bit.com/chatGPT4ds/ - https://r4ds.hadley.nz/ - (유튜브) https://www.youtube.com/watch?v=sXeGGjwGFyY&t=1s - 광명시 CCTV - https://r2bit.com/map_challenge/ - git_githud - https://r2bit.com/konkuk/git_github.html ## ssh # Check for existing SSH keys: ls -al ~/.ssh # Generate a new SSH key: ssh-keygen -t rsa -b 4096 -C "your_email@example.com" # Start the ssh-agent: eval "$(ssh-agent -s)" # Add your SSH private key to the ssh-agent: ssh-add ~/.ssh/id_rsa # Copy your SSH public key to clipboard (macOS): cat ~/.ssh/id_rsa.pub | pbcopy # Test your connection to GitHub: ssh -T git@github.com