'IT/the other'에 해당되는 글 12건

  1. 2014.06.02 크롬 유튜브 다운로드 확장프로그램
  2. 2014.04.15 Confluence 에서 Anchor 선언해서 링크 으로 사용하기 (책갈피)
  3. 2014.03.05 내 컴퓨터 잠그기 단축버튼 만들기
  4. 2013.02.12 유용한사이트 ico 아이콘 파일 변환하기 사이트
  5. 2013.02.05 UNIX 계열 OS 및 윈도우즈 의 시스템 에러 번호 확인
  6. 2011.03.25 jar 명령어로 war생성풀기.txt
  7. 2010.05.25 Putty 에서 UTF-8 인식
  8. 2009.12.30 maven Lifecycle clean 시 삭제대상 지정하기
  9. 2009.12.23 이클립스 새로 설치하고 할일
  10. 2009.11.11 window 시스템이 32비트인지 64비트인지 알아내기
  11. 2009.08.17 오늘 우리는, 자동화 르네상스의 입구에 서 있다.
  12. 2009.04.20 삭제되지않는 디렉토리의 비밀

크롬 유튜브 다운로드 확장프로그램

IT/the other 2014. 6. 2. 13:13

 

 

출처 : http://neolearn.tistory.com/119

 

크롬확장프로그램 파일 다운로드  Ultimate_YouTube_Downloader_1.0.3.4.crx

간단하게 설치해서 좋네요.

:

Confluence 에서 Anchor 선언해서 링크 으로 사용하기 (책갈피)

IT/the other 2014. 4. 15. 11:29

1. 작성한 글에서 이동 대상으로 삼고 싶은 지점에 Anchor 를 삽입

    edit-tag를 직접 타이핑하거나, Insert  More Content 에서 찾아서  삽입할 수 있다.

edit-tag

{anchor:앵처이름}

 

 

2. 작성한 글에서, 원하는 곳에서 선언해둔 ancher 으로의 링크를 삽입

    edit-tag를 직접타핑하거나, Link 에서 찾아서 삽입할 수 있다.

 edit-tag

용어정의 참조: [#앵처이름]

 

 

 

참조) https://confluence.atlassian.com/display/CONF55/Working+with+Anchors?src=search

:

내 컴퓨터 잠그기 단축버튼 만들기

IT/the other 2014. 3. 5. 10:20

1. 마우스 오른쪽 버튼 클릭, '새로 만들기(W)' -> '바로 가기(S)' 클릭

 

2. 항목 위치 : rundll32.exe user32.dll,LockWorkStation

 

3. 바로가기 이름 : 내컴퓨터잠그기

:

유용한사이트 ico 아이콘 파일 변환하기 사이트

IT/the other 2013. 2. 12. 10:01

http://converticon.com/

:

UNIX 계열 OS 및 윈도우즈 의 시스템 에러 번호 확인

IT/the other 2013. 2. 5. 16:35

출처 : wisenut 조진욱

 

검색 및 색인 에러 로그 확인 시 (errno: 숫자) 로 되어 있는 부분을 확인 하셨을 텐데요.

각각의 에러 번호를 확인 할 수 있도록 참조 하여 등록합니다.

리눅스는 각 에러 넘버에 대한 정리된 것이 있어 직접 올립니다.

1. 윈도우(NT) 장비 에서 에러 넘버 확인 방법.
cmd 창을 열어 프롬프트에
-> net helpmsg 숫자 를 입력시, 해당 번 호에 대한 에러 메시지를 확인 가능합니다.

