목록전체 글 (245)
일상 코딩
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..
MacOS 터미널 세팅 아래 링크 참조 후 설치 진행한다. https://polarcompass.tistory.com/140?category=514165 설치 $ brew install miniforge 삭제 $ brew uninstall miniforge conda 명령어 및 단축키 https://polarcompass.tistory.com/136?category=520069 Miniconda3 Conda 가상환경 설치 및 설정 Mini Conda 설치 1. 파이썬 버전별 설치 파일 다운로드 링크 ● Linux https://docs.conda.io/en/latest/miniconda.html#linux-installers Miniconda — Conda documentation Miniconda is..
M1 MacOS에서 python 3.6, 3.7 버전 가상환경 설정 방법은 아래 링크로 확인! https://polarcompass.tistory.com/136?category=520069 Miniconda3 Conda 가상환경 설치 및 설정 Mini Conda 설치 1. 파이썬 버전별 설치 파일 다운로드 링크 ● Linux https://docs.conda.io/en/latest/miniconda.html#linux-installers Miniconda — Conda documentation Miniconda is a free minimal install.. polarcompass.tistory.com 기준 도서 - 만들면서 배우는 파이토치 딥러닝 / 한빛미디어 python version : 3.6.1..