목록전체 글 (257)
일상 코딩
터미널 $ cd /Applications $ sudo xcode-select -s /Applications/Xcode.app

https://youtu.be/LXJhA3VWXFA MacOS M1 AppleSilicon 환경 Homebrew 통한 Docker 설치 https://codewagon.tistory.com/2 [Docker]M1 Mac에서 homebrew를 활용한 docker 설치 방가워요. 여러분! 제 소개를 할게요. 저는 참견쟁이 코드웨건이에요! 오늘 공부할 내용은 맥북에서 Docker를 설치해볼 것인데, 그 중 Apple Silicon이 장착된 M1맥북에 설치를 진행할 것 입니다. 저 같 codewagon.tistory.com Docker에 python 가상환경 구축 https://i-am-eden.tistory.com/32 도커로 파이썬 코드 실행하기, Run python code with docker DVC라는..
maze.py from enum import Enum from typing import List, NamedTuple, Callable, Optional import random from math import sqrt from urllib.parse import MAX_CACHE_SIZE from generic_search import dfs, node_to_path, Node #, bfs, astar class Cell(str, Enum): EMPTY = " " BLOCKED = "X" START = "S" GOAL = "G" PATH = "*" class MazeLocation(NamedTuple): row: int column: int class Maze: def __init__(self, rows..

from enum import Enum from typing import List, NamedTuple, Callable, Optional import random from math import sqrt from urllib.parse import MAX_CACHE_SIZE # from generic_search import dfs, bfs, node_to_path, astar, Node class Cell(str, Enum): EMPTY = " " BLOCKED = "X" START = "S" GOAL = "G" PATH = "*" class MazeLocation(NamedTuple): row: int column: int class Maze: def __init__(self, rows: int = ..
출처 https://book.naver.com/bookdb/book_detail.nhn?bid=21139328 Node.js로 서버 만들기 빠르게실무형 NODE.JS 개발자가 될 수 있도록 도와주는 실습형 입문서다.5줄로 만드는NODE.JS 서버로 핵심 개념을 파악하고,데이터베이스 연동,실시간 통신 실습을 통해 실무형 개발 지식을 습득한 book.naver.com 작동 방법 세 개의 파일이 있는 폴더로 이동 후 터미널에서 아래 코드 실행 $ node app.js 관련 라이브러리는 위의 책을 참고하는걸 추천함. app.js const http = require("http"); const express = require("express"); const app = express(); app.use(expres..

1. X64에서 작동하도록 변경 $ nvm uninstall $ arch -x86_64 zsh $ nvm install $ nvm alias default 2. 터미널 복제 후 로제타로 작동하게 한다. 3. Node.js 버전 최신버전으로 다시 설치한다. $ brew uninstall node@버전 $ brew install node 출처 https://shanabunny.com/?p=260 Solving M1 Node Version Compatibility Issue: wasm code commit Allocation failed – Shana Bunny CodeBox I received a new MacBook Air with M1 at my workplace. Apparently Node on M1..
https://truecode-95.tistory.com/182 [M1 Mac] Hombrew MySQL 설치 (1) Mysql search 1. brew search mysql Mysql 다운 2. brew install mysql 3. (에러 발생했을경우) brew install openssl * Error 발생 이유 : homebrew update 문제 * 참고 : https://jinmay.github.io/2020/05.. truecode-95.tistory.com

https://polarcompass.tistory.com/194 [MacOS/AppleSilicon] M1 MacOS DBeaver installation M1 맥에 DBeaver 설치 DBeaver 설치 $ brew install DBeaver-community ※Homebrew 설치 https://polarcompass.tistory.com/140?category=514165 MariaDB 시작 $ mysql.server start 컴퓨터 시작시 자동으로 MariaDB 시작하기 위해 터.. polarcompass.tistory.com https://polarcompass.tistory.com/195 AWS RDS에 MariaDB 인스턴스 생성 AWS RDS 사이트 https://ap-northeas..

AWS RDS 사이트 https://ap-northeast-2.console.aws.amazon.com/rds/home?region=ap-northeast-2 https://ap-northeast-2.console.aws.amazon.com/rds/home?region=ap-northeast-2 ap-northeast-2.console.aws.amazon.com

DBeaver 설치 $ brew install DBeaver-community ※Homebrew 설치 https://polarcompass.tistory.com/140?category=514165 MariaDB 시작 $ mysql.server start 컴퓨터 시작시 자동으로 MariaDB 시작하기 위해 터미널에 아래 코드 입력 $ brew services start mariadb MariaDB 실행 확인 $ brew services list MariaDB root 계정 설정 ※ 정상작동 안되도 일단 아래 코드 실행해준다. $ sudo mariadb-secure-installation 비밀번호를 입력 한 후 몇 단계 Y/N를 선택해준다. # 1 Switch to unix_socket authenticat..