프로그래밍(23)
-
C++ 레이싱 GUI 게임 만들기
SFML이라는 그래픽 라이브러리를 이용해서 간단한 서킷 레이싱 게임을 만들어볼것이다. SFML 설치에 대해 내가 잘 설명해놨다. https://manufacture.tistory.com/6 C++ GUI SFML 설치 1. 설치 https://www.sfml-dev.org/download/sfml/2.5.1/ SFML 2.5.1 (SFML / Download) On Windows, choosing 32 or 64-bit libraries should be based on which platform you want to compile for, not which OS.. manufacture.tistory.com 다운로드를 다 받고 설정이 끝났으면 이제 본격적으로 코드를 작성하고 해볼시간이다. 아래는 레이싱..
2019.10.06 -
C++ GUI SFML 설치
1. 설치 https://www.sfml-dev.org/download/sfml/2.5.1/ SFML 2.5.1 (SFML / Download) On Windows, choosing 32 or 64-bit libraries should be based on which platform you want to compile for, not which OS you have. Indeed, you can perfectly compile and run a 32-bit program on a 64-bit Windows. So you'll most likely want to target 32-bit platfo www.sfml-dev.org 자신의 비주얼스튜디오 버전에 맞는것을 고른다. 필자는 Visual C++ 15..
2019.10.06 -
C++ Visual Studio OpenGL GLFW 설치하고 실행하기
1. GLFW 다운로드 https://www.glfw.org/download.html GLFW - Download These packages contain the GLFW header files, documentation and release mode static libraries, DLLs and import libraries for Visual C++ 2010-2019, MinGW-w64 and plain MinGW. Binaries for Visual C++ 2010 and plain MinGW are only available in the 32-bit pack www.glfw.org 본인의 환경에 맞게 64비트 혹은 32비트를 설치한다. 압축을 해제하면, 아래와 같이 파일들이 나올 것이다 이것들 ..
2019.10.05 -
[Node.JS] Nodemailer를 활용하여 이메일 인증 발송하기
목표 : node.js의 이메일 라이브러리인 Nodemailer를 활용하여서 메일을 발송할수있다. 1. Nodemailer 설치 1 npm install nodemailer 2. Nodemailer 먼저 Nodemailer를 import해주고, 기본적인 트랜스포터를 작성해주자. 1 2 3 4 5 6 7 8 9 10 var nodemailer = require('nodemailer'); let transporter = nodemailer.createTransport({ service: "서비스메일 ex : gmail, naver", auth: { user: '이메일', pass: '이메일 계정 비밀번호' } }); Colored by Color Scripter cs transporter의 sendMail ..
2019.09.15 -
[Ubuntu] Node.JS Bcrypt 설치하기
에러- 뭐든간 sudo npm install bcrypt @1 디펜던시로 해결 sudo npm install bcrypt@1 이제 deno하는 것이 나을 것 같다.
2019.09.15