2. NT 서버가 아닌 기타 서버의 에러 코드.
#define EPERM 1 /* Operation not permitted */
#define ENOENT 2 /* No such file or directory */
#define ESRCH 3 /* No such process */
#define EINTR 4 /* Interrupted system call */
#define EIO 5 /* I/O error */
#define ENXIO 6 /* No such device or address */
#define E2BIG 7 /* Arg list too long */
#define ENOEXEC 8 /* Exec format error */
#define EBADF 9 /* Bad file number */
#define ECHILD 10 /* No child processes */
#define EAGAIN 11 /* Try again */
#define ENOMEM 12 /* Out of memory */
#define EACCES 13 /* Permission denied */
#define EFAULT 14 /* Bad address */
#define ENOTBLK 15 /* Block device required */
#define EBUSY 16 /* Device or resource busy */
#define EEXIST 17 /* File exists */
#define EXDEV 18 /* Cross-device link */
#define ENODEV 19 /* No such device */
#define ENOTDIR 20 /* Not a directory */
#define EISDIR 21 /* Is a directory */
#define EINVAL 22 /* Invalid argument */
#define ENFILE 23 /* File table overflow */
#define EMFILE 24 /* Too many open files */
#define ENOTTY 25 /* Not a typewriter */
#define ETXTBSY 26 /* Text file busy */
#define EFBIG 27 /* File too large */
#define ENOSPC 28 /* No space left on device */
#define ESPIPE 29 /* Illegal seek */
#define EROFS 30 /* Read-only file system */
#define EMLINK 31 /* Too many links */
#define EPIPE 32 /* Broken pipe */
#define EDOM 33 /* Math argument out of domain of func */
#define ERANGE 34 /* Math result not representable */
#define EDEADLK 35 /* Resource deadlock would occur */
#define ENAMETOOLONG 36 /* File name too long */
#define ENOLCK 37 /* No record locks available */
#define ENOSYS 38 /* Function not implemented */
#define ENOTEMPTY 39 /* Directory not empty */
#define ELOOP 40 /* Too many symbolic links encountered */
#define EWOULDBLOCK EAGAIN /* Operation would block */
#define ENOMSG 42 /* No message of desired type */
#define EIDRM 43 /* Identifier removed */
#define ECHRNG 44 /* Channel number out of range */
#define EL2NSYNC 45 /* Level 2 not synchronized */
#define EL3HLT 46 /* Level 3 halted */
#define EL3RST 47 /* Level 3 reset */
#define ELNRNG 48 /* Link number out of range */
#define EUNATCH 49 /* Protocol driver not attached */
#define ENOCSI 50 /* No CSI structure available */
#define EL2HLT 51 /* Level 2 halted */
#define EBADE 52 /* Invalid exchange */
#define EBADR 53 /* Invalid request descriptor */
#define EXFULL 54 /* Exchange full */
#define ENOANO 55 /* No anode */
#define EBADRQC 56 /* Invalid request code */
#define EBADSLT 57 /* Invalid slot */
#define EDEADLOCK EDEADLK
#define EBFONT 59 /* Bad font file format */
#define ENOSTR 60 /* Device not a stream */
#define ENODATA 61 /* No data available */
#define ETIME 62 /* Timer expired */
#define ENOSR 63 /* Out of streams resources */
#define ENONET 64 /* Machine is not on the network */
#define ENOPKG 65 /* Package not installed */
#define EREMOTE 66 /* Object is remote */
#define ENOLINK 67 /* Link has been severed */
#define EADV 68 /* Advertise error */
#define ESRMNT 69 /* Srmount error */
#define ECOMM 70 /* Communication error on send */
#define EPROTO 71 /* Protocol error */
#define EMULTIHOP 72 /* Multihop attempted */
#define EDOTDOT 73 /* RFS specific error */
#define EBADMSG 74 /* Not a data message */
#define EOVERFLOW 75 /* Value too large for defined data type */
#define ENOTUNIQ 76 /* Name not unique on network */
#define EBADFD 77 /* File descriptor in bad state */
#define EREMCHG 78 /* Remote address changed */
#define ELIBACC 79 /* Can not access a needed shared library */
#define ELIBBAD 80 /* Accessing a corrupted shared library */
#define ELIBSCN 81 /* .lib section in a.out corrupted */
#define ELIBMAX 82 /* Attempting to link in too many shared libraries */
#define ELIBEXEC 83 /* Cannot exec a shared library directly */
#define EILSEQ 84 /* Illegal byte sequence */
#define ERESTART 85 /* Interrupted system call should be restarted */
#define ESTRPIPE 86 /* Streams pipe error */
#define EUSERS 87 /* Too many users */
#define ENOTSOCK 88 /* Socket operation on non-socket */
#define EDESTADDRREQ 89 /* Destination address required */
#define EMSGSIZE 90 /* Message too long */
#define EPROTOTYPE 91 /* Protocol wrong type for socket */
#define ENOPROTOOPT 92 /* Protocol not available */
#define EPROTONOSUPPORT 93 /* Protocol not supported */
#define ESOCKTNOSUPPORT 94 /* Socket type not supported */
#define EOPNOTSUPP 95 /* Operation not supported on transport endpoint */
#define EPFNOSUPPORT 96 /* Protocol family not supported */
#define EAFNOSUPPORT 97 /* Address family not supported by protocol */
#define EADDRINUSE 98 /* Address already in use */
#define EADDRNOTAVAIL 99 /* Cannot assign requested address */
#define ENETDOWN 100 /* Network is down */
#define ENETUNREACH 101 /* Network is unreachable */
#define ENETRESET 102 /* Network dropped connection because of reset */
#define ECONNABORTED 103 /* Software caused connection abort */
#define ECONNRESET 104 /* Connection reset by peer */
#define ENOBUFS 105 /* No buffer space available */
#define EISCONN 106 /* Transport endpoint is already connected */
#define ENOTCONN 107 /* Transport endpoint is not connected */
#define ESHUTDOWN 108 /* Cannot send after transport endpoint shutdown */
#define ETOOMANYREFS 109 /* Too many references: cannot splice */
#define ETIMEDOUT 110 /* Connection timed out */
#define ECONNREFUSED 111 /* Connection refused */
#define EHOSTDOWN 112 /* Host is down */
#define EHOSTUNREACH 113 /* No route to host */
#define EALREADY 114 /* Operation already in progress */
#define EINPROGRESS 115 /* Operation now in progress */
#define ESTALE 116 /* Stale NFS file handle */
#define EUCLEAN 117 /* Structure needs cleaning */
#define ENOTNAM 118 /* Not a XENIX named type file */
#define ENAVAIL 119 /* No XENIX semaphores available */
#define EISNAM 120 /* Is a named type file */
#define EREMOTEIO 121 /* Remote I/O error */
#define EDQUOT 122 /* Quota exceeded */
#define ENOMEDIUM 123 /* No medium found */
#define EMEDIUMTYPE 124 /* Wrong medium type */
#define ECANCELED 125 /* Operation Cancelled */
#define ENOKEY 126 /* Required key not available */
#define EKEYEXPIRED 127 /* Key has expired */
#define EKEYREVOKED 128 /* Key has been revoked */
#define EKEYREJECTED 129 /* Key was rejected by service */

