본문 바로가기

분류 전체보기

(274)
웹브라우저에서 녹음을 해보자 MediaDevices.getUserMedia() Int16Array blob int16Array blob객체 활용하기 Document record stop const record = document.querySelector(".record"); const stop = document.querySelector(".stop"); if (navigator.mediaDevices && navigator.mediaDevices.getUserMedia) { console.log("getUserMedia supported."); navigator.mediaDevices.getUserMedia( // constraints - only audio needed for this app { audio: true, } ).then(function (stream) { //Success CallBack c..
딥러닝을 공부해보자 https://wikidocs.net/book/2155 위키독스 온라인 책을 제작 공유하는 플랫폼 서비스 wikidocs.net http://bigdata.dongguk.ac.kr/index.php Big data Lab. Jinseog Kim He is an associate professor in Department of Applied Statistics at Dongguk University. He received Ph.D of Statistics in 2003 in Department of Statistics at Seoul National University. His research interests are data mining related topics inclu bigdata.dongguk...
변수 || && var a = 'hello'; var b = 'world'; var x = a && b; //a가 true이면 b를 할당한다. x = 'world'; var y = a || b; //a가 false이면 b를 할당한다. y = 'hello'; => 기본값 설정으로 사용하기 좋다. 변수 = 값이 없다면 || 기본값 var a; console.log(`a = ${a}`); // undefined var b = a && 'hello'; console.log(`b = ${b}`); // undefined if(a){ console.log('a가 존재해요 true의 경우') }else if(!a){ console.log('a가 존재하지 않아요 false의 경우') // 출력 } var c = 'hello' c = ..
백엔드 개발자를 꿈꾸는 학생들에게 https://github.com/woowacourse/back-end-roadmap GitHub - woowacourse/back-end-roadmap: 우아한테크코스 로드맵 우아한테크코스 로드맵. Contribute to woowacourse/back-end-roadmap development by creating an account on GitHub. github.com
도커 https://www.yalco.kr/36_docker/
RSA public key is not available client side. Either set option `cachingRsaPublicKey` to indicate public key path, or allow public key retrieval with option `allowPublicKeyRetrieval mariadb.createConnection({ host: 'localhost', user: 'root', password: 'pwd', database: 'dbname', port: 3306, connectionLimit: 5, allowPublicKeyRetrieval: true }) mysql 8.0부터는 allowPublicKeyRetrieval를 true로 해줘야 하는듯하다.
path nodeJS내장모듈 const express = require('path'); path.join(__dirname, '/index.html') __dirname 현재위치
history모드 설정하기 https://router.vuejs.org/kr/guide/essentials/history-mode.html#%E1%84%89%E1%85%A5%E1%84%87%E1%85%A5-%E1%84%89%E1%85%A5%E1%86%AF%E1%84%8C%E1%85%A5%E1%86%BC-%E1%84%8B%E1%85%A8%E1%84%8C%E1%85%A6 HTML5 히스토리 모드 | Vue Router HTML5 히스토리 모드 vue-router의 기본 모드는 hash mode 입니다. URL 해시를 사용하여 전체 URL을 시뮬레이트하므로 URL이 변경될 때 페이지가 다시 로드 되지 않습니다. 해시를 제거하기 위해 라우터의 router.vuejs.org https://ekgoddldi.tistory.com/179 ha..