프로그래밍/Etc
-
ubuntu (14.04) 에서 php 업데이트 하기프로그래밍/Etc 2018. 12. 9. 15:05
도쿠위키를 설치하려다가 다음과 같은 에러가 나와서 설치가 중단되었다. The installer found some problems, indicated below. You can not continue until you have fixed them. Your PHP version 5.5.9-1ubuntu4.26 is lower than the needed 5.6.0. You need to upgrade your PHP install. 도쿠위키를 설치하기 위해서는 PHP 버전이 적어도 5.6 은 되어야 한다고 해서 중간에 아래와 같이 PHP 업데이트를 진행하였다. PPA(Personal Package Archive) 라는 개인 패키지 아카이브를 사용해서 (블로그 참조) 업데이트를 진행하였다. 유분투에서 PH..
-
jqeury로 json 정렬하기프로그래밍/Etc 2018. 10. 31. 17:24
참고: https://stackoverflow.com/questions/881510/sorting-json-by-values jquery로 json 파일 정렬하는 법 prop 은 정렬하고 싶은 json 파일의 필드 이름이고 asc는 순차 정렬 여부를 의미함. function sortResults(result, prop, asc) { SortedResult = result.sort(function(a, b) { if (asc) { return (a[prop] > b[prop]) ? 1 : ((a[prop] a[prop]) ? 1 : ((b[prop] < a[prop]) ? -1 : 0); } }); return Sort..