일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- fromEvent
- error
- oh-my-zsh
- IONIC3
- Sentry
- 변화감지
- code .
- JavaScript
- typescript
- 자바스크립개념
- aab 배포
- angular
- getElementsByClassName
- hashchange
- zsh
- ChangeDetectorRef
- Visual Studio Code
- VSCode
- ion-range
- angular5
- border-width
- 테두리굵기
- php
- Git
- sealize
- Ionic
- NVM
- 이미지바꾸기
- rxjs
- change detection
- Today
- Total
목록programming/etc (7)
hsunny study blog
웹빌드 결과물을 확인하고 싶지만, 도메인이 없을 때 사용하면 좋을 웹호스팅 서비스를 소개한다. 1. https://console.firebase.google.com/ (Firebase Console) 로 이동한다. 로그인 필요 2. 프로젝트를 생성한다. 3. 우측 '빌드' 하위 메뉴에 있는 Hosting을 누르고, 나오는 화면에서 '시작하기' 버튼을 누른다. 4. Firebase 호스팅 설정에 따라 진행한다. Firebase 호스팅 설정 1. 다음 npm 명령어를 실행하여 CLI를 설치하거나 최신 CLI 버전으로 업데이트한다. npm install -g firebase-tools 2. 웹 앱의 루트 디렉터리로 이동하거나, 루트 디렉터리를 만든 후 아래 명령어를 실행한다. 구글에 로그인 firebase l..
개발을 하다보면 여러 버전의 노드를 사용해야 하는 경우가 있습니다. nvm을 사용하면 프로젝트 별로 필요한 노드버전을 쉽게 선택할 수 있습니다. 아래 과정중 이미 설치되어 있는 경우는 건너뛰면 됩니다. nvm이란 node.js 버전 관리 매니저로, 사용자별로 설치되도록 설계되었으며 shell별로 호출됩니다. nvm은 POSIX-compliant shell(sh, dash, ksh, zsh, bash)에서 작동하며, 특히 unix, macOS 와 window WSL 플랫폼에서 작동합니다. *WSL: Windows Subsystem for Linux *POSIX-compliant shell: Portable Operating System Interface - 운영 체제 간의 호환성을 유지하기 위해 IEEE ..
/찾을 문자열 편집모드가 아닌 상태에서 진행해야 합니다.
맨 처음으로 이동: gg 맨 끝으로 이동: G
간단한 코드를 테스트하기 위해 사용하는 playground 사이트를 공유합니다 :) 정규식 regexr.com/ RegExr: Learn, Build, & Test RegEx RegExr is an online tool to learn, build, & test Regular Expressions (RegEx / RegExp). regexr.com TypeScript www.typescriptlang.org/play TS Playground - An online editor for exploring TypeScript and JavaScript The Playground lets you write TypeScript or JavaScript online in a safe and sharable way. ..
Mac 카탈리나 버전부터 기본쉘을 bash에서 zsh로 변경했습니다. 따라서, 2020년형 13인치 맥북에서 터미널의 기본 쉘은 zsh입니다. 설정후기를 기록합니다. 사실 터미널의 쉘을 신경쓰지 않고 사용해왔습니다. 최근 강의를 듣다가 강사는 bash, 저는 zsh를 사용하고 있어서, 이때부터 차이점이 궁금하여 서치를 시작했습니다. *MAC을 기준으로 설명합니다! zsh z 쉘이라고도 부릅니다. Zsh는 bash, ksh, tcsh의 일부 기능을 포함하고 있습니다. 더보기 위의 특징으로 리눅스에서는 bash 사용이 대부분이나 zsh로 바뀌는 추세입니다. 커맨드 쉘간의 기능 차이를 알고 싶다면, https://en.wikipedia.org/wiki/Comparison_of_command_shells 를 방..
You can also run VS Code from the terminal by typing 'code' after adding it to the path: 1. Launch VS Code. 2. Open the Command Palette (Ctrl+Shift+P) and type 'shell command' to find the Shell Command: Install 'code' command in PATH command. 3. Restart the terminal for the new $PATH value to take effect. You'll be able to type 'code .' in any folder to start editing files in that folder. Note: ..