본문 바로가기

전체 글

한국 공연전시 정보 한국 공연전시 정보앱을 개발하였습니다. 안드로이드:https://play.google.com/store/apps/details?id=sun_studio.co.kr.playculture모바일웹:http://www.korea-culture.net/#!/list아이폰:심사중 많은 이용 바랍니다. ^^ 더보기
asset 관리 php,jsp,asp 등 개발을 하면 asset을 관리하기가 힘이든다. public안의 소스가 소스저장소에 같이 들어가기 때문에 버젼 관리가 힘이든다. 그래서 gulp를 이용해서 버젼관리가 되도록 구성하였다. dist 폴더로 복사하도록 구성하였다. 이를 각각의 언어에 맞도록 구성하면된다. 개발할땐 asset안에 gulp를 실행하면된다. https://github.com/choiks14/asset config.json에 실행폴더를 변경해주면 된다. 더보기
centos 5.11 php55w 설치 하기 [root@localhost ~]# yum install php55w Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: ftp.daum.net * epel: mirror.premi.st * extras: ftp.daum.net * updates: ftp.daum.net Setting up Install Process No package php55w available. Nothing to dorepo를 잘못 건드려서 위와 같이 아무것도 없다고 나올때가 있다. 그럴땐 아래와 같이 repo를 재설정 해주면 된다. rpm -Uvh http://mirror.webtatic.com/yum/el5/latest.rpm [ro.. 더보기
cocoapods사용법 아이폰 프로젝트를 자주 하지 않으니까 cocoapods 사용법을 매번 찾아본다. 이기회에 확실히 알아두자 . 설치 하기 $ sudo gem install cocoapods$ cd ~$ pod setup 실행하기xcode 프로젝트 생성후 그 아래에 가서 다음과 같은 명령어를 입력$ pod init$ pod install$ open project.xcworkspace 앞으론 *.xcodeproj 대신에 *.xcworkspace파일로 오픈하면 된다. *중요점 sudo gem install cocoapods 설치후 꼭 pod setup을 하자 안그러면 repo가 없다고 징징될것이다. 더보기
laravel custom id laravel의 eloquent는 정말 좋은 orm이다. eloquent는 기본적으로 id라는 primarykey값을 가지고 핸들링 하도록 되어있다. 그래서 모델을 추가할때 id를 꼭 만들어서 sql문을 실행한다. 하지만 키가 uuid이거나 다른 커스텀하게 변경하고 싶을때가 있다. 그럴때 두가지 필드를 변경해줘야 한다. 1.primaryKey2.incrementing 첫번째는 eloquent가 자동으로 id로 잡아놓았다. 그래서 커스텀한 필드로 바꿔주면 된다.protected $primaryKey = 'uuid'; 두번째는 primarykey가 자동증가 필드가 아니라고 해줘야 primarykey가 int로 인식되지 않는다.protected $incrementing = false; 이 두가지의 설정을 마친.. 더보기
yeoman angular로 커피스크립트추가 Using yeomen 1.0.0-rc1.4. I use:$ yo angular --coffeeThe resulting project has controller and app scripts in CoffeeScript.grunt configuration file remains in js (what is not really a problem).Running$ grunt testruns tests and all seems fine.$ grunt serveris also doing what one expects (build the app, test it, starts server, opens the app in web browser and starts watching for changes, so if I ch.. 더보기
jenkins에서 xcode 빌드하기 환경 mac 10.10.1(중요한버젼)jenkins 개발환경ionicframeworkcordova 현상 10.10.1,xcode 6.1에서발생하는 문제cordova 빌드 순서1.cordova build --release --device ios2.xcrun으로 사인하기 1번은 아무문제 없이 빌드가 잘된다. 하지만 2번을 실행한다면 Warning: --resource-rules has been deprecated in Mac OS X >= 10.10! /var/folders/1f/nygt8pc56971kr4kjtp0v8sw0000gn/T/Y8knpt8G7w/Payload/GESS.app/ResourceRules.plist: cannot read resources 위와 같은 에러를 보게될것이다. 원인답은 나와.. 더보기
Gess 검색어 자동완성 구글 네이버 야후 다음의 검색어 자동완성을 모아서 보기를 구현하였다 안드로이드:https://play.google.com/store/apps/details?id=kr.co.sun_studio.Gess아이폰:현재 심사중웹버젼:http://www.gess.me/#/ 많이 이용해 주세요 ^^ 더보기