Skip to content

Instantly share code, notes, and snippets.

View jacking75's full-sized avatar

Choi HeungBae jacking75

View GitHub Profile
@jacking75
jacking75 / 라즈베리파이피코.md
Created March 15, 2025 07:40
라즈베리파이피코 글 모음
@jacking75
jacking75 / code_to_markdown.py
Created March 3, 2025 04:53
디렉토리에 있는 파일들을 마크다운 파일로 정리해주는 파이썬 스크립트
import os
def write_code_to_markdown_split(repo_path, output_dir, max_size_mb=10):
"""
저장소 내의 소스 코드를 재귀적으로 읽고,
Markdown 형식으로 10MB 미만의 파일로 분할해서 출력하는 스크립트
"""
if not os.path.exists(output_dir):
os.makedirs(output_dir)