LazyDreamy

관리자 | 글쓰기

LazyDreamy » Search » Results » Articles

Computer와 관련된 글 56개

  1. 2010/08/18 jQuery table tr hover highlight (1)
  2. 2010/07/09 온라인 파일 / 문서 공유 저장소 비교 (2)
  3. 2010/05/18 jQuery Input field control
  4. 2010/05/18 jQuery Text Highlighter plugin
  5. 2010/05/03 C++ Builder 개발자를 위한 참고사항
  6. 2010/04/19 라이트룸 Lightroom 에서 색상이 다르게 나올 경우 (1)
  7. 2010/04/08 jQuery 네비게이션 메뉴 (Navigation Menu)
  8. 2010/03/17 Windows 7 에서 프린터 드라이버 완전히 삭제하기 (3)
  9. 2010/03/08 C CRC16, CRC32, CRC-CCITT (1)
  10. 2010/03/07 .NET Socket Programming (for data arriving event) (1)
◀ recent | 1 | 2 | 3 | 4 | 5 | ... 6 | previous ▶

LazyDreamy » Computer

DIA 0.97 한글 문제

드림 | 2010/08/27 09:29

captured_Image.png

DIA 는 GPL 라이선스의 다이어그램 제작 프로그램

 

Dia 최신버전 : http://live.gnome.org/Dia/Download
Windows 용 인스톨 버젼 : http://dia-installer.de/index_en.html
Windows 용 포터블 버젼: http://portableapps.com/apps/office/dia_portable

Dia shape : http://dia-installer.de/diashapes/index.html.en


install 버전에서는 시작->dia->dia 에서 오른쪽 마우스 눌러 속성->바로가기->대상에서 "--integrated" 를 삭제 저장 후 실행하면 도구상자와 작업창이 분리되며 한글 문자 입력 가능


portable 버전은 바탕화면에서 절대 압축해제하지 말고 내 문서에서 해제 후(이유는 공백이 들어가는 폴더를 인식 안하기 때문임)


diaportable.exe를 실행시키면 통합창이 뜨면서 한글문자입력이 불가하지만, C:\Documents and Settings\xxx\My Documents\DiaPortable\App\Dia\bin에서 diaw.exe를 실행하면 도구상자와 작업창이 분리되며 한글문자 입력 가능합니다.

출처 : http://gimp.kr/viewtopic.php?f=42&t=2352

2010/08/27 09:29 2010/08/27 09:29


(go to top)

LazyDreamy » Computer/Programming

jQuery table tr hover highlight

드림 | 2010/08/18 11:23

css 로 지원되면 그게 가장 간편하지만;; ie들 때매 귀찮아서 jQuery로 처리를..

 

jQuery_table

적용 예 : http://dream.nmain.net/sample/jquery/tableHighlight/

css http://dream.nmain.net/sample/jquery/tableHighlight/tableHighlight.css

js http://dream.nmain.net/sample/jquery/tableHighlight/tableHighlight.js

2010/08/18 11:23 2010/08/18 11:23


(go to top)

LazyDreamy » Computer

온라인 파일 / 문서 공유 저장소 비교

드림 | 2010/07/09 22:24

Dropbox

  • 사용 용량
    • 2g 무료
    • 50g $9.99/mon
    • 100g $19.99/mon
  • 아이폰 : 전용 앱 제공
  • API 사용하여 각종 프로그램 및 아이폰 앱과 연동 된다.
    • DocScanner
  • PC 용 클라이언트 제공

KT ucloud

  • 사용 용량
    • 20g 5,000원
    • show 데이터 요금 또는 qook 인터넷 사용시 5000원 할인 (20g 무료)
  • 아이폰 : 앱 등록대기 중
  • Dropbox 의 카피형태 서비스

Naver N드라이브

  • 사용 용량
    • 5g 무료
    • 1개 파일당 용량 제한 (200메가)
  • 아이폰 : N드라이브 앱

