<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>BitLog - Developer's Stories</title>
    <link>https://bitlog.tistory.com/</link>
    <description>0과 1의 기록</description>
    <language>ko</language>
    <pubDate>Thu, 27 Aug 2026 10:58:16 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>[noname]</managingEditor>
    <image>
      <title>BitLog - Developer's Stories</title>
      <url>https://tistory1.daumcdn.net/tistory/62404/attach/a263d99c697b4151a0a2d0d7155b514d</url>
      <link>https://bitlog.tistory.com</link>
    </image>
    <item>
      <title>windows self-hosted runner 실행하기</title>
      <link>https://bitlog.tistory.com/188</link>
      <description>GitHub에는 CI/CD 역할을 하는 workflow를 구성할 수 있는 actions라는 서비스가 있다. 이 것을 이용하려면 workflow를 구동할 수 있는 runner 가 필요한데(jenkins의 slave같은 역할) GitHub에서 제공하는 runner는 유료이지만, 직접 runner를 운용한다면 무료로 사용이 가능하다.&amp;nbsp;
&amp;nbsp;
runner는 MacOS, linux, windows에서 실행이 가능하다. 맥이나 리눅스에서는 큰 문제..</description>
      <category>Technic</category>
      <category>github</category>
      <category>runner</category>
      <category>self-host</category>
      <category>Windows</category>
      <author>[noname]</author>
      <guid isPermaLink="true">https://bitlog.tistory.com/188</guid>
      <comments>https://bitlog.tistory.com/188#entry188comment</comments>
      <pubDate>Mon, 6 Jan 2025 08:45:37 +0900</pubDate>
    </item>
    <item>
      <title>CLI에서 환경 변수 확인하기(windows, linux, macOS)</title>
      <link>https://bitlog.tistory.com/186</link>
      <description>주로 사용하는 ubuntu에서는 env 명령으로 환경 변수를 확인합니다. 그러다 간혹 윈도우즈를 사용하는 동료들의 문제를 살펴보다 환경 변수를 살피게 되는데 시스템 환경 변수를 보려면 시작 버튼을 누르고 제어판에 들어가 시스템 속성을 찾아 환경 변수를 확인해야 하는 게 귀찮아서 찾아본 내용을 정리해 둡니다.&amp;nbsp;
&amp;nbsp;
1. Linux, macOS
리눅스 혹은 macOS 의 경우엔, 비슷한 계열의 쉘 커맨드를 사용하고 있기 때문인지, 환경 변..</description>
      <category>Technic</category>
      <category>CLI</category>
      <category>Environment variable</category>
      <category>환경변수</category>
      <author>[noname]</author>
      <guid isPermaLink="true">https://bitlog.tistory.com/186</guid>
      <comments>https://bitlog.tistory.com/186#entry186comment</comments>
      <pubDate>Tue, 29 Nov 2022 00:51:41 +0900</pubDate>
    </item>
    <item>
      <title>AWS EC2 인스턴스에서 메타데이터 검색하기.</title>
      <link>https://bitlog.tistory.com/185</link>
      <description>EC2 인스턴스에 접속 하여 다음과 같이 호출하면 조회 가능한 데이터 목록을 확인할 수 있습니다.&amp;nbsp;
$ curl http://169.254.169.254/latest/meta-data/

이제 public-hostname을 조회하려면 다음과 같이 호출합니다.&amp;nbsp;
$ curl http://169.254.169.254/latest/meta-data/public-hostname

IP주소 169.254.169.254는 링크 로컬 주소이며, 인..</description>
      <category>Technic</category>
      <category>EC2 메타데이터 조회</category>
      <author>[noname]</author>
      <guid isPermaLink="true">https://bitlog.tistory.com/185</guid>
      <comments>https://bitlog.tistory.com/185#entry185comment</comments>
      <pubDate>Wed, 2 Nov 2022 17:47:58 +0900</pubDate>
    </item>
    <item>
      <title>npm WARN config global `--global`, `--local` are deprecated.</title>
      <link>https://bitlog.tistory.com/181</link>
      <description>한동안 건드리지 않았던 front-end 코드를 건드릴 일이 생겨, node를 깔았는 데, npm 을 실행할 때마다 다음과 같은 warning 메시지가 출력됩니다. 
