2009. 12. 3.

adobe pdf reader에서 A5 프린터 하기

1. [파일] - [인쇄] 를 선택한다.

2. [고급] 선택한다.





















3. [용지/품질] 에서 [용지 옵션] - [크기] - [A5] 를 선택한다.




















4. 인쇄한다.


2009. 11. 27.

so sick

원문

EM        C        G
Gotta change my answering machine
            D
Now that I'm alone
           EM              C     G
Cuz right now it says that we
                  D
Can't come to the phone
    EM              C         G
And I know it makes no sense
                      D
Cuz you walked out the door
        C
But it's the only way I hear your voice anymore

EM             C
(it's ridiculous)

          G
It's been months
             D      
And for some reason I just
 EM             C    
(can't get over us)
G                     D
And I'm stronger then this
 EM             C
(enough is enough)
G              
No more walkin round
    D
With my head down
EM           C
I'm so over being blue
G          D
Cryin over you
    EM             C
And I'm so sick of love songs
G           D
So tired of tears
EM           C       G              D
So done with wishing you were still here
     EM             C              G          D
Said I'm so sick of love songs so sad and slow
C
So why can't I turn off the radio?





And it keeps going on like this...

Please rate and commenct... 

Cheers,
Arvand


Always be my baby
원문
[Eb tuning]

[Verse1]

G
We were as one babe
Em
For a moment in time
C9
And it seemed everlasting
Am                    D
That you would always be mine
G
Now you want to be free
Em
So I'll letting you fly
C9
'Cause I know in my heart
Am                  D
Our love will never die, no..

[Chorus]

G
You'll always be a part of me
C9
I'm part of you indefinitely
Em
Girl don't you know you can't escape me
C9                    D               G
Ooh darling 'cause you'll always be my baby
G
And we'll linger on
C9
Time can't erase a feeling this strong
Em
No way you're ever gonna shake me
C9                               D
Oh darling, 'cause you'll always be my baby 

[Verse2]

G
I ain't gonna cry now
Em
And I won't beg you to stay
C9
If you're determined to leave girl
Am                        D
I will not stand in your way
G                Em
But inevitably, you'll be back again
C
'Cause you know in your heart babe
Am             D
Our love will never end

[Chorus]

G
You'll always be a part of me
C9
I'm part of you indefinitely
Em
Girl don't you know you can't escape me
C9                    D               G
Ooh darling 'cause you'll always be my baby
G
And we'll linger on
C9
Time can't erase a feeling this strong
Em
No way you're ever gonna shake me
C9                               D
Oh darling, 'cause you'll always be my baby

[Bridge]

Em           C9     
I know that you'll be back boy
D                                                C#/D
When your days and your nights get a little bit colder
Em           C9
I know that you'll be right back baby
D                                         E
Oh baby believe me it's only a matter of time


[Chorus]

G
You'll always be a part of me
C9
I'm part of you indefinitely
Em
Girl don't you know you can't escape me
C9                    D               G
Ooh darling 'cause you'll always be my baby
G
And we'll linger on
C9
Time can't erase a feeling this strong
Em
No way you're ever gonna shake me
C9                               D
Oh darling, 'cause you'll always be my baby
G             Em
'always be my baby



David Cook - Always Be My Baby Chords :: indexed at Ultimate Guitar.
DB test

table















2009.11.27

2장

문제

제품 가격이 8만원 이상 select문

select prodName, company, amount
from         productTbl
where cost>8
;


3장

1. 인덱스
idx_memberTbl_memberName 은 회원 테이블의 회원 이름 열로 생성된 색인이 된다.

create index idx_memberTbl_memberName on memberTbl (memberName);

2. 뷰

뷰테이블 생성

create view  uv_productTbl as
select   *
from           productTbl
where   cost>10
;

select *
from uv_productTbl
;

3. 프로시저

두 쿼리를 하나의 저장 프로시저로

create procedure myProc as
select *
from         memberTbl
where memberName = '당탕이'
;

select *
from         productTbl
where prodName = '냉장고'
;

프로시저 실행법
exec myProc

4. 트리거

회원 테이블에 입력

insert into memberTbl values ('지승호', '030202-5555555', '서울 양천구 목동')
;

변경

update memberTbl
set         addr = '서울 은평구 증산동'
where memberName = '지승호'
;

삭제

delete memberTbl
where memberName = '지승호'
;

위에서 문제점) select * from memberTbl; 로 데이터가 삭제되었는지 확인해보자.
그러나 '지승호'가 예전에 회원이었다는 정보는 그 어디에도 등록되지 않는다.
위와 같은 사례를 방지하기 위하여 지워진 데이터와 날짜까지 기록해 보자.

create table deletedMemberTbl
( memberName nchar(5),
jumiNo char(14),
addr         nvarchar(30),
modifyDate datetime  -- 삭제한 날짜/시간
);

회원 테이블에 delete 작업이 일어나면 백업 테이블(deletedMemberTbl)에 지워진 데이터가 기록되는 트리거를 생성

create trigger   trg_deletedMemberTbl -- 트리거 이름
on                  memberTbl -- 트리거를 부착할 테이블
AFTER delete -- 삭제 후에 작동하도록 지정
as
-- deleted 테이블의 내용을 백업 테이블에 삽입
insert into       deletedMemberTbl
select      memberName, juminNo, addr, Getdate() from deleted;

당탕이를 삭제해보자

delete  memberTbl
where  memberName = '당탕이';

확인


select       *
from   memberTbl;
select       *
from         deletedMemberTbl;


2009. 11. 25.

MYMP 관한 아주 멋지게 소개 된 글

http://spacelounge.textcube.com/99

트랙백 기능을 잘 몰라서 이렇게 올리네요..실례일까요?
Jailbreak iPhone (firmwrae 3.1.2)

원문: Jailbreak and Unlock iPhone 3.1.2 Firmware on Windows (영문)


Step 1: iTunes를 최신 버전으로 업데이트 한다.


Step 2: iPod을 USB로 PC에 연결 시킨다.


Step 3: iTunes로 자기의 중요한 자료들을 백업시킨다.


Step 4: Windows를 사용하는 유저들은 자기에 맞는 펌웨어를 다운받는다. 다운 받는 방법에 대해선 자기가 알아보도록 하는데,

For iPhone 2G: “iPhone1,1_3.1.2_7D11_Custom_Restore”

For iPhone 3G: “iPhone1,2_3.1.2_7D11_Custom_Restore”
For iPhone 3GS: “iPhone2,1_3.1.2_7D11_Custom_Restore”
 
이런식으로 찾아보면 될 것이다.
 

 Step 5: 자기가 원하는 .ipsw 파일을 다운받았다면, 아래를 참고하여 자기에 맞는 OS의 폴더를 찾아가 복사한다.

Windows 7
“C:\Users\[username]\AppData\Roaming\Apple Computer\iTunes\iPhone Software Updates\”

Windows Vista
“C:\Users\[username]\AppData\Roaming\Apple Computer\iTunes\iPhone Software Updates\”

Windows XP
“C:\Documents and Settings\[username]\Application Data\Apple Computer\iTunes\iPhone Software Update\”
Note: 폴더옵션에서 숨김파일 보기 로 옵션값을 주어야 한다.



Step 6: iTunes를 재시작하면 복원 또는 업데이트를 창이 나오지만 하지 말아야 한다.


Step 7: 이제 자기가 복사한 파일을 불러와야 한다.


Step 8: 그러기 위해선 "Shift" 키를 누른 후 "복원" 버튼을 클릭한다. 그런 후에 다운받은 것을 실행 시키자.
 

Step 9: 이제 앉아서 기다리기만 하면 된다.


Step 10: 모든 것이 순조롭게 이루어졌다면 백업해 두었던 어플리케이션이나 음악들을 동기화 한다.

2009. 11. 24.

DFU 모드로 진입하기


1. Ipod Touch는 컴퓨터 usb로 연결하고, iTunes는 종료시킨다.
2. ipod touch는 완전종료시킨다.(터치 윗버튼을 누르고 있으면, 빨간 종료 슬라이드가 나오고 이 넘을 밀어주면 완전 종료된다.)
3. 윗버튼을 5초간 누른 후 떼지말고 바로 홈버튼을 10초간 누르고 나서 윗버튼을 놓는다.(usb케이블을 연결한 상태이기 때문에 처음 DFU모드로 들어간 경우 DFU 디바이스 드라이버가 설치 됐다는 메세지가 작업표시줄에 나타난다.)
4. 이후 홈버튼을 약 30초간 누르고 있으면 터치가 DFU 모드로 진입한다.
5. DFU 모드로 들어가게 되면 터치 화면이 흰 화면이 나오게 된다.