Skydrive

  • 사용 용량
    • 25g 무료
  • 아이폰 : ?
  • Microsoft Office 2010에서 바로 연계 가능
  • Office Webapp 을 사용하여 Office 파일 들 열람 및 수정 가능

Google Docs

  • 사용 용량
    • 1g 무료
    • 20g $5/mon
    • 80g $20/mon
  • 아이폰 : ?
  • Office 와 호환
  • API 를 사용하여 각종 프로그램 및 아이폰 앱과 연동 된다.
    • Awesome Note
    • ezpocket 가계부 (백업 / 복구 - 단 영수증 사진은 불포함)

Evernote

  • 사용 용량
    • 저장소 무제한.
    • 무료
      • 한달에 40MB 까지 업로드 가능
      • 파일 타입 : 이미지, 오디오, 잉크, PDF 제한
      • 1개 노트 최대 사이즈 : 25MB
    • 프리미엄 ($5/mon or $45/year)
      • 한달에 500MB 까지 업로드 가능
      • 파일 타입 제한 없음
      • 1개 노트 최대 사이즈 : 50MB
  • 아이폰 : Evernote 앱
  • API 사용하여 각종 프로그램 및 아이폰 앱과 연동 된다.
    • Awesome Note
    • DocScanner
  • PC 용 클라이언트 제공 / 호환
2010/07/09 22:24 2010/07/09 22:24


(go to top)

LazyDreamy » Computer/Programming

jQuery Input field control

드림 | 2010/05/18 15:58

text

get   $(‘input[name=inputname]’).val();

set   $(‘input[name=inputname]’).val(‘value’);


selectbox

get   $(‘select[name=selectname] > option:selected’).val();

set   $(‘select[name=selectname] > option[value=selectvalue]’).attr(‘selected’, ‘true’);


radio , checkbox

get   $(‘input[name=inputname]:checked’).val();

set   $(‘input[name=inputname]’).filter('input[value=selectvalue]').attr(‘checked’, ‘checked’);

set   $(‘input[name=inputname]’).filter('input[value=selectvalue]').attr(‘checked’, ‘’);

count    $(‘input[name=inputname]:checkbox:checked’).length;

2010/05/18 15:58 2010/05/18 15:58


태그

(go to top)

LazyDreamy » Computer/Programming

jQuery Text Highlighter plugin

드림 | 2010/05/18 10:01

http://www.unwrongest.com/projects/highlight/


How to use Highlight

You can throw both a string or an array on Highlight. Have a look at the example below. The first row is going to highlight the word acknowledgment, the second row is going to highlight both ‘matching’ and ‘class name’. The code shown in the example below has been executed in this page.

	$('.body').highlight("acknowledgment");
	$('.body').highlight(["matching","class name"]);

What actually happens is that the matching phrases are wrapped inside a span element with the class name highlight. Therefor you will also need to add some css code to get a visual result.

.highlight { background: #ff0; }
2010/05/18 10:01 2010/05/18 10:01


태그

(go to top)

LazyDreamy » Computer/Programming

C++ Builder 개발자를 위한 참고사항

드림 | 2010/05/03 21:59

0. 설치 (무료버젼 및 업데이트)

   0) free or trial vertion
http://www.codegear.com/downloads/free/cppbuilder
   1) bcb6-trial edition
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=145
   2) bcb6 personal Edition (정품,무료)
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=162
   3) Turo C++2006 Explorer 
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=318
     (이제 더이상 무료키가 발급이 되지 않는다는 군요)
   4) CodeGear RAD Studio  2007 Trail
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=361
   5) bcb6 -- update(update4만 하면 될듯)
         update4 - http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=207
         update3 - http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=201
         update2 - http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=171
         도움말 update - http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=205
   6) BDS2006 update
        update1 -  http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=295
        update2 - http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=307
        hotfix  - http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=319
        hotfix11 - http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=338
        hotfix11,12,13 http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=352
   7) 컴맨드라인에서 BDS 2006설치하기
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_tutorial&no=156

