카테고리: Programming

0

Visual Studio 2017 - python

VSCode - Settings Sync github 으로 이동한다. Key Features Use your github account token and Gist. Can create Anonymous Gist without using your Github account token. Easy to Upload and Download on one clic

0

Run Python as a Windows Service

Run Python as a Windows Service 단순하게 sc.exe 를 사용한다. 샘플코드인데 1sc create PythonApp binPath= "C:\Python34\Python.exe --C:\tmp\pythonscript.py" -- 이것이 왜 있는거지…??? 빼고 서비스를 생성해보자. 1sc create django

0

react.js

react.js 문서강좌: https://velopert.com/reactjs-tutorials 동영상: https://www.inflearn.com/course/react-강좌-velopert/?subscribe ReactJS & [[Express]] React Fundamentals [[Express]] [[ES6]] MongoDB mongo

0

React 공부하면서 도움되었던 글들모음

React 공부하면서 도움되었던 글들모음 출처: http://witinweb.com/post/144650892442/react-공부하면서-도움되었던-글들모음 리액트 시작해보기 React 시작하기 ES2015와 React 재사용 UI컴포넌트 설계 React.js의 데이터 흐름 FLUX와 REDUX Redux 공식홈페이지(한글) Redux로의 카툰안내서 핫

0

PostGIS 공간쿼리

PostGIS 공간쿼리 목표 : 전달된 좌표를 기반으로 가장 가까운 순으로 출력한다. Geometry 로 변경 좌표를 Geometry 로 변경 1select ST_SetSRID(ST_Point(126.94130, 37.37736), 4326) 문자열을 변수로 받는 경우는 double precision 으로 변경 1ST_SetSRID(ST_Point(CA

0

OpenCV Crop Frame and Save

OpenCV Crop Frame and Save 123count = 0cv2.imwrite("frame%d.jpg" % count, frame)count = count+1 123456import cv2img = cv2.imread("lenna.png")crop_img = img[200:400, 100:300] # Cro

0

Leaflet.TileLayer

Leaflet.TileLayer 출처 : http://leafletjs.com/reference.html#tilelayer TileLayer 맵상에서 타일 레이러를 불러오고 표시하는데 사용합니다. ILayer 인터페이스를 구현합니다. 사용 예 1L.tileLayer('http://{s}.tile.osm.org/{z&