본문 바로가기

web116

Markdown(마크다운) Markdown ※ 원본 : https://heropy.blog/2017/09/30/markdown/ https://gist.github.com/ihoneymon/652be052a0727ad59601 # 마크다운(MarkDown) - 확장자가 .md로 작성된 파일이다. - 깃허브에서 저장소에대한 정보를 기록하는 용도로 사용되어 파급됨. # 장점 - 간결함. - 다양한 형태로 변환 가능. - 텍스트(Text) 형태 저장으로 용량적음. - 텍스트파일로 작성되어 버전관리 용이. - 지원 프로그램 & 플랫폼 다양함. # 단점 - 표준이 없다. - 모든 HTML마크업을 대신할 수 없다. # 제목 1 ## 제목 2 ### 제목 3 #### 제목 4 ##### 제목 5 ###### 제목 6 1. 순서가 필요한 목록 .. 2019. 1. 30.
AWS ※ 참고 : 생활코딩 AWS 동영상 강좌 ( https://opentutorials.org/course/2717 ) AWS 참고 자료 ( http://pyrasis.com/book/TheArtOfAmazonWebServices ) 1. AWS 란? - 인프라를 빌려주는 클라우드 서비스 2. 회원가입시 주의 사항 - 정확한 정보 입력 - 비밀번호 어렵게 설정 - 사용 가능한 신용카드 필요 ( * 과금서비스 이기 때문) 3. Security 보안 - IAM Management 설정 - MFA 활성화 - MFA 관리 - 핸드폰에 google opt 설치 - google opt QR 코드 입력 - opt 생성 된 번호 2번 입력 4. Region 지역 - 네트워크 속도 확인(http://www.cloudping.. 2019. 1. 30.
티스토리 - markdown & mathjax(수학수식) 적용. --> --> 2019. 1. 30.
security.fileuri.strict_origin_policy http://stackoverflow.com/questions/17711924/disable-cross-domain-web-security-in-firefox The Chrome setting you refer to is to disable the same origin policy. This was covered in this thread also: Disable firefox same origin policy about:config -> security.fileuri.strict_origin_policy -> false 2015. 10. 12.
"use strict" 엄격한 오류 검사!! : 파일, 프로그램, 함수 최상단에 "use strict" 를 추가하면 동작 주요 제한사항 선언하지 않은 변수는 사용할 수 없습니다. 동일한 속성을 중복해서 정의 할 수 없습니다. 함수의 매개 변수의 중복 할 수 없습니다. 예약된 키워드들도 변수, 함수 이름으로 사용할 수 없습니다.(private, public, static ...) 8진수 리터럴 사용이 제한 됩니다. eval, arguments를 변수, 함수 이름으로 사용할 수 없습니다. 함수를 for문등 블럭 안에서 생성할 수 없습니다. 함수 내에서 arguments가 매개 변수의 복사본이 됩니다. arguments.callee를 사용하지 못합니다. with문을 사용할 수 없습니다. 참고 : http://msdn.microsof.. 2015. 10. 12.
firefoxs_file_uri_origin_policy_and_web_fonts firefoxs_file_uri_origin_policy_and_web_fonts source : https://stuffandnonsense.co.uk/blog/about/firefoxs_file_uri_origin_policy_and_web_fonts Firefox’s file uri origin policy and web fonts Words: Andy ClarkeJun 11 2012Tagged with: css File this one under gotchas. I’m desktop browser testing a series of layout templates for a current project today. Everything was going really well until I encoun.. 2015. 10. 12.