목록개발이야기 (528)
준호씨의 블로그
sslscan? Command line util for Gathering TLS (previously SSL) information from specific host using openssl. Protocol and ciphers, vulnerability and so on. Installation brew install sslscan starttls SMTP Test $ sslscan --starttls-smtp mx1.hanmail.net:25 Version: 1.11.11-static OpenSSL 1.0.2f 28 Jan 2016 Connected to 211.231.108.46 Testing SSL server mx1.hanmail.net on port 25 using SNI name mx1.h..
실전편 책은 너무 커서 반으로 잘랐다. 요즘 다시 Swift 스터디 중이다. 2016년 하반기에 Swift 스터디에 참여 하고 1년만에 다시 참여하는 스터디이다. 올해에는 아이폰앱 꼭 만들어 봐야 겠다. 잘 하면 회사 업무로도 아이폰앱개발을 할 수 있게 될 지도 모르겠다. (과연?) 지지난주에 꼼꼼한 재은 씨의 Swift 문법편 스터디를 완료 했다. 저번주는 한주 쉬고 이번주 부터는 실전편으로 들어 갔다. 책 제목에 "꼼꼼한" 이 붙어 있다 보니 기대를 너무 많이 한 탓인지 오타나 오류를 발견 할 때 마다 조금 실망(?) 하기도 했지만, 꼼꼼하게 잘 정리 되어 있고 초보자도 알기 쉽게 설명이 자세히 적혀 있다. Swift 문법편도 꽤 두껍긴 하지만 Apple 에서 제공해 주는 문서에 있는 모든 문법을 다..
Sometimes you will need TLS support when building sendmail and use it. Add the following lines to the m4 file. APPENDDEF(`conf_sendmail_ENVDEF', `-DSTARTTLS') APPENDDEF(`conf_sendmail_LIBS', `-lssl -lcrypto') If you want to build with a specific version of the openssl library, add confINCDIRS and confLIBDIRS as follows. APPENDDEF(`confINCDIRS', `-I/usr/local/ssl/include') APPENDDEF(`confLIBDIRS'..
brew 로 설치 하기 brew install node # 특정버전 brew install node@8 설치 후 PATH 지정 방법이 나온다. 버전이나 환경에 따라 다르나 대략 다음과 같다. ex) echo 'export PATH="/usr/local/opt/icu4c/bin:$PATH"' >> ~/.zshrc echo 'export PATH="/usr/local/opt/icu4c/sbin:$PATH"' >> ~/.zshrc macOS Installer (.pkg) 로 설치 하기 https://nodejs.org/ko/download/ 에 가서 다운 받아서 설치 한다. nvm 설치 brew install nvm ~/.nvm 디렉토리 생성 mkdir ~/.nvm ~/.zshrc 에 다음 내용 추가 expo..