컴퓨터/유틸리티2012. 9. 10. 14:45

WinMerge

 

[Diff Viewer]

-e -x -ub -dl %bname -dr %yname %base %mine

 

[Merge Tool]

%merged

 


SourceGear DiffMerge

 

[Diff Viewer]

-nosplash -t1=%bname -t2=%yname %base %mine

 

[Merge Tool]

-caption=%mname -result=%merged -merge -nosplash -t1=%yname -t2=%bname -t3=%tname %mine %base %theirs

 

Posted by jungtae17
컴퓨터/우분투2012. 7. 6. 21:05

$ sudo -i
# apt-get clean
# cd /var/lib/apt
# mv lists lists.old
# mkdir -p lists/partial
# apt-get clean
# apt-get update
# exit

$


참고> http://ubuntuforums.org/showthread.php?p=12064361

Posted by jungtae17
컴퓨터/프로그래밍2012. 6. 21. 14:48
template< typename _Type >
class _TEMPLATE
{
	...

}; // template _TEMPLATE

C++ 에서 위와 같은 템플릿을 friend 로 선언하고 싶다면 아래와 같이 하면 됩니다.
class _CLASS
{
	...

	template< typename _Type > friend class _TEMPLATE;	// <<-- 프렌드 선언

}; // class _CLASS

'컴퓨터 > 프로그래밍' 카테고리의 다른 글

PHP 정보 보기  (0) 2012.12.05
namespace alias (별칭)  (0) 2012.10.11
개발 툴(프로그래밍)에서 유용한 단축키  (0) 2012.04.04
git (SCM)  (0) 2012.03.29
SQL 에서 순위를 할당하는 함수  (0) 2012.03.03
Posted by jungtae17
컴퓨터/윈도우2012. 6. 10. 17:48

> 파일이 있는 폴더로 경로 변경

CD /D %~dp0


> Windows 부팅 구성 편집기

Bcdedit.exe

참고 1> Bcdedit.exe /? 실행 (도우말 참고)
참고 2> http://technet.microsoft.com/ko-kr/library/cc709667.aspx
참고 3> http://snoopybox.co.kr/843

http://snoopybox.co.kr/1353

Posted by jungtae17