본문 바로가기 메뉴 바로가기

Blog.jSoboro

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

Blog.jSoboro

검색하기 폼
  • 분류 전체보기 (186)
    • DailyStep (28)
      • OT (8)
      • QT (4)
      • FT (2)
      • IT (14)
    • Books (8)
      • ReView (5)
      • PreView (3)
    • Links (139)
      • News (8)
      • Tips (129)
      • WiKi (0)
  • 방명록

DailyStep/IT (14)
RealWorld Example App

woowabros.github.io/experience/2020/04/14/stop-making-todo-list.html github.com/gothinkster/realworld github.com/gothinkster/angular-realworld-example-app github.com/gothinkster/django-realworld-example-app github.com/JamaicanDevelopers/django-realworld-example-app/ dockertraining.readthedocs.io/en/latest/nodejs/react-mobx.html#clone-the-codebase demo.realworld.io/#/article/the-sole-reason-peopl..

DailyStep/IT 2020. 5. 23. 10:41
Subnet Calculator

https://mxtoolbox.com/subnetcalculator.aspx

DailyStep/IT 2020. 5. 20. 22:37
Azure Application Architecture Guide

https://docs.microsoft.com/ko-kr/azure/architecture/guide/ Azure 애플리케이션 아키텍처 가이드 - Azure Architecture Center 확장성과 복원력이 있고 가용성이 뛰어난 Azure에서 애플리케이션을 디자인하기 위한 체계적인 방식 docs.microsoft.com

DailyStep/IT 2020. 4. 7. 14:32
Microservices Design Guide

MSA Design Guide https://medium.com/platform-engineer/microservices-design-guide-eca0b799a7e8 Microservices Design Guide It’s 2018, everyone has heard about Microservices. But do you know how to design one? medium.com

DailyStep/IT 2020. 4. 7. 14:07
JSP Cache 문제

문제의 발단은 Chrome에서는 수정 배포된 JSP소스가 잘 보였는데, IE 에서만 이전 배포 버전이 보이는 것이다. 먼저 Client 의 인터넷옵션 설정으로 해결하는 방법이 있겠다. http://lms.khcu.ac.kr/lms/sugangfaq/sugangFAQ_view.jsp?code=9&num=2*팁. 강력 새로고침에 관하여 : Chrome, Internet Explorer (그런데 위의 해결법으로 원격지원을 하는데 문제가 생겼다. Chrome은 Cache/Cookie 등이 즉시 삭제되는데 반해, IE는 컴퓨터마다 차이는 있지만 즉시 삭제가 아닌 일정 시간이 경과된 이후에야 삭제가 되는 듯 했다. 이렇게 추론한 이유는, 30분에서 1시간 뒤에야 수정 배포 버전의 JSP가 적용이 되었기 때문. Ch..

DailyStep/IT 2016. 10. 25. 11:20
[모의해킹] Paros, BurpSuite, 그리고 인터셉트

예전에 보안진단원 실습과정 들을때 모의해킹툴 중 하나로 Paros를 이용했었다. 이번에 모의해킹 진단결과를 조치하려고 Paros를 다운받아 설치해보았는데, OS버전이 안맞아서인지 실행이 잘 안되었다. Paros : http://www.parosproxy.org/또다른 웹취약진단 프록시 도구로 많이 사용되는 것이, BurpSuite. 사용법은 Paros와 대동소이하며, 기능 제한이 있는 Free 버전이 있다. BurpSuite : https://portswigger.net/burp/download.html 사용법(blog링크) : http://it-jaemins.blogspot.com/2013/04/burp-suite.html 아래와 같이 HTTP Request 인터셉트 및 XSS 테스트. xxx.do?p..

DailyStep/IT 2016. 7. 19. 16:24
[Java] RandomStringUtils 와 SecureRandom

org.apache.commons.lang.RandomStringUtils 와 java.security.SecureRandom 를 조합하여 10자리 영대소문자+숫자+특수문자 랜덤 스트링 반환하는 함수 작성 예제. public String makeNewPassword(){ String characters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!@$%^&*"; String returnVal = RandomStringUtils.random( 10, 0, characters.length(), false, false, characters.toCharArray(), new SecureRandom() ); return returnVal; }

DailyStep/IT 2016. 7. 19. 16:05
[HTML5] API to Choose and Upload for Multiple Files

멀티 파일 셀렉트 및 멀티 파일 업로드에 대한 요건이 들어와서 개발중, https://robertnyman.com/2010/12/16/utilizing-the-html5-file-api-to-choose-upload-preview-and-see-progress-for-multiple-files/ 위 링크대로 개발했을때 서버단을 잘 맞춰줘야 하는데, 사내 F/W에서 사용중인 FileUpload에 그대로 적용하려하니, 잘 안됐다. 문제 원인은, Content-Type에 boundary 가 자동으로 삽입이 되지 않았던 터. (boundary 참고 : [링크] HTTP multipart/form-data raw 데이터 형태 블로그 포스팅 펌. )해답은 아래 링크에 있었다. http://stackoverflow...

DailyStep/IT 2016. 6. 30. 18:17
about JONSP

Same-Origin Policy (SOP) 정책 회피를 위해 찾아본 JSONP. 관련하여 잘 정리된 포스팅을 남겨둔다.http://warmz.tistory.com/entry/jquery-JSONP%EB%A5%BC-%EC%9D%B4%EC%9A%A9%ED%95%98%EC%97%AC-Cross-Domain-%ED%95%B4%EA%B2%B0http://seotory.tistory.com/9http://dev.epiloum.net/1311그리고 Instagram Javascript APIhttp://instafeedjs.com/

DailyStep/IT 2016. 2. 5. 08:48
Instagram API 와 Instafeed.js

Instagram API 사용하기 * 공식 https://www.instagram.com/developer/ * 예제 포스팅 http://dreamofblue.tistory.com/93 Instafeed.js

DailyStep/IT 2015. 2. 13. 16:02
이전 1 2 다음
이전 다음
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
  • 소보로공주님
TAG
  • Tim Tebow
  • 일어나 홍해를 건너자
  • 강명식
  • 성경읽기
  • shallow copy
  • 작고깊은모임
  • 땅의 의미
  • html5
  • 정신병원에서 뛰쳐나온 디자인
  • 매일성경
  • 창세기
  • 벧엘
  • 큐티
  • 아이맥스 명당
  • jsonp
  • cors
  • deep copy
  • 에릭 슈미트
  • 앨런 쿠퍼
  • 요셉
  • 예수를 자랑하자
  • 하나님과 동행하는 삶
  • 하나님을 자랑하라
  • 골방기도
  • 행동유도성
  • ant build
  • affordance
  • How Google Works
  • 앤트 빌드
  • Dimension
more
«   2025/05   »
일 월 화 수 목 금 토
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
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바