:

jar 명령어로 war생성풀기.txt

IT/the other 2011. 3. 25. 14:08

jar cvf <war파일이름>.war   *
jar xvf <war파일이름>.war
:

Putty 에서 UTF-8 인식

IT/the other 2010. 5. 25. 11:23

1. font 설치
2. Putty 설정
Window > Appearance > Font settings > Change > "Bitstream Vera Sans Mono" 으로 변경

Window >Translation >Character set translation on receiverd data > UTF-8 으로 변경

Window >Translation >Adjust how PuTTY handles line drawing characters : Font hax XWindows encoding 으로 변경
:

maven Lifecycle clean 시 삭제대상 지정하기

IT/the other 2009. 12. 30. 10:44
삭제대상에서 '포함'하기는 include '제외'하기는 exclude 으로 지정할 수 있다.

사용예)
<build><plugins>

            <!-- Lifecycle clean 시 삭제대상 지정하기 -->
            <plugin>
                <artifactId>maven-clean-plugin</artifactId>
                <configuration>
                    <!-- 사용법:fileSet 에 include 나 exclude 사용하기  -->
                    <filesets>
                        <fileset>
                            <directory>src/main/webapp/WEB-INF/classes</directory>
                            <includes>
                                <include>install.lock</include>
                            </includes>
                        </fileset>
                    </filesets>
                </configuration>
            </plugin>


출처 : http://whiteship.tistory.com/1285
:

이클립스 새로 설치하고 할일

IT/the other 2009. 12. 23. 15:31
이클립스 새로 설치하고 할 일 v4
출처 : 와이즈넛 이정우
:

window 시스템이 32비트인지 64비트인지 알아내기

IT/the other 2009. 11. 11. 16:07

How to Check if Windows Vista, XP and 2003 System Is 32-bit or 64-bit (x86 or x64) Version


실제로 설치된 OS의 32-bit 또는 64-bit 버전의 분별을 할 수 있는 방법을 열거합니다. 


Windows Vista

Method 1

  1. Click Start, then click on Run or Start Search.

  2. Type msinfo32.exe and then press Enter key.

  3. In “System Information”, review the value for the System Type item:

    • For 32-bit editions of Windows, the value of the System Type item is x86-based PC.

    • For 64-bit editions of Windows, the value of the System Type item is x64-based PC.

