전체 글(117)
-
Git 'Please use a personal access token instead' 토큰 인증 로그인
1 2 3 4 5 $ git push origin master remote: Password authentication is temporarily disabled as part of a brownout. Please use a personal access token instead. remote: Please see https://github.blog/2020-07-30-token-authentication-requirements-for-api-and-git-operations/ for more information. fatal: unable to access 'https://github.com/leejunsu0207/springBoot_book.git/': The requested URL returned..
2021.07.28 -
intellij 테스트시 한글 깨짐
이후 파일 옵션 설정 파일이 열리면 -Dfile.encoding=UTF-8 인코딩설정 해준다! 바로적용안되면 인텔리제이 재부팅 해주세요!
2021.07.27 -
gradle 버전 변경 하는 방법!
책 보며 gradle로 프로젝트 하면서 요즘 최신 gradle로는 전버전 기능들이 안되는게 있어 gradle다운그레이드 찾아보다가 하는법 올렸음!! 버전을 변경할 프로젝트 터미널(Alt + F12) 켠후 ./gradlew wrapper --gradle-version '변경할 버전' 저같은 경우는 터미널을 리눅스형 gitbash로 바꿔나서 위에 같이 치구 windows 일반 터미널의 경우 gradlew wrapper --gradle-version '변경할 버전' 이 맞습니다! 입력하면됩니다! 확인해보면 변경 되어있음
2021.07.23 -
자료구조_c언어_서클 큐_circleQueue_02
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596#include #include #include #include #define EMPTY 0 typedef struct Node { char menu[30]; int price; struct Node *link;}ND; ND *front = EMPTY;ND *rear = EMPTY;int totalMoney = 0; int isEmpty();int showMenu();void add..
2021.07.19 -
자료구조_c언어_linkedList_02
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116#include #include #include #include typedef struct Node { int data; struct Node *link;}ND; ND *start = NULL; void menu1(void);void menu2(void);void menu3(void..
2021.05.25 -
자료구조_c언어_linkedList
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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 12..
2021.05.20