This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| select articleId, userId, title, name, wdate | |
| from article | |
| order by articleId desc | |
| limit 0, 10; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import SwiftUI | |
| import ComposableArchitecture | |
| @main | |
| struct TCA_TESTApp: App { | |
| var body: some Scene { | |
| WindowGroup { | |
| // ์ต์๋จ์ NavigationStack ์ถ๊ฐ | |
| NavigationStack { | |
| AppVersionView( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import SwiftUI | |
| import ComposableArchitecture | |
| @main | |
| struct TCA_TESTApp: App { | |
| var body: some Scene { | |
| WindowGroup { | |
| AppVersionView( | |
| store: Store( | |
| initialState: AppVersion.State(), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ์คํ ์ค์ธ ๋ชจ๋ ์ปจํ ์ด๋ ์ค์ง | |
| docker stop $(docker ps -q) | |
| # ๋ชจ๋ ์ปจํ ์ด๋ ์ญ์ | |
| docker rm $(docker ps -aq) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker run --name mongodb \ | |
| -v data:/data/db \ | |
| --rm -d \ | |
| --network goals-net \ | |
| -e MONGO_INITDB_ROOT_USERNAME=max \ | |
| -e MONGO_INITDB_ROOT_PASSWORD=secret \ | |
| mongo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| brew install --cask docker |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker run -v /app/data ... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker build -t node-dep-example . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mkdir MyLibrary | |
| cd MyLibrary |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo yum update -y |
NewerOlder