<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>꼼개의 개발자취</title>
    <link>https://code-killer.tistory.com/</link>
    <description>개발자 나쁘지않아</description>
    <language>ko</language>
    <pubDate>Sat, 15 Aug 2026 08:40:20 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>코드 살인마</managingEditor>
    <image>
      <title>꼼개의 개발자취</title>
      <url>https://tistory1.daumcdn.net/tistory/3711140/attach/5b17d377980143e08cbbd2ac399d89cf</url>
      <link>https://code-killer.tistory.com</link>
    </image>
    <item>
      <title>중니어 서버개발자의 2025년 회고 without GPT</title>
      <link>https://code-killer.tistory.com/226</link>
      <description>매년 쓰면서 느끼는건 시간 진짜 빠르다는거..
벌써 2026년이라니,, 어느새 주니어와 시니어의 사이인 중니어로 전직하게 되었다.
&amp;nbsp;
이번 회고는 의식의 흐름에 따라 작성할 예정이다. 이번년도 가장 큰 이벤트(work)인 이직부터 시작해서,&amp;nbsp; AI 시대 개인적인 이벤트까지 글을 적을 것이다. 특히나 LLM의 도움없이 막 쓸 예정
&amp;nbsp;
중니어로 전직하면서, 2025년 8월 이직도 하게되었다.
이직의 이유
이직의 이유는 크게 3가지..</description>
      <category>생각생각생각</category>
      <author>코드 살인마</author>
      <guid isPermaLink="true">https://code-killer.tistory.com/226</guid>
      <comments>https://code-killer.tistory.com/226#entry226comment</comments>
      <pubDate>Sun, 14 Jun 2026 17:47:54 +0900</pubDate>
    </item>
    <item>
      <title>서버개발자로서 살아남기 - Rag &amp;amp; Vector search 정확도 높이기</title>
      <link>https://code-killer.tistory.com/227</link>
      <description>개요
RAG는 LLM과 벡터 DB를 함께 활용해, 컨텍스트 길이 한계로 인한 LLM의 성능 저하를 보완하는 아키텍처다.
&amp;nbsp;
현재 CS 관련 업무를 진행하면서, RAG의 기반이 되는 벡터 DB에 어떤 형태로 데이터를 저장하는 것이 가장 효과적인지에 대해 GPT와 함께 얘기 나눠봤다.
&amp;nbsp;
실험한 데이터 구성 방식은 크게 세 가지

질문만 저장
답변만 저장
질문 + 답변 함께 저장

이 세 가지 방식 중 어떤 구성이 실제로 가장 좋은 성능을..</description>
      <category>개발자로서 살아남기</category>
      <category>Rag</category>
      <category>Vector</category>
      <author>코드 살인마</author>
      <guid isPermaLink="true">https://code-killer.tistory.com/227</guid>
      <comments>https://code-killer.tistory.com/227#entry227comment</comments>
      <pubDate>Wed, 10 Dec 2025 18:35:01 +0900</pubDate>
    </item>
    <item>
      <title>현업에서 사용되는 코틀린 정복하기 - companion object 와 @JvmStatic</title>
      <link>https://code-killer.tistory.com/224</link>
      <description>개요
이직 한 후, 배울께 천지 삐까리다.
일단 제일 급한 건 코틀린이고, 그 다음은 리액트이다.
4년전쯤 전회사의 신입으로 들어가, 모르는 부분들을 정리하여 포스팅 했던 기억이 있는데, 그때 기억을 되살려, 앞으로 자주 포스팅 할 예정이다.
companion object

클래스 안의 싱글턴인 네임스페이스 자바의 static 메소드와 비슷한 역할을 한다. 인스턴스 생성 없이 사용할 수 있다.

class ClassName {
    companion ..</description>
      <category>개발자로서 살아남기/Kotlin</category>
      <author>코드 살인마</author>
      <guid isPermaLink="true">https://code-killer.tistory.com/224</guid>
      <comments>https://code-killer.tistory.com/224#entry224comment</comments>
      <pubDate>Fri, 5 Sep 2025 17:03:40 +0900</pubDate>
    </item>
    <item>
      <title>React - 사진 용량 가져오기 HEAD는 안되고, RANGE는 되는 이유</title>
      <link>https://code-killer.tistory.com/223</link>
      <description>개요
CDN에서 이미지를 가져오는 리액트를 활용한 어드민을 코파일럿과 함께 개발중이였다.
&amp;nbsp;
그떄, 이미지에 대한 픽셀, 사이즈를 가져오는 요구사항이 있었고, 해당 이미지의 size을 가져오기 위해 HEAD 헤더 메소드를 통해 가져오는 것을 추천하였다.
&amp;nbsp;
근데 0으로 가져오는 이슈가 있었다.
&amp;nbsp;
아래 내용을 통해 자세히 알아보자

왜 HEAD에는 사이즈가 없고, Range GET에는 있나?
CDN의 정책

대부분 CDN/오브..</description>
      <category>개발자로서 살아남기/React</category>
      <author>코드 살인마</author>
      <guid isPermaLink="true">https://code-killer.tistory.com/223</guid>
      <comments>https://code-killer.tistory.com/223#entry223comment</comments>
      <pubDate>Thu, 28 Aug 2025 21:01:25 +0900</pubDate>
    </item>
    <item>
      <title>서버개발자로서 살아남기- spring json 라이브러리 어노테이션 부수기</title>
      <link>https://code-killer.tistory.com/222</link>
      <description>아래와 같은 Json 관련 어노테이션이 있다.아래 어노테이션을 상세분석 해보자
@JsonIgnoreProperties(ignoreUnknown = true)  
@JsonInclude(Include.NON_NULL)  
@JsonAutoDetect  
@JsonPropertyOrder(alphabetic = true)  
@JsonRootName(value = &quot;result&quot;)
Jackson 어노테이션 상세 분석
@JsonIgnoreProperties(..</description>
      <category>개발자로서 살아남기</category>
      <author>코드 살인마</author>
      <guid isPermaLink="true">https://code-killer.tistory.com/222</guid>
      <comments>https://code-killer.tistory.com/222#entry222comment</comments>
      <pubDate>Mon, 18 Aug 2025 21:27:07 +0900</pubDate>
    </item>
  </channel>
</rss>