본문 바로가기

Footstep . 발자취

(182)
2020-03-08-My footstep today goals Did springboot(Used controlloer) * * * get up 8 get the supplements Do the diary Stretch for 30min Do exercise for an hour Study java spring 6 Do blog 7 Read books 8 Watch the movie 10 Eng words and organize ST at 11 go to bed at 11
2020-03-07-My footstep today goals Made the AWS account and googled how it works. Did springboot developing. * * * get up6 30 stretch for 15min work 9 to 4 workout 5 springboot (follow the Jay park)till 8 blog 8 to Eng words, diary 9 organize ST Eng words 9 40 blog open till 10 30 goto bed at 10 30
2020-03-06-My footstep today goals tried something new lombok test, JPA
2020-03-05-My footstep today goals public class JunitFun { int add(int a, int b) { return a + b; } int sub(int i, int j) { return i - j; } public static void main(String[] args) { JunitFun sum = new JunitFun(); int result = sum.sub(1,3); System.out.println("The result"); } //test.java @Test public void sub() { JunitFun sum = new JunitFun(); int result = sum.sub(1, 3); assertEquals(-2, result); System.out.println("sub"); }
2020-03-04-Today Eng words Supervise, Unsupervised 감독하다, 감독되지 않음 Visual 눈에 보이는 Label 딱지를 붙이다, 상표 Binary (Math) 2진법의 Hypothesis 가설 Gradient 경사 Parameter (Math) 인자, 한도 Derivative 다른 것을 본뜬 Convex 볼록한 Convex function (ML) 볼록 함수 Loss 상실 Recap 짚고 넘어가다 Multiplication 곱셈 Instance 사례, 경우 Implementation 이행, 시행 Encode, encoding 암호로 바꾸다, 인코딩 I check this words first day, second day, third day, 3days later, 7days later, 15days later, ..
2020-03-04-My footstep today goals Do unit test with Junit in intellij package Service; //Main public class JunitFun { int add(int i, int j) { return i + j; } int subtract(int i, int j) { return i - j; } } package Service; import org.junit.Test; import static org.junit.Assert.*; public class JunitFunTest { JunitFun cal = new JunitFun(); @Test public void add() { int result =cal.add(1 ,3 ); assertEquals(4, result); } } //Test pack..
2020-03-03-My footstep today goals Java keywords. sout = System.out.println(); apply plugin: 'java' apply plugin: 'eclipse' apply plugin: 'org.springframework.boot' apply plugin: 'io.spring.dependency-management' It's what we need to have for springboot 'cmd + shift + .' is to open the hide forders. spent some time to debug
2020-03-02-My footstep today goals Got to know how to avoid the inheritance of css. (add :not()) list-style-type: none; Change the structure of navigation. Change the content of pagination. Studied about java class and OOP