{"componentChunkName":"component---src-templates-blog-post-js","path":"/Retrospective/2021/Sep/Sep2nd/","result":{"data":{"site":{"siteMetadata":{"title":"Progress Not Perfection","author":"Sunmin","siteUrl":"https://sunmin.netlify.com","comment":{"disqusShortName":"","utterances":"Sunmin0520/blog"}}},"markdownRemark":{"id":"0aef2ba9-0c3e-575d-a237-0446c0b3bc31","excerpt":"Did 팀장님이 분명 미리 진행 후 하라는 일이 있었는데 실수했다.분명 오늘 기록에도 적어놓고! 팀장님이 미리 알려주신 사항이 있었는데 확인하지 못해 실수했다. 단순작업일수록 하다보면 피곤해지고 늘어지면서 디테일을 놓칠 때가 있다. 앞으로 같은 실수를 안 하면 된다.그 때의 기분에 취하지 말고, 미리 꼼꼼하게 챙기자! 상대방에게 피해가 가는 일이 아니라면 지시하는 법을 배우자. 그럴 권리가 있고, 그것은 무례하지 않다. Learned host ssh…","html":"<h2 id=\"did\" style=\"position:relative;\"><a href=\"#did\" aria-label=\"did permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Did</h2>\n<ul>\n<li>팀장님이 분명 미리 진행 후 하라는 일이 있었는데 실수했다.분명 오늘 기록에도 적어놓고!</li>\n<li>팀장님이 미리 알려주신 사항이 있었는데 확인하지 못해 실수했다. 단순작업일수록 하다보면 피곤해지고 늘어지면서 디테일을 놓칠 때가 있다. 앞으로 같은 실수를 안 하면 된다.그 때의 기분에 취하지 말고, 미리 꼼꼼하게 챙기자!</li>\n<li>상대방에게 피해가 가는 일이 아니라면 지시하는 법을 배우자. 그럴 권리가 있고, 그것은 무례하지 않다.</li>\n</ul>\n<h2 id=\"learned\" style=\"position:relative;\"><a href=\"#learned\" aria-label=\"learned permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Learned</h2>\n<ul>\n<li>\n<p>host</p>\n<div class=\"gatsby-highlight\" data-language=\"js\"><pre class=\"language-js\"><code class=\"language-js\">code <span class=\"token operator\">/</span>etc<span class=\"token operator\">/</span>hosts <span class=\"token comment\">//host 추가해야 해당 도메인에서 ip 주소로의 이동 가능</span>\n<span class=\"token comment\">//예: 127.0.0.1\tlocalhost</span></code></pre></div>\n</li>\n<li>\n<p>ssh</p>\n<div class=\"gatsby-highlight\" data-language=\"js\"><pre class=\"language-js\"><code class=\"language-js\">code <span class=\"token operator\">~</span><span class=\"token operator\">/</span><span class=\"token punctuation\">.</span>ssh<span class=\"token operator\">/</span>config  <span class=\"token comment\">//**각 사용자에 대한 설정** /ssh 파일들 나열</span>\n<span class=\"token comment\">//예: 저장해둔 key들(Host, HostName, user, IdentityFile 등)</span>\nssh sunmin<span class=\"token comment\">//sunmin이라는 Host로 이동</span>\ndocker ps <span class=\"token operator\">|</span> grep 특정문구<span class=\"token comment\">//특정 문구가 들어가는지 확인</span></code></pre></div>\n</li>\n</ul>\n<div class=\"gatsby-highlight\" data-language=\"js\"><pre class=\"language-js\"><code class=\"language-js\">code <span class=\"token operator\">/</span>etc<span class=\"token operator\">/</span>ssh<span class=\"token operator\">/</span>ssh_config <span class=\"token comment\">//**모든 사용자(전역)에 대한 설정**</span></code></pre></div>\n<ul>\n<li>\n<p>두 브랜치 간의 차이점 파악</p>\n<div class=\"gatsby-highlight\" data-language=\"js\"><pre class=\"language-js\"><code class=\"language-js\">git diff origin<span class=\"token operator\">/</span>master origin<span class=\"token operator\">/</span>develop <span class=\"token comment\">//master와 devlop 브랜치의 차이점 보임</span></code></pre></div>\n</li>\n<li>코드 포맷팅: option - shift - F</li>\n</ul>","frontmatter":{"title":"[회고] 9월 둘째 주","date":"September 12, 2021"}}},"pageContext":{"slug":"/Retrospective/2021/Sep/Sep2nd/","previous":{"fields":{"slug":"/Retrospective/2021/Sep/Sep1st/"},"frontmatter":{"title":"[회고] 9월 첫째 주","category":"retrospective","draft":false}},"next":{"fields":{"slug":"/Retrospective/2021/Sep/Sep5th/"},"frontmatter":{"title":"[회고] 9월 다섯째 주","category":"retrospective","draft":false}}}},"staticQueryHashes":["3128451518","521680639"]}