Joseph.Note
취소

ubuntu 22 에 워드프레스 세팅

# 스왑 메모리 2g 세팅 wget -q https://raw.githubusercontent.com/laelbe/linux-simple-scripts/main/_server_tools/add_swapfile -O /root/add_swapfile bash /root/add_swapfile 2 free -m sudo apt update &&am...

CRA (create-react-app) 초기 세팅

create react app 설치 npx create-react-app . npm i react-router-dom app.js import "./App.css"; import { BrowserRouter, Routes, Route } from "react-router-dom"; import Header from "./components/He...

MSSQL 데이터베이스 정리 2

MS_SQL SELECT 제 기준 SQL Server 2016 with SP2 환경으로 설치하였습니다. MS_SQL Sample Database Pubs DB 다운로드 Pubs (책 판매와 출판에 대한 샘플 DB) Adventure Works DB 다운로드 Adventure Works (자전거 회사에 대한 샘플 DB) SELECT 절 pub...

MSSQL 데이터베이스 정리 1

MS_SQL 제 기준 SQL Server 2016 with SP2 환경으로 설치하였습니다. MS_SQL Sample Database Pubs DB 다운로드 Pubs (책 판매와 출판에 대한 샘플 DB) Adventure Works DB 다운로드 Adventure Works (자전거 회사에 대한 샘플 DB) Pubs 데이터베이스 생성 MS_S...

Python 자료구조와 JSON 데이터 처리

Python 자료구조와 JSON 데이터 처리 # 클라이언트와 서버 사이 데이터 교환시 # 파이썬 객체 타입을 문자열 데이터로 변환 # 파이썬 문자열 데이터를 파이썬 객체 타입으로 변환 # 파이썬 대표적인 자료 구조 4개 => List [], Tuple (), Dictionary {x: x}, Set {} 파이썬 딕셔너리 타입 # 파이썬 자...