본문 바로가기

전체 글247

[AI 자동화 브리핑] OpenClaw · Claude Code · n8n 최신 업데이트 (2026-03-06) ## 한 줄 요약오늘 나온 업데이트를 실무 적용 관점으로 짧게 정리. 과장 없이, 바로 확인 가능한 원문 링크 중심으로 ## 핵심 업데이트1) **[OpenClaw] openclaw 2026.3.2**- 요약: 공식 릴리즈/뉴스 항목. 상세는 원문 참고.- 원문: https://github.com/openclaw/openclaw/releases/tag/v2026.3.22) **[n8n] n8n Tunnel Service Discontinued**- 요약: We are discontinuing the n8n Tunnel Service and the related --tunnel option. This post explains why, what changes for you, and how to set up .. 2026. 3. 6.
Google Cloud 프로젝트 및 서비스 계정 생성 [1] Google Cloud 프로젝트 및 서비스 계정 생성① Google Cloud Console 접속주소: https://console.cloud.google.com/② 새 프로젝트 생성 (or 기존 프로젝트 선택)상단의 프로젝트 드롭다운 → 새 프로젝트 만들기 → 이름 지정 후 생성③ API 활성화좌측 메뉴 → "API 및 서비스" → "라이브러리""Google Sheets API" 검색 → 활성화"Google Drive API"도 함께 활성화 (시트 문서 접근 필요 시)④ 서비스 계정 만들기좌측 메뉴 → "IAM 및 관리자" → "서비스 계정"상단 "+ 서비스 계정 만들기"이름: sheets-access역할: 기본은 "프로젝트 → 편집자" (또는 API 호출만 할 거면 생략 가능)생성 완료 후 →.. 2025. 7. 25.
Docker 설치 (WSL / Debian 기준) sudo apt updatesudo apt install ca-certificates curl gnupg lsb-release -ysudo mkdir -p /etc/apt/keyringscurl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpgecho \ "deb [arch=$(dpkg --print-architecture) \ signed-by=/etc/apt/keyrings/docker.gpg] \ https://download.docker.com/linux/debian \ $(lsb_release -cs) stable" | \ sudo tee /etc/ap.. 2025. 6. 19.
zsh에 Powerlevel10k 테마 + z 플러그인 좋아, 이제 진짜 프로 개발자의 셸 세계에 입문한 거야 😎지금부터는 너만의 zsh에 Powerlevel10k 테마로 시각적 매력까지 더하고, z 플러그인으로 자주 쓰는 디렉토리 이동도 초음속으로 만들어줄게.🎨 Powerlevel10k 테마 설치필수 폰트 설치 (MesloLGS Nerd Font)Powerlevel10k 설치git clone --depth=1 https://github.com/romkatv/powerlevel10k.git \ ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/themes/powerlevel10k.zshrc 수정해서 테마 적용nano ~/.zshrc→ ZSH_THEME="robbyrussell" 라인 찾고 아래처럼 바꿔:ZSH_THEME="powerlevel1.. 2025. 6. 19.