일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 티스토리챌린지
- jest
- PYTHON
- 리눅스
- qunit
- react
- node
- VirtualBox
- vsCode
- MachineLearning
- 개발
- ReactNative
- localserver
- Chrome
- centos
- webpack
- unittest
- linux
- IOS
- xcode
- MAC
- TensorFlow
- 맥
- 오블완
- build
- Android
- 센토스
- 네트워크
- Today
- Total
목록Frontend/ETC (48)
로메오의 블로그
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
작업 표시줄 하나로 표시 작업표시줄 단추 하나로 표시를 안함으로 변경한다. 자동 창 맞춤 끄기 창 맞춤을 끈다.
var textLimit = 140 var shareText = '공유할 내용을 계속 타이핑 해보세요.'; if (shareText.length > textLimit) { // 140자가 넘어 갈 경우 shareText = shareText.substr(0, (textLimit - 3)) + '...'; } shareText += 'http://domain.com/path' var twitterLink = []; twitterLink.push('https://twitter.com/intent/tweet?text='); twitterLink.push(encodeURIComponent(shareText)); top.location.href = str;
https://developers.kakao.com/console/app 애플리케이션을 추가합니다. 웹 플랫폼을 등록합니다.
var state = {id: 1, data: 'test'}; ,title = '페이지 타이틀' ,url = location.origin + '/path/?a=1'; history.pushState(state, title, url); 페이지 변경 없이 주소를 변경합니다.