일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- JS
- 세부
- poe2
- ubuntu
- 오픈워터
- 젤다의전설
- 취미
- Front-end
- 어드벤스
- 다이빙
- 공략
- psql
- hybride
- 뱀파이어서바이벌
- 여행
- 개발툴
- window
- docker
- Linux
- 페오엑
- PostgreSQL
- 게임
- 엘든링
- 스쿠버다이빙
- WebView
- JavaScript
- guide
- 야생의숨결
- 씨홀스
- window10
- Today
- Total
목록RianShin (176)
Rianshin
https://www.youtube.com/watch?v=w-rqTM0O99Y&ab_channel=%EA%B2%8C%EC%9D%B4%EB%A8%B8%EB%B9%84%EB%88%84Gamerbinu
Step1. redis-cli 실행 Step2. 다음명령어를 통해 파일위치 확인 및 백업 > CONFIG GET dir 을통해 설치된 파일위치확인후 기존의 파일백업 Step3. brew로 설치한경우 다음명령어를 통해 서비스 정지 > brew services stop redis Step4. dump.rdb 파일의 교체 Step5. 다음명령어를 통해 redis 재기동 > brew services start redis
https://www.oculus.com/casting 로 접속해서 로그인후 퀘스트2 에서 미러링 컴퓨터 선택! Oculus www.oculus.com 끝~~
자주 사용하는 함수중하나인 sort를 이용하여 내림차순, 오름차순 으로 정렬을 하는 방법은 다음과 같이 하면 된다. 날짜를 비교하기위하여 String 을 Date로 형변환을 해야 비교가 가능해진다. var arr = [ {date :""}, {date :"2022-10-14 19:00"}, {date :"2022-10-15 10:00"}, {date : "2022-10-13 10:00"} ]; console.log(arr) let test = arr.sort((a, b) => new Date(a.date) - new Date(b.date)) console.log(test) test = arr.sort((a, b) => new Date(b.date) - new Date(a.date)) 소스 참고 : htt..
Front-End 개발시에 console.log를 많이 사용하게 되는데, 특정 console.log같은건 가독성을 주기위에 색깔을 입히기도 한다. 위의 문법과 같이 사용하면 되지만 조금더 눈에 확들어오게 하는 콘솔로그는 다음과 같다. var css = "text-shadow: -1px -1px hsl(0,100%,50%), 1px 1px hsl(5.4, 100%, 50%), 3px 2px hsl(10.8, 100%, 50%), 5px 3px hsl(16.2, 100%, 50%), 7px 4px hsl(21.6, 100%, 50%), 9px 5px hsl(27, 100%, 50%), 11px 6px hsl(32.4, 100%, 50%), 13px 7px hsl(37.8, 100%, 50%), 14px 8p..
#console.assert(expression, object) Log level: Error Writes an error to the console when expression evaluates to false. const x = 5; const y = 3; const reason = 'x is expected to be less than y'; console.assert(x < y, {x, y, reason}); #console.clear() Clears the console. console.clear(); If Preserve Log is enabled, console.clear() is disabled. Alternatively, you can Clear the Console by clicking..
HTML 삽입 미리보기할 수 없는 소스 //소문자 => 대문자 var str = "abcd" console.log(str.toUpperCase()) //대문자 => 소문자 var str2 = "ABCD" console.log(str2.toLowerCase())