메뉴 여닫기
개인 메뉴 토글
로그인하지 않음
만약 지금 편집한다면 당신의 IP 주소가 공개될 수 있습니다.

모든 공개 기록

다른 명령

데브카페에서 사용할 수 있는 모든 기록이 표시됩니다. 기록 종류나 사용자 이름(대소문자 구별) 또는 영향을 받는 문서(대소문자 구별)를 선택하여 범위를 좁혀서 살펴볼 수 있습니다.

기록 목록
(최신 | 오래됨) ( | ) (20 | 50 | 100 | 250 | 500) 보기
  • 2025년 3월 19일 (수) 00:30 Devcafe 토론 기여님이 Rpa 적용사례 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Rpa 적용사례&action=delete내용: "05-2. 국내 기업의 RPA 적용 사례 https://post-phinf.pstatic.net/MjAxOTA3MjdfMjY1/MDAxNTY0MjM2ODA5Mjc5.ZBI-2JyCQeTvpdu_6bH4a4fWrdaK2SLYeLdSWqzg7jgg.mwXZVKk9YYkJ6W4J6O8SrJNUctOCE8fM9ShTVlLTYfYg.PNG/image00004.png 4차 산업혁명의 물결에 발맞추어 이미 국내에서도 RPA의 적용이 활성화되고 있다. LG전자, 현대자동차, 하나금융그룹, 우리은행...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:30 Devcafe 토론 기여님이 React 고객관리시스템 개발 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=React 고객관리시스템 개발&action=delete내용: "https://ndb796.tistory.com/211?category=1030599 category:react". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:30 Devcafe 토론 기여님이 R 크롤링 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=R 크롤링&action=delete내용: "=== R 공시 크롤링 === http://henryquant.blogspot.com/2019/02/r-dart-api.html === 로그인 처리 === 전반적인 흐름은 # 로그인하고 웹 페이지로 이동하여 정보를 수집 # 데이터 프레임을 추가 한 다음 다음 페이지로 이동 <source lang=r> library(rvest) #Address of the login webpage login<-"https://stackoverflow.com/users/login?ssrc=head&re...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:29 Devcafe 토론 기여님이 R 인코딩 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=R 인코딩&action=delete내용: "=== 국가별 로케일 이름 === 로케일 Windows Mac 로케일 이름 인코딩 방식 로케일 이름 인코딩 방식 대한민국 korean CP949 ko_KR UTF-8 미국 english ISO8859-1 en_US UTF-8 중국 chinese CP936 zh_CN UTF-8 일본 japanese CP932 ja_JP UTF-8 기본값 C ASCII C ASCII === 웹크롤링 R패키지 === ==== HTTP통신:httr,RSelenium ==== ==== HTML요소:...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:29 Devcafe 토론 기여님이 R 레이더 차트 비교 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=R 레이더 차트 비교&action=delete내용: "== 레이더 차트 비교 예제 == === 코스피 주가 비교 === <source lang=r> mt<-read.csv("D:/dev/R/kospi_diff.csv", header = T) # 1번째는 코스피,주식회사,..... price_low <- subset(mt, 구분=kospi) # 가격이 100만원에서 200만원 사이 #price_mid <- subset(mt, 가격_만원 >= 100 & 가격_만원 <200) # 가격이 200만원 이상 #price_high <- subset(mt,...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:29 Devcafe 토론 기여님이 R 데이터프레임 DATAFRAME 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=R 데이터프레임 DATAFRAME&action=delete내용: "== R 데이터프레임(DataFrame) == === 데이터프레임(DataFrame) 생성 === # data.frame( ) 함수 사용 <source lang=r> xNum <- c(1,2,3) xLog <- c(TRUE,FALSE) xChar <- c("a","b","c","d") df <- data.frame(xNum,xLog,xChar) df str(df) </source> * str( ) 함수로 데이터프레임의 구조 확인 xChar 변수는 Factor(범주형) * 즉 data.frame( ) 함수 사용시, 문자...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:28 Devcafe 토론 기여님이 R 기본 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=R 기본&action=delete내용: "Category:R == R명령어 == === 파이프 오퍼레이터 (%>%) === # 파이프 오퍼레이터는 R에서 동일한 데이터를 대상으로 연속으로 작업하게 해주는 오퍼레이터(연산자). # %>%를 사용하면 함수 간의 관계를 매우 직관적으로 표현 {| class="wikitable" |- ! 일반함수 !! R 표현.방법 |- | F(x)|| x %>% F |- | G(F(x))|| x %>%...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:28 Devcafe 토론 기여님이 R oracle 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=R oracle&action=delete내용: "# 반드시 java는 PC 버전에 맞아야 한다.(64bit) # ojdbcxx.jar는 오라클 사이트에서 다운받는다. === RJDBC 패키지 설치 === <source lang=r> installed.packages("RJDBC") </source> <source lang=r> library(RJDBC) drv <- JDBC("oracle.jdbc.OracleDriver", classPath="/Users**: Workspace/ojdbc5.jar"," ") con <- dbConnect(drv, "jdbc:oracle:thin:@10.211.55....". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:28 Devcafe 토론 기여님이 R mysql 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=R mysql&actio내용: "== R-MySQL 패키지 == === 패키지 설치 === <source lang=r> install.packages("RMySQL") </source> === SELECT,INSERT,UPDATE,DELETE === <source lang=r> # lib import library(RMySQL) dbcon<- dbConnect( MySQL(), user = 'root', password = '{설정한 비밀번호}', host = '127.0.0.1', dbname = 'testdb' ) # encoding setting dbSendQuery(dbcon, 'set character set "utf8"') #...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:27 Devcafe 토론 기여님이 R MYSQL 연결 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=R MYSQL 연결&action=delete내용: "== MYSQL + Dataframe 연결 == === Mysql 패키지 설치 === <source lang=r> install.packages("RMySQL") library(RMySQL) </source> === Mysql 연결 === <source lang=r> drv = dbDriver("MySQL") db_conn = dbConnect(drv,host="호스트",dbname="디비명",user="사용자",pass="패스워드") </source> === 테이블 목록 === <source lang=r> dbListTables(db_conn) </source> === 컬럼...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:27 Devcafe 토론 기여님이 RDD 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=RDD&action=delete내용: "=== RDD === # 스파크는 RDD(Resilient Distributed Datasets, 탄력적 분산 데이터셋)이라고 불리는 이뮤터블(immutable) 자바 가상 머신(JVM) 객체들의 집합으로 구성됨 # 이 객체들은 잡들이 매우 빠르게 연산할 수 있도록 메모리상에서 캐시되고 저장되고 계산됨 #:* 이러한 스키마는 하둡과 같은 다른 전형적인...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:27 Devcafe 토론 기여님이 Qthread 사용법 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=내용: "PyQt5 -- QThread 사용하기 & thread 간 통신하기 <source lang=python> from PyQt5.QtCore import * from PyQt5.QtWidgets import * class MyMainGUI(QDialog): def __init__(self, parent=None): super().__init__(parent) self.qtxt1 = QTextEdit(self) self.btn1 = QPushButton("Start", self) self.btn2 = QPushButton("Stop", self) self.btn3 = QP...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:26 Devcafe 토론 기여님이 Qt designer dark theme 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Qt designer dark theme&action=delete내용: "https://github.com/mervick/Qt-Creator-Darcula/releases/tag/v1.1.1 category:python". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:26 Devcafe 토론 기여님이 Qt5 table grid 위젯 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Qt5 tab내용: "== PyQt5 table grid 위젯 만들기 == === 계산기 샘플 === <source lang=python> import sys from PyQt5.QtWidgets import QWidget, QGridLayout, QPushButton, QApplication class Example(QWidget): def __init__(self): super().__init__() self.initUI() def initUI(self): self.setWindowTitle('TEST') self.setGeometry(150, 150, 100, 300)...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:26 Devcafe 토론 기여님이 Python 챗gpt 설치 chatgpt 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Python 챗gpt 설치 chatgpt&action=delete내용: "== ChatGPT == === ChatGPT 는 ? === #ChatGPT는 OpenAI에서 개발한 GPT-3(Generative Pre-trained Transformer 3) 언어 모델의 변형입니다. # 인간과 유사한 텍스트를 대화형으로 생성하도록 설계되었으며 챗봇, 언어 번역, 질의 응답 등 다양한 자연어 처리 작업에 사용할 수 있습니다. # ChatGPT를 설치하려면 OpenAI API 클라...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:25 Devcafe 토론 기여님이 Python 구글 TTS 오디오 재생 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=내용: "== 라이브러리 설치 == <source lang=shell> pip install gTTS pip install pydub pip install simpleaudio </source> == TTS 예제 == <source lang=python> import os from glob import glob from io import BytesIO from gtts import gTTS from pydub import AudioSegment from pydub.playback import play def tts(word, toSlow=True): tts = gTTS(text=word, lang="ko", slow=toSlow) fp = B...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:25 Devcafe 토론 기여님이 Python 가상환경 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Python 가상환경&action=delete내용: "== 가상환경 만들기 == * 가상화할 파이썬 버전이 미리 설치되어 있어야함. <source lang=shell> -- virtualenv는 파이썬 가상화 생성 프로그램. $pip install virtualenv $virtualenv --python=경로 가상환경이름 python=버전 </source> === 리눅스 === <source lang=shell> $python -m venv /home/cykim/venv python=3.7 (virtualenv --python=경로 가...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:25 Devcafe 토론 기여님이 Python zip 함수 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.내용: "= zip() 함수 = == 개요 == In Python 3 zip returns an iterator instead and needs to be passed to a list function to get the zipped tuples: <source lang=python> x = [1, 2, 3]; y = ['a','b','c'] z = zip(x, y) z = list(z) print(z) >>> [(1, 'a'), (2, 'b'), (3, 'c')] </source> Then to unzip them back just conjugate the zipped iterator: <source lang=python> x_back, y_back = zip(*z) print(...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:24 Devcafe 토론 기여님이 Python telegram 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Python telegram&action=delete내용: "https://vmpo.tistory.com/m/85 == 텔레그램에서 봇 생성 == # botfather 검색 # @BotFahter 로 되어있는 채팅방을 클릭 # /start 입력 # /newbot 입력 # 봇 이름 입력 (xxxx_bot) # Done! Congratulations on your new bot 메시지가 나오면 정상적으로 생성이 완료된 것 # 성공 메시지 중에서 토큰 값을 따로 저장해줍니다. # 생성한...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:24 Devcafe 토론 기여님이 Python redis sample 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Python redis sampl내용: " 기타 python redis example 세모데 2017.03.26 17:24 댓글수0 공감수 0 # -*- coding:utf-8 -*- import sys, random, time from redis import Redis, exceptions, RedisError from redis.sentinel import (Sentinel, SentinelConnectionPool,ConnectionError, MasterNotFoundError, SlaveNotFoundError) # Redis 접속 기본 설정값 listSentinel = [('10.0.10....". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:24 Devcafe 토론 기여님이 Python parameter 활용 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Python parameter 활용&action=delete내용: "=== python parameter 활용 === * 함수에서 파라미터값을 줄줄 써주어야 하는 불편함 해결 방법 * 변수에 함수 파라미터를 넣고, 해당 변수만 함수의 input값으로 주면 코드가 깔끔함. * 이를 가능하게 해주는 것이 *args와 **kwargs * 파라미터 a,b,c가 있는 함수가 있다고 한다면 <source lang=python> def func(a,b,c):...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:23 Devcafe 토론 기여님이 Python jdbc 테이블 문서를 삭제했습니다 (https://devcafe.co.kr/내용: "<source lang="python"> # -*- coding: utf-8 -*- import os import sys import jaydebeapi import jpype import jaydebeapi as jp import pandas.io.sql as pd_sql from pandas import DataFrame from PyQt5 import QtCore, QtGui, QtWidgets class Ui_MainWindow(object): def loadData(self): jHome = jpype.getDefaultJVMPath() # print(jHome) # jpype.startJVM(jHome,'-...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:23 Devcafe 토론 기여님이 Python https auto login 문서를 삭제했습니다 (https://devcafe.co.kr/내용: "== https auto login == * Python Example: <source lang=python> import requests # Define the target URL for the login page url = "https://www.example.com/login" # Define the payload to be sent with the POST request, including the username and password payload = { "username": "user", "password": "pass" } # Send a POST request to the URL with the payload response = requests.post(...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:23 Devcafe 토론 기여님이 Python faker 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Python faker&action=delete내용: "== python faker 라이브러리 == # Faker는 Python에서 가짜 데이터를 생성하기 위한 라이브러리 # 개발, 테스트, 데이터베이스를 채우거나, 교육 목적 등에서 실제 데이터를 대신할 수 있는 임의의 데이터가 필요할 때 매우 유용 # Faker는 이름, 주소, 이메일, 텍스트, 날짜 등 다양한 유형의 가짜 데이터를...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:23 Devcafe 토론 기여님이 Python class 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Python class&action=delete내용: "== 클래스 용어 == {{틀:고지상자 |제목=파이썬 CLASS 관련 용어 |내용= * '''클래스(class)''' : 멤버와 메쏘드를 갖는 객체 * '''클래스 인스턴스(class instance)'''' : 클래스를 호출하여 만들어지는 객체 * '''멤버(member)''' : 클래스의 변수 * '''메소드(method)''' : 클래스의 함수 * '''어트리뷰트(attribute)''': 속성,...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:22 Devcafe 토론 기여님이 Python Cheat Sheet 문서를 삭제했습니다 (https://devcafe.co.kr/내용: "= Python Cheat Sheet = Support/Big Data/Document/My Docs/Python/Python_CheatSheet.MD == Installation/Config == === PIP === <source lang=bash> -- list all installed packages pip list -- list only local installed packages in a virtual env pip list --local -- search a package pip list|grep <packagename> -- show the package location pip show <packagename> </source> === location of...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:22 Devcafe 토론 기여님이 Pyrhon faker 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Pyrhon faker&action=delete내용: "#넘겨주기 Python faker". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:22 Devcafe 토론 기여님이 Pyqt 트레이 프로그램 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Pyqt 트레이 프로그램&action=delete내용: " 컨텐츠 바로가기 cafe24 접속하신 사이트는 허용 접속량을 초과하였습니다. [503 Service Unavailable] 이 안내 페이지는 일일 약정 전송량(Traffic)을 초과한 경우 표시되며, 전송량은 매일 자정을 기준으로 자동 초기화됩니다. 사이트 관리자는 호스팅 홈페이지 '나의서비스관리' 메뉴에서 사양...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:21 Devcafe 토론 기여님이 Pyqt 타이머 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.ph내용: "<source lang=python> import sys from PyQt5.QtWidgets import * from PyQt5.QtCore import QTimer, QTime class MyWindow(QWidget): def __init__(self): super().__init__() self.timer = QTimer(self) self.timer.setInterval(0.5) self.timer.timeout.connect(self.timeout) self.setWindowTitle('QTimer') self.setGeometry(100, 100, 600, 280)...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:21 Devcafe 토론 기여님이 Pyqt 버튼 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?내용: "<source lang=python> #!/usr/bin/env python # coding: utf-8 # 예제 내용 # * RadioButoon 배치 import sys from PyQt5.QtWidgets import QWidget from PyQt5.QtWidgets import QRadioButton from PyQt5.QtWidgets import QGroupBox from PyQt5.QtWidgets import QBoxLayout from PyQt5.QtWidgets import QApplication from PyQt5.QtCore import Qt __author__ = "Deokyu Lim <hong18s@gmail.com>" cla...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:21 Devcafe 토론 기여님이 Pyqt db 연결 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=내용: "== PYQT5 SQL CRUD 프로그램 == === 테이블 DDL === SQLITE3 <source lang=sql> create table field ( id Integer primary key autoincrement, Name Text, Surname Text, DOB Text, Phone Text ); </source> === main.py [메인 APP] === <source lang=python> import sys from ui import * from PyQt5.QtWidgets import QApplication, QMainWindow, QMessageBox, QTableView from PyQt5 import QtSq...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:20 Devcafe 토론 기여님이 Pyqt5 다크테마 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Pyqt5 다내용: "=== 테마 설치 === <source lang=python> pip install qdarkstyle </source> === 다크 테마 사용 샘플 === <source lang=python> import sys import qdarkstyle from PyQt5 import QtWidgets # create the application and the main window app = QtWidgets.QApplication(sys.argv) window = QtWidgets.QMainWindow() # setup stylesheet app.setStyleSheet(qdarkstyle.load_stylesheet_pyqt5()) # or...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:20 Devcafe 토론 기여님이 Pyqt5 sqlite manager 샘플코드 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title내용: "== PYQT5를 이용한 SQLITE DB 관리 샘플 == === main.py === <source lang=python> #!/usr/bin/python3 # This software is distributed under the GNU Lesser General Public License (https://www.gnu.org/licenses/lgpl-3.0.en.html) # WARNING: This is not a software to be used in production. I write this software for teaching purposes. # TO DO: There lots of things to be done. This is...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:20 Devcafe 토론 기여님이 Pyqt5 ProgressBar 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Pyqt5 ProgressBar&action=delete내용: " 컨텐츠 바로가기 cafe24 접속하신 사이트는 허용 접속량을 초과하였습니다. [503 Service Unavailable] 이 안내 페이지는 일일 약정 전송량(Traffic)을 초과한 경우 표시되며, 전송량은 매일 자정을 기준으로 자동 초기화됩니다. 사이트 관리자는 호스팅 홈페이지 '나의서비스관리' 메뉴에서 사양...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:19 Devcafe 토론 기여님이 Pykioom 문서를 삭제했습니다 (https://devcafe.co.kr/내용: "=== pykiwoom api === https://github.com/sharebook-kr/pykiwoom/tree/master/pykiwoom * pykiwoom.py <source lang=python> import sys from PyQt5.QtWidgets import * from PyQt5.QAxContainer import * import pythoncom import datetime from pykiwoom import parser import pandas as pd import time import logging logging.basicConfig(filename="log.txt", level=logging.ERROR) class Kiwoom: def...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:19 Devcafe 토론 기여님이 Pyinstaller 문서를 삭제했습니다 (내용: "== 파이썬을 exe 파일로 배포 하기 == === 실행 옵션 === ==== 일반적인 옵션 ==== --distpath DIR : bundled app을 저장할 경로 (디폴트 : ./dist) --workpath WORKPATH : temporary 작업 파일을 저장할 곳 (디폴트 : ./build) --noconfirm : output 경로를 물어보지 않고 지정 (디폴트 : SPECPATH/dist/SPECNAME) --clean : 빌드하기 전에 캐...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:19 Devcafe 토론 기여님이 Pycron 사용법 문서를 삭제했습니다 (https://devcafe.co.kr/내용: "<nowiki>#</nowiki> <nowiki>#</nowiki> Python Cron <nowiki>#</nowiki> by Emilio Schapira <nowiki>#</nowiki> Copyright (C) 2003 Advanced Interface Technologies, Inc. <nowiki>#</nowiki> <nowiki>http://www.advancedinterfaces.com</nowiki> <nowiki>#</nowiki> <nowiki>http://sourceforge.net/projects/pycron/</nowiki> <nowiki>#</nowiki> <nowiki>**</nowiki> <nowiki>**</nowiki> INTRODUCTIO...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:19 Devcafe 토론 기여님이 Pycharm 설치 문서를 삭제했습니다 (https://devcafe.co.kr/내용: "3) Copy the generated keyfile to the configuration directory (idea.config.path). By default this is: Windows 7, 8, 10: <SYSTEM DRIVE>\Users\<USER ACCOUNT NAME>\.<PRODUCT><VERSION>\config Windows XP: <SYSTEM DRIVE>\Documents and Settings\<USER ACCOUNT NAME>\.<PRODUCT><VERSION>\config Linux: ~/.<PRODUCT><VERSION>/config MacOSX: ~/Library/Preferences/<PRODUCT><VERSIO...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:18 Devcafe 토론 기여님이 Py qt 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Py qt&action=delete내용: "== PYQT 기초 강의 == https://opentutorials.org/module/544 == PYQT 샘플 소스 == https://github.com/PyQt5/PyQt == PyQt6 == https://www.riverbankcomputing.com/static/Docs/PyQt6/# category:python". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:18 Devcafe 토론 기여님이 PyQt 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=PyQt&action=delete내용: "참고 : https://opentutorials.org/module/544/4998 == Pyqt5 레퍼런스 == https://www.riverbankcomputing.com/static/Docs/PyQt5/index.html # Hello World 화면 만들기 ## ui화면 만들기 QT디자이너를 이용하여 윈도우 폼을 생성한후 "xxxx.ui" 파일로 저장 (.ui파일은 xml파일임) pyuic5 -x xxxx.ui -o xxxx.py ----- ### UI 만들기 <source lang=python> # c...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:18 Devcafe 토론 기여님이 Progress Bar 스타일 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Progress Bar 스타일&actio내용: "=== Progress Bar 스타일 === {| class="wikitable" style="text-align:center; bordercolor='#000000' border=1 " |- style="font-size:14px; font-family:'Arial Black', Gadget, sans-serif !important; background-color:#c0c0c0; color:#000000;" |+ 진행률 바 (Progress Bar) 스타일 ! 진행률 바 (Progress Bar) 스타일 !! 값 !! 설명 |- | colspan="3" | #include <ProgressConstants.au3>...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:17 Devcafe 토론 기여님이 Process memory share 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Process memory share&action=delete내용: "https://docs.python.org/3/library/multiprocessing.shared_memory.html category:python". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:17 Devcafe 토론 기여님이 Powershell 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Powershell&action=delete내용: "*.bat두 번 클릭하면 관리자 권한으로 powershell 스크립트를 실행 하는 배치 파일 ( )을 만들 수 있습니다 . 이 방법으로 powershell 스크립트에서 아무것도 변경할 필요가 없습니다. 이렇게하려면 powershell 스크립트의 이름과 위치가 같은 배치 파일을 만든 후 다음 내용을 입력하십시오. <source lang=shell>...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:17 Devcafe 토론 기여님이 Postgresql regular expression 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Postgresql regular expression&action=delete내용: "=== Postgresql 정규 표현식 Regular Expression === <source lang=sql> select * from table where name ~ '^(최|김).*'; </source>". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:16 Devcafe 토론 기여님이 Postgresql connect by level 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Postgresql connect by level&action=delete내용: "== postgresql connect by 구문 == * 오라클에서 사용하는 Connect by 구문을 Postgresql 에서 사용 예시 * Oracle 에서 사용하는 connect by level 구문 <source lang=sql> SELECT LEVEL FROM DUAL CONNECT BY LEVEL <= 10 ; </source> * Postgresql <source lang=sql> SELECT LEVEL FROM GENERATE_SERIES(1,10) LEVEL; </source> category:postgresql". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:16 Devcafe 토론 기여님이 PostgreSQL DB BACKUP RESTORE 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=PostgreSQL DB BACKUP RESTORE&action=delete내용: "= PostgreSQL DB백업 과 복구 = * PGAdmin과 같은 GUI 기반의 Client Tool을 사용해서 손쉽게 Backup/Restore 가능 * Linux shell 기반 Backup/Restore 방법 == Backup == # 명령어 pg_dump 와 pg_dumpall 사용 ## dg_dump은 단일 Database를 요청한 Format으로 Bakup ## pg_dumpall은 전체 Database Cluster를 SQL script로 Backup === pg_dump 사용법 === <s...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:16 Devcafe 토론 기여님이 Pivot 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Pivot&action=delete내용: "== 오라클 피벗 == {{틀:설명상자 |내용=* 업무를 하다보면 행을 열으로 전환 한다던지, 열을 행으로 전환해야하는 업무가 간혹 발생한다. ** 이때 보통 decode 또는 case when을 통해 행 => 열 전환을 하였을 것이다. ** 이를 편하게 해결 할 수 있는 기능이 Oracle 11g 부터 제공된다. }} === PIVOT === * 행을 열...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:16 Devcafe 토론 기여님이 Pip 이용 파이썬 라이브러리 설치 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Pip 이용 파이썬 라이브러리 설치&action=delete내용: "== pip 파이썬 패키지 설치 == === 패티지 설치 pip install === <source lang=python> pip install [package Name] </source> * 안될때는 python -m 붙여 실행 *:<source lang=python>python -m pip install [package Name]</source> *:예시 pandas 라이브러리를 설치 시 <source lang=python> pip install pandas </source> === 패키지 upgrade === <source lang=python> pip...". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:15 Devcafe 토론 기여님이 Pdf 도서 검색 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=Pdf 도서 검색&action=delete내용: " * google 검색 [site://dokumen.pub The Book of Dash: Build Dashboards with Python and Plotly]". 유일한 편집자는 "Devcafe" (토론))
  • 2025년 3월 19일 (수) 00:15 Devcafe 토론 기여님이 PYTHON 데이터형 문서를 삭제했습니다 (https://devcafe.co.kr/w/index.php?title=PYTHON 데이터형&action=delete내용: "== 문자열 == #문자열 치환 ##문자열 치환시는 replace 함수 사용 : 콤마(,) 를 파이프(|)로 치환하는 예제 <source lang=python> text = 'aaa,bbb,ccc,ddd' result = text.replace(",","|") </source> ##2번째 , 까지만 치환할 경우, 파라미터에 2 추가 <source lang=python> text = 'aaa,bbb,ccc,ddd' result = text.replace(",","|", 2) </source> == 리...". 유일한 편집자는 "Devcafe" (토론))
(최신 | 오래됨) ( | ) (20 | 50 | 100 | 250 | 500) 보기