Method 2

  1. Click Start, type system in the “Start Search” box, and then click system in the “Programs” list.

  2. The operating system appears as follows:

    • For a 64-bit version operating system: 64-bit Operating System appears for the “System type” under “System”.

    • For a 32-bit version operating system: 32-bit Operating System appears for the “System type” under “System”.

Method 3

  1. Click Start, type system in the “Start Search” box, and then click System Information in the “Programs” list.

  2. The operating system appears as follows:

    • For a 64-bit version operating system: x64-based PC appears for the “System type” under “Item”.

    • For a 32-bit version operating system: x86-based PC appears for the “System type” under “Item”.


Microsoft Windows XP Professional

Method 1

  1. Click Start, then click on Run or Start Search.

  2. Type msinfo32.exe and then press Enter key.

  3. In “System Information”, review the value for the System Type item:

    • For 32-bit editions of Windows, the value of the System Type item is x86-based PC.

    • For 64-bit editions of Windows, the value of the System Type item is x64-based PC.

Method 2

  1. Click Start, click Run, type sysdm.cpl, and then click OK.

  2. Click the General tab. The operating system appears as follows:

    • For a 64-bit version operating system: Microsoft Windows XP Professional x64 Edition Version <Year> appears under System.

    • For a 32-bit version operating system: Microsoft Windows XP Professional Version <Year> appears under System.

    Note <Year> is a placeholder for a year.

Method 3

  1. Click Start, click Run, type winmsd.exe, and then click OK.

  2. In the details pane, locate Processor under Item. Note the value.

    • If the value that corresponds to Processor starts with x86, the computer is running a 32-bit version of the Windows operating system.

    • If the value that corresponds to Processor starts with ia64 or AMD64, the computer is running a 64-bit version of the Windows operating system.


Microsoft Windows Server 2003

Method 1

  1. Click Start, click Run, type sysdm.cpl, and then click OK.

  2. Click the General tab. The operating system appears as follows:

    • For a 64-bit version operating system: Microsoft Windows Server 2003 Enterprise x64 Edition appears under System.

    • For a 32-bit version operating system: Microsoft Windows Server 2003 Enterprise Edition appears under System.

Method 2

  1. Click Start, click Run, type winmsd.exe, and then click OK.

  2. In the details pane, locate Processor under Item. Note the value.

    • If the value that corresponds to Processor starts with EM64T or ia64, the computer is running a 64-bit version of the Windows operating system.

    • If the value that corresponds to Processor starts with x86, the computer is running a 32-bit version of the Windows operating system.    


출처 : http://surewin.kr/?mid=xp&document_srl=3558

:

오늘 우리는, 자동화 르네상스의 입구에 서 있다.

IT/the other 2009. 8. 17. 22:06

우리는 여러가지 시행착오와 흐름들을 지나오고 있었다.
메인스트림의 기원을 지켜보고있는거다..
자바의 급속한 번식과 web2.0, 3.0 의 문이 열리고 동시에 hw의 폭발적인 고성능화를 겪지 않았는가.

개발자여 우리는 자동화 르네상스 그 입구에 서 있다. 
결국 SW는 그 책임을 더욱 넓혀가게 될 것이다.
공부하라.
지금 한눈 팔면 전문성에 뒤쳐진다.
:

삭제되지않는 디렉토리의 비밀

IT/the other 2009. 4. 20. 09:37

가끔 어떻게도 삭제되지않는 디렉토리가 있다.

"del /s /f /q %TEMP%" 이것마저 무시하고 삭제되지않아서

재부팅을 해서 강제로 지운 경험이있다.

비밀은 색인속성에 있다. 디렉토리의 속성에서 '색인속성'을 해제하고 지워야 한다. 아래의 원문에 그 이유를 밝힌다.

원문 >>

Undeletable Files

Files are sometimes created with the very long filenames or reserved names: CON, AUX, COM1, COM2, COM3, COM4, LPT1, LPT2, LPT3, PRN, NUL
To delete these use the syntax: DEL \\.\C:\somedir\LPT1
Alternatively SUBST a drive letter to the folder containing the file.

If a file (or folder) still appears to be 'undeletable' this is often caused by the indexing service.
Right click the file you need to delete, choose properties, advanced and untick "allow indexing" you will then be able to delete the file.
To cure the problem permanently - Control Panel, Add/Remove programs, Win Accessories, indexing service.


출처 : http://www.ss64.com/nt/del.html
: