본문 바로가기

Study(매일매일한걸음씩)35

Mircrosoft lists에서 계산식 열 추가하기 Microsoft lists에서 계산시 넣는 방법 정리(테슬라,현대 비교 테이블 작성중) 1. 테슬라 매출은 달러 이고 현대차 매출은 원화라서 비교하기 위해 달러 X 환율 계산식이 필요함 1. sharepoint 열기 클릭 2. 열추가->모든 형식 보기 3. 열추가하기 4. 결과확인 결국 power bi로 도식화하기 위해서 lists로 정리중이다. lists 자체에서는 만들어지지 않는듯(개인생각) 그래서 lists->sharepoint->열추가해서 해결함 2023. 1. 27.
1. React 시작하기 잘모른다. 올해는 리액트로 프로젝트 많이 해보자 1. 준비 visual studio code 설치 https://code.visualstudio.com/ Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. code.visualstudio.com node js 설치 https://nodejs.o.. 2023. 1. 17.
#1 아무것도 모른 상태에서 처음 하는 Python GUI(PySide6) - 버튼 만들기 버튼 만들기 from PySide6.QtWidgets import QApplication, QMainWindow, QPushButton import sys app = QApplication(sys.argv) window = QMainWindow() window.setWindowTitle("push button box") button = QPushButton() button.setText("Press me") window.setCentralWidget(button) window.show() app.exec() 결과 The QApplication class manages the GUI application’s control flow and main settings. The QMainWindow class p.. 2023. 1. 11.
#1 python pyside6 qt로 해보기(pyside6-uic.exe 없어서 고생함) pyside6-uic 찾아도 없어서 찾다가 고생고생 하다가 다른 사람도 고생하는 거 방지 하기위해 작성함 두가지 방법 있음 ui(qt designer 파일)을 이용하는 방법 나머지하나는 ui파일을 py로 변환해서 이용하는 방법이 있다. 순서(기본) python 설치(홈페이지) https://www.python.org/ vsc(visual studio code) 설치(홈페이지) https://code.visualstudio.com/ qt for python 설치(비주얼 스튜디오 코드 안에서) pyside6 설치 pip install PySide6 프로젝트 만들기 coding https://doc.qt.io/qtforpython/tutorials/basictutorial/widgets.html 참조 impo.. 2023. 1. 10.