<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>choewy.github.io</title>
    <link>https://choewy.github.io/</link>
    <description>개발 과정에서 배운 내용을 기록하고 공유하는 기술 블로그</description>
    <language>ko</language>
    <lastBuildDate>Mon, 27 Apr 2026 05:01:38 GMT</lastBuildDate>
    <atom:link href="https://choewy.github.io/rss.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>N+1 문제(with. TypeORM)</title>
      <link>https://choewy.github.io/posts/c6669601-af51-42dd-a365-bc2f38e2b362/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/c6669601-af51-42dd-a365-bc2f38e2b362/</guid>
      <pubDate>Sat, 18 Apr 2026 13:02:18 GMT</pubDate>
      <description>ORM을 사용하다 보면 N+1 문제라는 말을 자주 듣게 된다. 특히 TypeORM, JPA, Sequelize, Prisma 같은 ORM을 사용해서 연관 관계 데이터를 조회할 때 자주 발생하는 성능</description>
      <enclosure url="https://choewy.github.io/content/posts/2026-04-18%2013:02:18/thumbnail.png" type="image/png" />
    </item>
    <item>
      <title>인덱스(Index)</title>
      <link>https://choewy.github.io/posts/0c98b61f-8726-432e-9da1-21f5b8f1e88a/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/0c98b61f-8726-432e-9da1-21f5b8f1e88a/</guid>
      <pubDate>Fri, 17 Apr 2026 19:41:35 GMT</pubDate>
      <description>데이터베이스를 사용하다 보면 데이터가 적을 때는 별문제 없이 동작하던 쿼리가, 데이터가 많아지는 순간 갑자기 느려지는 상황을 자주 마주하게 된다. 예를 들어 회원 테이블에 데이터가 100개 있을 때</description>
      <enclosure url="https://choewy.github.io/content/posts/2026-04-17%2019:41:35/thumbnail.jpg" type="image/jpeg" />
    </item>
    <item>
      <title>MySQL vs PostgreSQL 트랜잭션 격리 수준 차이와 실제 장애 사례(Phantom Read 중심으로)</title>
      <link>https://choewy.github.io/posts/eb3654bd-7755-45e3-9b1d-9988eb95b35e/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/eb3654bd-7755-45e3-9b1d-9988eb95b35e/</guid>
      <pubDate>Thu, 16 Apr 2026 17:36:07 GMT</pubDate>
      <description>트랜잭션 격리 수준을 공부하다 보면 한 가지 의문이 생긴다.</description>
      <enclosure url="https://choewy.github.io/content/posts/2026-04-16%2017:36:07/thumbnail.png" type="image/png" />
    </item>
    <item>
      <title>분산락(Distributed Lock)과 데드락(Dead Lock)</title>
      <link>https://choewy.github.io/posts/1d732761-b89e-4176-99b0-47f1974a86ee/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/1d732761-b89e-4176-99b0-47f1974a86ee/</guid>
      <pubDate>Wed, 15 Apr 2026 17:23:38 GMT</pubDate>
      <description>앞선 글에서는 하나의 데이터베이스 내부에서 동시성을 제어하는 방법으로 낙관적 락과 비관적 락을 살펴보았다. 하지만 실제 서비스는 대부분 여러 서버로 구성된 분산 환경에서 동작한다. 이 경우 단순히 </description>
      <enclosure url="https://choewy.github.io/content/posts/2026-04-15%2017:23:38/thumbnail.png" type="image/png" />
    </item>
    <item>
      <title>낙관적 락(Optimistic Lock), 비관적 락(Pessimistic Lock)</title>
      <link>https://choewy.github.io/posts/fb225b6a-4536-4194-85c6-fddfdb74cb6c/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/fb225b6a-4536-4194-85c6-fddfdb74cb6c/</guid>
      <pubDate>Tue, 14 Apr 2026 13:33:44 GMT</pubDate>
      <description>데이터베이스를 다루다 보면 동시에 여러 요청이 하나의 데이터를 수정하려는 상황을 자주 마주하게 된다. 이러한 상황에서 데이터의 정합성을 유지하기 위해 사용하는 개념이 바로 락(Lock) 이다. 락은</description>
      <enclosure url="https://choewy.github.io/content/posts/2026-04-14%2013:33:44/thumbnail.jpg" type="image/jpeg" />
    </item>
    <item>
      <title>트랜젝션(Transaction) 격리 수준(Isolation Level)</title>
      <link>https://choewy.github.io/posts/f56829ef-9ea8-422a-ad3c-9b76cb55ddd4/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/f56829ef-9ea8-422a-ad3c-9b76cb55ddd4/</guid>
      <pubDate>Mon, 13 Apr 2026 18:20:44 GMT</pubDate>
      <description>데이터베이스를 다루다 보면 한 번쯤 이런 상황을 마주하게 된다.</description>
      <enclosure url="https://choewy.github.io/content/posts/2026-04-13%2018:20:44/thumbnail.webp" type="image/webp" />
    </item>
    <item>
      <title>트랜잭션(Transaction)의 개념과 ACID 원칙</title>
      <link>https://choewy.github.io/posts/f56829ef-9ea8-422a-ad3c-9b76cb55ddd3/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/f56829ef-9ea8-422a-ad3c-9b76cb55ddd3/</guid>
      <pubDate>Sun, 12 Apr 2026 13:52:12 GMT</pubDate>
      <description>데이터베이스를 다루다 보면 &apos;이 작업은 반드시 함께 성공해야 한다&apos;라는 상황을 자주 마주하게 된다. 단순히 데이터를 하나 수정하는 수준이 아니라, 여러 개의 작업이 하나의 흐름으로 묶여야 하는 경우</description>
      <enclosure url="https://choewy.github.io/content/posts/2026-04-12%2013:52:12/thumbnail.webp" type="image/webp" />
    </item>
    <item>
      <title>OAuth 2.0 개념 정리</title>
      <link>https://choewy.github.io/posts/43b549f4-5496-4e09-888c-525edc95580a/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/43b549f4-5496-4e09-888c-525edc95580a/</guid>
      <pubDate>Wed, 18 Mar 2026 18:12:43 GMT</pubDate>
      <description>인증과 인가를 공부하다 보면 세션 기반 인증, JWT 기반 인증 다음으로 자연스럽게 마주치는 개념이 OAuth 2.0이다. 특히 구글 로그인, 카카오 로그인, 네이버 로그인과 같은 소셜 로그인 기능</description>
      <enclosure url="https://choewy.github.io/content/posts/2026-03-18%2018:12:43/thumbnail.jpeg" type="image/jpeg" />
    </item>
    <item>
      <title>JWT(Json Web Token) 기반 인증</title>
      <link>https://choewy.github.io/posts/141e3749-631b-4ee3-b469-3e256f3de56a/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/141e3749-631b-4ee3-b469-3e256f3de56a/</guid>
      <pubDate>Tue, 17 Mar 2026 14:57:43 GMT</pubDate>
      <description>세션 기반 인증은 서버가 사용자의 로그인 상태를 직접 저장하고 관리하는 방식이다. 사용자가 로그인하면 서버는 세션 저장소에 사용자 정보를 저장하고, 클라이언트는 그 세션을 식별할 수 있는 sessi</description>
      <enclosure url="https://choewy.github.io/content/posts/2026-03-17%2014:57:43/thumbnail.webp" type="image/webp" />
    </item>
    <item>
      <title>세션(Session) 기반 인증</title>
      <link>https://choewy.github.io/posts/66454417-e2f6-4f2d-b5da-5d20d4fc0764/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/66454417-e2f6-4f2d-b5da-5d20d4fc0764/</guid>
      <pubDate>Mon, 16 Mar 2026 16:57:43 GMT</pubDate>
      <description>웹 서비스를 개발하다 보면 사용자가 로그인한 이후, 그 로그인 상태를 어떻게 유지할 것인지 고민하게 된다. HTTP는 기본적으로 상태를 기억하지 않는 stateless 프로토콜이다. 즉, 서버는 이</description>
      <enclosure url="https://choewy.github.io/content/posts/2026-03-16%2016:57:43/thumbnail.png" type="image/png" />
    </item>
    <item>
      <title>쿠키(Cookies)와 세션(Session)</title>
      <link>https://choewy.github.io/posts/bda19d13-3306-46ca-a2be-aa1bcfadf59a/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/bda19d13-3306-46ca-a2be-aa1bcfadf59a/</guid>
      <pubDate>Sun, 15 Mar 2026 21:16:35 GMT</pubDate>
      <description>인증과 인가를 공부하다 보면 가장 먼저 마주치는 개념이 바로 쿠키(Cookies)와 세션(Session)이다. 특히 세션 기반 인증을 이해하려면 이 두 개념을 정확하게 구분하는 것이 중요하다. 처음</description>
      <enclosure url="https://choewy.github.io/content/posts/2026-03-15%2021:16:35/thumbnail.png" type="image/png" />
    </item>
    <item>
      <title>인증(Authentication)과 인가(Authorization)</title>
      <link>https://choewy.github.io/posts/ef6c0c8b-46bf-4ec2-b3f6-54984a219904/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/ef6c0c8b-46bf-4ec2-b3f6-54984a219904/</guid>
      <pubDate>Sun, 15 Mar 2026 17:16:35 GMT</pubDate>
      <description>웹 서비스를 개발하다 보면 자연스럽게 두 가지 질문을 마주하게 된다. 하나는 &quot;이 사용자는 누구인가?&quot;이고, 다른 하나는 &quot;이 사용자가 이 행동을 해도 되는가?&quot;이다.</description>
      <enclosure url="https://choewy.github.io/content/posts/2026-03-15%2017:16:35/thumbnail.png" type="image/png" />
    </item>
    <item>
      <title>멱등성(Idempotency)개념과 멱등성 키(Idempotency Key)</title>
      <link>https://choewy.github.io/posts/bdc15bff-6fdb-4d1b-8e06-ebf2c81a3563/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/bdc15bff-6fdb-4d1b-8e06-ebf2c81a3563/</guid>
      <pubDate>Sun, 15 Feb 2026 13:06:34 GMT</pubDate>
      <description>백엔드 개발을 하다 보면 한 번쯤은 이런 고민을 하게된다.</description>
      <enclosure url="https://choewy.github.io/content/posts/2026-02-15%2013:06:34/thumbnail.avif" type="image/avif" />
    </item>
    <item>
      <title>새로운 취미, npm 패키지 배포 과정 정리</title>
      <link>https://choewy.github.io/posts/2cf2b49f-0656-4e50-87d2-f21cdfeb3f04/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/2cf2b49f-0656-4e50-87d2-f21cdfeb3f04/</guid>
      <pubDate>Tue, 19 Mar 2024 00:24:00 GMT</pubDate>
      <description>요즘 또 새로운 취미가 생겼다. 그건 바로, 정리. 여태 진행해왔던 여러 프로젝트의 코드를 살펴보면서 반복되는 코드를 어떻게 정리할까를 고민해왔다. 처음에는 GitHub Submodule로 관리해오</description>
      <enclosure url="https://choewy.github.io/content/posts/2024-03-19%2000:24:00/thumbnail.png" type="image/png" />
    </item>
    <item>
      <title>NestJS ExecutionContext와 ArgumentsHost</title>
      <link>https://choewy.github.io/posts/9dd804ef-722d-4ec0-88c4-4dcd593bd68b/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/9dd804ef-722d-4ec0-88c4-4dcd593bd68b/</guid>
      <pubDate>Thu, 08 Feb 2024 19:39:00 GMT</pubDate>
      <description>Docker로 ElasticSearch, Logstash, Kibana를 이것저것 설정하면서 놀다가 실제 로그를 쌓아줄 서버가 필요해서 바로 NestJS 프로젝트를 생성했다.</description>
      <enclosure url="https://choewy.github.io/content/posts/2024-02-08%2019:39:00/thumbnail.jpg" type="image/jpeg" />
    </item>
    <item>
      <title>MacOS(M1, M2)에서 Docker로 팰월드(PalWorld) 서버 구축하기</title>
      <link>https://choewy.github.io/posts/b2794fde-080b-40af-8062-35d6de8c8a11/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/b2794fde-080b-40af-8062-35d6de8c8a11/</guid>
      <pubDate>Wed, 31 Jan 2024 19:57:00 GMT</pubDate>
      <description>지난 글에 이어 MacOS(M2)에서 Docker로 PalWorld 서버를 구축하는 내용을 정리해보았다. 누군가 벌써 Docker Hub에 Image를 올려놓았고, 해당 이미지를 그대로 활용하였다.</description>
      <enclosure url="https://choewy.github.io/content/posts/2024-01-31%2019:57:00/thumbnail.avif" type="image/avif" />
    </item>
    <item>
      <title>MacOS(M1, M2)로 팰월드 서버 구축하기 전에 알아야 할 CPU 종류와 아키텍처</title>
      <link>https://choewy.github.io/posts/0a5eb021-1214-4f2d-a070-52ab2c52f994/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/0a5eb021-1214-4f2d-a070-52ab2c52f994/</guid>
      <pubDate>Wed, 31 Jan 2024 16:47:00 GMT</pubDate>
      <description>요즘 Steam에 Early Access로 출시된 팰월드(Palworld)가 핫한 게임인 듯하다. 디아블로4 출시 당시 game-porting-toolkit을 통해 MacBook(M2)에서 플레이한</description>
      <enclosure url="https://choewy.github.io/content/posts/2024-01-31%2016:47:00/thumbnail.avif" type="image/avif" />
    </item>
    <item>
      <title>TypeORM에서 bigint 사용 시 주의해야 할 점(Number와 BigInt)</title>
      <link>https://choewy.github.io/posts/b22409b4-2ad3-424e-b102-41618fd5de79/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/b22409b4-2ad3-424e-b102-41618fd5de79/</guid>
      <pubDate>Tue, 03 Oct 2023 18:45:00 GMT</pubDate>
      <description>TypeORM에서 Entity를 정의할 때 Column 타입을 지정할 수 있으며, 정수형의 경우 값의 범위에 따라 tinyint, smallint, mediumint, int, bigint 등을 선</description>
      <enclosure url="https://choewy.github.io/content/posts/2023-10-03%2018:45:00/thumbnail.jpg" type="image/jpeg" />
    </item>
    <item>
      <title>Git Submodule을 활용한 공통모듈 관리</title>
      <link>https://choewy.github.io/posts/e40c4356-ae7e-4710-9d86-da3978d37f7e/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/e40c4356-ae7e-4710-9d86-da3978d37f7e/</guid>
      <pubDate>Sun, 01 Oct 2023 15:06:00 GMT</pubDate>
      <description>작은 스타트업에서 근무하면서 다양한 이슈를 마주하게 되었고, 개선하고 싶은 부분들도 계속 쌓여갔다. 하지만 연속되는 기능 개발과 버그 수정, 그리고 개발 외 업무까지 겹치다 보니 블로그 글을 꾸준히</description>
      <enclosure url="https://choewy.github.io/content/posts/2023-10-01%2015:06:00/thumbnail.jpg" type="image/jpeg" />
    </item>
    <item>
      <title>웹 소켓(WebSocket)</title>
      <link>https://choewy.github.io/posts/90976408-ee9b-439a-8df4-f92de553b83b/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/90976408-ee9b-439a-8df4-f92de553b83b/</guid>
      <pubDate>Sun, 26 Jun 2022 01:12:40 GMT</pubDate>
      <description>HTTP와 HTTPS를 통해 웹에서 데이터가 어떻게 전달되는지를 이해했다면, 자연스럽게 한 가지 의문이 생긴다. 우리가 사용하는 대부분의 웹 통신은 요청을 보내고 응답을 받는 구조인데, 그렇다면 실</description>
      <enclosure url="https://choewy.github.io/content/posts/2022-06-26%2001:12:40/thumbnail.png" type="image/png" />
    </item>
    <item>
      <title>HTTP와 HTTPS</title>
      <link>https://choewy.github.io/posts/8bb3e0af-1e73-4803-b919-73c132bc7bd5/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/8bb3e0af-1e73-4803-b919-73c132bc7bd5/</guid>
      <pubDate>Sat, 25 Jun 2022 22:12:40 GMT</pubDate>
      <description>웹 브라우저를 열고 주소창에 URL을 입력하는 순간, 우리는 아주 자연스럽게 어떤 웹 페이지를 받아본다. 이 과정은 너무 익숙해서 단순히 요청을 보내고 응답을 받는 정도로만 생각하기 쉽지만, 실제로</description>
      <enclosure url="https://choewy.github.io/content/posts/2022-06-25%2022:12:40/thumbnail.png" type="image/png" />
    </item>
    <item>
      <title>TCP와 UDP 전송 프로토콜</title>
      <link>https://choewy.github.io/posts/04615714-4ec4-41df-90cc-3177ce9a2d7e/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/04615714-4ec4-41df-90cc-3177ce9a2d7e/</guid>
      <pubDate>Fri, 24 Jun 2022 21:44:40 GMT</pubDate>
      <description>네트워크를 통해 데이터를 주고받는다는 것은 생각보다 복잡한 과정이다. 우리가 브라우저에서 웹 페이지를 열거나, 유튜브 영상을 보거나, 온라인 게임을 할 때는 단순히 &apos;요청 → 응답&apos; 정도로만 느껴지</description>
      <enclosure url="https://choewy.github.io/content/posts/2022-06-24%2021:44:40/thumbnail.png" type="image/png" />
    </item>
    <item>
      <title>OSI 7계층(OSI 7 Layer)</title>
      <link>https://choewy.github.io/posts/59ea8448-dfda-4a48-9834-11fcdf895334/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/59ea8448-dfda-4a48-9834-11fcdf895334/</guid>
      <pubDate>Tue, 21 Jun 2022 20:04:30 GMT</pubDate>
      <description>네트워크를 처음 공부하다 보면 OSI 7계층이라는 개념을 반드시 마주하게 된다. 처음에는 단순히 외워야 하는 개념처럼 보이지만, 실제로는 네트워크가 어떻게 동작하는지를 이해하기 위한 매우 중요한 기</description>
      <enclosure url="https://choewy.github.io/content/posts/2022-06-21%2020:04:30/thumbnail.png" type="image/png" />
    </item>
    <item>
      <title>항해99 실전 프로젝트 2주차 회고록</title>
      <link>https://choewy.github.io/posts/dfcae97e-fa38-4f1e-9525-e14f136193b0/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/dfcae97e-fa38-4f1e-9525-e14f136193b0/</guid>
      <pubDate>Sun, 15 May 2022 18:33:37 GMT</pubDate>
      <description>시간이 얼마 안 남았다는 조급함 때문인지, 이번주는 시간이 유독 빠르게 지나간 것 같다. 거의 매일같이 새벽 4시를 넘겨가며 개발을 했음에도 아직 해야할 일이 너무 많게만 느껴진다. 일단, 백엔드 </description>
      <enclosure url="https://choewy.github.io/content/posts/2022-05-15%2018:33:37/thumbnail.png" type="image/png" />
    </item>
    <item>
      <title>항해99 실전 프로젝트 기획 검토</title>
      <link>https://choewy.github.io/posts/f831126e-8c16-40b8-8782-1ca70e58370a/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/f831126e-8c16-40b8-8782-1ca70e58370a/</guid>
      <pubDate>Sun, 08 May 2022 08:36:12 GMT</pubDate>
      <description>실전 프로젝트를 진행함에 있어서 팀 내부적으로 혼란스러웠던 부분을 짚고 넘어가기로 하였다. 따라서, 우리가 이 프로젝트를 통해 무엇을 얻을 것이며, 어떤 기술을 중점적으로 연마해 나갈 것인지 등의 </description>
      <enclosure url="https://choewy.github.io/content/posts/2022-05-08%2008:36:12/thumbnail.png" type="image/png" />
    </item>
    <item>
      <title>항해99 실전 프로젝트 1주차 회고록</title>
      <link>https://choewy.github.io/posts/91d8503f-181c-4edd-b1c1-c978ec651b99/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/91d8503f-181c-4edd-b1c1-c978ec651b99/</guid>
      <pubDate>Wed, 04 May 2022 08:21:43 GMT</pubDate>
      <description>드디어 항해99의 꽃이라고 불리우는 실전 프로젝트 주가 되었는데, 지금 심정은 기대 반, 걱정 반인 상태이다. 며칠 전만 하더라도 팀 리더를 지원할 생각은 1도 없었다. 그렇게 생각했던 이유로는 다</description>
      <enclosure url="https://choewy.github.io/content/posts/2022-05-04%2008:21:43/thumbnail.png" type="image/png" />
    </item>
    <item>
      <title>스파르타코딩클럽 내일배움단 완주 후 회고록</title>
      <link>https://choewy.github.io/posts/34ee2d64-6ba2-4c7c-ae05-4aecc3101d76/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/34ee2d64-6ba2-4c7c-ae05-4aecc3101d76/</guid>
      <pubDate>Sat, 19 Feb 2022 01:30:12 GMT</pubDate>
      <description>2019년, 군 전역 이후 한양사이버대학교 컴퓨터공학과로 편입한 동시에 처음 프로그래밍을 접하였다. 2021년 6월까지 직장생활을 해오며, 현재는 컴퓨터공학과를 졸업하였다. 컴퓨터공학과 관련된 여러</description>
      <enclosure url="https://choewy.github.io/content/posts/2022-02-19%2001:30:12/thumbnail.png" type="image/png" />
    </item>
    <item>
      <title>1:N 패턴에서의 MongoDB 모델링</title>
      <link>https://choewy.github.io/posts/b1d78bce-681e-452d-a8fe-a0d966b938bd/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/b1d78bce-681e-452d-a8fe-a0d966b938bd/</guid>
      <pubDate>Fri, 11 Feb 2022 19:08:00 GMT</pubDate>
      <description>Node.js로 개발할 때 가장 쉽게 접근할 수 있는 데이터베이스로는 MongoDB가 있다. MongoDB는 No-SQL 데이터베이스로 그 형식은 JSON과 매우 유사하다. 이번 일지에서는 사용자 </description>
      <enclosure url="https://choewy.github.io/content/posts/2022-02-11%2019:08:12/thumbnail.png" type="image/png" />
    </item>
    <item>
      <title>GROUP BY, ORDER BY, Alias</title>
      <link>https://choewy.github.io/posts/663218d7-ff7e-48d6-ad5f-42298f2e0175/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/663218d7-ff7e-48d6-ad5f-42298f2e0175/</guid>
      <pubDate>Wed, 09 Feb 2022 13:16:00 GMT</pubDate>
      <description>GROUP BY와 ORDER BY는 주로 통계를 구할때 사용하며, 여기서 통계는 최대, 최소, 평균, 합계를 의미한다. 이제부터 쿼리문이 길어지고, 복잡해지기 시작하는데 침착하게 쿼리문을 작성해보면</description>
      <enclosure url="https://choewy.github.io/content/posts/2022-02-09%2013:16:08/thumbnail.jpeg" type="image/jpeg" />
    </item>
    <item>
      <title>SELECT, WHERE</title>
      <link>https://choewy.github.io/posts/01578bfa-c107-4938-af30-341c926a2857/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/01578bfa-c107-4938-af30-341c926a2857/</guid>
      <pubDate>Mon, 07 Feb 2022 17:52:00 GMT</pubDate>
      <description>SQL(Structured Query Language)은 데이터베이스에 요청을 보내는데 사용되는 언어이며 이는 마치 엑셀(Excel)에서의 함수처럼 사용할 수 있다.</description>
      <enclosure url="https://choewy.github.io/content/posts/2022-02-07%2017:52:04/thumbnail.jpeg" type="image/jpeg" />
    </item>
    <item>
      <title>자바스크립트(JavaScript)의 역사와 배경</title>
      <link>https://choewy.github.io/posts/2b0cb91f-d66a-4b57-9325-bcd923e622e3/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/2b0cb91f-d66a-4b57-9325-bcd923e622e3/</guid>
      <pubDate>Tue, 02 Mar 2021 16:20:49 GMT</pubDate>
      <description>사마천의 술왕사 지래자(지난 일을 기술하여 다가올 일을 안다)에서 유래된 말이 있다.</description>
      <enclosure url="https://choewy.github.io/content/posts/2021-03-02%2016:20:49/thumbnail.webp" type="image/webp" />
    </item>
    <item>
      <title>pandas를 사용하여 서로 다른 엑셀(Excel) 파일을 통해 결과를 출력하는 방법</title>
      <link>https://choewy.github.io/posts/7fdd9bcd-5c5b-4db8-9f1f-b01dcdd61ae5/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/7fdd9bcd-5c5b-4db8-9f1f-b01dcdd61ae5/</guid>
      <pubDate>Tue, 23 Feb 2021 14:19:00 GMT</pubDate>
      <description>이번에는 서로 다른 엑셀 파일의 데이터를 가공하여 새로운 엑셀 파일을 생성하는 방법에 대해서 정리해보았다. 본 글에서 사용한 두 개의 엑셀 파일은 다음과 같다.</description>
      <enclosure url="https://choewy.github.io/content/posts/2021-02-23%2014:19:00/thumbnail.png" type="image/png" />
    </item>
    <item>
      <title>pandas를 사용하여 데이터프레임(DataFrame)을 엑셀(Excel) 파일로 저장하는 방법</title>
      <link>https://choewy.github.io/posts/9b889bc4-da7e-4c4d-b1f1-d52e596da8dc/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/9b889bc4-da7e-4c4d-b1f1-d52e596da8dc/</guid>
      <pubDate>Mon, 22 Feb 2021 13:08:21 GMT</pubDate>
      <description>이전 포스팅에 이어 이번에는 DataFrame 객체를 엑셀 파일로 저장하는 방법에 대해서 정리해보았다. 예시에서 사용할 DataFrame 객체의 데이터는 다음과 같다.</description>
      <enclosure url="https://choewy.github.io/content/posts/2021-02-22%2013:08:21/thumbnail.png" type="image/png" />
    </item>
    <item>
      <title>pandas를 사용하여 엑셀(Excel) 파일의 데이터를 데이터프레임(DataFrame)으로 불러오는 방법</title>
      <link>https://choewy.github.io/posts/5b3ecebb-2df5-46f2-b527-4aac6f4caddc/</link>
      <guid isPermaLink="true">https://choewy.github.io/posts/5b3ecebb-2df5-46f2-b527-4aac6f4caddc/</guid>
      <pubDate>Sun, 21 Feb 2021 21:51:00 GMT</pubDate>
      <description>pandas를 활용하여 엑셀 파일.xlsx을 읽어 DataFrame 객체로 변환할 수 있다. 예시에서 사용할 엑셀 파일(exam.xlsx)의 정보는 다음과 같다.</description>
      <enclosure url="https://choewy.github.io/content/posts/2021-02-21%2021:51:00/thumbnail.png" type="image/png" />
    </item>
  </channel>
</rss>
