본문 바로가기

분류 전체보기38

마우스 오버 시 이미지 커지는 것 1. HTML/CSS 참고하면 좋은 책 https://wikidocs.net/profile/info/book/15011 위키독스 온라인 책을 제작 공유하는 플랫폼 서비스 wikidocs.net 2. HTML/CSS 튜토리얼 https://www.w3schools.com/html/default.asp HTML Tutorial W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more. www.w3schools.com .. 2024. 4. 8.
무료 스타일시트 CSS https://tailwindcss.com/ Tailwind CSS - Rapidly build modern websites without ever leaving your HTML. Tailwind CSS is a utility-first CSS framework for rapidly building modern websites without ever leaving your HTML. tailwindcss.com 설치법은 https://tailwindcss.com/docs/installation Installation - Tailwind CSS The simplest and fastest way to get up and running with Tailwind CSS from scratch is with .. 2024. 4. 8.
파일 불러와서 저장하는 GUI 1. 파일 불러와서 저장하는 GUI import sys from PyQt5.QtWidgets import * from PyQt5.QtCore import * import os class App(QMainWindow): def __init__(self): super().__init__() self.initUI() def initUI(self): menubar = self.menuBar() menu1 = menubar.addMenu('파일') menu2 = menubar.addMenu('편집') menu3 = menubar.addMenu('선택 영역') loadFile = QAction('불러오기', self) loadFile.setShortcut('Ctrl+O') loadFile.triggered.conn.. 2024. 4. 4.
설치 필요 없는 에디터 프로그램 추천 파이썬, 자바, C언어, C++, C#, R compiler 등 등 하나하나 다 설치하기 힘들죠. 설치 필요없이 온라인에서 쉽게 작업할 수 있는 에디터 프로그램이라 편리합니다. https://www.programiz.com/python-programming/online-compiler/ HTML, CSS, JQury를 실습하기 좋은 에디터 프로그램. https://codepen.io/ 코드샌드박스도 유명하죠 https://codesandbox.io/ https://codesandbox.io/ Reliable and secure We keep your code always private and secure. You get flexible permissions, access control, security .. 2024. 4. 3.
파이썬 가상 환경 만들기 파이썬의 유용한 모듈이 참 많습니다. 플라스크(Flask), 장고(Django), 넘파이(NumPy) 등 등. 외부 모듈은 pip install로 다운을 받아 사용할 수 있습니다. 그런데, 이 모든 걸 다 설치하면, 메모리 부하가 있을 수 있으니 가상환경을 만들어 이곳에서만 라이브러리를 돌리는 게 좋습니다. 물론 요즘은 컴퓨터가 다들 좋으니 그냥 설치해도 무방합니다. 1. 가상환경으로 사용할 아무 폴더를 만듭니다. 윈도우의 명렴프롬프트 (cmd)를 열고 가상폴더를 생성하는 명령을 씁니다. python -m venv 폴더명 //python -m venv Venv 2. 가상환경 폴더가 생성되었습니다. 폴더 안에 온갖 파일과 폴더가 만들어져 있죠 3. 가상환경으로 들어오려면 명령프롬프트에 아래 명령을 쓰시면 .. 2024. 4. 3.
진짜 많이 쓰는 파이썬 GUI. PyQt5 모듈 1. 파이썬 GUI로 PyQt5 모듈을 가장 많이 사용합니다. 일단 예브게 생겼고 기능이 많거든요. 설치는 이곳에 친절히 설명되어 있습니다. https://wikidoc.tistory.com/13 파이썬 가상 환경 만들기 import sys from PyQt5.QtWidgets import QApplication, QWidget # 외부 라이브러리를 쓰려고 하면 파이썬의 유용한 라이브러리가 참 많거든요. Flask, Math, beautiful soup 등 등. 자체 내장되어 있는 라이브러리가 아니 wikidoc.tistory.com 2. PyQt5 모듈 설명이 잘되어 있어요. https://codetorial.net/pyqt5/index.html PyQt5 Tutorial - 파이썬으로 만드는 나만의 .. 2024. 4. 3.