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

Devcafe의 사용자 기여

사용자 편집 수: 1,801건. 계정 생성일: 2024년 10월 4일 (금).
기여 검색펼치기접기
⧼contribs-top⧽
⧼contribs-date⧽
(최신 | 오래됨) ( | ) (20 | 50 | 100 | 250 | 500) 보기

2024년 11월 27일 (수)

  • 20:542024년 11월 27일 (수) 20:54 차이 역사 +1,679 새글 Highcharts를 React, Vue, Angular에서 사용새 문서: === React 환경에서 highchart 사용 === * 설치 <source lang=python> npm install highcharts highcharts-react-official </source> <source lang=python> import React from 'react'; import Highcharts from 'highcharts'; import HighchartsReact from 'highcharts-react-official'; const options = { chart: { type: 'line' }, title: { text: 'React Highcharts Example' }, series: [{ data: [1, 2, 3, 4, 5] }] }; const App = () => <HighchartsReact highcharts={Highcharts} options={opti...
  • 20:512024년 11월 27일 (수) 20:51 차이 역사 +4,560 새글 Highchart 기초새 문서: == Highcharts 사용법 == * Highcharts는 JavaScript로 작성된 데이터 시각화 라이브러리로, 다양한 차트를 생성할 수 있습니다. === Highcharts 설치 === # CDN 사용: #: HTML <script> 태그를 통해 CDN에서 Highcharts를 가져옵니다: <source lang=html> <script src="https://code.highcharts.com/highcharts.js"></script> </source> # npm 설치: #: Node.js 환경에서 설치: <source lang=python> npm install highcharts </source> === 기본 차...
  • 20:382024년 11월 27일 (수) 20:38 차이 역사 +33 챠트→‎highchart
  • 20:362024년 11월 27일 (수) 20:36 차이 역사 +35 새글 챠트새 문서: == highchart == == apache echart ==
  • 20:292024년 11월 27일 (수) 20:29 차이 역사 +2,784 새글 Highchart pandas oracle asm disksize 챠트새 문서: * highchart 와 pandas를 이용하여 오라클 asm의 디스크사이즈를 시각화 하려 한다 * 진행순서 # SQL 작성 # pandas를 이용하여 DB 데이터 취합 # highchart 의 파이 차트 출력을 위한 데이터 포멧 처리 # html(highchart)에 반영 == SQL 쿼리 == <source lang=sql> SELECT 'testdb' db_id, dg_name, total, used, free FROM v$disk_group; </source> == pandas DataFrame으로 변환== <source lang=python> import pandas as pd # 예제 데...

2024년 11월 25일 (월)

  • 23:112024년 11월 25일 (월) 23:11 차이 역사 +44 대문→‎파이썬(Python) 개발
  • 21:502024년 11월 25일 (월) 21:50 차이 역사 +838 새글 틀:타이틀 투명새 문서: <div style="position: inherit; top: 100px; left: 100px; width: 100%; border: 1px solid {{{보더색|#808080}}}; background-color: {{{배경색|#808080}}}; text-align: left; color: #ffffff; opacity: 0.9;" margin: 1.2em 0 0.7em; padding: 0.2em 0.5em; font-size: 1.2em; line-height: 1.2em; overflow: visible; font-weight: bold; -moz-border-radius: 0.5em; -webki... 최신
  • 21:492024년 11월 25일 (월) 21:49 차이 역사 +452 새글 틀:머리말새 문서: <div id="mp_goodArticle" class="mp_contentsboxtitle" style="background-color:#bbddff; margin: 1.2em 0 0.7em; padding: 0.2em 0.5em; font-size: 1.2em; line-height: 1.2em; overflow: visible; font-weight: bold; -moz-border-radius: 0.5em; -webkit-border-radius: 0.5em; border-radius: 0.5em;"> <font color="red"> <i class="material-icons icon-image-preview">{{{아이콘이름|check_circle_outline}}}</i></font> {{{제목|제목을 입력하세요}}} </div> 최신
  • 19:412024년 11월 25일 (월) 19:41 차이 역사 +8 미디어위키 기본 사용법→‎미디어 위키 문법
  • 01:422024년 11월 25일 (월) 01:42 차이 역사 +3,855 새글 윈도우 실행 명령어 모음새 문서: {| class="wikitable" ! 명령어 !! 설명 !! 절대 경로 |- | cmd || 명령 프롬프트 열기 || C:\Windows\System32\cmd.exe |- | powershell || PowerShell 열기 || C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe |- | taskmgr || 작업 관리자 실행 || C:\Windows\System32\taskmgr.exe |- | msconfig || 시스템 구성 도구 열기 || C:\Windows\System32\msconfig.exe |- | control || 제어판 열기 || C:\Windows\System32\control.exe |- | explorer || 파일 탐...

2024년 11월 23일 (토)

  • 01:302024년 11월 23일 (토) 01:30 차이 역사 +4,508 새글 SLM 튜닝예제새 문서: <source lang=python> import numpy as np import torch import torch.nn as nn import torch.optim as optim from typing import List, Dict class SQLTuningSLM(nn.Module): def __init__(self, feature_dim, hidden_dim, output_dim): super(SQLTuningSLM, self).__init__() # Feature embedding and processing layers self.feature_embedding = nn.Sequential( nn.Linear(feature_dim, hidden_dim), nn.ReLU(), nn.Dropout(0.3)... 최신

2024년 11월 20일 (수)

2024년 11월 19일 (화)

2024년 11월 18일 (월)

2024년 11월 14일 (목)

2024년 11월 12일 (화)

(최신 | 오래됨) ( | ) (20 | 50 | 100 | 250 | 500) 보기