Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#497 자동 닉네임 생성 후보 추가 #498

Open
wants to merge 3 commits into
base: dev
Choose a base branch
from
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions src/modules/modifyProfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,15 @@ const nouns = [
"전자설계 및 실험",
"기초항공프로젝트",
"화학전공실험",
"일반물리학 I",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

제가 알기로는 I 같은 특수 문자는 넣지 못하는 것으로 알고 있어요! 그냥 일반물리학, 일반화학으로 해야할 듯 합니다 ㅠ

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

바꿔서 다시 커밋했습니다!

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

오 생각해보니.. 닉네임 뒤에 _fa54d 이런식으로 6글자가 추가적으로 붙어야 합니다! 이것을 감안하면 19자까지만 가능할 것 같은데 추가 수정이 필요할 것 같습니다 ㅠㅠ...

"일반화학 I",
"일반생물학",
"프로그래밍기초",
"선형대수학개론",
"시스템프로그래밍",
"환경과 지속가능성 개론",
"논리적 글쓰기",
"역사학 특강",
];

const adjectives = [
Expand All @@ -42,6 +51,34 @@ const adjectives = [
"발끈하는",
"까다로운",
"고삐풀린 망아지 같은",
"바람빠진 풍선 같은",
"택시 타는",
"따뜻한",
"봄꽃 같은",
"여름 볕 같은",
"가을 낙엽 같은",
"겨울 눈송이 같은",
"미루는",
"동그란",
"강직한",
"다정한",
"창의적인",
"산뜻한",
"섬세한",
"조용한",
"에너지 넘치는",
"겸손한",
"무례한",
"고통받는",
"카페인이 필요한",
"우울한",
"일찍 일어나는",
"화난",
"배가 아픈",
"배부르지만 간식을 먹는",
"빛나는",
"바쁜",
"새콤달콤한",
];

const defaultProfile = [
Expand Down
Loading