일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 씨홀스
- Front-end
- 스쿠버다이빙
- Linux
- 페오엑
- window
- 개발툴
- 뱀파이어서바이벌
- hybride
- 여행
- PostgreSQL
- 취미
- window10
- WebView
- psql
- 엘든링
- 다이빙
- guide
- JS
- 젤다의전설
- ubuntu
- 세부
- poe2
- 게임
- 어드벤스
- 오픈워터
- docker
- 야생의숨결
- 공략
- JavaScript
- Today
- Total
목록전체 글 (179)
Rianshin
parseJson: function parseJson(string) { try { return JSON.parse(string); } catch (e) { throw new JsExecutionErrror('utils - parseJson'); } }, stringifyJson: function stringifyJson(jsonObj, replacer, space) { try { return JSON.stringify(jsonObj, replacer, space); } catch (e) { throw new JsExecutionErrror('utils - stringifyJson'); } },
isIOS: function isIOS() { try { return /iphone|ipad|ipod/i.test(navigator.userAgent.toLowerCase()); } catch (e) { console.log('isIOS'); } },

isAndroid: function isAndroid() { try { return /android/i.test(navigator.userAgent.toLowerCase()); } catch (e) { throw new JsExecutionErrror('utils - isAndroid'); } },

formatter: function () { var date = new Date(); var dateFormatter = function dateFormatter(date, format) { try { var arr = []; var seperator = []; if (date === undefined || date === null) { return null; } if (typeof date === 'string') { arr = date.split(/\D/), seperator = ['', '', '']; if (arr.length === 1) {// 월일년을 따로 넣는다. arr = [date.substr(0, 4), date.substr(4, 2), date.substr(-2)]; } } else ..

#원문 : blog.angular.io/version-11-of-angular-now-available-74721b7952f7 Version 11 of Angular Now Available Version 11.0.0 is here and we’ve got some great updates for Angular developers everywhere. blog.angular.io Angular ver.11이 출시가 되었습니다. 버전 11.0.0이 출시되었으며 모든 곳에서 Angular 개발자를위한 멋진 업데이트가 있습니다. 이 릴리스에는 프레임 워크, CLI 및 구성 요소를 포함한 플랫폼 전반에 대한 업데이트가 있습니다. Let’s dive in! Angular ver.11 바뀐점. Updates on ..
PlayStation 5의 12월 출고분 사전 예약판매가 오는 11월 20일(금)과 12월 4일(금) 진행될 예정입니다. * COVID-19 상황으로 인해, 이번 예약판매도 온라인으로 진행됩니다. [판매 및 배송 안내] - 1차 : 11월 20일 낮 12시 ~ (12월 18일 이후 순차배송) - 2차 : 12월 4일 낮 12시 ~ (12월 24일 이후 순차배송) * 판매처는 확정된 곳만 업로드되며, 추가되는 대로 링크 추가될 예정입니다. * SMS 알림 신청하시면, 진행 전 알려드립니다. ▶ [롯데ON] [PS5] [토이저러스] 12월 예약판매 공유 URL : http://yepan.net/link/78457 ▶ [하이마트] [PS5] [기획전] 12월 예약판매 공유 URL : http://yepan.n..
1. notepad ++ : 텍스트 편집기 - notepad-plus-plus.org/ Notepad++ What is Notepad++ Notepad++ is a free (as in “free speech” and also as in “free beer”) source code editor and Notepad replacement that supports several languages. Running in the MS Windows environment, its use is governed by GNU General Public Lice notepad-plus-plus.org 2. mobaxterm : SSH 툴 맥과 리눅스에선 터미널이 잘되어있지만 윈도우에선 이만한 툴이 없는 거 같다. moba..