&amp;gt; npm -v
npm WARN config global `--global`, `--local` are deprecated. Use `--location=global` instead.
8.11.0
 명령을 실행할 때마다, 경고 메시지가 뜨는게 불편해서 찾아보니 저 말고도 불편함을 느끼..</description>
      <category>Technic</category>
      <category>npm</category>
      <category>Warning</category>
      <category>Windows</category>
      <author>[noname]</author>
      <guid isPermaLink="true">https://bitlog.tistory.com/181</guid>
      <comments>https://bitlog.tistory.com/181#entry181comment</comments>
      <pubDate>Thu, 4 Aug 2022 23:56:23 +0900</pubDate>
    </item>
    <item>
      <title>[GitHub] refusing to allow a Personal Access Token to create or update workflow ... without `workflow` scope 에러 대처.</title>
      <link>https://bitlog.tistory.com/180</link>
      <description>최근에 강조되는 아니, 항상 강조해도 모자라는 보안을 손수 실천하기 위해 2FA를 적용하여 사용 중입니다. 그래서 CLI를 통해 pull/push를 하려면, personal access token(PAT)을 발행하여 사용해야 합니다. 이 토큰 발생시에 토큰으로 할 수 있는 권한을 부여할 수 있습니다. 대게 pull/push만 하는거라 cli용 토큰에는 repo 권한만 넣은 채로 사용중이었습니다.&amp;nbsp;
&amp;nbsp;
그런데 새로 받은 오픈소스를 수정하..</description>
      <category>Technic</category>
      <category>github</category>
      <category>refuse</category>
      <author>[noname]</author>
      <guid isPermaLink="true">https://bitlog.tistory.com/180</guid>
      <comments>https://bitlog.tistory.com/180#entry180comment</comments>
      <pubDate>Wed, 27 Apr 2022 18:53:15 +0900</pubDate>
    </item>
    <item>
      <title>[Nginx] Timeout on start up.</title>
      <link>https://bitlog.tistory.com/177</link>
      <description>며칠 전에 새로 웹서버를 설치하면서 겪었던 경험입니다.&amp;nbsp;
&amp;nbsp;
우분투 VM에 Nginx를 설치하고, 설정 파일을 추가한 다음 &quot;systemctl start nginx&quot; 명령으로 기동을 시켰는데, &quot;Job for nginx.service failed because a timeout was exceeded&quot;라는 메시지와 함께 서버가 기동 되지 않았습니다.&amp;nbsp;
&amp;nbsp;
에러 메시지로 구글링 해보면 아래와 같은 답변을 많이 찾을 수 ..</description>
      <category>Technic</category>
      <category>Daemon</category>
      <category>Nginx</category>
      <category>OFF</category>
      <author>[noname]</author>
      <guid isPermaLink="true">https://bitlog.tistory.com/177</guid>
      <comments>https://bitlog.tistory.com/177#entry177comment</comments>
      <pubDate>Thu, 31 Mar 2022 18:54:33 +0900</pubDate>
    </item>
    <item>
      <title>[초보용] VIM(VI)에서 실수로 Ctrl + z를 눌렀을 때, 복귀하는 법.</title>
      <link>https://bitlog.tistory.com/178</link>
      <description>&amp;nbsp;

VI 같은 편집기를 사용하다보면, 무심결에 Ctrl+z를 눌러 편집 중이던 내용을 되돌리려고 하는 경우가 있습니다. 이런 경우, 의도와는 다르게 shell로 빠져 나오게 됩니다. (단축키를 변경하지 않았다면)
&amp;nbsp;
이때, VI는 백그라운드로 실행이 되고 있고, shell 명령을 실행할 수 있는 상태가 됩니다.

