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

모든 공개 기록

다른 명령

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

기록 목록
(최신 | 오래됨) ( | ) (20 | 50 | 100 | 250 | 500) 보기
  • 2024년 10월 15일 (화) 01:40 Devcafe 토론 기여님이 ListView 확장 스타일 문서를 만들었습니다 (새 문서: === ListView 확장 스타일 === {| 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;" |+ ListView 확장 스타일 ! ListView 확장 스타일 !! 값 !! 설명 |- | colspan="3" | #include <ListViewConstants.au3> |- style="text-align:left;" | $LVS_EX_FULLROWSELECT || 0x00000020 || 항목을 선택하면 해당 항목과 해당...)
  • 2024년 10월 15일 (화) 01:39 Devcafe 토론 기여님이 ListView 스타일 문서를 만들었습니다 (새 문서: === ListView 스타일 === {| 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;" |+ ListView 스타일 ! ListView 스타일 !! 값 !! 설명 |- | colspan="3" | #include <ListViewConstants.au3> |- style="text-align:left;" | 기본/강제 || || $GUI_SS_DEFAULT_LISTVIEW GUICtrlCreateListView 함수를 참조하세요. |- style="te...)
  • 2024년 10월 15일 (화) 01:38 Devcafe 토론 기여님이 Linux watch 명령어 문서를 만들었습니다 (새 문서: === watch 명령어 === {| class="wikitable" |- ! 옵션 !! 상세 !! 설명 |- | -n || --interval <초> || ~초 동안 기다리고 갱신 |- | -e || --errexit || exit if command has a non-zero exit |- | -g || --chgexit || 명령어 수행중 출력화면이 변경되면 종료 |- | -p || --precise || attempt run command in precise intervals |- | -t || --no-title || 헤더 끄기 |- | -x || --execute || "sh -c" 대체하여 명령어를 실행 |- |} * 1초 마다 명...)
  • 2024년 10월 15일 (화) 01:37 Devcafe 토론 기여님이 Linux screen 문서를 만들었습니다 (새 문서: == SCREEN 사용법 == screen 은 텍스트 전용 터미널에서 가상적으로 여러개의 터미널을 사용가능하게 해주는 유틸리티 입니다. 리눅스에서 프로그래밍시 screen 유틸리티와 vi 에디터를 이용합니다. screen은 대부분의 리눅스 배포판과 unix에 설치되어 있는 것으로 알고 있지만 환경에 따라 차이가 있을 수 있습니다. // 스크린 구동을 위한 데몬 실행... <source lang=shell> $ scre...)
  • 2024년 10월 15일 (화) 01:36 Devcafe 토론 기여님이 Linux port 접속 테스트 방법 문서를 만들었습니다 (새 문서: ==Linux port 접속 테스트 방법 == === telnet === <source lang=bash> telnet IP PORT </source> * 연결 실패 시 <source lang=sql> $ telnet 10.0.2.16 9936 Trying 10.0.2.16... telnet: connect to address 10.0.2.16: Connection refused  </source> * 연결 성공 시 <source lang=sql> $ telnet 10.0.2.16 9936 Trying 10.0.2.16... Connected to 10.0.2.16. Escape character is '^]'.  </source>   === curl === <source lang=sql> curl -v telnet://IP:POR...)
  • 2024년 10월 15일 (화) 01:36 Devcafe 토론 기여님이 Linux netstat 명령어 문서를 만들었습니다 (새 문서: === netstat 명령어 === <source lang=bash> $ netstat -an | grep PORT </source> ---- * 연결을 기다리는 중 <source lang=bash> $ netstat -an | grep 9936 tcp        0      0 10.0.2.16:9936          0.0.0.0:*               LISTEN  </source> ---- * 연결 중 <source lang=bash> $ netstat -an | grep 9936 tcp        0      0 10.0.2.16:9936          10.0.2.15:54937         ESTABLISHED  ...)
  • 2024년 10월 15일 (화) 01:35 Devcafe 토론 기여님이 Label/Static 스타일 문서를 만들었습니다 (새 문서: === Label/Static 스타일 === {| 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;" |- style="text-align:left;" |+ Label/Static 스타일 |- style="text-align:left;" ! Label/Static 스타일 !! 값 !! 설명 |- | colspan="3" | #include <StaticConstants.au3> |- style="text-align:left;" | 기본/강제 || || $GUI_SS_DEFAULT_LABEL...)
  • 2024년 10월 15일 (화) 01:33 Devcafe 토론 기여님이 Ksh db2 insert sql result 문서를 만들었습니다 (새 문서: 건수 처리 <source> db2 -m "insert into test values(1)" | grep "Number of rows affected" |awk '{print $6}' | read V_COUNT echo $V_COUNT </source> KSH 전체 * fork 적용 * awk print * read var : $var로 변수입력 됨 * 언더바 처리 안됨? $DR = '+'로 처리 * 파라메터 받기 ${#} <source> #!/bin/ksh if [ ${#} -ne 3 ] then echo "use parameter :ex) ./SH_SUBUL_JOB.ksh JOBNAME SRC_TABLE day_list_2018.txt" exit 255 fi echo "dw subl db $1 $2 $3 converti...)
  • 2024년 10월 15일 (화) 01:32 Devcafe 토론 기여님이 JAVA 자바 명명 규칙 문서를 만들었습니다 (새 문서: == Java 명명 규칙 == * 개발 요소에 대한 이름으로 명명 규칙(Naming Rule)을 준수함으로써 코드의 완전성과 가독성을 향상시키고 명확한 의미 부여를 생산성을 높힐 수가 있습니다. {{틀:고지상자 |제목=Java 표준 명명 규칙(Naming Rule)의 장점 |내용=# 표준 Java 명명 규칙을 사용하면 자신과 다른 프로그래머가 코드를 더 쉽게 읽을 수 있음. # 명명 규칙 준수를 통한 개발/업...)
  • 2024년 10월 15일 (화) 01:31 Devcafe 토론 기여님이 Java dao 문서를 만들었습니다 (새 문서: ==java dao dto 예제 == https://m.blog.naver.com/khm900402/220303769941 == DAO(Data Access Object) == - 데이터베이스 관련 작업을 전담하는 클래스 - 데이터베이스에 연결하여, 입력 , 수정, 삭제, 조회 등의 작업을 하는 클래스 - CRUD 작업 C: Create => insert R: Read => select U: Update D: Delete == DTO(Data Transfer Object), VO(Value Object), Bean == - 데이터 전달 단위, 객체를 표현하는 단...)
  • 2024년 10월 15일 (화) 01:30 Devcafe 토론 기여님이 ISA 개인종합자산관리계좌 문서를 만들었습니다 (새 문서: = ISA 개인종합자산관리계좌 = * 개인종합자산관리계좌(個人綜合資産管理計座) / Individual Savings Account (ISA) * 다양한 금융상품을 한 계좌에서 통합관리하여 절세효과 == ISA의 종류 == === 일임형 === # 고객이 전문가에게 자산운용을 일임하는 유형 === 신탁형 === # 고객이 직접 운용 지시를 하여 자산운용을 하는 것 # 중간에 은행 등 전문가를 두고 자산을 관리하는 형식...)
  • 2024년 10월 15일 (화) 01:30 Devcafe 토론 기여님이 IRP 개인퇴직연금 문서를 만들었습니다 (새 문서: = IRP 개인 퇴직 연금 = *IRP는 Individual Retirement Pension의 약자, 개인형 퇴직연금 {{틀:고지상자 |제목=IRP 계좌란? |내용= 퇴직금을 입금 받는 통장이자 개인의 여유 자금을 추가로 입금할 수 있는 통장 }} == IRP 계좌의 특징 == # IRP 계좌로 입금 받으면 퇴직소득세 징수 시점이 연기된다 ## [IRP 계좌로 퇴직금을 입금받지 않는 경우] 에는 퇴직소득세가 원천징수된 금액이 지...)
  • 2024년 10월 15일 (화) 01:29 Devcafe 토론 기여님이 Hive 문법 문서를 만들었습니다 (새 문서: === HIVE 기초 문법 === {{틀:고지 상자 |내용=공통 사항 IF EXISTS : xx가 존재하면 적용 }} ==== 데이터 조회 ==== <source lang=sql> -- 데이터 조회 SELECT * FROM my_table -- 전체 데이터 조회 SELECT col_1, col_2 FROM my_table -- 열 지정하여 데이터 조회 </source> * WHERE 절 <source lang=sql> SELECT * FROM my_table WHERE col_1 >= 10 -- 조건 </source> ===== GROUP BY 그룹 ===== *: count, sum, avg, min, max 등의 집계...)
  • 2024년 10월 15일 (화) 01:28 Devcafe 토론 기여님이 HIVE 문서를 만들었습니다 (새 문서: === HIVE 하이브 아키텍처 === https://wikidocs.net/images/page/23282/hive-hadoop-architecture.png)
  • 2024년 10월 15일 (화) 01:27 Devcafe 토론 기여님이 Gta5 xbox control key 문서를 만들었습니다 (새 문서: {| class="wikitable" |- !사용 버튼(*는 길게 누르기) !! 걸을때 !! 차량탑승시 |- | Y버튼 || 차량탑승,*택시탑승 || 차량에서 내리기 |- | X버튼 || 발공격,점프 || *보조라이트(?)켜기 |- |A버튼 || 달리기핸드폰 선택(OK등)|| 핸드브래이크 |- | B버튼 || 일반공격,핸드폰내리기(back,hangup등)|| *세마네틱카매라,*타켓차량 클로징 |- |START ||메뉴켜기 || 같음 |- |BACK || 시점변경 || 같음 |-...)
  • 2024년 10월 15일 (화) 01:26 Devcafe 토론 기여님이 Git 사용법 문서를 만들었습니다 (새 문서: == Git 사용법 == == GitHub 사용법 == # ssh 접속 허용을 위한 키젠 생성 ## ssh-keygen <source lang=shell> ssh-keygen 연속엔터.. </source> ## .ssh 디렉토리로 이동 <source lang=shell> id_rsa.pub 파일 열기 후 내용 복사 </source> ## GitHub >> 우측상단 로그인아이콘 클릭후 Settings 선택 >> 좌측 메뉴의 SSH and GPG keys 선택 >> New SSH Key 등록 # Github 저장소 복제 (git clone) <source lang=shell> git clone https://gith...)
  • 2024년 10월 15일 (화) 01:25 Devcafe 토론 기여님이 Electron 문서를 만들었습니다 (새 문서: Electron == 설치 == https://kdydesign.github.io/2019/04/15/electron-tutorial/ == 보일러플레이트 == https://electron-react-boilerplate.js.org/docs/installation)
  • 2024년 10월 15일 (화) 01:24 Devcafe 토론 기여님이 Egrep 문서를 만들었습니다 (새 문서: #Look for one string: <source lang=sh> grep "string" egrep "string" grep -E "string" </source> #Look for either of two strings: <source lang=sh> egrep "string1|string2" grep -E "string1|string2" </source> # Look for either of four strings: <source lang=sh> egrep "string1|string2|string3|string4" grep -E "string1|string2|string3|string4" </source> category:linux)
  • 2024년 10월 15일 (화) 01:23 Devcafe 토론 기여님이 Dstat linux 모니터링 문서를 만들었습니다 (새 문서: == dstat 모니터링툴 == # 리눅스에서 dstat는 실시간으로 디스크별 I/O 사용량을 체크 # I/O 부하 유발을 주는 프로세스를 쉽게 확인 # I/O read/write 속도 확인 * CPU 통계: 사용자(usr) 프로세스, 시스템(sys) 프로세스의 CPU 사용량, 유휴(idl) 및 대기(wai) 프로세스 수, 하드 인터럽트(hiq) 및 소프트 인터럽트(siq). * 디스크 통계: 디스크의 총 읽기(읽기) 및 쓰기(쓰기) 작업 수입니다...)
  • 2024년 10월 15일 (화) 01:21 Devcafe 토론 기여님이 Docker Postgresql 설치 환경설정 문서를 만들었습니다 (새 문서: = Docker로 Postgresql 설치 및 환경설정 = == 개요 == {{틀:고지상자 |제목=Docker로 Postgresql 설치/삭제 및 데이터 외부저장 볼륨 생성 |내용=# Postgresql 설치 ## 설치후 Postgresql 유저/db/테이블 생성 # Docker로 컨테이너 삭제 ## 생성된 유저/db/테이블 도 같이 삭제됨을 확인 # 다시 컨테이너를 생성 ## 이전 설치된 유저/db/테이블이 있는지 확인 # 데이터 외부저장 볼륨 생성 ## 데...)
  • 2024년 10월 15일 (화) 01:20 Devcafe 토론 기여님이 DISPLAY 변수 문서를 만들었습니다 (새 문서: <big> 유닉스 Xwindow 시스템에서 DISPLAY 변수의 의미는 xterm과 같은 X응용프로그램의 화면 출력을 위해 접속할 X서버의 장소를 의미 함</big> DISPLAY 변수는 다음과 같이 4부분으로 구성 * HOSTNAME:display_number.screen_number 첫번째 '''HOSTNAME''' 은 네트워크를 통해 도달이 가능한 이름을 의미. Xmanager를 통해 접속할 경우 Xmanager가 설치된 PC의 이름 이나 IP 주소 이 HOSTNAME이 없...)
  • 2024년 10월 15일 (화) 01:20 Devcafe 토론 기여님이 Date 스타일 문서를 만들었습니다 (새 문서: === (Date) 스타일 === {| 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;" |- style="text-align:left;" |+ 날짜(Date) 스타일 |- style="text-align:left;" ! 날짜(Date) 스타일 !! 값 !! 설명 |- |- style="text-align:left;" | colspan="3" | #include <DateTimeConstants.au3> |- style="text-align:left;" | 기본/강제 ||...)
  • 2024년 10월 15일 (화) 01:18 Devcafe 토론 기여님이 Curl 설치 문서를 만들었습니다 (새 문서: === Curl 설치 === ==== Ubuntu / Debian 설치 ==== <source lang=shell> sudo apt update sudo apt install curl </source> ==== CentOS / Fedora 설치 ==== <source lang=shell> sudo yum install curl </source>)
  • 2024년 10월 15일 (화) 01:17 Devcafe 토론 기여님이 CURL 사용법 문서를 만들었습니다 (새 문서: === cURL 사용법 === * cURL은 URL 구문으로 데이터를 전송하기 위한 오픈 소스 명령줄 도구로, HTTP 및 HTTPS를 포함한 다양한 프로토콜을 지원합니다. * 이 문서의 예제에서는 cURL을 사용하여 데이터베이스 REST API에 액세스하는 방법을 보여줍니다. * cURL을 사용하여 REST API에 액세스하려면 다음 안내를 따르세요. :* 빠른 시작에 설명된 대로 cURL을 설치합니다 . :* 명령 창에...)
  • 2024년 10월 15일 (화) 01:17 Devcafe 토론 기여님이 Curl multi request 문서를 만들었습니다 (새 문서: curl은 커맨드라인에서 HTTP 요청을 보내는데 사용되는 유용한 도구 중 하나입니다. curl을 사용하여 여러 개의 HTTP 요청을 병렬로 보내고 처리하는 방법은 curl의 multi 인터페이스를 사용하는 것입니다. multi 인터페이스는 비동기적으로 여러 개의 curl 핸들을 처리하므로 여러 개의 요청을 동시에 처리할 수 있습니다. 다음은 curl multi request를 보내고 처리하는 방법의 예...)
  • 2024년 10월 15일 (화) 01:16 Devcafe 토론 기여님이 Curl cookie 문서를 만들었습니다 (새 문서: HTTP Cookies Cookie overview Cookies are name=contents pairs that an HTTP server tells the client to hold and then the client sends back those to the server on subsequent requests to the same domains and paths for which the cookies were set. Cookies are either "session cookies" which typically are forgotten when the session is over which is often translated to equal when browser quits, or the cookies are not session cookies they have expiration dates after which the client wi...)
  • 2024년 10월 15일 (화) 01:13 Devcafe 토론 기여님이 CS 그리드 추가 문서를 만들었습니다 (새 문서: <source LANG=C> public class GridRowDomain : INotifyPropertyChanged { private static DataDict _dataDict = new DataDict(); private static ObservableCollection<string> _domainClassList; public ObservableCollection<string> DomainClassList { get { return _domainClassList; } set { _domainClassList = value; NotifyPropChanged("DomainClassList"); } } private static ObservableCollection<DomainDataType> _dataTypeList; public ObservableCollect...)
  • 2024년 10월 15일 (화) 01:13 Devcafe 토론 기여님이 CS WPF DB연결 문서를 만들었습니다 (새 문서: <source lang=c> using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Imaging; using System.Windows.Navigation; using System.Windows.Shapes; using System.Data.OleDb; using System.Data; namespace WpfApplication1 { /// <su...)
  • 2024년 10월 15일 (화) 01:11 Devcafe 토론 기여님이 Chatgpt 확장 프로그램 문서를 만들었습니다 (새 문서: === 챗GPT 확장 프로그램 == === WebChatGPT === 웹 결과를 반영하게 해주는 ChatGPT 크롬 확장 프로그램 (최신 데이터 반영) === 프롬프트 지니 === : ChatGPT 자동 번역기 : 영어 기반인 ChatGPT 사용시 프롬프트, 답변 모두 자동 번역해주는 크롬 확장 프로그램 === ChatGPT for Search Engines === : 구글 ,빙(Bing) 등 각종 검색엔진에서 검색 시 ChatGPT 답변까지 함께 보여주는 크롬 확장 프로그...)
  • 2024년 10월 15일 (화) 01:10 Devcafe 토론 기여님이 Chatgpt 프롬프트 문서를 만들었습니다 (새 문서: == 좋은 프롬프트 작성법== === [1원칙]명확하고 구체적인 명령어 사용 === ==== 구분자 사용 하기 ==== # 구분자는 """, ```, <>,---, <tag> </tag> 등등 # 어떤 단락을 요약하는것이 목표라면 프롬프트에는 “ ``` 으로 구분된 텍스트를 한 문장으로 요약해라” 라고 지시할 수 있음 ## ``` 라는 구분자로 감싸져있기 때문에, 해당 문장을 분리해서 모델에게 명확한 정보를 전달하는...)
  • 2024년 10월 15일 (화) 01:07 Devcafe 토론 기여님이 Autoit 현재커셔 텍스트 읽기 문서를 만들었습니다 (새 문서: <source lang=autoit> HotKeySet("{ESC}", "Terminate") While 1 Sleep(500) GetControlFocus() WEnd Func GetControlFocus() Local $hWinHandle = WinGetHandle("[Active]") Local $sControl = ControlGetFocus($hWinHandle) Local $sText = "The active window handle is: " & $hWinHandle & @CRLF If $sControl <> "" Then $sText &= "The control with focus in the active window is: " & $sControl & @CRLF Local $aPos = ControlGetPos($hWinHandle, "", $sControl)...)
  • 2024년 10월 15일 (화) 01:02 Devcafe 토론 기여님이 Autoit UTF 문서를 만들었습니다 (새 문서: DB CAFE DB CAFE 둘러보기 대문 최근 바뀜 임의 문서로 도움말 여기를 가리키는 문서 가리키는 글의 최근 바뀜 특수 문서 목록 인쇄용 판 고유 링크 문서 정보 최근 바뀜 도움말 로그인 행위 Autoit UTF DB CAFE thumb_up 추천메뉴 바로가기 DBA { Oracle DBA 명령어 > DBA 초급 과정 > DBA 고급...)
  • 2024년 10월 15일 (화) 00:47 Devcafe 토론 기여님이 Autoit caret 문서를 만들었습니다 (새 문서: == autoit caret == === Hiding a Caret === https://www.autoitscript.com/forum/topic/160840-hide-text-cursor-caret-in-edit-control/?do=findComment&comment=1167503 category:autoit)
  • 2024년 10월 15일 (화) 00:47 Devcafe 토론 기여님이 Autoit adlib 문서를 만들었습니다 (새 문서: ==autoit adlib 함수== === AdlibRegister === * Registers an Adlib function. <source lang=autoit> AdlibRegister ( "function" [, time = 250] ) </source> ==== Parameters ==== function The name of the adlib function to be registered. time [optional] how often in milliseconds to call the function. Default is 250 ms. Return Value Success: 1. Failure: 0. ==== Remarks ==== 250ms(또는 시간 ms)마다 지정된 "함수"가 호출됩니다. 함수에 대한 첫 번째 호출은 지...)
  • 2024년 10월 15일 (화) 00:44 Devcafe 토론 기여님이 2차전지 관련주 문서를 만들었습니다 (새 문서: =2차전지 관련주= {| class="wikitable" |- ! 종 목 명 !! 사업 분야 |- |에코앤드림 || 리튬2차전지용 양극활물질의 핵심 소재인 양극활물질 전구체 소재를 생산. |- |코센 || 바나듐 레독스 플로우 배터리 전문기업 엑스알비의 지분 취득 |- |솔루스첨단소재 || 전기차용 배터리에 사용되는 핵심 소재 전지박(2차전지용 동박) 생산. |- |아이티엠반도체 || NICE그룹 계열의 2차전지...)
  • 2024년 10월 15일 (화) 00:44 Devcafe 토론 기여님이 1일이상 파일삭제 문서를 만들었습니다 (새 문서: <source lang=shell> find /home/oracle/dbwork/RTIST_pump/ -name 'EXP*.*' -mtime +1 | xargs rm -f; </source> Category:linux)
  • 2024년 10월 15일 (화) 00:42 Devcafe 토론 기여님이 (Date) 스타일 문서를 만들었습니다 (새 문서: === Date 스타일 === {| 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;" |- style="text-align:left;" |+ 날짜(Date) 스타일 |- style="text-align:left;" ! 날짜(Date) 스타일 !! 값 !! 설명 |- |- style="text-align:left;" | colspan="3" | #include <DateTimeConstants.au3> |- style="text-align:left;" | 기본/강제 || ||...)
  • 2024년 10월 15일 (화) 00:30 Devcafe 토론 기여님이 Streamlit 개발 사이트 문서를 만들었습니다 (새 문서: == Streamlit 사이트 == # 치트쉬트 https://cheat-sheet.streamlit.app/ # 오브젝트 사용법 https://extras.streamlit.app/ # 챠트데모 https://echarts.streamlit.app/ # 아파치 echart https://echarts.apache.org/examples/en/index.html#chart-type-line # 차트 https://streamlit.io/components?category=charts # 30일 공부 https://30days.streamlit.app/ # Streamlit 갤러리 https://streamlit.io/gallery)
  • 2024년 10월 15일 (화) 00:30 Devcafe 토론 기여님이 Streamlit Real-Time Data Science Dashboard 문서를 만들었습니다 (새 문서: === Streamlit Real-Time Data Science Dashboard === * streamlit_realtime_dashbaord.py <source lang=python> import streamlit as st # web development import numpy as np # np mean, np random import pandas as pd # read csv, df manipulation import time # to simulate a real time data, time loop import plotly.express as px # interactive charts # read csv from a github repo df = pd.read_csv("https://raw.githubusercontent.com/Lexie88rus/bank-marketing-analysis/master/bank.csv") st...)
  • 2024년 10월 15일 (화) 00:29 Devcafe 토론 기여님이 Streamlit real time 문서를 만들었습니다 (새 문서: ==streamlit real time chart == <source lang=python> import streamlit as st import pandas as pd import cx_Oracle import altair as alt import time import json # Function to load the database configuration from a JSON file def load_db_config(file_path): with open(file_path, 'r') as f: config = json.load(f) return config # Load the database configuration from the JSON file db_config = load_db_config('db_config.json') # Setup Oracle connection using cx_Oracle dsn_...)
  • 2024년 10월 15일 (화) 00:28 Devcafe 토론 기여님이 Streamlit os cpu disk io network 사용률 모니터링 문서를 만들었습니다 (새 문서: == Streamlit os cpu disk io network 사용률 모니터링 == <source lang=python> import streamlit as st import psutil import time import pandas as pd import plotly.express as px import streamlit as st import psutil import time import pandas as pd # Streamlit 애플리케이션 타이틀 설정 st.title("System Monitoring Dashboard") # 그래프 초기화 if 'cpu_data' not in st.session_state: st.session_state.cpu_data = [] st.session_state.disk_io_data = [] st....)
  • 2024년 10월 15일 (화) 00:27 Devcafe 토론 기여님이 Streamlit oracle query 문서를 만들었습니다 (새 문서: == Streimlit Qracle Query 그리드 출력 == <source lang=python> import streamlit as st import cx_Oracle import pandas as pd # 데이터베이스 연결 정보 USERNAME = 'dbcafe' PASSWORD = '' HOSTNAME = '127.0.0.1' PORT = 1521 SERVICE_NAME = 'ORCL' # DSN (Data Source Name) 구성 dsn_tns = cx_Oracle.makedsn(HOSTNAME, PORT, service_name=SERVICE_NAME) # Streamlit 앱 제목 설정 st.title('Oracle SQL App') def fetch_data_from_oracle(query): """ Oracle 데이터베이...)
  • 2024년 10월 15일 (화) 00:26 Devcafe 토론 기여님이 Streamlit echart 문서를 만들었습니다 (새 문서: == Streamlit Echart == * pip install streamlit_echarts <source lang=python> from streamlit_echarts import st_echarts options = { "xAxis": { "type": "category", "data": ["Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"], }, "yAxis": {"type": "value"}, "series": [ {"data": [820, 932, 901, 934, 1290, 1330, 1320], "type": "line"} ], } st_echarts(options=options) </source>)
  • 2024년 10월 15일 (화) 00:26 Devcafe 토론 기여님이 Streamlit dashboard 만들기 문서를 만들었습니다 (새 문서: == Streamlit dashboard 만들기 == === DashBoard_Plotly.py === <source lang=python> import streamlit as st import plotly.express as px import pandas as pd import os import warnings warnings.filterwarnings('ignore') st.set_page_config(page_title="Superstore!!!", page_icon=":bar_chart:",layout="wide") st.title(" :bar_chart: Sample SuperStore EDA") st.markdown('<style>div.block-container{padding-top:1rem;}</style>',unsafe_allow_html=True) fl = st.file_uploader(":file_folder: Up...)
  • 2024년 10월 15일 (화) 00:25 Devcafe 토론 기여님이 Streamlit aggrid 문서를 만들었습니다 (새 문서: * https://github.com/PablocFonseca/streamlit-aggrid?tab=readme-ov-file)
  • 2024년 10월 12일 (토) 19:59 Devcafe 토론 기여님이 현명한 투자자 문서를 만들었습니다 (새 문서: <pre> 목차 서문 1장 투자와 투기 2장 투자와 인플레이션 3장 지난 100년의 주가 흐름과 현재의 주가 수준 4장 일반 투자자의 포트폴리오 전략: 방어적 투자 5장 방어적 투자자의 주식투자 6장 공격적 투자자의 포트폴리오 전략: 삼가야 할 투자 7장 공격적 투자자의 포트폴리오 전략: 해볼 만한 투자 8장 투자와 시장 변동성 9장 펀드 투자 10장 투자 조언 11장 초보 투자자...)
  • 2024년 10월 12일 (토) 19:59 Devcafe 토론 기여님이 한국거래소 산업별 현황 문서를 만들었습니다 (새 문서: ==한국거래소 산업별 현황 조회 == * http://data.krx.co.kr/contents/MDC/MAIN/main/index.cmd * 위치 ) 기본통계 → 주식 → 세부안내)
  • 2024년 10월 12일 (토) 19:58 Devcafe 토론 기여님이 한국거래소 개별 종목 조회 문서를 만들었습니다 (새 문서: == 한국거래소 개별 종목 조회 == * http://data.krx.co.kr/contents/MDC/MDI/mdiLoader/index.cmd?menuId=MDC0201020501 * 주식 > 종목정보 > 전종목 기본정보)
  • 2024년 10월 12일 (토) 19:57 Devcafe 토론 기여님이 평균 회귀 전략 문서를 만들었습니다 (새 문서: 평균 회귀 전략은 주식 가격이 평균 가격으로 회귀하는 경향을 이용하여 매매하는 전략입니다. 일반적으로는 가격이 상대적으로 높은 지점에서 매도하고 낮은 지점에서 매수하는 방식으로 동작합니다. 파이썬을 사용하여 평균 회귀 전략을 구현하는 간단한 예를 보여드리겠습니다. <source lang=python> import pandas as pd # 주식 데이터 불러오기 data = pd.read_csv('주식데이...)
  • 2024년 10월 12일 (토) 19:56 Devcafe 토론 기여님이 패턴 인식 전략 문서를 만들었습니다 (새 문서: 4번 패턴 인식 전략은 주식 차트에서 특정한 패턴을 인식하여 매매하는 전략입니다. 이전 데이터의 가격 패턴을 분석하여 향후 발생할 수 있는 패턴을 예측하고 이를 기반으로 매매 결정을 내립니다. 파이썬을 사용하여 4번 패턴 인식 전략을 구현하는 간단한 예를 보여드리겠습니다. <source lang=python> import pandas as pd # 주식 데이터 불러오기 data = pd.read_csv('주식데이...)
(최신 | 오래됨) ( | ) (20 | 50 | 100 | 250 | 500) 보기