일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 센토스
- IOS
- unittest
- 오블완
- centos
- 네트워크
- MAC
- linux
- TensorFlow
- build
- node
- androidstudio
- Android
- 리눅스
- MachineLearning
- xcode
- 티스토리챌린지
- qunit
- localserver
- react
- VirtualBox
- jest
- ReactNative
- webpack
- Chrome
- 맥
- 개발
- vsCode
- PYTHON
- Today
- Total
목록Frontend/ETC (48)
로메오의 블로그
ftp-kr을 설치합니다. vscode에서 ftp-kr로 접속하기 위해서는 workspace가 생성되어 있어야 합니다. workspace가 생성되지 않았다면 Open Folder를 눌러서 Workspace를 설정합니다. F1키를 누르고 init을 타이핑 하면 ftp-kr: Init을 찾을수 있습니다. ftp 정보를 입력하고 저장합니다. 파일을 저장하면 ftp에 자동 업로드 됩니다.
javascript UUID를 생성할수 있는 3가지 소스입니다. function uuidv4() { return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) { var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8); return v.toString(16); }); } console.log(uuidv4()) // 2ea29c0f-d031-4e62-80e8-1fadadbd009e function uuidv4() { return ([1e7]+-1e3+-4e3+-8e3+-1e11).replace(/[018]/g, c => (c ^ crypto.getRandomValues..
html 확인 javascript $('#btnUpload').on('click', function(event) { event.preventDefault(); var form = $('#uploadForm')[0] var data = new FormData(form); data.append('attachment', $('[name="profile"]').files[0]) $('#btnUpload').prop('disabled', true); $.ajax({ type: "POST", enctype: 'multipart/form-data', url: "/upload", data: data, processData: false, contentType: false, cache: false, timeout: 600..
크롬에서 ajax 통신의 요건을 postman에서 캡처하는 방법입니다. https://chrome.google.com/webstore/detail/postman-interceptor/aicmkgpgakddgnaphhhpliifpcfhicfo?hl=ko&utm_source=chrome-ntp-launcher 크롬에서 Postman Interceptor 확장 프로그램을 설치합니다 Requests에서 Capture requests를 ON 합니다. Postman에서 capture Request를 ON하고, Save Request to는 History를 선택합니다. 크롬에서 Ajax 통신을 합니다. (Naver를 새로고침한다던지...) 크롬에서 Ajax 통신하는 모든 내역을 Postman의 History에서 확인..
VSCode에서 vue 프로젝트를 만들면 탭사이즈가 2로 되어 있습니다. 저는 4로 사용하는게 익숙한데 파일별로 Format Document로 탭 사이즈를 변경할 수 있지만 매번 귀찮아서 영구적으로 변경해보겠습니다. 먼저 개별적으로 변경하는 법은 하단에 Space: 4를 누르고 Spaces나 Tabs를 선택하고 사이즈를 선택합니다. Format Document, 단축키 option + shift + F를 누릅니다. 영구적으로 변경하기 Settings를 엽니다. Open Settings (JSON)을 엽니다. { "git.autofetch": true, "typescript.updateImportsOnFileMove.enabled": "always", "editor.detectIndentation": fa..
Windows키 + R "regedit" 입력후 확인 레지스트리 편집기에서 아래 경로를 엽니다. 컴퓨터\HKEY_CLASSES_ROOT\Excel.Sheet.12\shell\Open\command 1. ddeexec 폴더를 삭제합니다. 2. command 폴더에서 command를 선택하고 삭제합니다. 3. command 폴더에서 기본값에 마우스 오른쪽 클릭 후 "수정(M)..."을 선택합니다. 4. 값 데이터(V)에서 끝에 /dde를 삭제하고 /en "%1" 입력후 확인 버튼을 누릅니다. "C:\Program Files\Microsoft Office\Office14\EXCEL.EXE" /en "%1" 5. 레지스트리 편집기를 종료하고 엑셀을 다시 시작합니다.
Firebase 목록 Windows용 Visual Studio Code에서 특정 스크립트가 실행이 안되는 경우가 발생합니다. firebase : 이 시스템에서 스크립트를 실행할 수 없으므로 C:\Users\ARIS140\AppData\Roaming\npm\firebase.ps1 파일을 로드할 수 없습 니다. 자세한 내용은 about_Execution_Policies(https://go.microsoft.com/fwlink/?LinkID=135170)를 참조하십시오. 위치 줄:1 문자:1 + firebase + ~~~~~~~~ + CategoryInfo : 보안 오류: (:) [], PSSecurityException + FullyQualifiedErrorId : UnauthorizedAccess Shel..
웹브라우저에서 알림창을 표시하는 HTML5 Web Notification API 입니다. 권한요청 알림표시 var requestPermission = document.querySelector('#requestPermission') var showNotification = document.querySelector('#showNotification') // 알림 권한 요청 requestPermission.addEventListener('click', () => { if (!window.Notification) { alert('지원하지 않음') } else { Notification.requestPermission().then(p => { if (p == 'denied') { alert('알림을 허용하지 않았..