1. 개발툴에 대해..
   1) IDE
   2) BCB32.exe (C++Builder컴파일러)
       ; Command-Line으로 컴파일 하는 방법
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_tip&no=107   -#1
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_tip&no=108   -#2
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_tip&no=109   -#3
   3) IMPLIB.exe (Dll을 쉽게 link해 쓸수 있도록  Import Library를 만들어주는 유틸 )
       ; implib 사용법과 옵션
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_tip&no=116

2. 개발자 가이드
   1) C++Builder6 DeveloperGuide(영문 and 한글)
     * http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=358
   2) C++Builder6 Help메뉴얼
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=332
   3) bcb6 입문서 및 개발자 가이드(한글)
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=153
   4) Embarcadero Technologies Product Documentation
http://docs.embarcadero.com/products/rad_studio/

3. Add-In
    ; C++Builder 및 Delphi를 더욱 편리하게 쓸수 있도록 해주는 Add-In
   1) GExport
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=403   - down
http://www.gexperts.org/  - 개발site
http://www.delmadang.com/community/bbs_list.asp?bbsNo=18 - 상세 사용 설명 강좌
   2) CnPack
http://www.cnpack.org/index.php?lang=en  - 개발 site 및 download
   3) C++컴파일 가속기
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=375
http://andy.jgknet.de/blog/?page_id=12  - 개발site

4. VCL
   ; VCL이란 C++Builder 및 Delphi의 근간을 이룬 Framework이라 할수 있는것으로
     VC++의 MFC위치에 있는 것입니다.
  1) VCL 상속도
     bcb5 - http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=6
     bcb6 - http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=147
  2) C++Builder언어적 특징
     *C++Builder의 C++ 언어 확장
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_tip&no=105
     * C++Builder에서의 VCL의 Support
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_tip&no=146
*C++ Builder와 Delphi의 비교
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_tip&no=133

5. Library
   1) RxLib
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=component&no=570
http://sourceforge.net/projects/rxlib/  - 개발site
   2) Graphic32 - 그래픽 관련 Component
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=component&no=562 - downd
http://www.graphics32.org  - 개발site
   3) GraphicEx - png, tif , gif 등의 다양한 image파일 포멧을 지원해주는 라이브러리
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=component&no=519
http://www.soft-gems.net/index.php?option=com_content&task=view&id=13&Itemid=33 - 개발site
   4) Turbo-Power
       : 시리얼 통신 및 전화, FAX 라이브러리의 대명사
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=component&no=516 - down
http://sourceforge.net/projects/tpapro/ - 개발site
http://www.borlandforum.com/impboard/impboard.dll?action=read&db=news&no=175   - 오픈소스 사연
   5) FastMM
      : Fast Memory Manager
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=component&no=438
http://fastmm.sourceforge.net  - 개발site
   6) JEDI  - JOINT ENDEAVOR OF DELPHI INNOVATORS
http://www.delphi-jedi.org/

6. 기타 문서 자료
   1) Power of Delphi -  97년 3월호부터 98년 9월호까지 연재한 국내 유일 델파이 잡지,  얼마전 완전공개
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=108
http://www.delmadang.com/community/bbs_view.asp?bbsNo=21&bbsCat=0&st=&keyword=&indx=415156&keyword1=&keyword2=&page=2
   2) Delphi정복4 - 책 ( win api 책으로 유명한 김상형님이 쓴 델파이책 , 얼마전 완전공개)
http://www.delmadang.com/community/bbs_view.asp?bbsNo=21&bbsCat=0&st=&keyword=&indx=414030&keyword1=&keyword2=&page=2
   3)  Inside the VCL(1~3편)
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_tutorial&no=40
http://www.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=246
   4) BCB 저널 (유료)
