Andrew's Garage

Shrunk Expand

Primary Navigation

← Older postsNewer posts→
  • Category Archives 비공개
  • OS tune | Projects | 기술 | 기술자료 | 참고를 위한 저장물 | mobile » Project N » CUBE | DB관련 | Hack | MDX등 | OSX | PDW » C/C++ | DIY & H/W | JAVA | Linux | MFC & WINDOWS | SVN | UNITY3D/COCOS2D | Webserver » cmake/make » javascript | WAS, Servet Containers | 일반 » jboss&tomcat | JEUS & WEBToB » android
  • Unity3D Android Build Error WIN32 Exception ZipAlign

    UNITY3D에서 Android Build 할때 이런 오류가 발생.. Error building Player: Win32Exception: ApplicationName=’…/…/…/…/adt-bundle-mac-x86_64-20140624/sdk/tools/zipalign’, CommandLine=’4″/…/…/…/…/Aster…


    Continue reading → Post ID 588

    Posted on 2015-01-30 6:33 AM by andrew Comment
    UNITY3D/COCOS2D
  • java로 unzip

    http://sourceforge.net/projects/jazzlib/   Java comes with “java.util.zip” library to perform data compression in ZIp format. The overall concept is quite straightforward. Read file with “FileInp…


    Continue reading → Post ID 583

    Posted on 2015-01-28 9:25 PM by andrew Comment
    JAVA 참고를 위한 저장물
  • [펌]앱 디자인에 관한 3가지 법칙

    Nicholas Carlson의 Marissa Mayer and the Fight to Save Yahoo! 책의 앱 디자인에 관한 3가지 법칙을 가지고 있다. 투 터치 룰 – 사용자가 처음 앱 안에 들어왔을때, 두번 터치 이내에 원하는 기능이나 페이지로 이동할 수 있어야 한다. 5 포인트 룰 – 한 페이지 안에 폰트(서체) 종류, 크기, 색깔이 다른 것이…


    Continue reading → Post ID 577

    Posted on 2015-01-28 7:34 PM by andrew Comment
    기술자료
  • JUI : 제니퍼 소프트의 UI 라이브러리..

    제니퍼 소프트에서 HTML5 형식의 JENNIFER5를 만들 때 개발한 UI 라이브러리를 GITHUB에 공개 함. 보아하니 요즘 유행하는 많은 개념과 성능 이슈에 따른 조치 사항이 상당히 추가된거 같네…   BOOTSTRIP과 JQUERY 등과 같이 썪어 쓰면 좋은 결과를 얻을 듯.. 제니퍼 UI 컴포넌트(JUI) 공식홈페이지 주소 제니…


    Continue reading → Post ID 574

    Posted on 2015-01-27 10:57 PM by andrew Comment
    기술 기술자료
  • 모바일 앱 디자이너가 꼭 알아야 할 벤치마킹 사이트 13선

    1. http://www.mobile-patterns.com/ 카테고리(OK) 안드로이드/아이폰 화면 제공.   2. http://uxarchive.com/ 카테고리(OK) 아이폰 전용. 별도의 앱만 따로 볼 수 있는 기능 제공.   3. http://pttrns.com/ 카테고리(OK) 아이폰/아이패드/iOS7 별 화면 제공….


    Continue reading → Post ID 572

    Posted on 2015-01-27 10:50 PM by andrew Comment
    참고를 위한 저장물
  • UNITY 프로젝트에서 GIT사용할때 ignore 목록..

    디렉토리 root에 .gitignore   화일 생성 후 아래 내용 저장.. # =============== # # Unity generated # # =============== # [Tt]emp/ [Oo]bj/ [Bb]uild [Ll]ibrary/ sysinfo.txt # ===================================== # # Vis…


    Continue reading → Post ID 565

    Posted on 2015-01-26 12:13 AM by andrew Comment
    기술
  • GIT에서 ignore에 있는 화일 삭제 하기..

    git rm –cached `git ls-files -i –exclude-from=.gitignore` git commit -m ‘Removed all files that are in the .gitignore’ git push origin master 이러면 .ignore 화일에 존재 하는 화일을 레파지토리에서 다 지워 준다. git ls-files…


    Continue reading → Post ID 562

    Posted on 2015-01-26 12:09 AM by andrew Comment
    기술
  • site Links…

    NHN Cloud 서비스  :   http://cloud.toast.com/ URQA 서비스 : http://urqa.io/urqa/ URQA OpenSource : https://github.com/search?utf8=%E2%9C%93&q=URQA APACHE CORDOVA  : http://cordova.apache.org/ AngularJS-…


    Continue reading → Post ID 553

    Posted on 2015-01-25 5:19 PM by andrew Comment
    기술
  • [C/C++] 소수점 몇째 자리 올림 함수 만들기..

    입력 받은 값에서 소수점 밑  N번째에서 반 올림 하는 함수 만들기.. fabs를 통해서 양수로 변환 하고.. 소수점을 자를 위치 까지 소수점을 옮기고  ( 곱하기  pow(10., n ) ) +0.5를 더한 다음에 다시 소수점을 원복   ( 나누기 pow(10. , n ) ) 그리고 fabs를 통해서 잃어 버린 부호를 부할 ( 곱하기 (h >= 0…


    Continue reading → Post ID 549

    Posted on 2015-01-19 10:19 PM by andrew Comment
    C/C++
  • 하이버네이트 사용시에 오라클에서 날짜 형식으로 조회시에 Index 안

    하이버네이트 사용시에 오라클에서 날짜 형식으로 조회시에 Index 안타는 문제가 발생..   내용을 요약하면.. 하이버네이트가 날짜 형식으로 인식 못하고 파라미터 기준으로 문자 ( 필드 ) 와 날짜 ( 파라미터)라 판단 하고 필드를 함수 쒸어서 날짜 형식으로 변경 함.. 그래서 인덱스 못 탐.. 결론 적으로 하이버 네이트한데 이 필드가 날짜 형식이…


    Continue reading → Post ID 544

    Posted on 2015-01-07 5:47 PM by andrew Comment
    JAVA 기술

Posts navigation

Previous 1 … 12 13 14 … 32 Next


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

Loading Comments...