기술 공부
-
자주 사용되는 HTTP 상태코드 정리기술 공부 2018. 5. 16. 14:22
요즈음 클라우드 환경에서는 웹 또는 앱은 서버(클라우드)와의 HTTP API 를 이용하여 통신하는 것이 대부분 입니다. HTTP 요청에 대한 결과는 HTTP 응답 상태 코드를 통해 확인할 수 있습니다. HTTP 응답 상태 코드는 3자리의 숫자로 표시되며, HTTP 요청에 대한 성공 여부는 물론이고 HTTP 고유의 처리 정보, 서버의 상태, 에러 발생 상황이나 원인에 대한 정보도 알 수 있게 해줍니다. 번호 대역별로는 100번대가 정보 확인200번대가 통신 성공300번대가 리다이렉트400번대가 클라이언트 오류500번대가 서버 오류 에 해당합니다. 클라우드 서비스의 사양에 따라 응답 상태코드는 달라질 수 있지만 자주 사용되는 HTTP 응답 상태코드는 아래 표와 같습니다. (자세한 응답 코드는 각 클라우드 서..
-
SNS 공유 URL 및 Parameter 설정방법기술 공부 2016. 7. 28. 09:55
SNS 공유 URL 및 Parameter Facebook 공유하기 https://www.facebook.com/sharer.php?u={$URL} Twitterhttps://twitter.com/intent/tweet?url={$URL}&text={$message}&via={$username} Google+https://plus.google.com/share?url={$URL} Kakao Storyhttps://story.kakao.com/share?url={$URL} Naverhttp://share.naver.com/web/shareView.nhn?url={$URL}&title={$title}
-
Android Pattern Lock View source 및 tutorial기술 공부 2016. 7. 13. 15:37
Pattern Lock 관련 Source 및 Tutorial 제공함. https://www.numetriclabz.com/android-pattern-lock-view-using-materialpatternllockview-library-tutorial/ "In this tutorial, we learn how to implement Pattern Lock View using MaterialPatternllockView Library in Android application."
-
PRO vs RTO기술 공부 2015. 6. 26. 14:12
source : http://www.druva.com/blog/understanding-rpo-and-rto/Recovery Point Objective (RPO) and Recovery Time Objective (RTO) are one of the most important parameters of a disaster recovery or data protection plan. These objectives guide the enterprises to choose a optimal data backup (rather restore) plan.RPO: Recovery Point ObjectiveRecovery Point Objective (RPO) describes the interval of time..
-
리눅스(Linux) - 파일 압축, tar 와 gzip기술 공부 2015. 6. 20. 12:26
리눅스에서 파일을 압축할 때 가장 많이 사용되는 명령어가 tar 와 gzip 이다. 일반적으로 여러 파일들을 하나의 파일로 압축할 때는 tar 가 사용되고,tar 로 압축한 파일을 또 한 번 더 압축할 때 gzip 을 사용하게 된다. tar 로 파일 압축 및 압축 해제압축 : tar cvzf {압축파일명} {압축하고자 하는 파일들 또는 디렉토리}압축해제 : tar xvfz {압축파일명}tar 로 test_server 디렉토리를 test_server.tar 로 압축하는 예제