본문 바로가기

분류 전체보기168

[QML] Rectangle 사각형 그리기 QML에서 사각형 폴더 구조├ ─QML/│       ├ ─ qml/│               └ view.qml└ main.py // view.qmlimport QtQuick 2.9import QtQuick.Controls 2.9ApplicationWindow{ visible : true width : 640 height : 480 Rectangle{ id : rect width : 100 height : 100 x : 100 y : 100 color : "lightblue" }} # main.pyimport sysfrom PySide6.QtCore import QUrlfrom PySide6.QtG.. 2024. 6. 17.
[QML] 화면 띄우기 QML 에 대한 설명 : https://doc.qt.io/qt-6/qtqml-index.html Qt Qml | Qt QML 6.7.1 doc.qt.io pip 을 이용하여 PySide6를 설치pip install pyside6 폴더 구조├ ─QML/│       ├ ─ qml/│               └ view.qml└ main.py // view.qmlimport QtQuick 2.9import QtQuick.Controls 2.9ApplicationWindow { visible: true width: 640 height: 480} // main.pyimport sysfrom PySide6.QtCore import QUrlfrom PySide6.QtGui import QGuiAp.. 2024. 6. 3.
[Python] json 파일 읽기 //example.json{    "string": "hello world",  "number": 52,  "array": [1, 2, 3, 4, 5],    "object": {    "key": "value",    "key2": "value2"  },    "boolean": true}이라는 json 파일이 있다고 가정하고 Python으로 json 파일을 읽어서 사용하는 방법. import jsonwith open('example.json') as f: data = json.load(f) string = data['string'] number = data['number'] array = data['array'] object = data['object'] boolean.. 2024. 6. 3.
[Nodejs] typescript 환경 세팅 자세한 정보 : https://nodejs.org/en/learn/getting-started/nodejs-with-typescript Node.js — Node.js with TypeScriptNode.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.nodejs.org 자세한 정보는 링크 타고 들어가서 확인할수 있습니다. npm init -y 로 package.json 을 생성npm init -y ts-node 설치npm install ts-node types/node 설치npm install @types/node 버전에 맞는 typescript 설치 (필자는 4.1.5버전 설치)npm install typescript@4.1.5 .. 2024. 6. 3.
[nodejs] 날짜 차이 구하기 특정 날짜부터 오늘 까지의 날짜 차이 구하는 방법 특정 날짜 설정 var set_day = new Date("2024-05-01");  오늘 날짜 설정var cur_day = new Date();  차이 구하기let diff = cur_day.getTime() - set_day.getTime(); 차이를 날짜로 변환let diffDays = diff / (1000 * 3600 * 24); 출력console.log(diffDays);  전체 코드var set_day = new Date("2024-05-01");var cur_day = new Date();let diff = cur_day.getTime() - set_day.getTime();let diffDays = diff / (1000 * 3600 * .. 2024. 6. 3.
[Node.js] moment 사용하여 현재 시간 가져오기 콘솔창에서 npm 명령어를 사용하여 moment, moment-timezone을 설치 npm install momentnpm install moment-timezone 시간 확인 var moment = require("moment");require("moment-timezone");moment.tz.setDefault("Asia/Seoul");console.log(moment().format("YYYY-MM-DD HH:mm:ss")); 결과 포맷 형식YYYY 년도MM 월DD 일HH 시간mm 분ss 초 2024. 6. 3.
반응형