-
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
-
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
-
40. AI 비서의 잠재적 문제점/Siri Shortcuts And Google Assistant Shortcuts Reveal The Futu
https://www.forbes.com/sites/johnkoetsier/2020/09/02/siri-shortcuts-and-google-assistant-shortcuts-reveal-the-future-and-danger-of-smart-ai-assistants/?ss=ai#66b230006976 Sep 2, 2020 by John Koetsier Jinny 요약 Apple and Google are rolling out shortcuts for AI-driven smart assistants. In doing so, they’re both showing us the near future power of AI-driven smart assistants. On the technical level..
2020.09.08