├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── .npmrc ├── README.md ├── astro.config.mjs ├── package.json ├── pnpm-lock.yaml ├── src ├── assets │ ├── favicon.ico │ └── logo.png ├── components │ ├── Card.astro │ ├── Icon.astro │ └── Icons.ts ├── content │ ├── config.ts │ └── docs │ │ ├── android │ │ ├── 00-start.md │ │ ├── 01-keyword.md │ │ ├── 03-reference.md │ │ ├── 04-book.md │ │ └── 05-etc.md │ │ ├── backend │ │ ├── 00-start.md │ │ ├── 01-keyword.md │ │ ├── 02-code-reference.md │ │ ├── 03-reference.md │ │ ├── 04-book.md │ │ └── 05-etc.md │ │ ├── frontend │ │ ├── 00-start.md │ │ ├── 01-keyword.md │ │ ├── 03-reference.md │ │ ├── 04-book.md │ │ └── 05-etc.md │ │ ├── index.mdx │ │ ├── ios │ │ ├── 00-start.md │ │ ├── 01-keyword.md │ │ ├── 02-code-reference.md │ │ ├── 03-reference.md │ │ ├── 04-book.md │ │ └── 05-etc.md │ │ └── start │ │ ├── 00-start.mdx │ │ ├── 01-computer-and-code.mdx │ │ ├── 02-internet-and-protocol.mdx │ │ ├── 03-client-and-server.mdx │ │ └── 99-link.mdx ├── env.d.ts ├── plugins │ └── rehype-mermaid.js └── tailwind.css ├── tailwind.config.mjs └── tsconfig.json /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/.npmrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/README.md -------------------------------------------------------------------------------- /astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/astro.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/assets/favicon.ico -------------------------------------------------------------------------------- /src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/assets/logo.png -------------------------------------------------------------------------------- /src/components/Card.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/components/Card.astro -------------------------------------------------------------------------------- /src/components/Icon.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/components/Icon.astro -------------------------------------------------------------------------------- /src/components/Icons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/components/Icons.ts -------------------------------------------------------------------------------- /src/content/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/config.ts -------------------------------------------------------------------------------- /src/content/docs/android/00-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/android/00-start.md -------------------------------------------------------------------------------- /src/content/docs/android/01-keyword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/android/01-keyword.md -------------------------------------------------------------------------------- /src/content/docs/android/03-reference.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: 추천 공부 자료 3 | --- 4 | 5 | -------------------------------------------------------------------------------- /src/content/docs/android/04-book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/android/04-book.md -------------------------------------------------------------------------------- /src/content/docs/android/05-etc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/android/05-etc.md -------------------------------------------------------------------------------- /src/content/docs/backend/00-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/backend/00-start.md -------------------------------------------------------------------------------- /src/content/docs/backend/01-keyword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/backend/01-keyword.md -------------------------------------------------------------------------------- /src/content/docs/backend/02-code-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/backend/02-code-reference.md -------------------------------------------------------------------------------- /src/content/docs/backend/03-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/backend/03-reference.md -------------------------------------------------------------------------------- /src/content/docs/backend/04-book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/backend/04-book.md -------------------------------------------------------------------------------- /src/content/docs/backend/05-etc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/backend/05-etc.md -------------------------------------------------------------------------------- /src/content/docs/frontend/00-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/frontend/00-start.md -------------------------------------------------------------------------------- /src/content/docs/frontend/01-keyword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/frontend/01-keyword.md -------------------------------------------------------------------------------- /src/content/docs/frontend/03-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/frontend/03-reference.md -------------------------------------------------------------------------------- /src/content/docs/frontend/04-book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/frontend/04-book.md -------------------------------------------------------------------------------- /src/content/docs/frontend/05-etc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/frontend/05-etc.md -------------------------------------------------------------------------------- /src/content/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/index.mdx -------------------------------------------------------------------------------- /src/content/docs/ios/00-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/ios/00-start.md -------------------------------------------------------------------------------- /src/content/docs/ios/01-keyword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/ios/01-keyword.md -------------------------------------------------------------------------------- /src/content/docs/ios/02-code-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/ios/02-code-reference.md -------------------------------------------------------------------------------- /src/content/docs/ios/03-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/ios/03-reference.md -------------------------------------------------------------------------------- /src/content/docs/ios/04-book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/ios/04-book.md -------------------------------------------------------------------------------- /src/content/docs/ios/05-etc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/ios/05-etc.md -------------------------------------------------------------------------------- /src/content/docs/start/00-start.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/start/00-start.mdx -------------------------------------------------------------------------------- /src/content/docs/start/01-computer-and-code.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/start/01-computer-and-code.mdx -------------------------------------------------------------------------------- /src/content/docs/start/02-internet-and-protocol.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/start/02-internet-and-protocol.mdx -------------------------------------------------------------------------------- /src/content/docs/start/03-client-and-server.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/start/03-client-and-server.mdx -------------------------------------------------------------------------------- /src/content/docs/start/99-link.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/content/docs/start/99-link.mdx -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/plugins/rehype-mermaid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/plugins/rehype-mermaid.js -------------------------------------------------------------------------------- /src/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/src/tailwind.css -------------------------------------------------------------------------------- /tailwind.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsmhs/dsm-freshman-guide/HEAD/tailwind.config.mjs -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "astro/tsconfigs/strict" 3 | } 4 | --------------------------------------------------------------------------------