뭉뭉뭉뭉 썸네일형 리스트형 완전 편리한 삼성 sidesync 기능 기존 모비젠과 비슷해보이나 제조사에서 만들어서 안전성이 뛰어나고사용자 편리성과 부가적인 기능이 더 많다.. 삼성폰을 쓰고 PC와 함께하는 당신이라면 필수 설치!! 자세한건 아래 동영상 참조. 더보기 notepad++ 실행오류 PC를 포맷 해서 Notepad++ 6.3.3 released 을 새로 깔았는데 실행이 안된다. notepad++를 실행할 경우 "Notepad++ : a free (GNU) source code editor의 작동이 중지되었습니다." 라고 뜨는 경우. https://github.com/Predelnik/DSpellCheck/wiki 로 가셔서 최근에 커밋된 DSpellCheck.dll을 다운로드 한 후, (혹은 아래 하늘색 링크 클릭)v1.2.2: DSpellCheck.dll, Built on: Windows 64bit -> C:\Program Files (x86)\Notepad++\plugins 에 덮어쓰기.Windows 32bit -> C:\Program Files\Notepad++\plugins .. 더보기 소스인사이트에서 한글 주석 깨지지 않게 하기 출처 : http://blog.daum.net/bluebread/2 분명히 이걸 아는 사람이 있을텐데 올려놓은 사람은 없군요. 설정방법 1. DoNoting() 이라는 macro를 만들어 추가한다. 진짜로 아무일도 하지 않는 걸로.macro DoNothing() {}2. Option > Key Assignment 을 선택한다. 3. Macro: DoNothing 선택후에 Assign New Key를 누르고 다음의 키조합을 입력한다.Shift + 한/영 (황당한 조합이지만 먹힌다.) 4. 화면에 "shift+ " 로 표시되면 들어간 것이다. 5. 완료!!이후로 아무 것도 해줄 필요가 없다. 그냥 메모장 쓰듯이 한글입력하면 된다. 쌍자음 그냥 입력해도 안 깨진다. 주의"어 안되잖아?" 하시는 분이 있을까봐... 더보기 git diff 보다 편리하게 git change 보기 출처 : http://blog.daum.net/bluebread/15 안드로이드에서 git을 사용하는데 적응이 안되는 부분이 변경사항을 보는 것입니다.(물론 gerrit을 사용하는 환경이라면 또다른 이야기입니다.) araxis merge 나 beyond compare 와 같은 디렉토리 비교툴에 익숙하시다면, git diff의 결과물이 낮설겁니다. git diff 의 표시형식은 다음과 같이 - + 로 추가 삭제된 내용을 표시합니다. 이런 diff 형식이 낮선 분들은 git difftool을 사용하여 다음과 같은 좌우로 비교창을 열어 볼 수도 있습니다. (vimdiff를 사용한 예) 위에서는 vimdiff를 사용하였지만, git difftool은 실행할 파일을 지정할 수가 있습니다. 이 기능을 이용하여 (g.. 더보기 fb2png fb를 png로 32bit framebuffer를 png로 바꾸는 perl scriptex) cat /dev/graphics/fb0 > /sdcard/fb0.dat./fb2png 768 1024 screen3.png#!/usr/bin/perl -w $w = shift || 240; $h = shift || 320; $pixels = $w * $h; open OUT, "|pnmtopng" or die "Can't pipe pnmtopng: $!\n"; printf OUT "P6%d %d\n255\n", $w, $h; while ((read STDIN, $raw, 4) and $pixels--) { $long = unpack('L', $raw); print OUT pack("C3", ($long & 0x000.. 더보기 ioctl shell command in system bin $ ioctl -h ioctl -h ioctl [-l ] [-a ] [-rdh] -l Length of io buffer -a Size of each argument (1-8) -r Open device in read only mode -d Direct argument (no iobuffer) -h Print help I tried on Tiny6410. Using ioctl one can turn on and off the leds To turn on led3 # ioctl -d /dev/leds 1 3sending ioctl 0x1 0x03 0x00 0x00 0x00return buf: 03 00 00 00 To tun off led3 # ioctl -d /dev/leds 0 3sending ioct.. 더보기 noatime and relatime mount options 출처 : http://linux.koolsolutions.com/2009/01/30/installing-linux-on-usb-part-4-noatime-and-relatime-mount-options/ Installing Linux on USB – Part 4: noatime and relatime mount optionsJan.30, 2009 in Filesystem, Linux, USB Install Welcome to the part 4 of “Installing Linux on USB” series. In part 3 we discussed which filesystems to use for USB hard drives and USB flash drives respectively. In this.. 더보기 Linux의 kmalloc과 vmalloc에 대해서 출처 : http://embedded21.egloos.com/530514 Linux에서 kernel 영역에서의 동적 memory allocation인 kmalloc과 vmalloc에 대해서 알아보도록 하자. Kernel은 physical memory를 page의 단위로 관리 한다. page의 크기는 architecture에 의해서 좌우 된다. 보통 32-bit x86 기반의 machine에서는 page의 크기가 4096 bytes 단위로 관리 된다. Physical memory 내의 각각의 page는 Linux kernel에서 다음의 구조체로 관리된다. struct page { unsigned long flags; // page status atomic_t _count; // ref. cnt. ... v.. 더보기 이전 1 ··· 8 9 10 11 12 13 14 ··· 53 다음