일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- calculator
- Programming
- Windows 10
- apm
- Command
- OS(operating system)
- Network Info(Tool)
- Crack(Serial Key)
- FTP
- program
- Backup(Restore)
- script
- javascript
- Linux
- portable
- network
- MS windows
- web
- webhard
- LiveCD(USB)
- MS Windows PE
- game
- PC
- Disk Partition
- UNIX
- explorer
- H/W
- Update
- SSH
- 대항해시대
- Today
- Total
목록카테고리 전체보기 (205)
<In Story>
http://ko.thetimenow.com/south_korea
http://manian.com/data/6978607
http://www.nayuki.io/res/random-password-generator-javascript/nayuki-password-generator.html Random password generator (JavaScript) Character set: Numbers (0123456789) Lowercase (abcdefghijklmnopqrstuvwxyz) Uppercase (ABCDEFGHIJKLMNOPQRSTUVWXYZ) ASCII symbols (!"#$%&'()*+,-./:;?@[\]^_`{|}~) Space ( ) Custom: Length: characters Entropy: bits Password: Copyright © 2015 Project Nayuki – http://www...
http://manian.com/info/6937665 윈도우 10, TH2 빌드 10586 1151 버전이 VLSC(볼륨)판이 배포되었습니다...ㅎ기대했던 Enterprise LTSB 버전은 누락되었습니다..ㅠ Ent (K & KN) 버전은 MSDN 버전과 해쉬값이 동일합니다.Pro, Edu (K & N) 버전이 MSDN과 해쉬값이 다릅니다. [Enterprise Editions] MSDN Hash 파일 이름: ko_windows_10_enterprise_version_1511_x86_dvd_7225032.iso : SHA1 : 15E247DB80289EDC54A7826513AB25D3A5E85E4B파일 이름: ko_windows_10_enterprise_version_1511_x64_dvd_72250..
http://www.w3schools.com/jsref/jsref_obj_array.aspArray ObjectThe Array object is used to store multiple values in a single variable:var cars = ["Saab", "Volvo", "BMW"];Array indexes are zero-based: The first element in the array is 0, the second is 1, and so on.For a tutorial about Arrays, read our JavaScript Array Tutorial.Array PropertiesPropertyDescriptionconstructorArray 객체의 프로토 타입을 생성하는 기능..
http://manian.com/data/6931283
http://jjangdali.tistory.com/entry/Javascript-iframe-의-src-바꾸기 HTML 의 iframe 내부의 Page를 iframe을 담고있는 페이지에서 바꾸는 방법이 필요했다. 이런저런 방법을 찾아보다가 iframe 의 src를 바꾸는 방법으로 가능함을 알았다. 다음은 iframe의 src를 바꾸는 방법이다. javascript 에서 다음과 같이 선언한다.function changeIframeUrl(url) { document.getElementById("main_frame").src = url; } 그리고 나의 경우에는 button을 선택시 iframe 내부의 페이지가 이동되기를 원하기 때문에 다음과 같이 HTML 에서 javascript 함수를 호출한다. 이런방식..
http://findfun.tistory.com/455http://www.w3schools.com/jsref/jsref_obj_string.asp JavaScript Stringsstring은 "John Doe"와 같은 단어들의 조합이다. Examplevar carname="Volvo XC60"; var carname='Volvo XC60'; index를 이용해서 각 문자들에 접근할 수 있다.Examplevar character=carname[7];String 인덱스는 zero-based이다. 이 뜻은 [0] 이 첫번째 문자, [1] 이 두번째 문자라는 것을 뜻한다. 따옴표 표현은 아래와 같이 할 수 있다.Examplevar answer="It's alright"; var answer="He is cal..