-
38. 구글의 3차원 곤충들/Google AR Animals: How To See 3D Beetles & Ladybugs Lurking In Y
www.forbes.com/sites/davidphelan/2020/07/29/google-ar-animals-how-to-see-beetles--ladybugs-lurking-in-your-home-in-3d/#5f45f4a1325dJuly 29, 2020 by David PhelanJinny 요약Google’s magnificent menagerie of 3D animals which you can see has just grown bigger with new additions. They’re all insects. The animations are incredibly detailed and rich, so they look convincing from every angle. On Android ..
2020.09.04
-
해외에서 한국사 능력 검정시험 준비하기
2019년 마흔 한살의 나는 새로운 직장으로의 이직을 시도했고, 최종 면접에서 탈락했다. 서류 전형 시 한국사 능력 검정시험 점수가 가산점을 주어 시험에 도전하게 되었다. 비록 이직에는 실패했지만, 한국사 능력 검정시험 1급 자격증을 취득했고, 마흔에 우리나라 역사에 대해 다시 공부한 것은 좋은 기회여서 정말 잘했다고 느꼈다. 해외에서의 준비과정을 공유하면 누군가에게는 도움이 될까 적어본다. 1. 한국사 능력 검정 시험을 위해서는 국사편찬위원회의 한국사 능력 검정시험 홈페이지의 안내사항을 꼼꼼히 숙지하고 회원 가입하는 것으로 시작된다. 우선 해외에서 살고 있기 때문에, 시험일정과 시험 장소의 선택이 중요하다. 본인의 공부, 비행 스케줄을 고려한 시험 일정 선택과 한국에서 체류하게 될 지역, 익숙한 지역으..
2020.08.15
-
220123-3 [코딩공부] 네이버금융 많이본뉴스 크롤링 및 워드크라우드 만들기
from selenium import webdriver from selenium.webdriver.common.by import By from selenium.webdriver.chrome.service import Service s = Service('c:/users/smile/desktop/chromedriver.exe') driver = webdriver.Chrome(service=s) url='https://finance.naver.com/news/news_list.naver?mode=RANK' driver.get(url) news_title=driver.find_element(By.CLASS_NAME,"hotNewsList") news_title2=news_title.find_elements(B..
2022.01.23
-
220123-2 [코딩공부] 쥬피터 노트북에서 wordcloud 설치 오류시 해결방법
쥬피터 노트북에서 !pip install wordcloud(워드크라우드 설치) 진행시 아래와 같은 오류가 발생하였다. 이리저리 구글링 해보고 이것저것 시도해 본 결과 내가 해결한 방법은 아래와 같다. 구글링(검색어 ERROR: Failed building wheel for wordcloud)을 하다가 발견한 방법 3가지(위 사진 아래 $) 내 경우에는 아나콘다 프롬프트에서 pip install wordcloud 또는 conda install wordcloud를 시도해 보았으나 되지 않았고 conda install -c https://conda.anaconda.org/conda-forge wordcloud를 설치해보니 문제가 해결되었다. 여전히 코끼리 다리를 더듬고 있지만 해결이 된 것 만으로도 대만족!!!
2022.01.23
-
220120 [코딩공부] 넷플릭스크롤링 영화제목가져오기
from selenium import webdriver from selenium.webdriver.chrome.service import Service s = Service('c:/users/smile/desktop/chromedriver.exe') driver = webdriver.Chrome(service=s) url='https://www.netflix.com/ph/browse/genre/839338' driver.get(url) html=driver.page_source from bs4 import BeautifulSoup soup=BeautifulSoup(html,'html.parser') section_list=soup.select('section') section=section_list[2]..
2022.01.22
-
220122 [코딩공부] 넷플릭스 크롤링 엑셀 저장하기
from selenium import webdriver from selenium.webdriver.chrome.service import Service s = Service('c:/users/smile/desktop/chromedriver.exe') driver = webdriver.Chrome(service=s) url='https://www.netflix.com/ph/browse/genre/839338' driver.get(url) html=driver.page_source from bs4 import BeautifulSoup soup=BeautifulSoup(html,'html.parser') section_list=soup.select('section.nm-collections-row') coun..
2022.01.22
-
220119 [코딩공부] daum 뉴스기사 타이틀 가져오기
2022.01.19