반응형

분류 전체보기 487

hacker 29 단어 depondent 낙담한

foster 조장하다 dissent 이의를 제기하다 ambiguous 모호한 perplexed 당혹스러운 be incorporated in 포함하다 편입되다 crucially 결정적으로 6번 틀림 despondent 낙담한 be incorporated in 포함되다 편입되다 4번 틀림 dissent 이의를 제기하다 impart 주다 predominently 주로 3번 틀림 vital 매우매우 중요한 repercussion 결과 crucially 결정적으로 perplexed 당혹스러운 shirvel 시들다 devoid 가 없는 결여된 emergence 출현 2번 틀림 elongate 늘이다 in response to 에 응하여 foster 조장하다 in the ascendant 상승하는 in tandem ..

English words 2022.10.31

git rebase 해결 과정

git fetch git rebase origin/master git add "files" git commit git push -u origin HEAD (현재 브랜치 의미) 먼저 깃 꼬임이 어려운 사람이 읽어봐야 하는 사이트 https://ohshitgit.com 여러 깃에서 발생하는 대표적인 실수에 대한 해결방법을 알려준다 오 쉿! 찰짐 쭉 봤는데 커밋 메시지 고치기, 마스터 브랜치에 잘못 커밋했을 때, 작은 파일을 전 커밋에 같이 붙이기 등 팁이 존재했다. 매우 유용 한국어 버전 : https://ohshitgit.com/ko rebase branch and make pull request git fetch git rebase origin/master git add "files" git commit..

42seoul/42seoul_ 2022.09.28

[Typeorm] UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tablePath' of undefined

typeorm error UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'tablePath' of undefined 알고보니 ManyToMany()를 사용할 때는 @JoinTable() 데코레이터가 필요했다. 출처 : 공식 문서 @JoinTable() is required for @ManyToMany relations. You must put @JoinTable on one (owning) side of relation. https://orkhan.gitbook.io/typeorm/docs/many-to-many-relations @ManyToMany 관계를 사용할 때는 @JoinTable()이 반드시 필요하다. 한 쪽에 꼭 집어넣어..

42seoul/42seoul_ 2022.09.20

typeorm error : UpdateValuesMissingError: Cannot perform update query because update values are not defined. Call "qb.set(...)" method to specify updated values. / save를 쓰지 말자

message repository에 객체를 하나 const msg: Message = await this.messageRepository.create({ chatRoom: chatRoom, msg_content: msgContent, date: new Date(), userId: userId, user: user }); await this.messageRepository.save(msg); 입력하려고 save 메소드를 사용했다. 하지만 connected -EHVSvlQ_9WlCCKeAAAB UpdateValuesMissingError: Cannot perform update query because update values are not defined. Call "qb.set(...)" method to..

42seoul/42seoul_ 2022.09.17

Nest js map은 키를 인덱스로 접근하지 못한다? get / set / for

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map/set Map.prototype.set() - JavaScript | MDN The set() method adds or updates an entry in a Map object with a specified key and a value. developer.mozilla.org let gameList: Map = new Map(); // gameId Game let gameList: Map = new Map(); // gameId Game 이런식으로 맵 객체를 만들었다하면 값을 집어넣으려면 gameList.set(gameId, game); gameLis..

웹 프로그래밍 2022.09.10

Ubuntu ssh-keygen : command not found 해결하기 -> openssh-client 설치하기

nvidia 서버를 사용하려고 하는데 ssh-keygen 명령어도 없다. ssh-key: command not found 에러 1. 먼저 os를 확인한다. 알고 있으면 좋지만 확인하기 어려울 때는 cat/etc/os-release를 친다. https://www.thegeekdiary.com/ssh-keygen-command-not-found/ 대표 os에서 패키지 설치 명령어 나는 우분투이기 때문에 apt-get install을 한다. 2. apt-get update && apt-get install openssh-client 3. ssh-keygen을 다시하면 잘 되는 것을 확인할 수 있다.

빅카인즈에서 증권 증시 분야만 쏙 빼는 방법

빅카인즈 분류에서 증권 증시 분야를 뽑기 위해서 통합 분류 1, 2, 3에서 경제>증권_증시 값을 갖는 것을 뽑으려고 했는데 계속 통합 분류1만 해당하는 데이터를 돌려주는 것이다.. 그래서 데이터 하나 접근해서 보니까 통합 분류2, 통합 분류3은 앞에 띄어쓰기가 있었다. ^^ 그래서 이렇게 두 가지 값을 가지고 있는 데이터는 어떤 칼럼에 있든 상관없이 (any) 뽑게 했더니 결과가 잘 나왔다. 경제 분야만 추렸을 떄 20만개 였던 것이 -> 6만개로 줄었다.

뉴스 단어 키워드 프로젝트하면서 참고한 사이트들

https://www.delftstack.com/howto/python-pandas/pandas-timestamp-to-string/ https://pythonbasics.org/pandas-iterate-dataframe/ https://stackoverflow.com/questions/52139506/accessing-a-pandas-index-like-a-regular-column https://stackoverflow.com/questions/71391695/pandas-compare-2-columns-in-a-dataframe-and-return-count https://wikidocs.net/83544 https://discuss.python.org/t/solved-issues-training..

반응형