이때 프로세스가 종료된 것으로 알고, 편집 중이던 파일을 다시 열게 되면 이미 파일을 편집 중이라는 경고가 뜨게됩니다.&amp;n..</description>
      <category>Technic</category>
      <category>ctrl+z</category>
      <category>vi</category>
      <category>VIM</category>
      <author>[noname]</author>
      <guid isPermaLink="true">https://bitlog.tistory.com/178</guid>
      <comments>https://bitlog.tistory.com/178#entry178comment</comments>
      <pubDate>Thu, 24 Mar 2022 18:41:16 +0900</pubDate>
    </item>
    <item>
      <title>[초보용] proxy 환경에서 git 사용하기</title>
      <link>https://bitlog.tistory.com/172</link>
      <description>&amp;nbsp;
제가 다니는 회사를 비롯하여, 몇몇 회사들에는 보안상의 이유로 Proxy서버를 거쳐서 외부와 연결을 하도록 하고 있습니다. Proxy 서버를 거치면서 제가 무엇을 하는지 다 까발려지기에 거부감이 있지만, 회사에서 하는 일에 대해서 회사는 알고 있을 필요가 있다고 생각해 어느 정도는 이해하려고 하고 있습니다. 하지만, 한번씩 Proxy서버 때문에 발목 잡힐 때마다 뒷목을 잡곤합니다. 그 중의 하나가 Git Proxy 설정입니다.&amp;nbsp;
&amp;..</description>
      <category>Technic</category>
      <category>git</category>
      <category>proxy</category>
      <author>[noname]</author>
      <guid isPermaLink="true">https://bitlog.tistory.com/172</guid>
      <comments>https://bitlog.tistory.com/172#entry172comment</comments>
      <pubDate>Mon, 18 Oct 2021 23:34:46 +0900</pubDate>
    </item>
    <item>
      <title>(편집기 없는)컨테이너에서 파일 작성하기</title>
      <link>https://bitlog.tistory.com/170</link>
      <description>특별한 경우가 아닌 한, 용량을 줄이기 위해 Docker Container에는 편집기가 없습니다. 그래서 보통은 컨테이너를 구동하는 호스트에 볼륨을 마운트하고 그 위치에서 파일을 작성하여 컨테이너와 공유합니다.&amp;nbsp;
&amp;nbsp;
그런데, 벌써 컨테이너를 구동하여 사용하고 있는 경우, 또는 컨테이너 내부에서 사용되는 사용자의 uid가 호스트의 uid와 다르다면 갑자기 피곤함을 느끼고 의욕이 저하되기도 합니다. 몇 줄 안되는 설정을 담고 있는 파일 하..</description>
      <category>Technic</category>
      <category>컨테이너</category>
      <category>파일생성</category>
      <author>[noname]</author>
      <guid isPermaLink="true">https://bitlog.tistory.com/170</guid>
      <comments>https://bitlog.tistory.com/170#entry170comment</comments>
      <pubDate>Mon, 5 Jul 2021 23:49:25 +0900</pubDate>
    </item>
    <item>
      <title>코로나 백신[얀센] 접종 후기</title>
      <link>https://bitlog.tistory.com/169</link>
      <description>6월 10일에 접종하고 겪었던 경험에 대해서 기록해 둡니다. 이제 접종한지 3일 정도 지났고, 백신 접종 후 생긴 것으로 의심할 만한 증상은 모두 사라졌습니다. 그래서 혹시나 앞으로 같은 백신을 접종하시는 분께 참고가 되지 않을 까하고 남겨 두지만, 여러 후기들에서 나타내는 증상은 개개인 별로 많은 차이가 있기에 그 중 하나 정도로만 생각해 주시면 좋겠습니다.&amp;nbsp;
&amp;nbsp;
6월 9일, 국민비서 꾸삐를 통해서 다음 날 12:00에 접종이 예약되..</description>
      <category>Life</category>
      <category>얀센</category>
      <category>코로나백신</category>
      <author>[noname]</author>
      <guid isPermaLink="true">https://bitlog.tistory.com/169</guid>
      <comments>https://bitlog.tistory.com/169#entry169comment</comments>
      <pubDate>Mon, 14 Jun 2021 00:19:44 +0900</pubDate>
    </item>
  </channel>
</rss>