참고 사항 및 기타

    훌륭한 무료 캡쳐 프로그램 Snagit

    https://www.techsmith.com/download/snagit/ Download Free Trial | Snagit | TechSmith Try Snagit for free You will need to create a TechSmith Account after you download your trial. We'll also send you a few emails to help you get started. Unsubscribe at any time. Subject to the Snagit End User License Agreement, TechSmith grants you a no www.techsmith.com

    Git commit push 에러 (로그인 인증, 버전 업그레이드)

    Git push중에 아래와 같은 에러가 발생했다. 직전에 에러가 있는 클래스가 있는 채로 commit push한 후에 해당 에러없애려고 리턴타입 맞춰서 User 생성후 return 한 상황 private User saveNewUser(OAuthAttributes attributes) { OAuthAttributes user = attributes.builder() .username(attributes.getEmail()) .email(attributes.getEmail()) .nickname(attributes.getNickname()) .role(attributes.getRole()) .build(); // return User인데 Object 타입 불일치 // User a = new User(); /..

    Extracting Titles

    # 2.6 NomadCoder 니코쌤의 python 크롤링 강좌 indeed 사이트 title 추출하기 import requests from bs4 import BeautifulSoup LIMIT = 50 URL = f"https://www.indeed.com/jobs?q=python&limit={LIMIT}" def extract_indeed_pages(): result = requests.get(URL) soup = BeautifulSoup(result.text, "html.parser") pagination = soup.find("div", {"class":"pagination"}) links = pagination.find_all('a') pages = [] for link in links[:-1..

    Why can't I divide by dots in string.split in Java?

    이유는 .(dot)는 정규식 예약어이기 때문이다. \n(개행문자)를 제외한 모든 문자를 의미한다. 모든 문자를 split하면서 모두 없어진 것 그래서 .을 기준으로 나누고 싶다면 \\. 으로 나눠야 한다. String[] stringArr = new String[3]; String s = "LeetCode@LeetCode.com"; String[] temp = s.split("@"); stringArr[0] = temp[0]; temp = temp[1].split("\\."); stringArr[1] = temp[0]; stringArr[2] = temp[1]; 출처 marobiana.tistory.com/137 Java String split 또는 replace 할 때 .(Dot, 점) 안되는 현상 내..

    자바EE와 스프링

    okky.kr/article/415474 OKKY | 자바EE의 역사 및 스프링과의 관계 다른 글타래 에서 어느 분이 스프링( Spring Framework )과 자바EE( Java Enterprise Edition )의 관계에 대해 질문을 주셔서 답글을 쓰다가, 어쩌면 경력이 길지 않은 다른 개발자 분들도 잘 모르실 수 있는 okky.kr

    트리 순회 위키피디아

    ko.wikipedia.org/wiki/%ED%8A%B8%EB%A6%AC_%EC%88%9C%ED%9A%8C 트리 순회 위키백과, 우리 모두의 백과사전. 전산학에서 트리 순회(Tree traversal)는 트리 구조에서 각각의 노드를 정확히 한 번만, 체계적인 방법으로 방문하는 과정을 말한다. 이는 노드를 방문하는 순서에 ko.wikipedia.org