서버 프로그래밍(281)
-
MongoDB export/import
mongodb 의 내용을 파일로 export 하기 $ mongoexport -d dbName -c collectionName -o filename --port 27017 export 해둔 파일을 mongodb 로 import 하기 $ mongoimport -d dbName -c collectionName --file filename --port 27017 https://blog.naver.com/awspro/222062716567 mongodb 디비 덤프하기, import export 하기 / 몽고디비 다른 버전간 디비 이전하기 몽고디비 웹사이트에서 몽고디비를 소개하고 있는 문구입니다. document-based 라는 글귀와 No database ... blog.naver.com tar 파일 압축 및..
2023.02.11 -
AWS RDS 데이터 덤프/복원 문제
아무 생각 없이 PROD 데이터베이스를 dump해서 DEV 데이터베이스에 복원을 하기 위해 DEV 데이터베이스를 DROP 했다가, 데이터 복원시 뜻밖의 에러를 만났다. ERROR 1227 (42000) at line 18: Access denied; you need (at least one of) the SUPER, SYSTEM_VARIABLES_ADMIN or SESSION_VARIABLES_ADMIN privilege(s) for this operation 백업한 수많은 SQL 파일에서 특정 커맨드를 주석 처리하는 것도 번거롭고... -- SET @@SESSION.SQL_LOG_BIN= 0; -- SET @@GLOBAL.GTID_PURGED=/*!80000 '+'*/ ''; -- SET @@SESSI..
2023.02.10 -
Babylon.js 관련 레퍼런스
https://github.com/Symbitic/awesome-babylonjs GitHub - Symbitic/awesome-babylonjs: A curated list of awesome things related to Babylon.js A curated list of awesome things related to Babylon.js - GitHub - Symbitic/awesome-babylonjs: A curated list of awesome things related to Babylon.js github.com https://babylonjs.medium.com/from-unity-to-babylon-js-how-is-the-journey-c71f79482aa3 From Unity to ..
2023.01.20 -
Python Gmail로 이메일 전송 구현
코드 자체는 간단하지만 전송용으로 사용할 Gmail 계정 세팅 부분이 복잡하다. https://coding-kindergarten.tistory.com/204 [python/smtplib] 파이썬으로 구글 Gmail 보내기 1편. SMTP의 개념과 구글 앱 비밀번호 발급받기 안녕하세요, 왕초보 코린이를 위한 코딩유치원에 오신 것을 환영합니다. 코딩유치원에서는 파이썬 기초부터 사무자동화, 웹크롤링, 데이터 분석 등의 다양한 패키지까지 초보자도 알기 쉽도록 coding-kindergarten.tistory.com https://seokhyun2.tistory.com/69 [PYTHON] gmail로 메일 보내기 python에서 gmail을 연결해서 메일을 보내는 코드를 한번 작성해보겠습니다. 메일은 SMTP..
2023.01.03 -
PeerJS를 이용한 Frontend 레벨 영상 스트리밍
https://peerjs.com/docs/#start PeerJS Documentation .browserstringif (util.browser === 'Firefox') { /* OK to peer with Firefox peers. */ } The current browser. This property can be useful in determining whether or not two peers can connect. For example, as of now data connections are not yet interoperable b peerjs.com https://peerjs.com/ PeerJS - Simple peer-to-peer with WebRTC The PeerJS librar..
2022.12.29 -
Flask Restful와 Swagger UI 연동
https://medium.com/pythonistas/automated-swagger-api-doc-with-flask-restful-a78119bc4473 Automated Swagger API Doc with Flask Restful Before diving into the blog, lets clear the air and talk about some of the terms that we are going to use in the blog extensively. medium.com 이전에는 다른 swagger 라이브러리를 사용했었는데, Flask나 기타 라이브러리의 버전이 낮아야하는 문제가 있어서 최신 버전의 Flask와 연동해서 사용할 수 있는 라이브러리를 찾아본 결과 flask-apispec이..
2022.11.30