Posted
Filed under 기타

오늘 교환받은 새 터치패드도 같은 현상이다
브라우져 링크 클릭하려고 한손가락으로 이동하면 스크롤이 강제로 되는거 아닌가...

아~ 이건 제품문제가 아니야...
로지텍에 전화 따르릉~
모르는 눈치...잘되는건데 왜 너만 안돼냐는...?
직접 테스트 해보고 알려 준단다
뭐....결과..?...예상대로 잘된다는말할것 같고..

너무 답답해서 영문 로지텍 포럼에서 검색해보니
SetPoint의 버그라고!!!!
로지텍 직원들이 답변은 USB를 뺐다고 꼽아보라는둥 이상한 소리만 하고 앉았다

나는 두손가락 확대축소기능을 사용하지 않는다.
두손가락 스크롤중에 의도하지 않은 확대축소 기능이 실행되기 때문에!

버그는 이렇다.
SetPoint에 스크롤에서 확대 및 축소 기능을 끈상태애서는 자동으로 스크롤이 된다는거다.
아 그래? 켜보고 다시 해봤다....
헐...정말 스크롤 안되네...

더 큰 문제는!!!!!
2011년 발매당시 부터 있던 문제인것 같은데 로지텍에서 아직까지 프로그램으로 수정하지 않고 있다면 하드웨어 문제인가?!

로지텍이 갑자기 의심스러워 지고 있다..


http://forums.logitech.com/t5/Mice-and-Pointing-Devices/T650-Touchpad-the-two-finger-scroll-suddenly-reacts-on-only-one/td-p/932132

http://forums.logitech.com/t5/Mice-and-Pointing-Devices/Very-Annoying-issue-with-my-T650/td-p/931694

2013/03/08 11:18 2013/03/08 11:18
Posted
Filed under 프로그래밍/JAVA
스프링의 스케쥴러를 사용하기 위해

servlet-context.xml에 task를 추가한다

xmlns:task=http://www.springframework.org/schema/task

xsi:schemaLocation 에도 추가
http://www.springframework.org/schema/task
http://www.springframework.org/schema/task/spring-task-3.2.xsd

아래 내용도 추가
<task:executor id="executor" pool-size="5-10" queue-capacity="255" />
<task:scheduler id="scheduler" pool-size="3" />
<task:annotation-driven executor="executor" scheduler="scheduler" />


void타입의 return 이 없고 파라미터가 없는 메서드에 사용가능하다

@Scheduled(fixedRate=5000)

fixedRate : 지정한 시간 주기로 작업을 실행
fixedDelay : 지정된 시간 간격으로 작업을 실행
cron : cron 표현식을 이용해서 작업을 실행

5000 -> 5초


아래 오류 발생시...
cvc-complex-type.2.4.c: The matching wildcard is strict...

http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd 이 부분을
http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd 으로 변경해주면
오류는 발생하지 않는다. (3.0에서 3.2로)


2013/03/04 17:29 2013/03/04 17:29
Posted
Filed under 장난감

첫비행~

2013/02/28 22:31 2013/02/28 22:31
Posted
Filed under 장난감

아주 콱 박혔네

사용자 삽입 이미지

2013/02/28 14:46 2013/02/28 14:46
Posted
Filed under 프로그래밍

getValue로 찍어보면 [Object Object]만 나온다.
노파심에...

Exr4.getCmp('라디오그룹아이디').getValue().radiofield의 name명

라디오그룹아이디가 radiog 이고 라디오버튼의 name이 bt면

Exr4.getCmp('radiog').getValue().bt



2013/02/20 16:58 2013/02/20 16:58
Posted
Filed under 쇼핑왕
와 정말...이 작은 사이즈에 USB전원으로만 이정도로 중저음을 때려주다니...
완전 만족 대 만족...

괜히 2.2채널이 아님...

내가 봐온 USB스피커 중에 최고라 말하고 싶다.


사용자 삽입 이미지
사용자 삽입 이미지
2013/02/19 19:59 2013/02/19 19:59
Posted
Filed under 프로그래밍/PHP
네이버 일본어 번역기를 몰래 사용하다가 차단당했는지 언젠가부터 안된다.ㅋㅋㅋ
구글은 유료로 바꼈고....
뭐 없나 찾아봤더니 마소 빙(Bing)에서 번역기를 무료로 사용할수 있다.
Microsoft Translator인데 이게 그냥 사용하기에는 사용방법이 어렵네?

간단하게 사용하는 방법은..

<?
  $trans_mode="&To=%27ko%27&From=%27ja%27";
  $ch = curl_init();
  curl_setopt($ch, CURLOPT_URL, 'https://api.datamarket.azure.com/Data.ashx/Bing/MicrosoftTranslator/v1/Translate?Text=%27'.urlencode($msg).'%27'.$trans_mode.'&$top=100&$format=Raw');
  curl_setopt($ch, CURLOPT_HTTPHEADER, array('Authorization: Basic API코드'));
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  $msg_trans=strip_tags(curl_exec($ch));
?>


2013/02/19 11:42 2013/02/19 11:42
Posted
Filed under 프로그래밍

PHP 소스를 압축한다? ㅋㅋㅋㅋ
PHP소스의 주석과 공백을 제거해주는 펑션도 있다.
역시 PHP는 내장 펑션만으로도 너무 훌륭해.

http://www.php.net/manual/en/function.php-strip-whitespace.php


<?php
// PHP comment here
/*
 * Another PHP comment
 */
echo        php_strip_whitespace(__FILE__);
// Newlines are considered whitespace, and are removed too:
do_nothing();
?> 



<?php
echo php_strip_whitespace(__FILE__); do_nothing(); ?>

2013/02/19 11:34 2013/02/19 11:34