This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# >>> conda initialize >>> | |
# !! Contents within this block are managed by 'conda init' !! | |
__conda_setup="$('/opt/anaconda3/bin/conda' 'shell.bash' 'hook' 2> /dev/null)" | |
if [ $? -eq 0 ]; then | |
eval "$__conda_setup" | |
else | |
if [ -f "/opt/anaconda3/etc/profile.d/conda.sh" ]; then | |
. "/opt/anaconda3/etc/profile.d/conda.sh" | |
else | |
export PATH="/opt/anaconda3/bin:$PATH" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu | |
# Locale Setting | |
ENV LC_ALL C.UTF-8 | |
# Timezone Setting | |
RUN apt-get update && apt-get install -y tzdata | |
RUN ls /usr/share/zoneinfo && \ | |
ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime && \ | |
echo "Asia/Seoul" > /etc/timezone |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import sys | |
from unicodedata import normalize | |
import glob | |
import os | |
def nfd2nfc(data): | |
return normalize('NFC', data) | |
if len(sys.argv) > 1: | |
path = sys.argv[1] |