유니코드에서 한글을 어떻게 다루는지를 정리하였다.
- 유니코드(Unicode)는 전 세계의 모든 문자를 컴퓨터에서 일관되게 표현하고 다룰 수 있도록 설계된 산업 표준 (위키 백과)
- 단순히 문자마다 번호를 붙임
- 계속 업데이트되며 현재는 Unicode Version 9.0.0 이 최신이다.
- 유니코드를 실제 파일 등에 어떻게 기록할 것인지를 표준화한 것이다.
#!/bin/bash | |
set -x | |
# disable swap | |
sudo sed -i '/swap/d' /etc/fstab | |
sudo swapoff -a | |
# uninstall packages | |
export DEBIAN_FRONTEND=noninteractive | |
TO_UNINSTALL=( |
약자 | 한국정보과학회 (2024) | BK21플러스 IF (2018) | KAIST CS (2022) | SNU CSE (2024.4) | POSTECH CSE (2024.9) | 평균 (정규화) | 학회명 | DBLP Key | |
---|---|---|---|---|---|---|---|---|---|
AAAI | 최우수 | 4 | O | O | 최우수 | 1.00 | AAAI Conference on Artificial Intelligence (AAAI) | conf/aaai | |
AAMAS | 우수 | 2 | 0.20 | International Conference on Autonomous Agents and Multiagent Systems (AAMAS) | conf/ifaamas | ||||
ACCV | 우수 | 1 | 우수 | 0.25 | Asian Conference on Computer Vision (ACCV) | conf/accv | |||
ACL | 최우수 | 4 | O | O | 최우수 | 1.00 | Annual Meeting of the Association for Computational Linguistics (ACL) | conf/acl | |
ACL Findings | 우수 | 우수 | 0.20 | Findings of ACL | series/findacl | ||||
ACNS | 우수 | 0.10 | International Conference on Applied Cryptography and Network Security (ACNS) | conf/acns | |||||
ACSAC | 우수 | 2 | 우수 | 0.30 | Annual Computer Security Applications Conference (ACSAC) | conf/acsac | |||
AIED | 우수 | 0.10 | International Conference on Artificial Intelligence in Education (AIED) | conf/aied | |||||
AISTATS | 우수 | 1 | 우수 | 0.25 | International Conference on Artificial Intelligence and Statistics (AISTATS) | conf/aistats |
유니코드에서 한글을 어떻게 다루는지를 정리하였다.