homebrew 설치 ➜ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"mssql 커맨드라인 도구 설치 ➜ brew tap microsoft/mssql-release https://github.com/Microsoft/homebrew-mssql-release ➜ brew update ➜ HOMEBREW_NO_ENV_FILTERING=1 ACCEPT_EULA=y brew install mssql-tools설치된 mssql 커맨드라인 도구 확인 sqmcmd ➜ sqmcmd Microsoft (R) SQL Server Command Line Tool Version 17.4.0001...
설치 방법macOS Host 에 설정mac 터미널에서 mailhog 를 brew 로 설치:brew install mailhog설치를 완료하였다면 mac 시작시 실행되도록 서비스 시작 명령:brew services start mailhogmailhog 가 제대로 실행되었는지 웹콘솔 접속:http://127.0.0.1:8025go 언어 설치:brew install gogo 환경변수 설정:export GO=/usr/local/Cellar/go/1.2/libexecexport PATH=$GO/bin:$PATHexport GOROOT=$GOexport GOPATH=/Users/user-id/goexport PATH=$PATH:$GOPATH/bingo 를 사용하여 mhsendmail 설치:go get github...
여러 ssh 호스트 접속을 위해 ~/.ssh/config 에 셋팅하는데macOS Sierra 이상에서는 AWS pem 파일을 사용하려 할때마다 아래와 같이 암호를 물어왔다.Enter passphrase for key '~/.ssh/aws-seoul-my.pem':ssh key 암호를 최초 한번만 묻도록 셋팅하는법을 알아본다. 방법 1~/.ssh/config 파일 처음에 아래 구문 추가 (1회)Host *UseKeychain yes방법 2key 파일 추가시마다 아래 명령 수행chmod 0600 ~/.ssh/id_rsa.pubssh-add ~/.ssh/id_rsa 참고https://apple.stackexchange.com/a/263657https://apple.stackexchange.com/a/268147
터미널을 실행하고,셋팅 (1회만 실행) $ ln /Applications/PhpStorm.app/Contents/MacOS/phpstorm /usr/local/bin/phpstormphpstorm 터미널 명령으로 프로젝트 열기 $ open -a phpstorm /some/path 추가팁: 위 명령 alias 로 줄이기 $ vi ~/.bashrc# Open project path with the phpstorm (Append this and below line) alias phpstormopen="open -a phpstorm"vi 저장하고 종료.이후부터 아래와같이 명령 가능:$ phpstormopen /some/path 참고: https://intellij-support.jetbrains.com/hc/e..
macOS 에서 디렉토리 내 재귀적으로 파일들 인코딩 변환 bash script #!/bin/bash # 사용법: convert-euckr2utf8.sh . txt # 첫번째 인자는 변환을 적용할 디렉토리 경로 # 두번째 인자는 확장자명 # 결과는 파일명.utf8.확장자 dest=$1 ext=$2 if [[ -z "$1" ]]; then echo "Need first argument: destnation folder" exit 1 fi if [[ -z "$2" ]]; then echo "Need second argument: file extension" exit 1 fi find "$dest" -name "*.${ext}" -type f | \ (while read file; do iconv -f euc..
macOS 운영체제 기반 PHP 개발 환경에서 homestead 대신 docker 를 서버로 사용하려 laradock 설치 및 셋팅을 하던 중 xdebug 연동시 remote_host 주소 셋팅 단계가 되었는데기존 macOS 용 docker 는 hypervisor 인 VirtualBox 기반이어서 호스트 IP 주소를 VirtualBox 의 네트워크 설정을 열어보면 쉽게 알 수 있었는데현재 macOS 용 docker 는 linux 와 같이 hypervisor 가 필요 없게되어 자원낭비도 줄일 수 있는 등 여러모로 좋으나, xdebug 연동하려다보니 remote_host 주소를 어디서 조회해봐야 하는지 오리무중이라 구글링! docker 컨테이너에서 호스트 ip 접근 방법 #1 (택1)https://docs...
PHPStorm 으로 개발 중 다음의 알림 때문에 Subversion 1.8 필요하게 됨:다음의 오류가 나타남:svn: E155021: This client is too old to work with the working copy at ‘/Users/andrea/dev/wp/vvv/www/wordpress-develop’ (format 31). You need to get a newer Subversion client. For more details, see http://subversion.apache.org/faq.html#working-copy-format-change.현재 svn 버젼 체크:$ svn --version svn, version 1.7.17 (r1591372) compiled Aug 7..
BrowserStack (http://browserstack.com/) 사용이 매우 좋지만 과금해야 하니,가상머신인 VirtualBox를 이용할것이니 설치해놓고 시작!가상OS 이미지를 이미 MS의 Modern.IE (https://www.modern.ie/)에서 제공함허나, 제공되는 이미지들을 하나 하나 받아서 하자니 적잖게 귀차니즘이 발동하니까다운로드 > 설치 > 셋팅을 자동화해주는 도구를 이용! ievms (https://github.com/xdissent/ievms)QuickStart 따라하면 다운로드 용량도 용량이지만48G의 저장용량이 사용되니 유념하시고본인은 맥북에어라 저장용량이 적기에 Installation 안내 중To install specific IE versions (IE7 and IE8..
nodejs.org/download 에서 맥용 설치패키지 받아서 설치 후 npm 명령어로 필요한 모듈 설치하려니 오류가 마구 쏟아지며 설치가 안되어 재설치법을 아래에 붙여둠. Run the following commands to uninstall node.js: lsbom -f -l -s -pf /var/db/receipts/org.nodejs.pkg.bom | while read f; do sudo rm /usr/local/${f}; done sudo rm -rf /usr/local/lib/node /usr/local/lib/node_modules /var/db/receipts/org.nodejs.* http://notepad2.blogspot.kr/2012/06/how-to-uninstall-node..
- Total
- 1,005,627
- Today
- 9
- Yesterday
- 193
- Make Use Of
- How to geek
- 인터넷 통계정보 검색시스템
- 트위터 공유 정보모음
- 웹표준KR
- 치우의 컴맹탈출구
- Dev. Cheat Sheets
- w3schools
- Dev. 조각들
- ASP Ajax Library
- CSS Tricks
- WebResourcesDepot
- jQuery Selectors Tester
- DeveloperSnippets
- Smashing Magazine
- Nettuts+
- devListing
- 웹 리소스 사이트(한)
- Mobile tuts+
- Dream In Code
- Developer Tutorials
- CSS3 Previews
- 자북
- 안드로이드 사이드
- Code Visually
- Code School
- SQLer.com
- 무료 파워포인트 템플릿
- iconPot
- Free PowerPoint Templates
- Design Bombs
- Web Designer Wall
- 1st Webdesigner
- Vandelay Design
- 무료 벡터 이미지 사이트들
- Tripwire Magazine
- Web TrendSet
- WebMonkey
- 윤춘근 프리젠테이션 디자이너 블로그
- cz.cc 무료 DNS
- [웹하드] MediaFire
- [웹하드] DivShare
- 한컴 인터넷 오피스
- IOS
- 안드로이드
- Prototype
- Linux
- Chrome
- 워드프레스
- Android
- iis
- 한글
- IE
- git
- laravel
- javascript
- ASP
- JQuery
- sencha touch
- CSS
- Debug
- Wordpress
- mssql
- classic asp
- iphone
- Docker
- JSON
- PHP
- Mac
- nginx
- centos
- API
- nodejs