분류 전체보기 (81) 썸네일형 리스트형 [WoW] Addon 참고 World of Warcraft Addons - https://www.curseforge.com/wow Clique - https://www.curseforge.com/wow/addons/cliqueDetails! Damage Meter - https://www.curseforge.com/wow/addons/detailsImmersion - https://www.curseforge.com/wow/addons/immersionItem Tooltip Enhancer - https://www.curseforge.com/wow/addons/item-tooltip-enhancerPetTracker - https://www.curseforge.com/wow/addons/pettrackerSavedInstances .. [Ubuntu] Server Desktop(GUI) Installation # sudo apt-get install xauth # sudo apt-get install xorg # sudo apt-get install openbox # sudo apt-get install ubuntu-desktop https://help.ubuntu.com/community/ServerGUI ServerGUI - Community Help Wiki Introduction This guide discusses the use of a Graphical User Interface (GUI) and/or desktop environment on Ubuntu servers. Conventional wisdom states that in most cases it is better to not instal.. [Python] sqlite3 모듈 사용 예제 import sqlite3 def create_lotto645_db(): conn = sqlite3.connect('lotto645.db') c = conn.cursor() c.execute('''CREATE TABLE T_LOTTO645NUM (NUM INT, CONSTRAINT T_LOTTO645NUM_NUM_PK PRIMARY KEY(NUM))''') c.execute('''CREATE TABLE T_LOTTO645 (ROUND INT, NO1 INT, NO2 INT, NO3 INT, NO4 INT, NO5 INT, NO6 INT, NO7 INT, CONSTRAINT T_LOTTO645_ROUND_PK PRIMARY KEY(ROUND))''') c.execute('''CREATE VIEW V_LOT.. [Ubuntu] DB Browser for SQLite Installation # sudo add-apt-repository -y ppa:linuxgndu/sqlitebrowser # sudo apt-get update # sudo apt-get install sqlitebrowser Downloads - DB Browser for SQLite (sqlitebrowser.org) Downloads - DB Browser for SQLite (Please consider sponsoring us on Patreon 😄) Windows Our latest release (3.12.2) for Windows: Free code signing provided by SignPath.io, certificate by SignPath Foundation. Windows PortableApp N.. [Python] TensorFlow(2.14) Installation (Ubuntu, Nvidia GPU, + PyTorch) 1. 버전 조합 개요Ubuntu: 22.04 LTSPython: 3.10Clang: 16Nvidia Driver: 설치할 CUDA Toolkit 버전의 요구사항 충족 되는 버전 이상이면 무방할듯..(그냥 최신 버전 설치함)CUDA Toolkit: 11.8cuDNN: 8.7.0.84TensorRT: 8.6.1.6TensorFlow: 2.14 2. Download CUDA Toolkit: https://developer.nvidia.com/cuda-11-8-0-download-archive?target_os=Linux&target_arch=x86_64&Distribution=Ubuntu&target_version=22.04&target_type=runfile_local CUDA Toolkit 11.8 Do.. [Python] random 모듈 사용 예제 # 로또 반자동 숫자 만들기 예제 import random lotto = [] for i in range(1, 46): lotto.append(i) for i in range(4): print(sorted(random.sample(lotto, i+1))) [Ubuntu] Clang Installation # wget https://apt.llvm.org/llvm.sh # chmod +x llvm.sh # sudo ./llvm.sh 16 all # sudo vi /etc/profile.d/llvm.sh export LLVM_HOME=/lib/llvm-16 export PATH=$PATH:$LLVM_HOME/bin 저장 # source /etc/profile.d/llvm.sh 참고: https://apt.llvm.org/ LLVM Debian/Ubuntu packages The goal is to provide Debian and Ubuntu nightly packages ready to be installed with minimal impact on the distribution. Packages are .. [Python] calendar, datetime 모듈 사용 예제 # 올해 중 오늘의 일수 구하는 예제 import calendar from datetime import date today = date.today().isoformat().split('-') yeardays = 0 for i in range(int(today[1])): if i > 0: yeardays += calendar.monthrange(int(today[0]),i)[1] yeardays += int(today[2]) print("Today is the", yeardays, "days of the year") 이전 1 2 3 4 ··· 11 다음