개발/팁(6)
-
html5sec
curity CheatsheetWhat your browser does when you look away...Vectors making use of HTML5 featuresXSS via formaction - requiring user interaction (1)#1testA vector displaying the HTML5 form and formaction capabilities for form hijacking outside the actual form.XDon't allow users to submit markup containing "form" and "formaction" attributes or transform them to bogus attributes. Avoid "id" attrib..
2017.04.01 -
RSpec basic authentication helper module for request and controller specs
module AuthHelper def http_login user = 'username' pw = 'password' request.env['HTTP_AUTHORIZATION'] = ActionController::HttpAuthentication::Basic.encode_credentials(user,pw) endend module AuthRequestHelper # # pass the @env along with your request, eg: # # GET '/labels', {}, @env # def http_login @env ||= {} user = 'username' pw = 'password' @env['HTTP_AUTHORIZATION'] = ActionController::HttpAu..
2017.04.01 -
페이스북 컬러
페이스북 컬러 Color Hex RGB #3b5998 (59,89,152) #8b9dc3 (139,157,195) #dfe3ee (223,227,238) #f7f7f7 (247,247,247) #ffffff (255,255,255)
2017.01.04 -
워드 프레스 암호 방식과 업데이트
워드 프레스 암호 방식과 업데이트 mysql 사용시UPDATE wp_users SET user_pass = MD5('test')WHERE user_login = 'test' LIMIT 1
2015.09.28 -
CSS Wishlist
@vars { $white:#fff; $base:#000; $back:url(/graphics/background.jpg) top left no-repeat; $font:Helvetica; } /* and used like */ .my-div { background:$back; color:$base; font-family:$font; border:1px solid $white; }
2011.12.21 -
Internet Explorer 8 검색 상자 제거하기
ie8 의 검색상자를 없애는 방법입니다. 나름 불편함을 느끼시는 분들이 있는것 같아 올려봅니다. 해당 팁은 ie 7 ~8 버젼에만 해당됩니다. 1. 시작 --> 실행 --> gpedit.msc 입력 2. 사용자구성 --> 관리템플릿 --> Windows 구성요소 --> Internet Explorer --> "Internet Explorer검색 상자 표시 금지" 더블클릭 3. 사용으로 설정 --> 확인 브라우져를 재실행 시키면 해당 부분이 없어지게 됩니다.
2011.12.17