<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel><title>Chloeeekim</title><description>Chloeeekim&apos;s Blog - All about everything</description><link>https://chloeeekim.github.io/</link><item><title>Python의 locals()와 globals() 함수 이해하기</title><link>https://chloeeekim.github.io/python-locals-globals/</link><guid isPermaLink="true">https://chloeeekim.github.io/python-locals-globals/</guid><description>locals() 와 globals() 로 현재 스코프의 변수를 딕셔너리로 확인하고 디버깅에 활용하기.</description><pubDate>Wed, 14 Aug 2024 00:00:00 GMT</pubDate></item><item><title>Python에서 MongoDB를 사용하여 CRUD 작업 수행하기 (feat. pymongo)</title><link>https://chloeeekim.github.io/python-pymongo/</link><guid isPermaLink="true">https://chloeeekim.github.io/python-pymongo/</guid><description>pymongo 로 MongoDB 에 연결해 문서 단위 CRUD 작업을 수행하는 방법.</description><pubDate>Fri, 02 Aug 2024 00:00:00 GMT</pubDate></item><item><title>Python의 super 키워드와 다중 상속</title><link>https://chloeeekim.github.io/python-super-multiple-inheritance/</link><guid isPermaLink="true">https://chloeeekim.github.io/python-super-multiple-inheritance/</guid><description>super 키워드로 부모 클래스 메서드를 호출하는 법과 다중 상속에서의 MRO 탐색 순서.</description><pubDate>Thu, 25 Jul 2024 00:00:00 GMT</pubDate></item><item><title>Python에서 class 다루기</title><link>https://chloeeekim.github.io/python-class/</link><guid isPermaLink="true">https://chloeeekim.github.io/python-class/</guid><description>클래스 정의와 인스턴스 생성, __init__ 과 self, 상속과 메서드 오버라이딩까지.</description><pubDate>Wed, 24 Jul 2024 00:00:00 GMT</pubDate></item><item><title>Python의 배열(Array) - 효율적인 데이터 처리하기</title><link>https://chloeeekim.github.io/python-array/</link><guid isPermaLink="true">https://chloeeekim.github.io/python-array/</guid><description>파이썬 array 모듈로 배열을 생성하고 요소에 접근·조작하는 방법, 그리고 리스트와의 차이.</description><pubDate>Tue, 23 Jul 2024 00:00:00 GMT</pubDate></item><item><title>Python의 자료형 살펴보기</title><link>https://chloeeekim.github.io/python-data-types/</link><guid isPermaLink="true">https://chloeeekim.github.io/python-data-types/</guid><description>숫자형, 문자열, 리스트, 튜플, 딕셔너리 등 파이썬 기본 자료형 정리.</description><pubDate>Tue, 23 Jul 2024 00:00:00 GMT</pubDate></item><item><title>Python Lambda Function에 대하여</title><link>https://chloeeekim.github.io/python-lambda-function/</link><guid isPermaLink="true">https://chloeeekim.github.io/python-lambda-function/</guid><description>lambda 키워드로 익명 함수를 정의하는 법과 고차 함수와 함께 쓰는 패턴.</description><pubDate>Mon, 22 Jul 2024 00:00:00 GMT</pubDate></item><item><title>Python에서의 고차 함수 (feat. map, filter, reduce)</title><link>https://chloeeekim.github.io/python-higher-order-function/</link><guid isPermaLink="true">https://chloeeekim.github.io/python-higher-order-function/</guid><description>함수를 인자로 받거나 반환하는 고차 함수의 개념과 map, filter, reduce 활용법.</description><pubDate>Sun, 21 Jul 2024 00:00:00 GMT</pubDate></item><item><title>Django를 사용하여 RESTful API 구축하기</title><link>https://chloeeekim.github.io/django-restful-api/</link><guid isPermaLink="true">https://chloeeekim.github.io/django-restful-api/</guid><description>Django REST framework 로 모델과 시리얼라이저를 정의해 CRUD API 를 구축하기.</description><pubDate>Fri, 19 Jul 2024 00:00:00 GMT</pubDate></item><item><title>Node.js에서 Typescript 사용하기</title><link>https://chloeeekim.github.io/nodejs-typescript/</link><guid isPermaLink="true">https://chloeeekim.github.io/nodejs-typescript/</guid><description>Node.js 프로젝트에 TypeScript 를 도입해 tsconfig 설정과 빌드 스크립트를 구성하는 방법.</description><pubDate>Fri, 19 Jul 2024 00:00:00 GMT</pubDate></item><item><title>Express.js를 사용하여 RESTful API 구축하기 (feat. MongoDB)</title><link>https://chloeeekim.github.io/express-restful-api/</link><guid isPermaLink="true">https://chloeeekim.github.io/express-restful-api/</guid><description>Express.js 로 CRUD 엔드포인트를 만들고 MongoDB 에 연동해 RESTful API 를 구축하기.</description><pubDate>Thu, 18 Jul 2024 00:00:00 GMT</pubDate></item><item><title>Python으로 웹 스크래핑(웹 크롤링)하기</title><link>https://chloeeekim.github.io/python-web-scraping/</link><guid isPermaLink="true">https://chloeeekim.github.io/python-web-scraping/</guid><description>Requests 와 BeautifulSoup 으로 웹페이지를 요청하고 HTML 을 파싱해 데이터를 추출하기.</description><pubDate>Thu, 18 Jul 2024 00:00:00 GMT</pubDate></item><item><title>Node.js Tutorial - 5분만에 훑어보기</title><link>https://chloeeekim.github.io/nodejs-tutorial/</link><guid isPermaLink="true">https://chloeeekim.github.io/nodejs-tutorial/</guid><description>Node.js 설치부터 프로젝트 생성, package.json 구성, 첫 서버 실행까지 5분 만에 훑어보기.</description><pubDate>Wed, 17 Jul 2024 00:00:00 GMT</pubDate></item><item><title>Python 자동화 스크립트 작성하기</title><link>https://chloeeekim.github.io/python-automation-script/</link><guid isPermaLink="true">https://chloeeekim.github.io/python-automation-script/</guid><description>웹 스크래핑, 파일·엑셀 처리, 작업 스케쥴링, 이메일 발송을 파이썬으로 자동화하기.</description><pubDate>Wed, 17 Jul 2024 00:00:00 GMT</pubDate></item><item><title>Python String Formatting 방법</title><link>https://chloeeekim.github.io/python-string-formatting/</link><guid isPermaLink="true">https://chloeeekim.github.io/python-string-formatting/</guid><description>% operator, str.format(), f-string 등 파이썬 문자열 포맷팅 방법의 사용법과 장단점 비교.</description><pubDate>Tue, 16 Jul 2024 00:00:00 GMT</pubDate></item><item><title>Python Tutorial - 5분만에 훑어보기</title><link>https://chloeeekim.github.io/python-tutorial/</link><guid isPermaLink="true">https://chloeeekim.github.io/python-tutorial/</guid><description>파이썬 설치부터 기본 문법, 자료형, 제어문까지 5분 만에 훑어보기.</description><pubDate>Mon, 15 Jul 2024 00:00:00 GMT</pubDate></item><item><title>Jekyll Blog(Github Pages) 검색 엔진에 노출시키기 (Google Search Console)</title><link>https://chloeeekim.github.io/jekyll-search/</link><guid isPermaLink="true">https://chloeeekim.github.io/jekyll-search/</guid><description>Google Search Console에 사이트맵을 등록해 Jekyll 블로그를 검색 결과에 노출시키는 방법.</description><pubDate>Wed, 03 Jul 2024 00:00:00 GMT</pubDate></item><item><title>Jekyll Blog(Github Pages)에 Google Anayltics 연결하기</title><link>https://chloeeekim.github.io/jekyll-google-analytics/</link><guid isPermaLink="true">https://chloeeekim.github.io/jekyll-google-analytics/</guid><description>Jekyll 블로그에 GA4 속성을 만들어 연결하고 유입 데이터가 수집되는지 확인하는 방법.</description><pubDate>Sat, 29 Jun 2024 00:00:00 GMT</pubDate></item><item><title>Github pages와 Jekyll 설치하기 - Windows ver.</title><link>https://chloeeekim.github.io/jekyll-setup-windows/</link><guid isPermaLink="true">https://chloeeekim.github.io/jekyll-setup-windows/</guid><description>Windows 환경에서 GitHub Pages 저장소를 만들고 Ruby와 Jekyll을 설치해 블로그를 띄우기까지의 과정.</description><pubDate>Wed, 26 Jun 2024 00:00:00 GMT</pubDate></item><item><title>[CUDA 7] GPU 실행시간 측정 - cudaEvent</title><link>https://chloeeekim.github.io/cudaEvent/</link><guid isPermaLink="true">https://chloeeekim.github.io/cudaEvent/</guid><description>cudaEvent 로 GPU 커널의 실행 시간을 측정하는 방법.</description><pubDate>Fri, 15 Jan 2016 00:00:00 GMT</pubDate></item><item><title>[CUDA 5.5] cpp에서 CUDA 함수 사용하기</title><link>https://chloeeekim.github.io/cpp-cuda-function/</link><guid isPermaLink="true">https://chloeeekim.github.io/cpp-cuda-function/</guid><description>.cpp 와 .cu 파일이 섞인 프로젝트에서 C++ 코드가 CUDA 함수를 호출하도록 구성하기.</description><pubDate>Tue, 07 Apr 2015 00:00:00 GMT</pubDate></item><item><title>[CUDA 5.5] CUDA 메모리 성능 최적화</title><link>https://chloeeekim.github.io/cuda-memory-optimization/</link><guid isPermaLink="true">https://chloeeekim.github.io/cuda-memory-optimization/</guid><description>글로벌 메모리 액세스 결합과 공유 메모리 뱅크 충돌을 피해 CUDA 메모리 성능을 끌어올리는 방법. (2014년 작성)</description><pubDate>Sat, 04 Apr 2015 00:00:00 GMT</pubDate></item><item><title>[CUDA 5.0] CUDA C 확장 키워드 (CUDA C Extension) - 함수의 수식어</title><link>https://chloeeekim.github.io/cuda-c-extension-1/</link><guid isPermaLink="true">https://chloeeekim.github.io/cuda-c-extension-1/</guid><description>__global__, __device__, __host__ 등 CUDA C가 확장한 함수 수식어의 의미와 쓰임. (2013년 작성)</description><pubDate>Fri, 03 Apr 2015 00:00:00 GMT</pubDate></item><item><title>[CUDA 5.0] CUDA C 확장 키워드 (CUDA C Extension) - 변수의 수식어</title><link>https://chloeeekim.github.io/cuda-c-extension-2/</link><guid isPermaLink="true">https://chloeeekim.github.io/cuda-c-extension-2/</guid><description>__device__, __constant__, __shared__ 등 CUDA C 변수 수식어가 지정하는 메모리 공간. (2013년 작성)</description><pubDate>Fri, 03 Apr 2015 00:00:00 GMT</pubDate></item><item><title>[CUDA 5.0] CUDA syntax를 이용하여 device 정보 불러오기</title><link>https://chloeeekim.github.io/cuda-syntax-device/</link><guid isPermaLink="true">https://chloeeekim.github.io/cuda-syntax-device/</guid><description>CUDA syntax로 GPU device의 사양 정보를 조회해 출력하는 예제. (2013년 작성)</description><pubDate>Thu, 02 Apr 2015 00:00:00 GMT</pubDate></item><item><title>[CUDA 5.0] CUDA Syntax Highlighting 설정하기</title><link>https://chloeeekim.github.io/cuda-syntax-highlighting/</link><guid isPermaLink="true">https://chloeeekim.github.io/cuda-syntax-highlighting/</guid><description>Visual Studio에서 .cu 파일의 CUDA 및 C/C++ 문법 강조가 동작하도록 설정하기. (2013년 작성)</description><pubDate>Wed, 01 Apr 2015 00:00:00 GMT</pubDate></item><item><title>[CUDA 5.0] CUDA 예제 실행하기</title><link>https://chloeeekim.github.io/cuda-samples/</link><guid isPermaLink="true">https://chloeeekim.github.io/cuda-samples/</guid><description>설치된 CUDA 5.0의 Samples Browser로 예제 프로젝트를 빌드하고 실행해보기. (2013년 작성)</description><pubDate>Tue, 31 Mar 2015 00:00:00 GMT</pubDate></item><item><title>[CUDA 5.0] CUDA 설치하기</title><link>https://chloeeekim.github.io/cuda-install/</link><guid isPermaLink="true">https://chloeeekim.github.io/cuda-install/</guid><description>CUDA 5.0 툴킷을 내려받아 설치하는 과정 정리. (2013년 작성)</description><pubDate>Mon, 30 Mar 2015 00:00:00 GMT</pubDate></item></channel></rss>