목록분류 전체보기 (265)
dukDukz
현재 나의 브랜치 : develop 상황 메인 : develop A가 작업 : feature/login B가 작업 : feauture/join A가 작업한 내용을 develop에 merge 하는 상황 1. develop 브랜치로 이동 git checkout develop 2. feature/login 브랜치를 pull 해옴. (충돌 나는 부분이 생길 수 있음) git pull origin feature/login https://github.com/hyejjun/react-aws-test URL에서 * branch feature/login -> FETCH_HEAD fatal: 정방향이 불가능하므로, 중지합니다. * 문제 발생 fast-forward only 옵션 끄기 git config --unset --..
https://tobegood.tistory.com/entry/Nginx%EB%A1%9C-React%EB%A5%BC-%EB%B0%B0%ED%8F%AC%ED%95%98%EA%B8%B0-%EC%9A%B0%EB%B6%84%ED%88%AC-%ED%99%98%EA%B2%BD Nginx로 React 배포하기 (우분투 환경) Nginx ? 웹 서버 소프트웨어로, 가벼움과 높은 성능을 목표로 한다. Nginx는 요청에 응답하기 위해 비동기 이벤트 기반 구조를 가진다. 이러한 구조는 서버에 많은 부하가 생길 경우의 성능을 예측 tobegood.tistory.com https://www.hanumoka.net/2019/12/29/react-20191229-react-nginx-deploy/ React를 Nginx웹 서버에..
https://somjang.tistory.com/entry/Warning-Permanently-added-0000-ECDSA-to-the-list-of-known-hosts-%ED%95%B4%EA%B2%B0%EB%B0%A9%EB%B2%95 [AWS] Warning: Permanently added '0.0.0.0' (ECDSA) to the list of known hosts. 해결방법 서버에 접속하기 위해서 $ ssh -i ~/somjang/server_keys/server_key.pem ubuntu@0.0.0.0 위와 같이 접속을 시도하였으나 아래와 같은 오류가 발생하게 되었습니다. The authenticity of host '0.0.0.0 (0.0.0.0).. somjang.tistory.com
https://somjang.tistory.com/entry/GitHub-The-requested-URL-returned-error-403-%ED%95%B4%EA%B2%B0-%EB%B0%A9%EB%B2%95-feat-macOS [GitHub] The requested URL returned error: 403 해결 방법! ( feat. macOS ) 오늘도 코딩 1일 1문제 문제를 풀고 평소처럼 $ git add . $ git commit -m "🌳 DAY453" git add와 git commit 을 한 이후에 push를 하려고 하니! remote: Support for password authentication was removed on Au.. somjang.tistory.com 정말 한참 해멨다..
https://www.geeksforgeeks.org/how-to-show-and-hide-password-in-reactjs/ How to show and hide Password in ReactJS? - GeeksforGeeks A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions. www.geeksforgeeks.org
https://astonysia-story.tistory.com/42 리액트 useState로 체크박스 컨트롤 하기 리액트로 체크박스 체크시에 다크모드, 언체크시에 라이트모드로 변경되는 코드 입니다. import React, { useState } from "react"; import "./styles.css"; import Dark from "./Dark"; import Light.. astonysia-story.tistory.com
https://velog.io/@yhe228/React-Error-Rendered-fewer-hooks-than-expected-react-hooks-%EA%B7%9C%EC%B9%99 [React Error] Rendered fewer hooks than expected 🙄 react hooks 규칙 반복문, 조건문 혹은 중첩된 함수 내에서 Hooks을 호출하면 안된다 \- 이 규칙을 따라야 항상 동일한 순서로 훅이 호출된 것을 보장받을 수 있다.🤔 WHY ?????? useState와 useEffect 여러 번 사용할 수 있 velog.io https://velog.io/@broccoliindb/Error-Rendered-fewer-hooks-than-expected.-This-may-be-caused..
https://developer-trier.tistory.com/473 React) 날짜 연산( 더하기 뺴기) 15일, 30일, 90일, 180일 나눠서 계산 const [startDate, setStartDate] = useState(new Date()) const [endDate, setsEndDate] = useState(new Date()) // 날짜 연산 함수 const _handle15day = () =>{ const to.. developer-trier.tistory.com https://usang0810.tistory.com/32 [JavaScript] yyyyMMdd, yyyy-MM-dd형식으로 오늘날짜 출력하기 먼저 new Date()로 날짜 객체를 생성하면 객체가 만들어진 날짜로 저장..