Andrew's Garage

Shrunk Expand

Primary Navigation

← Older postsNewer posts→
  • top5 open 소스 프로젝트 관리 툴

    이 문서는 세계적으로 많이 사용되고 있는 5개의 오픈 소스 프로젝트 관리 도구를 간단하게 소개합니다. TOP5는 opensource.com의 Top 5 open source project management tools in 2014를 참조하여 작성되었습니다.  ProjectLibre ProjectLibre는 MS Project를 대체할 수 있는 프로젝트 관…


    Continue reading → Post ID 357

    Posted on 2014-09-02 5:30 PM by andrew Comment
    📂This entry was posted in 기술자료
  • MFC WebBrowser Control에서 script로 창 닫을때 메시지 창 안보이게..

      BEGIN_EVENTSINK_MAP(WebViewDlg, CDialogEx) // ON_EVENT(WebViewDlg, IDC_EXPLORER, 253, WebViewDlg::OnQuitExplorer, VTS_NONE) ON_EVENT(WebViewDlg, IDC_EXPLORER, 263, WebViewDlg::WindowClosingExpl…


    Continue reading → Post ID 355

    Posted on 2014-08-21 11:19 PM by andrew Comment
    📂This entry was posted in C/C++ MFC & WINDOWS
  • API 브라우저 띄우기

    ShellExecute(NULL, “open”, “http://naver.com”, “”, “”, SW_SHOWNORMAL);  


    Continue reading → Post ID 353

    Posted on 2014-08-19 11:06 PM by andrew Comment
    📂This entry was posted in C/C++ MFC & WINDOWS 참고를 위한 저장물
  • [JAVA] 자릿수 만큼 0으로 채우기..

    예를 들어.. 3자리수를 표현한다고 하면, 001,002,010 뭐 이런식으로 표현하고 싶을때가 있다. (일련번호등을 표시할때 ) 아래와 같이 하면 쉽게 표현할 수 있다. int serial = 3; String suffix = String.format(“%03d”, serial); System.out.println(suffix); 결…


    Continue reading → Post ID 351

    Posted on 2014-08-18 10:23 AM by andrew Comment
    📂This entry was posted in JAVA 참고를 위한 저장물
  • 크롬에서 창 닫기

    크롬에서는 window.close(); 가 안먹힙니다..   아래 코드는 IE , 크롬..먹히는것 확인했습니다.   아마 다른 브라우저도 되지 않나싶습니다.   ? 1 window.open(”,’_self’).close();


    Continue reading → Post ID 349

    Posted on 2014-08-17 9:11 PM by andrew Comment
    📂This entry was posted in JAVA javascript 참고를 위한 저장물
  • java에서 string 인코딩 확인방법

    String word = s; System.out.println(“utf-8(1) : ” + new String(word.getBytes(“utf-8”), “euc-kr”)); System.out.println(“utf-8(2) : ” + new String(word.ge…


    Continue reading → Post ID 347

    Posted on 2014-08-17 5:19 PM by andrew Comment
    📂This entry was posted in JAVA 참고를 위한 저장물
  • Alter Table [ 컬럼 사이즈, 데이터 크기 조정 ]

    [DB2] 컴럼의 데이터 타입 또는 사이즈 조정 ALTERTABLE temp     ALTERCOLUMN col1 SET DATA TYPE VARCHAR(60); [ORACLE] alter table   table_namemodify   column_name  datatype; 이런식으로도 된다.. alter table   table_namemodify  …


    Continue reading → Post ID 345

    Posted on 2014-08-17 5:14 PM by andrew Comment
    📂This entry was posted in DB관련
  • [MFC] 프로그램 중복 실행 방지 – 활용편

    프로그램 중복 실행 방지를 사용하다가 중복 실행이 필요한 경우가 생겨서 활용해보았다. 내 경우는 FTP Uploader 프로그램을 만들어서 FTP 서버에 필요한 파일을 다운하거나 업로드 하는데 사용하고 있었다. 두군데의 서버에 파일을 올려주고 있었는데 그중 하나의 서버가 느려져서 다른 서버의 업로드에도 영향을 주는 일이 발생하여 프로그램을 하나 더 실행 하…


    Continue reading → Post ID 341

    Posted on 2014-08-12 2:47 AM by andrew Comment
    📂This entry was posted in C/C++ MFC & WINDOWS 참고를 위한 저장물
  • [c++11] 잘 쓰면 매우 편리한 C++11의 문법들

    C/C++언어는 저수준까지 정밀하게 다룰 수 있는 반면, 프로그래머가 일일히 관리해줘야하는 부분이 많다는게 C/C++언어에 대한 일반적인 견해입니다. 그래서 저수준까지 일일히 신경쓰지 않아도 되는 쿨한 언어를 가지고 높은 생산성을 추구하는게 추세이기도 합니다. . . . 만, C++의 골수빠로서 C++11을 통해 C++로도 충분히 쿨하고 생산성 높은 코-드…


    Continue reading → Post ID 339

    Posted on 2014-08-12 12:03 AM by andrew Comment
    📂This entry was posted in C/C++ 참고를 위한 저장물
  • 정규식 사용법 [펌] boost 사용

    질문 ::#이 붙은 전화 번호 앞에는 %23을 붙이고 싶음..   답코드 :: std::string result, list = “#011-222-3333”; const char* regStr = “(#)?(01[016789])-?(d{3,4})-?(d{4})”; const char* subStr =…


    Continue reading → Post ID 337

    Posted on 2014-08-12 12:00 AM by andrew Comment
    📂This entry was posted in C/C++ 참고를 위한 저장물

Posts navigation

Previous 1 … 22 23 24 … 36 Next

  • Recent Posts

    • MySql 관리
    • Pair Programming Is Not Pair Coding
    • 기기 고유 식별(Identify) 얻기 device_info
    • QR 코드 스캔(QR Code Scan) 초간단 예제(Simple example)
    • 싱글톤(Singleton) 클래스
  • Recent Comments

    • Shela SchurShela Schur on RED5 & FFMPEG & FFserver 스트리밍 서버 구축하기
    • DeepsDeeps on [Linux] /dev/sdc1 is apparently in use by the system; will not make a filesystem here!
    • IvanIvan on How to install openssl on windows with visual studio 2015
    • KeenanBoldKeenanBold on centos7] Adding to Firwwall rules
    • andrewandrew on How to install POCO C++ libraries on Windows with Visual studio 2015
  • Archives

    • December 2021
    • May 2021
    • January 2021
    • June 2020
    • August 2018
    • April 2017
    • March 2017
    • February 2017
    • September 2016
    • August 2016
    • July 2016
    • June 2016
    • September 2015
    • August 2015
    • July 2015
    • June 2015
    • May 2015
    • April 2015
    • March 2015
    • February 2015
    • January 2015
    • December 2014
    • November 2014
    • September 2014
    • August 2014
    • July 2014
    • June 2014
  • Categories

    • C/C++
    • cmake/make
    • CUBE
    • DB관련
    • DIY & H/W
    • flutter
    • JAVA
    • javascript
    • jboss&tomcat
    • JEUS & WEBToB
    • Linux
    • Linux
    • MDX등
    • MFC & WINDOWS
    • OS tune
    • OSX
    • PDW
    • SVN
    • Uncategorized
    • UNITY3D/COCOS2D
    • VSC
    • WAS, Servet Containers
    • Webserver
    • 기술
    • 기술자료
    • 일반
    • 일상
    • 참고를 위한 저장물
    • 책
  • Meta

    • Log in
    • Entries feed
    • Comments feed
    • WordPress.org
  • AdSense


©2025 boots Entries RSS and Comments RSS Child theme Boots of Raindrops Theme