분류 전체보기(57)
-
git - fatal authentication failed for ~ 해결법
인증이 잘못되었을 때는 git pull, git push를 아무리 쳐도 authentication failed 만 뜬다. window + R -> control /name Microsoft.CredentialManager 을 통해 자격증명 기능 페이지에 들어간다. windows 자격증명을 선택한다. 본인의 경우 windows 자격증명에 gitlab 인증 정보가 저장되어 있었다. gitlab , 혹은 github의 자격증명을 편집하거나 삭제한다.(나는 삭제함) 열려져 있는 git bash를 닫고 다시 실행한다. 인증메시지가 뜨면 email password를 정확하게 치면 된다. happy하다
2020.07.13 -
vs code python build 설정(tasks.json)
vs code 에서 *.py 작성 build : ctrl + shift + b tasks.json 설정이 안된경우. configure~ -> create tasks.json -> others 를 차례로 선택 task.json에 복붙(python 용) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 { // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "Python Run", "type": "shell", "command": "p..
2020.07.12 -
안드로이드 진동 감지, 가속도계, 진동 발생
작동하는 api : 25 . nougat(7.1) manifest 1 2 http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs shake detecter class 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 ..
2020.03.08 -
scanner 입력이 버퍼 때문에 잘 안될때
buffer에 들어온 enter 때문에 입력창만 반복해서 뜨곤 한다. 이럴때는 Scanner.nextLine()을 통해 buffer를 비워준다 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 while(!(region >= 1 && region
2020.01.30 -
The literal ~ of type int is out of range
int의 범위 -2147483648 ~ 2147483647 를 초과한 수를 쓸 때 생기는 에러 해결법 : 숫자 뒤에 L을 붙인다 ex) 4463000000 -> 4463000000L
2020.01.30 -
리사이클러 뷰에 크롤링한 결과 표시하기
android put crawling result into recyclerview 크롤링한 결과를 recyclerview에 표현하고 싶다. 근데 크롤링은 web과 통신을 해서 결과를 받아오는 과정이기 때문에 async, 혹은 핸들러로 처리해야한다. 그런데 item을 새로 추가할 때 변경한 결과를 notifyDataSetChanged 로 반영하려 하면 IllegalStateException 이 뜨고, Cannot call this method while RecyclerView is computing a layout or scrolling.... 문구가 뜨면서 제대로 나오지 않는다. 참고 - https://stackoverflow.com/questions/26555428/recyclerview-notifyi..
2019.12.09