Skip to content

Instantly share code, notes, and snippets.

@monoletP
monoletP / find_birthday_song.ipynb
Last active September 26, 2025 17:49
find_birthday_song.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@monoletP
monoletP / vocadb_album_list.ipynb
Last active February 7, 2025 02:00
vocadb_album_list.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@monoletP
monoletP / vocadb_album.ipynb
Last active February 7, 2025 01:59
vocadb_album.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import json
import requests
import re
import pyperclip
import argparse
import sys
# 색상 매핑 정의 (색상 코드에 # 포함)
color_map = {
'Title': '#bb9f5e', # 스킬 표시
import json
import pyperclip
import re
def load_color_mapping(json_file):
"""Load the color mapping from the JSON file."""
with open(json_file, 'r', encoding='utf-8') as f:
return json.load(f)
def convert_text(text, mapping):