Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
# setup-react-pnpm.sh
# pnpm을 사용한 React + TypeScript + ESLint + Prettier 설정 스크립트
#설치 명령어
#curl -o setup-react-pnpm.sh https://gist.githubusercontent.com/StatPan/9c6764c3b385e4f0b7ac3c07bdb54052/raw/0a65099bc776f1d81f9270df407f20c54cab7336/vite-react-starter.sh && chmod +x setup-react-pnpm.sh && ./setup-react-pnpm.sh 프로젝트명 [옵션]
# 사용법: ./setup-react-pnpm.sh 프로젝트명 [옵션]
# 예: ./setup-react-pnpm.sh my-app
#!/bin/bash
# extension ID for vscode
extensions=(
"ms-python.python"
"ms-python.isort"
"ms-python.pylint"
"ms-python.vscode-pylance"
"ms-python.debugpy"
"ms-toolsai.jupyter"
@StatPan
StatPan / hello_world.rs
Last active March 5, 2025 03:44
Rust Hello World
fn main() {
println!("{}","hello world!");
}