Skip to content

Instantly share code, notes, and snippets.

View comcxx11's full-sized avatar
๐ŸŽ
the composable architecture

SEOJIN HONG comcxx11

๐ŸŽ
the composable architecture
View GitHub Profile
@comcxx11
comcxx11 / 1.blog.sql
Last active July 7, 2025 06:55
2500704_BLOG_0001
select articleId, userId, title, name, wdate
from article
order by articleId desc
limit 0, 10;
import SwiftUI
import ComposableArchitecture
@main
struct TCA_TESTApp: App {
var body: some Scene {
WindowGroup {
// ์ตœ์ƒ๋‹จ์— NavigationStack ์ถ”๊ฐ€
NavigationStack {
AppVersionView(
import SwiftUI
import ComposableArchitecture
@main
struct TCA_TESTApp: App {
var body: some Scene {
WindowGroup {
AppVersionView(
store: Store(
initialState: AppVersion.State(),
@comcxx11
comcxx11 / bash7.bash
Created March 17, 2025 22:45
250319_BLOG_0001
# ์‹คํ–‰ ์ค‘์ธ ๋ชจ๋“  ์ปจํ…Œ์ด๋„ˆ ์ค‘์ง€
docker stop $(docker ps -q)
# ๋ชจ๋“  ์ปจํ…Œ์ด๋„ˆ ์‚ญ์ œ
docker rm $(docker ps -aq)
@comcxx11
comcxx11 / blog1.bash
Last active March 16, 2025 22:56
250317_BLOG_0001
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
@comcxx11
comcxx11 / blog1.bash
Created March 11, 2025 13:59
250311_BLOG_0001
brew install --cask docker
@comcxx11
comcxx11 / blog1.bash
Last active March 10, 2025 12:37
250309_BLOG_0001
docker run -v /app/data ...
@comcxx11
comcxx11 / blog1.bash
Created March 8, 2025 05:38
250308_BLOG_0001
docker build -t node-dep-example .
@comcxx11
comcxx11 / blog1.bash
Last active March 7, 2025 07:48
250307_BLOG_0001
mkdir MyLibrary
cd MyLibrary
@comcxx11
comcxx11 / blog1.bash
Last active March 6, 2025 01:41
250306_BLOG_0001
sudo yum update -y