http://designshack.co.uk http://www.behance.net/gallery/Design-Museum-x-State-of-the-ObviousA-collection/1397189 http://www.behance.net/ http://www.bakmagazine.com/
-소유자 변경 use [DATABASE_NAME]; exec sp_changeobjectowner '[OLD_OWNER].[TABLE_NAME]','[NEW_OWNER]' -디비백업 BACKUP DATABASE [DATABASE_NAME] TO DISK = '[BACKUP_FILE_PATH]'
즐겨찾기에 다음을 추가 MRI : javascript:function loadScript(scriptURL) { var scriptElem = document.createElement('SCRIPT'); scriptElem.setAttribute('language', 'JavaScript'); scriptElem.setAttribute('src', scriptURL); document.body.appendChild(scriptElem);}loadScript('http://westciv.com/mri/theMRI.js'); XRAY : javascript:function loadScript(scriptURL) { var scriptElem = document.createElement('SCRIPT'); s..
선택된 요소에 jQuery 메서드를 한꺼번에 연결해서 적용되게 한다. 체인 적용전 $("#id").val("Click me"); $("#id").addClass("cssclass"); $("#id").css({"width":"300px"}); $("#id").click(function(e){ alert('hello'); }) 체인 적용후 (들여쓰기와 줄바꿈을 이용할 수 있다.) $("#id").val("Click me").addClass("cssclass").css({"width":"300px"}) .click(function(e){ alert('hello'); })
http://whois.arin.net : whois 검색 http://ip-reports.org : ip 대역의 위치 http://rbls.org : ip 블랙리스트 검색 http://whatismyipaddress.com/ip-lookup : iplookup 및 bl 검색 http://viewdns.info/ : iplookup , bl, spam 등등 http://www.blacklistalert.org/ : bl 검색 http://www.dnsbl.info : bl 검색 http://www.dnsbl.com : 위 사이트의 블로그 http://www.five-ten-sg.com/blackhole.php : bl 검색
var mobileKeyWords = new Array('iPhone', 'iPod', 'BlackBerry', 'Android', 'Windows CE', 'LG', 'MOT', 'SAMSUNG', 'SonyEricsson'); for (var word in mobileKeyWords){ if (navigator.userAgent.match(mobileKeyWords[word]) != null){ location.href = "http://m.domain.com"; break; } }