목록개발이야기 (528)
준호씨의 블로그
There is a code with lombok @Slf4j public class SomeClass { ... log.info("blah blah"); IntelliJ could warn "Cannot resolve symbol log" for log. Install the lombok plugin. Preferences -> Plugins -> Browse repositories... -> search lombok -> Install "IntelliJ Lombok plugin" Then restart IntelliJ IDE.
HTTP/2 에 관련된 내용은 한번 정리 해 보고 싶지만 일단 관련 글들만 좀 모아 본다. RFC 7540 나만 모르고 있던 - HTTP/2 2016.12.04 SPDY는 무엇인가? 2012.08.28 What is HTTP/2 - The Ultimate Guide 2018.01.15 HTTP vs HTTPS Test 제목은 HTTP vs HTTPS 이지만 사실 HTTP/1 vs HTTP/2 가 맞음. HTTP/2 는 기본적으로 보안 프로토콜이 적용 되어 있다. HTTP/2
별다른 설정 없이 할 수 있는 방법 control + A + K + K 설정 /Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Resources/IDETextKeyBindingSet.plist Deletions 아래에 다음 내용 추가 Delete Current Line In One Hit moveToEndOfLine:, deleteToBeginningOfLine:, deleteToEndOfParagraph: xcode -> Preferences -> Key Bindings -> Delete Current Line in One Hit 참고 http://aroundck.tistory.com/3503 http://kyejusung.com/2015/05..
Tips and Tricks for sendmail Hackers 에 가 보면 STARTTLS 기능을 좀 더 활성화 해 주는 빌드 옵션 정보가 있다. 공식적으로 지원 하는 기능들은 아니지만 기능은 구현 되어 있다. 빌드 옵션 추가 STARTTLS 기능을 좀 더 활성화 하려면 _FFR_TLS_1 를 추가해 주면 된다. .m4 파일에 다음 내용을 추가 해 준다. APPENDDEF(`confENVDEF', `-D_FFR_TLS_1')dnl FFR TLS 적용 된 sendmail 인지 확인 하는 방법 strings sendmail | grep CipherList sendmail 버전 정보에서 확인하기 TODO 확인 및 수정 필요 $ sendmail -d0.13 < /dev/null | grep F..