본문 바로가기

반응형

전체보기

(315)
우분투 apt 기본 저장소 변경하기 우분투에서 사용하는 apt 패키지 관리자의 기본 저장소를 변경하는 방법입니다. /etc/apt/sources.list 파일을 편집하면 되는데요. 아래는 우분투 기본 저장소인데 아무래도 해외이다보니 속도가 느립니다. kr.archive.ubuntu.com 도 있긴 한데 이것도 역시 좀 느립니다. 그래서 daum 에서 제공하는 저장소를 많이 사용하게 되는데요. deb http://archive.ubuntu.com/ubuntu trusty main deb http://archive.ubuntu.com/ubuntu trusty-updates main deb http://security.ubuntu.com/ubuntu trusty-security main deb http://archive.ubuntu.com/ub..
Javascript 모바일 체크 var mobilecheck = function() { var check = false; (function(a){if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i.test(a)||/1207|63..
Javascript Favicon 적용 (function() { var link = document.createElement('link'); link.type = 'image/x-icon'; link.rel = 'shortcut icon'; link.href = '/resources/pubtree/images/favicon.ico'; document.getElementsByTagName('head')[0].appendChild(link); }());
input type=text 에서 엔터 눌렀을때 submit 실행 1. onkeydown="javascript: if (event.keyCode == 13) {chkform();}" 이런식으로 체크한다. 함수 호출로 chkform(); view source print? 01.function chkform() 02.{ 03.var f = document.fo_search; 04.if(f.addr1.value == '') 05.{ 06. alert('지역을 선택해주세요.'); 07. f.addr1.focus(); 08. return false; 09.}else{ 10. document.fo_search.submit(); 11.} 12.} document.fo_search.submit(); 이런식으로 form의 submit 실행
How to Enable CSS3 Border Radius in Internet Explorer 8 and below CSS3 gives us the ability to create rounded corners with the border-radius property. But as you might already know, this new feature is not recognized in Internet Explorer 8 (IE8) and its earlier versions. So when you apply CSS3 Border Radius to an element, it still appears as a box with pointed tips. You may find a lot of different advice on the Internet suggesting you ignore IE8. You wish you ..
find 리눅스에서 파일 찾기 find 라는 명령으로, 디스크에 저장된 각종 파일/디렉토리를 검색할 수 있습니다. 파일 찾기 (파일명 검색) 현재 디렉토리에서, pl 확장자를 가진 모든 파일 찾기 find -name '*.pl' (현재 디렉토리 밑의 하위 디렉토리까지 다 찾습니다.) 루트에서부터, 즉 전체 하드에서, pl 확장자를 가진 모든 파일 찾기 find / -name '*.pl' 전체 하드 디스크에서, 파일명이 ab 로 시작하는 모든 파일 찾기 find / -name 'ab*' 전체 하드 디스크에서, 파일명이 .bash 로 시작하는 모든 파일 찾기 find / -name '.bash*' 전체 하드 디스크에서, 파일명이 .bash 로 시작하는 모든 파일 찾기 + ls 명령 형식으로 출력 find / -name '.bash*' -..
Oracle VM 폴더 옮기기 개요 VirtualBox를 설치하면 기본적으로 기본 머신 폴더가 C:\Users\사용자명\VirtualBox VMs 가 된다. 여기서는 이 폴더를 D:\VirtualBox VMs 로 옮겨보겠다. (단순히 폴더만 옮기면 VM이 제대로 작동하지 않게 된다.) 방법 만약 VM이 하나도 없는 상태라면 "설정 변경" 문단부터 진행하면 된다. VM 정리 폴더 복제 탐색기에서 C:\Users\사용자명 으로 이동 --- VirtualBox VMs 폴더 선택 --- 복사( Ctrl+C ) 탐색기에서 D:\ 로 이동 --- 붙여넣기( Ctrl+V ) 이동하지 않고 복사한 이유는 잘못되었을 때 원상복구하기 위해서이다. VM 목록에서 제거 VirtualBox 실행 왼쪽 VM 목록에서 VM 우클릭 --- 삭제(R) "가상 머신..
Conditional comments with IE Conditional comments with IE Since Internet Explorer 5, conditional comments have been used to show or hide extra content from Internet Explorer. The syntax The example below will add a CSS style sheet only if the browser viewing the page is IE6: Any HTML that appears between the IF statement will be added to the document if viewed using the specified version of Internet Explorer. You can use th..

반응형