반응형 분류 전체보기59 이력서 작성하기 Wonny (워니) 님의 글 - 개발자 이력서 작성하기 https://wonny.space/writing/work/engineer-resume 개발자 이력서 작성하기 (feat. 이력서 공개) | Wonny Log이력서 작성 시 참고하면 좋을 정보와 체크리스트 공유 | 2022년 4월 8일 업데이트 안녕하세요, 워니입니다. 이력서 작성 방법에 대한 글을 올린 후, 수많은 강의 제안과 이력서 …wonny.space - 이력서 작성 체크리스 https://wonny-log.notion.site/by-Wonny-41eef16e6bdc4358b9b21006607efcad 이력서 작성 체크리스트 by Wonny | Notion이 페이지는 위 글 내용을 체크리스트로 정리한 것입니다. 이력서를 작성할 때 위 글을 읽.. 2024. 9. 1. 오픈 API 모음 https://rapidapi.com/collection/list-of-free-apis Free Public APIs for Developers## Best Public APIs for Testing (2022) Browse RapidAPI's list of the Top Free APIs. These APIs are open to the public and are free to use (or have a freemium model). This is the perfect place for developers to browse [APIs for testing](https://rapidapi.comrapidapi.comhttps://github.com/public-apis/public-apis?tab=re.. 2024. 8. 31. 티스토리 스킨 참고 우측 목차 참고https://escapefromcoding.tistory.com/809 스케줄링에 어떤 기술을 사용할까?(@Scheduled vs Spring Batch vs Quartz)개요 Quartz는 오픈소스 잡 스케쥴링 프레임워크로 자바를 사용합니다. 단순하면서도 엄청난 유연성을 가지고 있으며 이를 통해 스케쥴링 추가와 DB 클러스터링 설정을 해보겠습니다. @Scheduled vs Sescapefromcoding.tistory.com 2024. 8. 26. 개발자 블로그 모음 활동량 : 2024년 8월기준 활발함1,109 contributions in 2024https://junhyunny.github.io/" data-og-host="junhyunny.github.io" data-og-source-url="https://junhyunny.github.io/" data-og-url="https://junhyunny.github.io/" data-og-image=""> Junhyunny’s Devlogs개발자junhyunny.github.io 2024. 8. 26. [화면 전환] href vs replace 사용방법 hreflocation.href='https://naver.com'; replacelocation.replace('https://naver.com'); 가장 큰 차이점은 replace 로 처리할 때는 히스토리가 저장되지 않는다는 점이다.href로 화면을 전환하면 뒤로가를 통해 기존 화면으로 다시 돌아갈 수 있지만,replace를 통해 화면을 전환하면 히스토리가 사라져 해당 화면을 호출했던 화면으로 돌아갈 수 없다.(화면을 덮어쓰는 개념) 2024. 8. 20. 화면에서 버튼권한 처리하기 버튼 권한처리에 대한 방법 방법1. 전달받은 권한에 따라 스크립트로 버튼 보임/숨김 처리하기 (또는 활성화/비활성화)//javascriptconst isAuthorized = [권한에 따른 true/false 값];//권한이 있다면if(isAuthorized) { jQuery('#button').show(); //버튼 보이기//권한이 없다면} else { jQuery('#button').hide(); //버튼 숨기기} 해당 방법은 가장 쉬운 방법이지만 보안적으로 취약하기 때문에 권장하지는 않는 방법이다.(개발자모드에서 조금만 수정하면 바로 보이게 하거나 활성화/비활성화 처리할 수 있기 때문) 방법2. 전달받은 권한에 따라 버튼을 스크립트로 html에 그려주는 방식//javascriptconst isA.. 2024. 8. 20. 이전 1 2 3 4 5 6 7 ··· 10 다음 반응형