목록분류 전체보기 (74)
보조기억장치
설치npm i zod (기본 사용법)main.tsimport { z } from "zod" const UserSchema = z.object({ username: z.string(), age: z.number(),}) type User = z.infer const user: User = { username : "Jeon" } console.log(UserSchema.parse(user))
후쿠오카 여행시 JR레일패스 시간 및 자리 조회시 활용하면 좋습니다. https://www.jrkyushu.co.jp/korean/
모듈 설치 pip3 install PyMuPdf - PDF(및 기타) 문서 의 데이터 추출, 분석, 변환 및 조작을 위한 고성능 Python 라이브러리 pip3 install pdfminer.six - PDF 문서용 텍스트 추출 도구 pip3 install pillow - Python Imaging Library 텍스트 추출하기 import re from pdfminer.high_level import extract_text, extract_pages for page_layout in extract_pages('foo.pdf'): for element in page_layout: print(element) text = extract_text('sample.pdf') print(text) pattern =..
https://www.w3schools.com/python/pandas/ref_df_iloc.asp#:%7E:text=The%20iloc%20property%20gets%2C%20or%20sets%2C%20the%20value,another%20list%3A%20df.iloc%20%5B%20%5B0%2C%202%5D%2C%20%5B0%2C%201%5D%5D Pandas DataFrame iloc Property W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, ..

.eslintrc.js 파일에 아래 내용을 추가하면 해결된다 "prettier/prettier": [ "error", { "endOfLine": "auto" }, ],
업데이트 날짜 2023-11-24 수정 내용 DSM 7.2.1 nano 2로 업데이트하면 작업 스케줄러에서 작업을 생성하거나 편집할 수 없는 문제가 수정되었습니다.
next-theme 설치 # npm i next-themes theme provider 생성 (components/theme-provider.tsx) "use client" import * as React from "react" import { ThemeProvider as NextThemesProvider } from "next-themes" import { type ThemeProviderProps } from "next-themes/dist/types" export function ThemeProvider({ children, ...props }: ThemeProviderProps) { return {children} } Layout ThemeProvider 로 감싸주기 import { ThemeP..