우분투에 GIT을 설치하는 방법 apt-get 도구를 이용해서 설치하면 됩니다. Ubuntu Software Center 프로그램을 이용해서 설치도 가능하지만 아래와 같이 apt-get 커맨드 이용시 간편하게 설치 가능합니다. $ sudo apt-get update $ sudo apt-get install git$ git version Git 을 설치한 후에 가장 먼저 해야 하는 일은 이름과 이메일 주소를 설정하는 것입니다.만약 이름과 이메일 주소를 설정하지 않으면 git 을 이용한 commit 시에 임의로 사용자 계정 이름 등이 사용되니 반드시 이름과 이메일 주소를 설정하기 바랍니다.$ git config --global user.name "Kildong Hong" $ git config --globa..
TestCustomDialogActivity.Java ?1234567891011121314151617181920212223242526272829303132333435363738394041424344454647package arabiannight.tistory.com; import android.app.Activity;import android.os.Bundle;import android.view.View;import android.widget.Toast;import arabiannight.tistory.com.popup.CustomDialog; public class TestCustomDialogActivity extends Activity { private CustomDialog mCustomDialo..
비주얼 스튜디오 2013에서는 컴파일러가 강화되었는지, 예전 2010버전에서는 Warning 정도로 처리했던 unsafe 함수들에 대해 에러로 처리하여 컴파일이 되지 않습니다. 예를 들면 scanf, strcpy 같은 함수들을 사용하면 아래와 같은 오류창을 띄우며 컴파일에 실패합니다. "error C4996: 'scanf': This function or variable may be unsafe. Consider using scanf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details." scanf 는 안전하지 않으니, scanf_s를 사용하거나 _CRT_SECURE_NO_WARNINGS을 사..
1.Introduction 많이들 보신 화면입니다. 그런데, 이것은 자바로 만들어졌습니다.기존의 스윙 Look & Feel 을 아시던 분이라면 아마도 놀라실듯 합니다. JGoodies 는 제품개발, 소프트웨어 컨설팅 그리고 디자인 회사입니다.http://www.jgoodies.com/ 자바 데스크탑 애플리케이션을 제작중이시거나 공부하시는 분들은 아마 http://java.sun.com/products/jfc/tsc/sightings/index.html 에서 많은 자바 애플리케이션들을 보셨을겁니다.이중에서 UI 가 좀 이쁘다 싶으면 거의 모두 JGoodies 를 쓴거라고 보셔도 무방합니다. JGoodies 에서 내놓은 Free Libraries 는 전세계 자바 유저들에게 엄청난 인지도를 가진 "Advanc..
다음 사이트에서 Eclipse Font Theme 다운로드 할 수 있다.http://eclipsecolorthemes.org/ Java 파일 폰트및 태그 색상 변경하기 Window -> Preferences -> General -> Appearance -> Colors and Fonts -> Java : 폰트 Window -> Preferences -> General -> Editors -> Text Editors : 라인선택 색상, 백그라운드 색상등.. Window -> Preferences -> Java -> Editor -> Syntax Coloring : 자바 문법 태그 색상 XML 파일 폰트및 색상 변경하기 Window -> Preferences -> General -> Appearance ->..