๋ถ๋ฅ ์ ์ฒด๋ณด๊ธฐ TIL/Git [Git] push default - 'simple' or 'matching' git push๋ฅผ ํ๋ ค๋๋ฐ ์ด๋ฐ ์๋ฌ๊ฐ ๋ฌ๋ค. pushํ๊ณ ์ถ์๋ฐ... ๋ธ๋ก๊ทธ๋ฅผ ๋ณด๋, git ์ค์ ๊ฐ ์ค push.default ์ต์ ์ ํ์ธํ๋ผ๋ ๊ฒฝ๊ณ ๋ฉ์ธ์ง๋ผ๊ณ ํ๋ค. ๊ฐ๋จํ git config -- global push.default simple ํน์ git config -- global push.default matching์ ์ ํํด์ ์ฌ์ฉํ๋ฉด ๋๋ค. 'simple'์ ํ์ฌ ์์ ์ค์ธ ๋ธ๋์น๋ง ๋ฆฌ๋ชจํธ ์ ์ฅ์์ pushํ๋ ์์ 'matching'์ local๊ณผ ๋ฆฌ๋ชจ๋ ์ ์ฅ์์ ๋ธ๋์น ๋ช ์ด ๊ฐ์ ๋ชจ๋ ๋ธ๋์น๋ฅผ push๋ฅผ ํ๋ค. ์ฐธ๊ณ ํ ์๋ฃ https://hbase.tistory.com/11 TIL/Git [Git] ํธ์ ์ ์ปค๋ฐ๋ฉ์ธ์ง ์์ ์ค์๋ก ์ปค๋ฐ์ ํ๋๋ฐ ์์ ํด์ผํ๋ ๊ฒฝ์ฐ๊ฐ ์๋ค git commit --amend ์ด ๋ช ๋ น์ด๋ฅผ ์คํํ๋ฉด ํธ์ง๊ธฐ๊ฐ ์คํ๋๋ค. ์์ ํ ์ ์ฅํ๋ฉด ๋๋ค. ESC -> i -> ์์ -> :wq! ํ๋ฉด ์ปค๋ฐ๋ฉ์ธ์ง๊ฐ ์์ ๋๋ค. TIL/ETC vscode ssh ๋น๋ฐ๋ฒํธ ๋ฐ๋ณต ์ ๋ ฅ ์ค๋ฅ ์ ๋ ธํธ๋ถ์ ๊ตฌ๋งคํด์ vscode๋ฅผ ๊น๊ณ ์๋ฒ์ ssh ์ ์ํ๋๋ฐ ๋น๋ฐ๋ฒํธ ์ ๋ ฅ์ฐฝ์ด ๋ฐ๋ณตํด์ ๋จ๋ ์๋ฌ๊ฐ ๋ฐ์.. ์ด์ฌํ ๊ตฌ๊ธ๋งํด๋ณด๋ ์์ธ์ vscode๋ฒ์ ์ด ๋ณ๊ฒฝ๋๋ฉด์ ๋ฐ์ํ๋ ์๋ฌ๋ผ๊ณ ํ๋ฉฐ, vscode๋ก ์ ์ํ๋ ค๋ ์๋ฒ์ ํฐ๋ฏธ๋๋ก ์ ์ํ์ฌ vscode-server ํด๋๋ฅผ ์ญ์ ํ๋ฉด ํด๊ฒฐ๋๋ค๊ณ ํจ 1. ํฐ๋ฏธ๋๋ก ์๋ฒ์ ์ ์ ๋ฐ vscode-server ํด๋ ์ ๊ฑฐ #ํฐ๋ฏธ๋๋ก ์๋ฒ์ ์ ์ ssh [๊ณ์ id]@[์๋ฒIP] #vscode-server ํด๋ ์ ๊ฑฐ cd ~ rm -rf .vscode-server/ ์ถ๋ ฅ : ์๋ฌ๋ฉ์์ง ์ถ๋ ฅ, ์คํ ์ค์ธ vscode๊ฐ ์กด์ฌํด์ ๋ชป ์ง์ด๋ค๊ณ ํจ → ์คํ ์ค์ธ vscode๋ฅผ ์ง์ฐ์ 2. ๋์ ๊ณ์ ์ด ์คํ ์ค์ธ vscode ๋ฅผ ๊ฒ์ ๋ฐ ์ญ์ #๋ด ๊ณ์ (inistory)๊ฐ ์คํ.. Programming/Python [Python] Cannot perform ‘rand_’ with a dtyped [int64] array and scalar of type [bool] df.loc[df.corr >= 0 & df.user_id == main_user_id ] ์๋์ ๊ฐ์ด ๋ฐ๊ฟ์ฃผ๋ฉด ๋๋ค. df.loc[(df.corr >= 0) & (df.user_id == main_user_id) ] ์ฐธ๊ณ https://www.statology.org/cannot-perform-rand_-with-a-dtyped-int64-array-and-scalar-of-type-bool/ TIL/Linux [Linux] ํน์ ํ์ผ์ ๊ฒ์ํด์ ํน์ ๊ฒฝ๋ก๋ก ์ฎ๊ธฐ๊ธฐ sudo find . -name "*.csv" -exec mv {} ํด๋ ๊ฒฝ๋ก \ ์๋ฅผ๋ค์ด csv ํ์ผ๋ค์ ๋ชจ๋ ํน์ ๊ฒฝ๋ก๋ก ์ฎ๊ธฐ๊ณ ์ถ์ผ๋ฉด, .csv๋ก ๋๋๋ ํ์ผ์ ๋ชจ๋ ์ฐพ๊ณ , ์ ๋ช ๋ น์ด๋ฅผ ํตํด ์ฎ๊ธธ ํด๋ ๊ฒฝ๋ก๋ฅผ ์ง์ ํด์ฃผ๋ฉด ๋๋ค. ์ฐธ๊ณ https://mirae-kim.tistory.com/46 TIL/Git [Git] Your configuration specifies to merge with the ref 'refs/heads/branch name' from the remote, but no such ref was fetched ๋ฌธ์ git pull ์ ์๋์ ๊ฐ์ ์๋ฌ๊ฐ ์๊ฒผ๋ค. our configuration specifies to merge with the ref 'refs/heads/branch name'from the remote, but no such ref was fetched ํด๊ฒฐ ๋ฐฉ๋ฒ ํด๋น ๋ธ๋์น๊ฐ local์๋ง ์กด์ฌํ๊ณ remote์๋ ์กด์ฌํ์ง ์์ ๋ ๋ฐ์ํ๋ค๊ณ ํ๋ค. 1. ํด๋น ๋ธ๋์น๋ฅผ remote์์ ๋ฐ์์ค๊ธฐ ์ํด update ์ค์ git remote update 2. ๋ธ๋์น๋ฅผ ํ์ธ git branch -a 3. remote ๋ธ๋์น๋ฅผ ๊ฐ์ ธ์ค๊ธฐ git checkout -t 4. ๋ธ๋์น ์ ํ git checkout ์ฐธ๊ณ https://dev-castel.tistory.com/7 Programming/Python [Python] ๋ฆฌ์คํธ์ ํน์ ์์น์ ๊ฐ ์ถ๊ฐ list = [1,2,3,4] list.insert(0, 'hi') #๋งจ ์ฒ์์ ์ถ๊ฐ list.append("bye") #๋งจ ๋ง์ง๋ง์ ์ถ๊ฐ ['hi',1,2,3,4,'bye'] TIL/ETC [AWS] EC2 ๋์คํฌ ์ฉ๋ ๋๋ฆฌ๊ธฐ AWS EC2 ์๋ฒ๋ฅผ ์ฌ์ฉํด์ ๋ฐ์ดํฐ ๋ถ์์ ํ๋ค๊ฐ ๋์ฉ๋์ ํ์ผ์ ์ ์ฅํ๋ค๊ฐ ๋์คํฌ ์ฉ๋์ด ๋ถ์กฑํ๋ค๋ ์๋ฌ๊ฐ ๋ฌ๋ค. 1. EC2 > Instances > Instance ์ ํ 2. Storge > Volumne ID ํด๋ฆญ > ์ฐํด๋ฆญ > Modify volume 3. Size ์์ 4. ๋ง์ดํธ lsblk ๋ฃจํธ์๋ ์์ง 128G๊ฐ ์ ์ฉ๋์ง ์์๋ค. Volumne state์์ ์ค์ ํ ๋ณผ๋ฅจ์ด modifying์ด ์๋ฃ๋๋ฉด ์๋๋ฅผ ์ํํ๋ค. sudo growpart /dev/xvda1 1lsblk ์ ์ฉ์ด ๋์๋ค. 5. ๋ฆฌ๋ ์ค ํ์ผ ์์คํ ์ ํ์ฅ sudo resize2fs /dev/root6.์ฐธ๊ณ ๋งํฌ https://leonkim.dev/aws/ce2-increase-disk-space/ https://lsjsj.. ์ด์ 1 2 3 4 ยทยทยท 24 ๋ค์