일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- androidstudio
- unittest
- 개발
- 리눅스
- 맥
- MAC
- VirtualBox
- 티스토리챌린지
- MachineLearning
- vsCode
- react
- centos
- Android
- 오블완
- qunit
- PYTHON
- xcode
- localserver
- jest
- TensorFlow
- 네트워크
- webpack
- build
- Chrome
- node
- 센토스
- IOS
- linux
- ReactNative
- Today
- Total
목록Frontend (186)
로메오의 블로그
VUE.JS 목록 설치 ## vue 2.x $ npm i --save @fortawesome/vue-fontawesome@latest ## vue 3.x $ npm i --save @fortawesome/vue-fontawesome@prerelease ## free 버전 $ npm i --save @fortawesome/free-solid-svg-icons $ npm i --save @fortawesome/free-brands-svg-icons $ npm i --save @fortawesome/free-regular-svg-icons ## pro 버전 $ npm i --save @fortawesome/pro-solid-svg-icons $ npm i --save @fortawesome/pro-regula..
Array.push 마지막 추가 let arr = ['a', 'b'] let result = arr.push('c') console.log(arr) // ['a', 'b', 'c'] console.log(result) // 3 Array.pop 마지막 삭제 let arr = ['a', 'b', 'c'] let result = arr.pop() console.log(arr) // ['a', 'b'] console.log(result) // c Array.unshift 첫 번째 추가 let arr = ['a', 'b'] let result = arr.unshift('c') console.log(arr) // ['c', 'a', 'b'] console.log(result) // 3 Array.shift 첫 번..
휴지통 비우기 제어판 > 공유 폴더 모든 휴지통 비우기 휴지통을 비워도 용량이 확보되지 않습니다. Drive 버저닝 해제하기 활성화된 폴더를 선택하고 버저닝을 누릅니다. 버전 제어 활성화를 해제합니다. 설정에서 계산 버튼을 누릅니다. Synology Drive Server를 재 시작합니다. 팀폴더에서 동기화 활성화된 폴더를 선택하고 사용안함 합니다. 제어판에서 사용자 홈 서비스를 비활성화 하라고 뜹니다. 사용자 홈 서비스를 비활성화 합니다. 몇 시간 후에 용량이 반환된 것을 확인 할 수 있습니다.
VUE.JS 목록 $ npm install splitpanes@legacy $ npm install @types/splitpanes 11 22 https://antoniandre.github.io/splitpanes/ VUE.JS 목록
brew 로 putty 설치 ## homebrew 설치 $ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" ## brew 최신 버전 갱신하기 $ brew update-reset $ brew --version Homebrew 3.4.5-51-g5641532 ## putty 설치 $ brew install putty ## 설치 목록 확인 $ brew list ==> Formulae autoconfdockerlibtoolpkg-configsqlite automakegdbmlibyamlputtyxz cocoapodslibgpg-erroropensslpythonzlib coreutilslibksbaop..
sourcetree에서 암호를 계속 물어볼때 $ git config --global credential.helper osxkeychain
VUE.JS 목록 {{message}}. 메세지 1 | 2 | 3 | top | bottom | 추가 | VUE.JS 목록
VUE.JS 목록 vue.config.js module.exports = { transpileDependencies: ['vuetify'], devServer: { proxy: { '/assistant': { target: process.env.VUE_APP_API_PUBLIC_URL, changeOrigin: true } } } } .env.development VUE_APP_DEV=_DEVELOPMENT VUE_APP_API_PUBLIC_URL='http://localhost:8091' VUE_APP_API_PATH='/api/v1/' restApi.ts import axios, { AxiosInstance, AxiosResponse } from 'axios' export enum ServiceUrl..