목록알쓸전컴 (343)
알쓸전컴(알아두면 쓸모있는 전자 컴퓨터)
실시간 위치 추적 시스템 솔류션 업체 RTLS 솔루션 업체가 http://www.pntbiz.co.kr/ RFID 및 RTLS 시스템을 가지고 있다. 추후에 참고 할만 하다.
vue-good-table vue js 로 사용할 만한 테이블 component 를 찾다가 찾아낸 컴포넌트 입니다. 문서화도 잘되어 있고 API 사용방법도 꽤 직관적으로 기본적으로 테이블에 필요한 기능들을 구현 하기 좋아서 소개 합니다. https://xaksis.github.io/vue-good-table/ 위에가 오픈소스 사이트 입니다. 일단 메인 페이지에서 특점들로 보여 줄수 있는 기능을 모아논 페이지를 보여 주네요 목차를 보면 사용법을 찾아서 사용 할수 있습니다. 아래는 기본 예제 입니다. InstallationInstall with npm:npm install --save vue-good-table Import globally in app:import VueGoodTablePlugin from ..
eonasdan-bootstrap-datetimepicker http://eonasdan.github.io/bootstrap-datetimepicker/ (데모 사이트) 은 데이터 picker 에서 오픈소스로 사용하기 좋은 라이브러리 입니다. 원래 Jquery 라이브러리 이지만 vue js로 랩핑 ? 해준 라이브러리가 있습니다. https://github.com/ankurk91/vue-bootstrap-datetimepicker 에서 제공 하고 있습니다. 1.npm install jquery --save 2.npm install moment --save 3.npm install bootstrap --save 4.npm install eonasdan-bootstrap-datetimepicker --save..
[cafe24 app개발] 토큰 받기 이전까지 코드를 받았으니 토큰을 받아보겠습니다. 토큰 발급 Request 형식 및 샘플 Request 형식 POST /api/v2/oauth/token Authorization: Basic {base64_encode({client_id}:{client_Secret})} Request 샘플 curl -X POST \ 'https://{{mallid}}.cafe24api.com/api/v2/oauth/token' \ -H 'Authorization: Basic S3hWd2RCTjdPVk5uQjNGMHM3UzFNRDpFaEZnM0xYak1KR21BZWV5MUliaXhI' \ -H 'Content-Type: application/x-www-form-urlencoded' \ ..
[cafe24 app개발] 코드 받기 cafe24에서 필요한 token 을 발급 받기 위해서 는 code가 필요합니다. 사용자는 앱 관리 하면에 들어가면 아래 적힌 APP URL 을 먼저 들어가게 됩니다. 저의 경우 APP URL 사이트는 아래와 같이 생겼습니다. 먼저 현재 접속한 사람의 정보가 필요합니다. 그부분은 현재 개발된 APP의 페이지 에서 저 같은 경우 mounted는 vue js 에서 페이지 로딩 완료시 호출되는 메소드 입니다. . ,mounted:function(){ console.log(window.location.search); } 이렇게 하면 https://{{AppUrl}}/?is_multi_shop={{멀티쇼핑몰여부}}&lang={{쇼핑몰언어}}&mall_id={{몰아이디}}&sh..
[cafe24 app개발] 기본 테스트 로직 https://developer.cafe24.com/에 들어가면 버튼이 있습니다. 들어가면 APP 관리-> APP 등록을 하려면 다음과 같은 입력창이 뜹니다. cafe24의 경우 App Store 서비스를 하려면 꼭 자신의 서버가 따로 필요 하며 해당 웹서버는 https(ssl) 를 사용해야 합니다. 저같은 경우 위와 같이 입력 하고 해당 부분은 APP 에서 추후에 API를 사용할때 권한을 어디까지 필요로 하는지를 적어 둡니다. 해당 부분은 추후에 API 통신을 할때 필요합니다. 테스트 실행을 하면 테스트가 진행 됩니다. 테스트의 진행은 이부분의 APP의 시작 부분이 됩니다. 실행 하기를 누르고 자신의 테스트 쇼핑몰을 입력 하고 들어가면 아래 해당 사이트가 h..
vue js webpack ssl(https) npm run dev 서버 적용 방법 webpack의 dev 환경 에서 ssl 을적용해야 할때가 생겨서 정리해 봤습니다. 일단 SSL 적용을 위해서 도메인 하나를 무료로 만들었습니다.my.freenom.com 에서 만들었습니다. 도메인 IP 는 현재 자신 PC의 공인 IP로 셋팅 하였습니다. 그리고 나서 letsencrypt certbot 사용하기 http://idlecomputer.tistory.com/226 게시물을 보면 무료로 ssl 을 발급 받는 방법을 소개 합니다. 간단하게 하면 $ wget https://dl.eff.org/certbot-auto $ chmod a+x certbot-auto $ sudo /path/to/certbot-auto cer..
javascirpt local file read 브라우져에서 바로 로컬 파일을 읽지는 못하지만 브라우져에 로컬 파일을 올려 주면 해당 파일을 javascirpt 로 읽을 수는 있다. 참고 : https://www.html5rocks.com/en/tutorials/file/dndfiles/ 위에 사이트에 매우 잘나와 있다. IntroductionHTML5 finally provides a standard way to interact with local files, via the File APIspecification. As example of its capabilities, the File API could be used to create a thumbnail preview of images as they..
tomcat 8.5 이상에서 letsencrypt certbot 사용하기 참고사이트 https://gasimof.com/install-free-ssl-certificate-for-tomcat/ 1 Install Let’s Encrypt certificateI actually installed Let’s Encrypt certificate for WordPress on Apache before and it was not so painful, because Apache is officially supported by Certbot – the tool for installing Let’s Encrypt certificates. But Tomcat is not supported and this makes the..
우분투 16.04 tomcat 8.5 설치하기 참고 사이트 https://www.howtoforge.com/tutorial/how-to-install-apache-tomcat-8-5-on-ubuntu-16-04/ tep 1 - Install Java (JRE and JDK)In this step, we will install Java JRE and JDK from an Ubuntu PPA repository. To do that, we have to install a new packe 'python-software-properties' first for managing the repository.Install python software properties:sudo apt-get install pytho..