자주 쓰는 몰렉스
53047-02 (충전 배터리 작은 단자)
5267-02
2012년 11월 21일 수요일
2012년 11월 11일 일요일
Lithium Ion/Polymer USB Battery Charger IC
MAX 1555
The MAX1551/MAX1555 charge a single-cell lithium-ion (Li+) battery from both USB* and AC adapter sources. They operate with no external FETs or diodes, and accept operating input voltages up to 7V
Current is automatically reduced to a trickle when charging is complete.
2012년 10월 28일 일요일
2012년 10월 14일 일요일
2012년 10월 13일 토요일
VS 임시파일
del /f /q /s /a rhsa *.bak *.ncb *.obj *.pdb *.idb *.ilk *.pch *.suo *.aps *.opt *.sbr *.bsc *.user
http://msdn.microsoft.com/ko-kr/library/xhkhh4zs.aspx
http://www.codeproject.com/Articles/10855/Clean-Visual-Studio-Workspaces
http://smok95.tistory.com/211
http://msdn.microsoft.com/ko-kr/library/xhkhh4zs.aspx
http://www.codeproject.com/Articles/10855/Clean-Visual-Studio-Workspaces
http://smok95.tistory.com/211
2012년 10월 12일 금요일
2012년 10월 3일 수요일
Gesture Recognizer
UIGestureRecognizer is the abstract base class for concrete gesture-recognizer subclasses (or, simply, gesture recognizers). The UIGestureRecognizer class defines a programmatic interface and implements the behavioral underpinnings for gesture recognition. The UIKit framework provides six gesture recognizers for the most common gestures. For other gestures, you can design and implement your own gesture recognizer (see “Creating Custom Gesture Recognizers” for details).
2012년 9월 3일 월요일
2012년 8월 1일 수요일
2012년 7월 31일 화요일
2012년 7월 24일 화요일
2012년 7월 22일 일요일
No fmex9.pfb when update to Ubuntu 10.04
Ubuntu 10.04 로 업그레이드 하고 나서 생기는 문제.
dvips: ! Couldn't find font file fmex9.pfb
dvips: ! Couldn't find font file fmex9.pfb
solution
It is caused by the pdfmap file in $HOME/.texmf-var.
The solution is just remove or rename $HOME/.texmf-var to $HOME/.texmf-var_Ubuntu904.
Then pdflatex the lyx file inside LyX again . The texlive will produce another new subdirectory $HOME/.texmf-var.
Done.
by Kuo-Ping Chiao
2010-5-9
ㄳㄳ
2012년 7월 15일 일요일
Direct Access to CvMat
If CV_32FC1 (1 channel float)
CvMat* M = cvCreateMat( 4, 4, CV_32FC1 );
M->data.fl[ row * M->cols + col ] = (float)3.0;
or...
cvmGet( mat, row, col );
...
inline void cvDoubleMatPrint( const CvMat* mat )
{
int i, j;
for( i = 0; i < mat->rows; i++ )
{
for( j = 0; j < mat->cols; j++ )
{
printf( "%f ",cvmGet( mat, i, j ) );
}
printf( "\n" );
}
}
from http://note.sonots.com/OpenCV/MatrixOperations.html
피드 구독하기:
글 (Atom)