sendemail , gmail SMTP 로 메일 보내기 설정

(

참고:

http://caspian.dotconf.net/menu/Software/SendEmail/

http://stackoverflow.com/questions/12750662/install-perl-module-netssleay-through-cpan )

* 에러 메시지:530 5.7.0 Must issue a STARTTLS command first


1. gmail 설정

https://www.google.com/settings/security/lesssecureapps

에서 허용 선택


2. sendemail 설정

 TLS 에 필요한 perl module 설치 ( Net::SSLeay IO::Socket::SSL 설치안되어 있을 경우)
$ su -
# sudo yum install perl perl-CPAN perl-Net-SSLeay perl-IO-Socket-SSL

3. 간단한 테스트

sendEmail -o tls=yes -f YourEmail@gmail.com -t SomeoneYoureEmailing@domain.com -s smtp.gmail.com:587 -xu YourEmail@gmail.com -xp YOURPASSWORD -u "Hello from sendEmail" -m "How are you? I'm testing sendEmail from the command line."




%ECLIPSE_HOME%workspace\.metadata\.plugins\org.eclipse.e4.workbench\workbench.xmi 파일 삭제

(workbench.xmi 기존 작업에 대한 세팅이 저장되어 있는 File )

 

org.eclipse.e4.workbench 는  다른 이름일 수 있다.

 

출처 : http://webprogrammer.tistory.com/2341



ie 에서는 radio 버튼 동작을 방향키로 제어 가능하다.

 

(

On IE, when a radio button group is reached via tabbing, the initially selected button is focused on, and the dotted rectangle indicates this. You can use arrow keys to move between the buttons inside the group; both "down" and "right" arrow move forward inside the group, and both "up" and "left" arrow move backward. And upon moving to a button, that button gets checked (and the button in the group that was checked gets unchecked).

http://stackoverflow.com/questions/10739863/radio-button-keyboard-trap

)


alt + [ENTER]


한 번만 리ㄹ드 처리하기 위해서 아래 처럼 URL history 를 바꾸는 방법을 쓸 수 있다.

 

보기1.

var stateObj = { foo: "bar" };
history.pushState(stateObj, "page 2", "bar.html");

 

보기2.

history.pushState('', 'new title', '/abc/def/ghi.html');

 

참고:

https://developer.mozilla.org/en-US/docs/Web/API/History_API#Adding_and_modifying_history_entries

 



eclipse 찾기 때, 파일 끝에서 되돌리기

ctrl +F 창에서 wrap search 선책 


http://blog.naver.com/PostView.nhn?blogId=qtcube&logNo=60129954554



down voteaccepted

http://stackoverflow.com/questions/17152494/jquery-addclass-to-label-if-radio-button-checked


$("input:radio").next('label').addClass("checked");