분류 전체보기

·Spring
REST APIs Explained - 4 ComponentsHow web applications talk to servers: 1. Basic format; 2. HTTP verbs; 3. URL endpoints; 4. Status codes.mannhowie.com 기본 개념 REST API는 웹에서 정보를 얻고자 하는 클라이언트(사람 또는 애플리케이션)와 그 정보를 접근할 수 있는 서버(애플리케이션 또는 데이터베이스) 간에 가장 일반적으로 사용되는 표준이다.애플리케이션 프로그래밍 인터페이스(API)두 컴퓨터가 웹을 통해 서로 통신할 수 있는 방법배달 앱에서 자체적으로 위치 추적 시스템을 구축하는 대신 Google Maps API를 사용하여 위치 추적을 지원할 수 있다.RESTfulREST 표준을 ..
·Flutter
GetPage( name: '/main', page: () => const MainViewPage(), binding: MainBinding(), fullscreenDialog: true, transition: Transition.downToUp, popGesture: true), transition: Transition.downToUp만 적용하면 왼쪽에서 오른쪽으로 가다가 아래에서 올라와서 부자연스럽다 fullscreenDialog: true, popGesture: true 둘 다 써야한다.
·Git&GitHub
https://www.coursera.org/learn/introduction-git-github Introduction to Git and GitHubGoogle에서 제공합니다. In this course, you’ll learn how to keep track of the different versions of your code and configuration files using a popular ... 무료로 등록하십시오.www.coursera.org branch특정 커밋을 가리키는 포인터, 각 브랜치는 프로젝트의 개발 히스토리에서 최신 커밋을 나타낸다.master branch는 프로젝트의 안정된 상태를 나타내며, 새로운 기능을 개발할 때마다 새로운 브랜치를 생성하여 작업한다.각 브랜치에서의 작업..
·Git&GitHub
Introduction to Git and GitHubGoogle에서 제공합니다. In this course, you’ll learn how to keep track of the different versions of your code and configuration files using a popular ... 무료로 등록하십시오.www.coursera.org  변경 사항 되돌리기git checkout 스테이징되지 않은 파일의 변경사항을 되돌릴 수 있다.파일을 마지막 스토리지 스냅샷으로 되돌린다. git reset스테이징된 변경 사항을 되돌려야 하는 경우 사용할 수 있다.add의 반대 기능add : 변경 사항을 스테이징 영역에 추가reset : 스테이징 영역에서 변경 사항 제거 커밋 수정하기git co..
·Git&GitHub
Introduction to Git and GitHubGoogle에서 제공합니다. In this course, you’ll learn how to keep track of the different versions of your code and configuration files using a popular ... 무료로 등록하십시오.www.coursera.org  git commit -a기본적인 Git 워크 플로우 : make changes -> stage them -> commit them현재 변경 사항이 커밋하고자 하는 것이면 스테이징 단계를 건너뛰고 직접 커밋할 수 있다. 추적된 파일의 변경 사항을 스테이징하고 한 번에 커밋 => git add 단계를 건너뛴다. 스테이징 영역을 건너뛰므로 커밋을 생..
·Git&GitHub
Introduction to Git and GitHubGoogle에서 제공합니다. In this course, you’ll learn how to keep track of the different versions of your code and configuration files using a popular ... 무료로 등록하십시오.www.coursera.org  Git  기본 설정VCS는 누가 어떤 변경을 했는지 추적하는데 이 작업을 위해 Git에게 나를 알려줘야 한다.git config --global user.email "me@example.com"git config --global user.name "My name"  git config 명령어를 사용하고 이메일과 이름을 설정--global : 사..
G.H
'분류 전체보기' 카테고리의 글 목록 (11 Page)