옥희인가 암튼 어디서 받은건지 기억나지 않음
The following pre-requisites must be fulfilled in order to install STS:
Please follow this installation instructions with great care.
Download the STS executable installer (*.exe) from the list above. Once downloaded, please double-click the installer to launch the installation process. Follow the on-screen instructions to finish the installation.
If you are downloading the ZIP archive please do not use the extraction utility that comes with Windows as it has been reported that this is causing problems during extraction. Instead please use the free 7-Zip utility.
Download the STS Mac OS disk image (*.dmg) from the list above. Once downloaded, please mount the disk image by double-clicking the downloaded dmg file. Open the volume named 'SpringSource' and double-click on the installer to launch the installation. Follow the on-screen instructions to finish the installation.
At this time we do not recommend to use any of the Cocoa builds for Mac OS. There a numerous open performance related problems with the Cocoa port reported at Eclipse.org.
Download the STS self-extracting shell script (*.sh) that matches your OS and machine architecture. Once downloaded, launch the installation by running the following command in a terminal session:
$ sh springsource-tool-suite-2.3.0.RELEASE-e3.5.1-linux-gtk-installer.sh ******************************************************************************* * SpringSource Tool Suite 2.3.0.RELEASE * * Installer * ******************************************************************************* preparing the installer... ... done starting UI installer. please follow instructions on screen...
자바스크립트 쿠키는 CGI의 HTTP Cookie와 내용 및 작동하는 법은 같으나 약간의 차이가 있습니다. 아래는 자바스크립트 쿠키에 대한 개요입니다.
자바스크립트 쿠키는 서버와는 무관하기 때문에 일반적으로 잘 사용하지는 않습니다. 그러나, 클라이언트 내에서는 얼마든지 쿠키의 정보유지기법을 사용할 수 있으므로 간단한 방문 기록 남기기 등에서는 쓰일 수 있습니다. 자바스크립트에서 쿠키를 참조하기 위해서는 document.cookie객체를 사용합니다.
function getCookieVal (offset) { var endstr = document.cookie.indexOf (";", offset); if (endstr == -1) endstr = document.cookie.length; return unescape(document.cookie.substring(o위의 함수에서 사용자가 쓸 함수는 GetCookie(), SetCookie()입니다. 사용하는 문법은 아래와 같습니다.Technorati 태그: Cookieffset, endstr)); } function GetCookie (name) { var arg = name + "="; var alen = arg.length; var clen = document.cookie.length; var i = 0; while (i < clen) { //while open var j = i + alen; if (document.cookie.substring(i, j) == arg) return getCookieVal (j); i = document.cookie.indexOf(" ", i) + 1; if (i == 0) break; } //while close return null; } function SetCookie (name, value) { var argv = SetCookie.arguments; var argc = SetCookie.arguments.length; var expires = (2 < argc) ? argv[2] : null; var path = (3 < argc) ? argv[3] : null; var domain = (4 < argc) ? argv[4] : null; var secure = (5 < argc) ? argv[5] : false; document.cookie = name + "=" + escape (value) + ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) + ((path == null) ? "" : ("; path=" + path)) + ((domain == null) ? "" : ("; domain=" + domain)) + ((secure == true) ? "; secure" : ""); }
쿠키값 = GetCookie(name) 인수 설명)예)
- name(필수 요소)
- 저장된 Cookie의 이름
cookieval = GetCookie('myCookie');
SetCookie(name, value, [expires], [path], [domain], [secure]) 인수 설명)예 1) 쿠키값만 설정할 경우
- name(필수 요소)
- Cookie에 저장하고자 하는 이름
- value(필수 요소)
- Cookie에 저장된 이름(name)에 대한 값
- expires(생략 가능)
- Cookie가 설정된 후 Cookie가 무효화되는 시간이다.
(GMT Type - "Wdy, DD-Mon-YYYY HH:MM:SS GMT")
설정된 시간이 지나게 되면, 이 Cookie는 사용할 수 없게 된다. 만약 expires에 설정된 시간보다 더 일찍 브라우저가 종료될 경우, 브라우저는 자동으로 cookies.txt라는 파일을 생성하여 그 정보를 이 파일에 저장해 둡니다.
- Netscape 4.x의 경우)
- C:\Program Files\Netscape\Users\[Profile name]\cookies.txt
- Internet Explorer 4.x의 경우)
- C:\windows\Cookies\[remote user name]@[domain].txt
- path(생략 가능)
- 문서의 경로명을 설정합니다. 설정하지 않으면 현재 Cookie를 보내는 문서의 URL상의 경로(도메인 명 제외)로 설정됩니다.
- domain(생략 가능)
- 웹 서버의 도메인 명을 설정합니다. 설정하지 않으면 현재 Cookie를 보내는 문서가 속한 도메인 명으로 설정됩니다.
- secure(생략 가능)
- HTTPS Server(HTTP over SSL)와 같은 Secure Server에서 Cookie를 보낼 경우 이 값을 설정해 줍니다.
SetCookie('myCookie', 1234);예 2) 쿠키값 및 만료일을 설정할 경우var ExpDate = new Date();
ExpDate.setTime(ExpDate.getTime() + 1000*60*60*24); SetCookie('myCookie', 1234, ExpDate); ※ 위의 예제는 만료일을 쿠키가 생성되는 현재 시간 + 1일로 설정합니다. 만약, 만료일을 쿠키가 생성된 후 1시간으로 설정하겠다면 위의 예제에서 24(시간)를 1(시간) 로 바꾸어 주면 됩니다.
쿠키는 설정된 후에 브라우저가 활성화 되어 있고 만료일이 경과되지 않는 한 브라우저에 따라 설정된 디렉토리 내의 cookies.txt를 지우더라도 값이 유지된다는 점을 주의하기 바랍니다. 지금까지 자바스크립트에 대해 알아 보았습니다. 물론 부족한 점이 많겠지만 지금까지 설명한 내용만 가지고도 여러분이 보다 동적이고 기능적인 홈페이지를 만드는데 많은 도움이 될 것입니다.
mrt 가 무슨 약자인지는 모르겠습니다. (혹시 Microsoft RXXX TXXX ... ㅎㅎ)
이렇게 하니 악성소프트웨어를 잡아주는 프로그램이 뜹니다. 매달 나오는 필수 업데이트가 악성코드 DB라는 것을 알았습니다.
mrt와 함께 스위치를 적절히 사용
/Q 또는 /quiet - 자동 모드(사용 시 UI가 표시되지 않음)
/? 또는 /help - 사용법 표시
/N - 검색 전용 모드
/F - 전체 검사 사용
/F:Y - 위와 동일하지만 감염된 파일을 자동으로 삭제
http://msdn.microsoft.com/en-us/library/cc304129(VS.85).aspx
기존부터 유명한 팁입니다.
다만 익스 6, 7에서의 레지스트리 위치와 8의 레지스트리 위치가 바뀌었더군요. 이 팁은 익스 8 용입니다.
html 서버 동시접속 제한이 웹 규격상 HTTP 1.0 server는 2, HTTP 1.1server 는 4라고 합니다.
그렇지만 저건 Dial - up 에 적합한 것이고 대역폭이 남아도는 광랜 환경에서는 저걸 늘려주는 게 좋겠죠.
저기 권장값은 6으로 되어 있습니다.
HKEY_LOCAL_MACHINE (or HKEY_CURRENT_USER)
SOFTWARE
Microsoft
Internet Explorer
MAIN
FeatureControl
FEATURE_MAXCONNECTIONSPERSERVER
의 explorer.exe 키값을 6으로 바꿔줍니다.
HKEY_LOCAL_MACHINE (or HKEY_CURRENT_USER)
SOFTWARE
Microsoft
Internet Explorer
MAIN
FeatureControl
FEATURE_MAXCONNECTIONSPER1_0SERVER
여기에서도 explorer.exe 키값을 6으로 바꿔줍니다.
6보다 더 늘릴 수도 있는데, 마구 올린다고 더 빨라지는 건 아닙니다.
체감상 개인마다 차이는 있겠지만 보통 약간의 체감향상 정도는 느끼는 분이 많더군요.
아래 레지스트리를 동봉합니다. 익스 8 용이고 본문의 내용과 같은 위치입니다.
클릭하여 레지를 설치하면 본문의 팁이 적용됩니다.
http://windowsforum.kr/?mid=w7_02&page=7&document_srl=346279