전체 글

Here I am!
환경 winodows 11 내용 출처 왕초보를 위한 React Native 101 https://nomadcoders.co/react-native-for-beginners/lectures/3116 node.js 설치 https://nodejs.org/en expo 설치 본래 어플리케이션 개발을 위해서는 아래의 표와 같이 깔아야할께 무척 많다. 시뮬레이터, Java, Xcode, ... iOS; Objective-c, Swift 초심자인 우리는 "expo" 를 써보자. 작성한 코드에 대해 어플리케이션에서 어떻게 나타나는지 바로 확인할 수 있도록 해준다. 핸드폰으로 또한 expo 어플을 깔아야한다. mac 유저의 경우 watchman 추가 설치 ( brew install watchman ) npm insta..
· Git
ISSUE Template 경로 .github/ISSUE_TEMPLATE/feature_request.md --- name: Feature request about: 새로운 기능을 추가할 때 사용하는 템플릿 title: "[FEAT] " labels: '' assignees: 'username' --- ## Background - ## To do - [ ] PR Template 경로 .github/PULL_REQUEST_TEMPLATE.md ## PR Type - [ ] 기능 추가 - [ ] 기능 삭제 - [ ] 버그 수정 - [ ] 의존성, 환경 변수, 빌드 관련 코드 업데이트 ## Change Log - ## To Reviewer - ## Issue Tags - Closed: # - See also:..
· AboutPython
Union을 쓰는 이유 # multi_param.py from typing import Union from fastapi import FastAPI app = FastAPI() @app.get("/users/{user_id}/items/{item_id}") def read_user_item(user_id: int, item_id: str, q: Union[str, None] = None, short: bool = False): item = {"item": item_id, "owner_id": user_id} if q: item.update({"q": q}) if not short: item.update( {"description": "This is an amazing item that has a long..
https://mlops-for-mle.github.io/tutorial/docs/database/overview 0) Overview | ML Engineer를 위한 MLOps 📌 Overview of Database Chapter mlops-for-mle.github.io Overview Docker를 이용해 DB server (Postges Server) 생성 psycopg2 패키지 이용하여 테이블 생성 및 데이터 삽입 DB Server Creation DB 서버 생성 docker run -d \ --name postgres-server \ -p 5432:5432 \ -e POSTGRES_USER=myuser \ -e POSTGRES_PASSWORD=mypassword \ -e POSTGRES_DB..
scone
scone's data