일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- mysql 한국어
- 크로스도메인
- Hystrix Read time out
- mosquitto
- com.netflix.zuul.exception.ZuulException
- IOT
- CORS policy: No 'Access-Control-Allow-Origin'
- #actuator
- com.netflix.zuul.exception.ZuulException: Hystrix Readed time out
- mariadb 한국어
- db utf8
- java collection
- mqtt
- mysql 다국어
- cors
- ArrayList
- HashMap
- Set
- TreeMap
- 원격
- #MSA
- xrdp
- message protocol
- Access-Control-Allow-Origin
- backtracking
- #spring boot
- #spring boot admin
- mstsc
- mariadb 다국어
- emqx
- Today
- Total
miin29na
Windows 10 환경에서 리눅스 Ubuntu 18.04 서버에 원격 접속 시, sudo apt install xrdp xrdp를 통해 연결할 때, 접속은 되는데 검정 화면만 뜰 경우: 아래 링크를 참고하였다. http://catch22cats.blogspot.com/2018/05/xrdp-blank-screen-with-ubuntu-1804.html sudo vim /etc/xrdp/startwm.sh 그리고 파일에서 test ~~~ Xsession 뭐시기 써진 줄 바로 위에 아래 내용을 입력한다. unset DBUS_SESSION_BUS_ADDRESS unset XDG_RUNTIME_DIR . $HOME/.profile 저장하고 아래 명령어를 입력하여 xrdp를 재시작해준다. sudo ser..
bcp0109.tistory.com/124 3Sum (Java) Problem 문제 링크 Medium 난이도의 문제입니다. nums 배열에서 합이 0이 되는 세개의 원소 리스트들을 return 하면 됩니다. Solution 백준에 있는 세 용액과 비슷한 문제이지만 해당되는 리스트를 전부 r bcp0109.tistory.com
Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses. For example, given n = 3, a solution set is: [ "((()))", "(()())", "(())()", "()(())", "()()()" ] class Solution { public List generateParenthesis(int n) { List result = new ArrayList(); backtrack(result, "", 0 , 0, n); return result; } public void backtrack(List result, String cur, int open, ..
스택 사용 idea-sketch.tistory.com/29?category=547419 [알고리즘] 되추적(Backtracking)을 알아보자. 오늘의 주제는 되추적(Backtracking) 이다. 저번 포스팅인 깊이우선탐색(Depth-First Search)과 넓이우선탐색(Breath-First Search)의 몸풀기를 거치고 최단경로(Shortest Path) 알고리즘에 들어가는 첫 걸음이라.. idea-sketch.tistory.com
- Java Collection List 순서 존재 / 데이터 중복 허용 Index 사용 ArrayList LinkedList Stack 성능 정렬 선언 초기화 new ArrayList(Arrays.asList(1,2,3)); codevang.tistory.com/129?category=827592 Map Key,Value / 순서X / Key중복 X HashMap TreeMap HashTable 성능 hashMap > treeMap 트리구조 만들어 저장 범위검색, 정렬 시에는 HashMap 보다 좋음 HashMap 구버전 정렬 가장 처음 넣은 데이터가 index=0 key 값 자동 정렬 선언 HashMap map = new HashMap() Map tm = new TreeMap(map); 초기화 // ..
Tree https://gmlwjd9405.github.io/2018/08/12/data-structure-tree.html [자료구조] 트리(Tree)란 - Heee's Development Blog Step by step goes a long way. gmlwjd9405.github.io DFS(Depth-First Search) : 깊이 우선 탐색 - 스택 사용. - 참고 https://gmlwjd9405.github.io/2018/08/14/algorithm-dfs.html [알고리즘] 깊이 우선 탐색(DFS)이란 - Heee's Development Blog Step by step goes a long way. gmlwjd9405.github.io idea-sketch.tistory.com/27..
AWS Certification 0.기초 자격증 : AWS Cloud Practitioner 1. 어소시에이트 자격증 2. 프로페셔널 자격증 3. 전분 분야 자격증 Contents 도메인 비중 도메인 1 : 클라우드 개념 28% 도메인 2: 보안 24% 도메인 3: 기술 36% 도메인 4: 결제 및 요금 12% Reference -AWS Cloud Practitioner 강의 https://aws.amazon.com/ko/training/course-descriptions/cloud-practitioner-essentials/ AWS Cloud Practitioner Essentials 이 디지털 자습형 과정에서는 특정 기술 역할과 관계없이 AWS 클라우드를 전반적으로 이해할 수 있습니다. 클라우드 개념..
1. Mosquitto Broker 설치 js-MacBookPro:~ js.k$ brew install mosquitto Updating Homebrew... ==> Auto-updated Homebrew! ==> Installing dependencies for mosquitto: openssl@1.1, libevent, libuv and libwebsockets ==> Installing mosquitto dependency: openssl@1.1 ==> Downloading https://homebrew.bintray.com/bottles/openssl@1.1-1.1.1f.catalina.bottle.tar.gz ==> Downloading from https://akamai.bintray.com/..