분류 전체보기

    Linux - git 설치

    명령어# yum 업데이트sudo yum update -y# git 다운로드sudo yum install git -y# git 버전 확인git version

    git - 작업 중인 프로젝트 깃허브에 업로드하기

    1. 깃허브 레포지터리 생성깃허브 레포지터리 생성 - 깃허브 레포지터리 생성 url위 이미지와 같이 readme 파일과 gitignore 파일을 생성하지 않고 레포지터리 생성2. 명령어 실행프로젝트 디렉토리로 이동하여 아래 명령어 실행git init # 깃 로컬 저장소 생성git add . # 현재까지의 작업 전체 addgit commit -m "first commit" # 커밋 메시지 작성git branch -M master # 마스터 브런치 생성git remote add origin https://github.com/your_name/new_repo_name.git # 레포 주소 등록git push -u origin master # 푸시

    Spring - [VScode] error: invalid source release 21

    에러 발생깃헙에서 스프링 프로젝트를 clone 후 서버 실행 시 error: invalid source release 21 에러가 발생했다.해결 방법1. settings.json에 java home 경로 지정{ "java.import.gradle.java.home": "/Library/Java/JavaVirtualMachines/jdk-21.jdk/Contents/Home" // 자신의 환경에 맞는 자바 설치 경로}2. Java Language Server 작업 영역 정리Show all commands에 아래 명령어를 입력하여 Java Language Server 작업 영역 정리Java: Clean Java Language Server Workspace

    laravel - Failed to open stream: No such file or directory in /path/artisan on line 18 에러

    1. 에러 발생 깃헙에서 라라벨 프로젝트를 clone 후 서버 실행 시 위 Failed to open stream: No such file or directory in /path/artisan on line 18 에러가 발생했다. 2. 해결 방법 컴포저 패키지를 설치하지 않아서 발생한 오류였다. # 컴포저 패키지 설치 명령어 composer i

    js - 현재 페이지 url 관련 (location 객체)

    1. 자주 사용하는 location 객체 // Ex) https://test.com:80/newpost?type=post window.location.href // Ex) https: window.location.protocol // Ex) test.com:80 window.location.host // Ex) test.com window.location.hostname // Ex) 80 window.location.port // Ex) newpost window.location.pathname // Ex) ?type=post window.location.search 2. 참고 https://hianna.tistory.com/464

    laravel - 라라벨 8 + tailwindcss + git 설치 및 프로젝트 시작하기

    PHP 8.3 버전 설치 (mac os 기준) 1. 설치 brew install php@8.3 2. 정상 설치 확인 php -v 라라벨 8 버전 프로젝트 생성 (composer 사용) 1. 프로젝트 생성 composer create-project --prefer-dist laravel/laravel:^8 my-laravel-project 2. 서버 실행 cd my-laravel-project php artisan serve 3. 정상 설치 확인 http://127.0.0.1:8000/ tailwind css 설치(Laravel Mix 방식) 1. 설치 cd my-laravel-project npm install -D tailwindcss postcss autoprefixer npx tailwindcss ..

    프로그래머스 - 나의 2023년코딩테스트 연습 연말결산

    올해 겨울 뒤늦게 시작한 알고리즘 풀이를 진행하며 생각보다 내 수준이 많이 낮음을 깨닫게 되었다. 내년에는 더욱 성장할 수 있도록 많은 노력을 기울여야겠다.

    GitHub 꾸미기 관련 서비스 모음

    1. 상단바깃허브 URL - https://github.com/kyechan99/capsule-render예시 코드![header](https://capsule-render.vercel.app/api?type=waving&color=gradient&height=250&fontSize=40&fontAlignY=40&animation=fadeIn&text=소개말)2. 깃허브 스택깃허브 URL - https://github.com/anuraghazra/github-readme-stats예시 코드![깃허브 스택](https://github-readme-stats.vercel.app/api?username=깃허브아이디&show_icons=true&theme=shadow_green)3. 깃허브 커밋 스택코드 생성 ..