일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 전적 검색
- 엔에첸
- 스프링 입문을 위한 자바 객체 지향의 원리와 이해
- 프로그래머스
- 라이엇 API
- 김영한
- 자바ORM표준JPA프로그래밍
- 스프링부트
- 자바
- 최주호
- 카카오2023신입공채
- DFS
- 포트 죽이는법
- 더티체킹
- 인프런
- 조회수중복
- BFS
- java
- 올리브영 고객센터
- 인텔리제이 에러
- JPA
- 영속성
- 백준
- 백엔드 스쿨3기
- 시소 짝꿍
- 리코쳇로봇
- 테크잇
- 멋쟁이사자차럼
- already use
- 알고리즘
- Today
- Total
목록전체 글 (73)
My Blog
# 스킬 GITHUB FLOW 스프링부트 JPA 스프링 시큐리티 REDIS 기초 MariaDB 배포 기초 HTML/CSS 기초 JS 기초 # 작업물 간단한 서비스 2,3 개 - 간단한 유틸리티 서비스 - 꼭 커뮤니티 사이트가 있어야 함(로그인, 댓글, 소셜로그인 등 필수 요소가 많음)
https://www.addthis.com/ Get more likes, shares and follows with smart website tools - AddThis AddThis share buttons, targeting tools and content recommendations help you get more likes, shares and followers and keep them coming back. www.addthis.com 여기서 html에 넣을 수 있는 코드를 만들어주면 코드를 삽입하면 sns 공유 링크를 만들 수 있음.
https://www.netlify.com/ Develop and deploy websites and apps in record time | Netlify Accelerate the time to deploy your websites and apps. Bring your integrations and APIs together on one powerful serverless platform. Get started for free! www.netlify.com 내가 만든 페이지 서비스를 등록할 수 있음
https://school.programmers.co.kr/learn/courses/30/lessons/120817 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public double solution(int[] numbers) { double answer = 0; for(int i=0; i
https://school.programmers.co.kr/learn/courses/30/lessons/120829 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int solution(int angle) { int answer = 0; if(angle > 0 && angle 90 && angle < 180){ answer = 3; } else{ answer = 4; } return ..
https://school.programmers.co.kr/learn/courses/30/lessons/120806 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int solution(int num1, int num2) { int answer = 0; double data =(double)num1/(double)num2; return (int) (data * 1000); } }
https://school.programmers.co.kr/learn/courses/30/lessons/120807 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int solution(int num1, int num2) { int answer = 0; return num1 == num2 ? 1 : -1; } }
https://school.programmers.co.kr/learn/courses/30/lessons/120810 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr class Solution { public int solution(int num1, int num2) { int answer = num1%num2; return answer; } }