일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- Crack(Serial Key)
- apm
- H/W
- Update
- SSH
- portable
- calculator
- Programming
- UNIX
- network
- javascript
- Windows 10
- webhard
- script
- explorer
- web
- Disk Partition
- 대항해시대
- game
- PC
- Linux
- Backup(Restore)
- program
- FTP
- Network Info(Tool)
- LiveCD(USB)
- MS Windows PE
- MS windows
- OS(operating system)
- Command
- Today
- Total
목록카테고리 전체보기 (205)
<In Story>
http://mwultong.blogspot.com/2007/01/isnum-isnumeric-isnumber-javascript.html isNaN() 함수는 불린 값을 반환하는데, 참(true)을 반환하면 "숫자가 아니라는 뜻이고", 거짓(false)을 반환하면 숫자라는 뜻입니다. 이 논리값을, isNumber() 함수에서는, 뒤집어 주었습니다. 그리고 isNaN() 함수는, 빈 문자열과 공백도 숫자로 간주하는 문제가 있어서 이 부분도 처리했습니다. isNaN() 은 수학적 에러를 판단하는 데 사용하는 함수이고, 문자열의 숫자 여부를 판단하는 용도로 사용하는 것은 아닙니다. 그렇지만 isNaN() 함수를 사용하는 방법이 가장 간단하더군요. isNaN("문자") ==> true isNaN(숫자) ==>..
http://rankingis.com/?titlequery=자바스크립트-난수-랜덤-숫자-만들기-예제http://mwultong.blogspot.com/2006/11/random-javascript.html Math.floor(Math.random() * 100) + 1;이렇게 하면, 1에서 100까지 나오고 Math.floor(Math.random() * 10);이렇게 하면, 0에서 9까지 나오게 됩니다. 그럼 100에서 200까지의 난수를 구하려면 어떻게 할까요?위 예제와 거의 같으나 최소값은 100이고 최대값은 200이 되겠죠?function randomRange(n1, n2) {return Math.floor(Math.random() * (n2 - n1 + 1)) + n1;// Math.floor(..
function delay(_delay_gap) { /* gap is in millisecs */var _then,_now;_then = new Date().getTime();_now = _then;while((_now - _then) < _delay_gap) {_now = new Date().getTime();}return;} 시간이 지난후에 함수를 한번 실행시켜 주는 함수window.setTimeout("function name", delay_time); /* gap is in millisecs, window prefix를 생략하고 사용할 수 있다. */setTimeout("myFunction()", 3000); // 3초후 myFunction() 함수 실행setTimeout(function(){co..
보호되어 있는 글입니다.
보호되어 있는 글입니다.
업데이트 임시 저장 공간 삭제 시작 -> 실행 -> services.msc 치시고 엔터 하시고 서비스 창을 실행합니다. 서비스창에서 아래의 항목을 선택하시고 서비스 상태를 중지로 설정합니다. Background Intelligent Transfer Service Cryptographic Services Windows Updates 아래의 경로의 폴더를 삭제합니다. C:\Windows 밑의 SoftwareDistribution 폴더 삭제 C:\Windows\System32 밑의 catroot2 폴더 삭제 위 폴더를 모두 삭제했다면 중지시켰던 서비스를 모두 다시 선택하여 우측 마우스버튼을 클릭하고 시작메뉴를 선택하여 서비스를 시작합니다.
https://notepad-plus-plus.org/ About Notepad++ is a free (as in "free speech" and also as in "free beer") source code editor and Notepad replacement that supports several languages. Running in the MS Windows environment, its use is governed by GPL License. Based on the powerful editing component Scintilla, Notepad++ is written in C++ and uses pure Win32 API and STL which ensures a higher executi..
http://teus.me/310 Notepad2.ini=%WINDIR%\Notepad2-%USERNAME%.iniNotepad2.ini=%APPDATA%\Notepad2.ini 그동안 Scintilla가 3.6.0을 지나 3.6.1까지 업데이트되었다.이 내용을 반영한 업데이트. 아래 링크에서 다운받을 수 있다.언제나 그렇듯이 한/영 x86/x64 버전이 모두 들어있다.