프론트엔드 개발을 하다보면 보안상의 이유로 input 필드에 입력한 내용 중 일부를 마스킹처리해서 보여줘야하는 기능을 요구할 때가 있다.
[Read More]
JUnit5 에서 @RunWith 대신 @ExtendWith 사용
Spring5 + JUnit5 에서 테스트를 위하여 @RunWith(SpringRunner.class)를 선언해 사용하려고 하니
class를 찾을 수 없다며 JUnit4를 다운받아서 classpath에 추가하라고한다.
[Read More]
GitHub Pages 에 Blog Theme 를 적용하고 글 올리는 방법
왜 블로그를 써야 하는 지, GitHub pages 가 무엇인지 등은 다루지 않는다
[Read More]
Link 2019 04th
Today I Learned
1. [구직] 왜 여기서 일하고 싶은지 물어볼때 대답하는 방법
How to Answer ‘Why Do You Want to Work Here?’ in a Job Interview
[Read More]
How to Sort - C#
```c#
int[] arr = {1, 4, 3, 2};
List list = arr.ToList();
[Read More]