http://www.bcbjournal.com/
http://cbuilder.borlandforum.com/impboard/impboard.dll?action=read&db=bcb_res&no=262  - 2000년이전 무료자료
http://www.borlandforum.com/impboard/impboard.dll?action=read&db=free&no=10742  - 그밖에 무료

7. 사이트
: 국내 C++Builder개발자 커뮤니티
   1) 볼랜드포럼
http://www.borlandforum.com/
   2) C++Builder완전정복
http://cafe.naver.com/bcbmaster/
: 아래는 델파이 관련 국내 site
   3) 델마당
http://www.delmadang.com/
   4) 코드웨이
http://codeway.co.kr/board/
   5) 한델
http://www.delphi.co.kr/
: 그밖에
   6) 데브기어 - 델파이 및 C++Builder한국 총판
http://www.devgear.co.kr/
   8) 엠바케데로 (Delphi / C++Builder개발회사)
http://www.embarcadero.com/
개발자네트워크http://edn.embarcadero.com/
블로그s             -  http://blogs.embarcadero.com/
Articles              - http://edn.embarcadero.com/article/
whitepaper        -  http://edn.embarcadero.com/whitepapers
해외사이트
   10) 델파이.어바웃.컴
http://delphi.about.com/
   11) 코드구루
http://codegearguru.com/
해외블로거
    12)  마크로칸투 - http://www.marcocantu.com/
    13)  해롤드   - http://hallvards.blogspot.com/
    14)  닉호지스   - http://blogs.embarcadero.com/nickhodges/
국내블로거
     박지훈.임프 - http://blog.devgear.co.kr/imp/

 

 

출처 : http://itbiz.tistory.com/183

2010/05/03 21:59 2010/05/03 21:59


(go to top)

LazyDreamy » Computer

라이트룸 Lightroom 에서 색상이 다르게 나올 경우

드림 | 2010/04/19 15:08

captured_Image.png

고급 설정 클릭

 

captured_Image.png[4]

색 관리 텝

 

captured_Image.png[6]

클릭~

 

captured_Image.png[8]

프로필이 로드되어있다.

 

captured_Image.png[10]

프로필은 로드되어 있지만, 장치는 sRGB 로 되어있다.

 

captured_Image.png[12]

 

시스템 기본값 변경을 클릭해서, 모니터 프로파일을 제대로 설정해주거나

맨위의 장치 프로필에서 전체를 설정해준다.

 

captured_Image.png[14]

2010/04/19 15:08 2010/04/19 15:08


(go to top)

LazyDreamy » Computer/Programming

jQuery 네비게이션 메뉴 (Navigation Menu)

드림 | 2010/04/08 09:42

captured_Image.png

http://www.noupe.com/jquery/45-jquery-navigation-plugins-and-tutorials.html

2010/04/08 09:42 2010/04/08 09:42


(go to top)

LazyDreamy » Computer

Windows 7 에서 프린터 드라이버 완전히 삭제하기

드림 | 2010/03/17 20:05

captured_Image.png

제어판 –> 장치 및 프린터


2010-03-17 오후 7-58-29

아무 프린터나 선택해야 합니다. 프린터를 선택하면 ‘인쇄 서버 속성’ 이 활성화됩니다.


captured_Image.png[6]

선택 후 ‘제거’

2010/03/17 20:05 2010/03/17 20:05


태그

(go to top)

LazyDreamy » Computer/Programming

C CRC16, CRC32, CRC-CCITT

드림 | 2010/03/08 22:48


출처 : 볼랜드 포럼 (http://turboc.borlandforum.com/impboard/impboard.dll?action=read&db=cpp_res&no=70)

http://forum.falinux.com/zbxe/?mid=lecture_tip&document_srl=406152&sort_index=readed_count&order_type=desc

http://www.lammertbies.nl/comm/info/crc-calculation.html
2010/03/08 22:48 2010/03/08 22:48


(go to top)

◀ recent | 1 | 2 | 3 | 4 | 5 | ... 6 | previous ▶