Developement4 [프로그래밍] 추상클래스와 인터페이스 참고 https://code-lab1.tistory.com/287#:~:text=%EC%B6%94%EC%83%81%20%ED%81%B4%EB%9E%98%EC%8A%A4(Abstract%20Class)%EB%8A%94,%EB%A5%BC%20%EC%83%9D%EC%84%B1%ED%95%A0%20%EC%88%98%20%EC%97%86%EB%8B%A4. [JAVA] 추상클래스와 인터페이스의 차이 추상클래스(Abstract Class)란? 추상 클래스(Abstract Class)는 추상 메서드를 선언해 놓고 상속을 통해 자식 클래스에서 메서드를 완성하도록 유도하는 클래스이다. 이러한 특성 탓에 미완성 설계도라 code-lab1.tistory.com 2023. 6. 29. [디자인] 시각 디자인 규칙 지켜지면 좋은 시각 디자인 규칙 내용 https://anthonyhobday.com/sideprojects/saferules/ Visual design rules you can safely follow every time Visual design rules you can safely follow every time You do not have to follow these rules every time. If you have a good reason to break any of them, do. But they are safe to follow every time. Use near-black and near-white instead of pure black and white anthonyhobday.com 2023. 3. 7. [Linux] 크론탭 사용법(feat. nano editor) 크론탭 사용법 // 편집 crontab -e // 작업 내용 확인 crontab -l // 전체 작업 삭제 crontab -r 실행 주기 설정 # 분 시 일 월 요일 명령 # * * * * * 실행할 명령 # ┬ ┬ ┬ ┬ ┬ # │ │ │ │ │ # │ │ │ │ │ # │ │ │ │ └───── 요일(0 - 7): 0에서 6까지 일요일에서 토요일, 혹은 이름을 사용. 7도 일요일임 # │ │ │ └────────── 월(1 - 12) # │ │ └─────────────── 일(1 - 31) # │ └──────────────────── 시(0 - 23) # └───────────────────────── 분(0 - 59) 예시 // 매 분마다 실행 * * * * * {실행 명령} or /1 * * .. 2023. 2. 20. [Git] private repository에 개발중인 project push 하기 1. private repository를 github에서 생성 2. github > settings > SSH and GPG Keys > SSH keys 설정 등록되어있는 키 확인 ls -al ~/.ssh 키 복사 pbcopy git add . > git commit -m "commit" > git branch -M main > git remote add origin git@github.com:username/reponame.git .. 2023. 2. 9. 이전 1 다음