<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>DOHk's DevLog</title>
    <link>https://dohk.tistory.com/</link>
    <description></description>
    <language>ko</language>
    <pubDate>Fri, 10 Apr 2026 07:10:35 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>doh.k</managingEditor>
    <image>
      <title>DOHk's DevLog</title>
      <url>https://tistory1.daumcdn.net/tistory/1770147/attach/1ab5c8f50eb645779d48dd0705fa8894</url>
      <link>https://dohk.tistory.com</link>
    </image>
    <item>
      <title>멘티의 진짜 고민을 이끌어내는 두 번의 답장</title>
      <link>https://dohk.tistory.com/302</link>
      <description>'기죽는다'는 멘티의 말을 '기회'로 바꾸는 멘토링의 순간
멘토링을 진행하며 가장 보람된 순간은, 멘티가 반짝이는 성과를 냈을 때가 아니었습니다. 오히려 자신이 길을 잃은 것 같다고, 혹은 '기죽는다'고 솔직하게 고민을 털어놓고, 그 대화를 통해 스스로 새로운 관점을 찾아나가는 순간이었습니다.얼마&amp;nbsp;전,&amp;nbsp;데이터&amp;nbsp;분석&amp;nbsp;과정을&amp;nbsp;수료하고&amp;nbsp;인턴을&amp;nbsp;시작하게&amp;nbsp;된&amp;nbsp;한&amp;nbsp;멘티(ㅇㅇ님..</description>
      <category>DailyLog</category>
      <category>고민</category>
      <category>데이터 분석</category>
      <category>멘토링</category>
      <category>커리어</category>
      <author>doh.k</author>
      <guid isPermaLink="true">https://dohk.tistory.com/302</guid>
      <comments>https://dohk.tistory.com/302#entry302comment</comments>
      <pubDate>Thu, 13 Nov 2025 12:59:16 +0900</pubDate>
    </item>
    <item>
      <title>진짜 전문가는 강의를 하지 않는가?</title>
      <link>https://dohk.tistory.com/301</link>
      <description>&quot;초고경력자의 분께서 다음의 글을 링크드인에 포스팅하셨다.&quot;진짜 전문가들은 오프라인 강의는 할 시간이 없어요. 한 달에 한시간 발표하는 것도 버겁답니다. 왜냐하면 진짜 그 일을 해야하기 때문이죠. 한 시간 발표 준비하는데만도 저녁 시간을 일주일은 꼬박 써야하고, 재탕을 해도 청중이 다르기 때문에 며칠은 살펴 봐야하거든요. 강의와 발표가 메인 잡이다? 그러면 그건 그 일의 전문가가 아니라는 말 입니다.그냥 엔터테이너죠. 그런 사람들의 말은 듣더라도 그냥 ..</description>
      <category>기타</category>
      <author>doh.k</author>
      <guid isPermaLink="true">https://dohk.tistory.com/301</guid>
      <comments>https://dohk.tistory.com/301#entry301comment</comments>
      <pubDate>Fri, 22 Nov 2024 01:17:39 +0900</pubDate>
    </item>
    <item>
      <title>CS | Network 개념 정리</title>
      <link>https://dohk.tistory.com/286</link>
      <description>네트워크
노드와 링크로 연결된 집단. 이 집단 내에서는 리소스와 데이터들이 공유된다.
노드: 서버, 라우터, 스위치, 핸드폰 등의 네트워크 장치
링크: 이들 노드들을 연결하는 연결매체, 통신수단(와이파이 등)
라우터와 스위치의 차이는?
라우터

외부 통신 수행 &amp;rarr; 통신 중계의 역할을 함
IP 주소 기반의 통신
네트워크 계층(3계층)에서 동작
보안 정책은 방화벽

스위치

내부 통신 수행(로컬 네트워크)
MAC 주소와 포트 기반의 통신
데이터 링..</description>
      <category>Development/Network</category>
      <category>IP</category>
      <category>Network</category>
      <category>tcp</category>
      <category>네트워크</category>
      <category>대역폭</category>
      <category>라우터</category>
      <category>병목</category>
      <category>스위치</category>
      <category>트래픽</category>
      <category>패킷</category>
      <author>doh.k</author>
      <guid isPermaLink="true">https://dohk.tistory.com/286</guid>
      <comments>https://dohk.tistory.com/286#entry286comment</comments>
      <pubDate>Tue, 1 Aug 2023 00:17:54 +0900</pubDate>
    </item>
    <item>
      <title>python heapq</title>
      <link>https://dohk.tistory.com/284</link>
      <description>heapq 모듈은 최소 힙(min heap)을 구현하는 데 사용되며, 최소 힙은 가장 작은 요소가 루트에 위치함을 보장한다. 그러나 다른 요소들 사이의 상대적인 순서는 보장되지 않는다.
heapq의 각 원소의 인덱스를 k라고 할 때, k의 자식 원소들은 이진 트리 상의 특정 노드의 자식이 되므로 2k+1, 2k+2의 인덱스를 갖는다.
heapq는 부모 노드가 항상 자식 노드보다 그 값이 같거나 작다는 특징을 갖는다.
import 방법
import hea..</description>
      <category>Development/Python</category>
      <category>Heap</category>
      <category>heapq</category>
      <category>Python</category>
      <category>최소 힙</category>
      <category>파이썬</category>
      <category>힙</category>
      <author>doh.k</author>
      <guid isPermaLink="true">https://dohk.tistory.com/284</guid>
      <comments>https://dohk.tistory.com/284#entry284comment</comments>
      <pubDate>Thu, 1 Jun 2023 16:18:55 +0900</pubDate>
    </item>
    <item>
      <title>이미지 렌더링 &amp;amp; Raster와 Vector</title>
      <link>https://dohk.tistory.com/283</link>
      <description>렌더링(Rendering)
렌더링이란 브라우저의 뷰포트에 웹 사이트를 출력하는 행위를 말한다.
&amp;nbsp;
웹 이미지
크게 두 종류가 있다.
Raster
Vector
&amp;nbsp;
Raster
Raster는 픽셀이 모여 하나의 정보를 이룬다. 정교하고 다양한 색상을 표현할 수 있다. 확대 시에 이미지에 계단 현상이 발생한다. jpeg, jpg, png 등의 포맷이 이에 해당한다.
&amp;nbsp;
Vector
Vector는 점, 선, 면의 좌표, 색상 등의 정..</description>
      <category>Development/WEB</category>
      <category>gif</category>
      <category>jpg</category>
      <category>PNG</category>
      <category>raster</category>
      <category>SVG</category>
      <category>vector</category>
      <category>WebP</category>
      <category>래스터</category>
      <category>벡터</category>
      <category>이미지</category>
      <author>doh.k</author>
      <guid isPermaLink="true">https://dohk.tistory.com/283</guid>
      <comments>https://dohk.tistory.com/283#entry283comment</comments>
      <pubDate>Thu, 1 Dec 2022 17:32:52 +0900</pubDate>
    </item>
    <item>
      <title>callback으로 받은 값 사용하는 법</title>
      <link>https://dohk.tistory.com/282</link>
      <description>callback을&amp;nbsp;통해&amp;nbsp;받은&amp;nbsp;값은&amp;nbsp;useState를&amp;nbsp;이용하여&amp;nbsp;실제로&amp;nbsp;쓸&amp;nbsp;수&amp;nbsp;있는&amp;nbsp;값으로&amp;nbsp;저장해야&amp;nbsp;함
const onFilterChange = (filter) =&amp;gt; {
const {
       value
	} = filter;
}
value가&amp;nbsp;필요한&amp;nbsp;상황
const [receivedValue, setReceivedValue]..</description>
      <category>Development/javascript</category>
      <category>callback</category>
      <category>JavaScript</category>
      <category>useState</category>
      <category>자바스크립트</category>
      <author>doh.k</author>
      <guid isPermaLink="true">https://dohk.tistory.com/282</guid>
      <comments>https://dohk.tistory.com/282#entry282comment</comments>
      <pubDate>Wed, 30 Nov 2022 17:32:30 +0900</pubDate>
    </item>
    <item>
      <title>서버, 클라이언트, 프로토콜, 통신, 웹 표준</title>
      <link>https://dohk.tistory.com/281</link>
      <description>&amp;nbsp;
서버(Server)
서비스를 제공하는 컴퓨터(Service Provider)
&amp;nbsp;
클라이언트(Client)
서비스를 받는 컴퓨터(Service User). 웹 브라우저가 대표적이다.
&amp;nbsp;
통신 규약 또는 통신 프로토콜(Communication Protocol)
컴퓨터끼리(서버와 클라이언트끼리) 서로 원활한 통신이 이루어지도록 만든 공통의 약속(프로토콜)이다. 대표적으로 HTTP, HTTPS, FTP 등이 있다.
&amp;nbsp;
서..</description>
      <category>Development/WEB</category>
      <category>서버</category>
      <category>클라이언트</category>
      <category>통신</category>
      <category>표준</category>
      <category>프로토콜</category>
      <author>doh.k</author>
      <guid isPermaLink="true">https://dohk.tistory.com/281</guid>
      <comments>https://dohk.tistory.com/281#entry281comment</comments>
      <pubDate>Wed, 30 Nov 2022 14:07:08 +0900</pubDate>
    </item>
    <item>
      <title>메소드 체이닝</title>
      <link>https://dohk.tistory.com/280</link>
      <description>&amp;nbsp;
체인 형식의 메소드 연결을 말한다.
const a = &amp;lsquo;Hello~&amp;rsquo;;
const b = a.split(&amp;rsquo;&amp;rsquo;);
const b = a.split(&amp;rsquo;&amp;rsquo;).reverse();
const b = a.split(&amp;rsquo;&amp;rsquo;).reverse().join(&amp;rsquo;&amp;rsquo;);
split &amp;rarr; reverse &amp;rarr; join 순으로 실행된다.</description>
      <category>Development/javascript</category>
      <category>JavaScript</category>
      <category>메소드 체이닝</category>
      <category>자바스크립트</category>
      <author>doh.k</author>
      <guid isPermaLink="true">https://dohk.tistory.com/280</guid>
      <comments>https://dohk.tistory.com/280#entry280comment</comments>
      <pubDate>Wed, 30 Nov 2022 11:06:38 +0900</pubDate>
    </item>
    <item>
      <title>보간법</title>
      <link>https://dohk.tistory.com/279</link>
      <description>&amp;nbsp;
&amp;nbsp;
element-${}
위와 같이 달러 표시와 중괄호를 사용하는 것을 보간법이라 한다.
보간법을 사용하기 위해서는 backtick 기호(`)를 사용해야 한다.
`element-${}`

&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html lang=&quot;en&quot;&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;meta charset=&quot;UTF-8&quot;&amp;gt;
    &amp;lt;meta http-equiv=&quot;X-UA-Compatible&quot; conte..</description>
      <category>Development/javascript</category>
      <category>JavaScript</category>
      <category>보간법</category>
      <category>자바스크립트</category>
      <author>doh.k</author>
      <guid isPermaLink="true">https://dohk.tistory.com/279</guid>
      <comments>https://dohk.tistory.com/279#entry279comment</comments>
      <pubDate>Tue, 29 Nov 2022 13:30:36 +0900</pubDate>
    </item>
    <item>
      <title>defer</title>
      <link>https://dohk.tistory.com/278</link>
      <description>&amp;nbsp;
&amp;nbsp;
&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html lang=&quot;en&quot;&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;meta charset=&quot;UTF-8&quot;&amp;gt;
    &amp;lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=edge&quot;&amp;gt;
    &amp;lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&amp;gt;
    &amp;..</description>
      <category>Development/javascript</category>
      <category>defer</category>
      <category>JavaScript</category>
      <category>자바스크립트</category>
      <author>doh.k</author>
      <guid isPermaLink="true">https://dohk.tistory.com/278</guid>
      <comments>https://dohk.tistory.com/278#entry278comment</comments>
      <pubDate>Tue, 29 Nov 2022 13:27:16 +0900</pubDate>
    </item>
  </channel>
</rss>