반응형 전체 글255 어도비 150201 오류 https://community.adobe.com/t5/acrobat-reader-discussions/installation-error-150201-after-uninstalling-on-windows-10/td-p/12930403 Installation error 150201 after uninstalling on Windows 10.Apparently I have made a grave mistake, because I uninstalled Acrobat Reader DC in the process of trying to diagnose an issue, and now I cannot reinstall it again. Every time I try to install, I get the error.. 2025. 3. 14. [Python] 메일링 자동화를 위한 안전한 gmail 연동 방법 https://yenua.tistory.com/378 [Python] html파일을 불러와서 메일 보내기import smtplibfrom email.mime.text import MIMETextfrom email.mime.multipart import MIMEMultipartimport csvimport getpass# SMTP 서버 설정#SMTP_SERVER = 'smtp.gmail.com'SMTP_SERVER = 'smtp.naver.com'SMTP_PORT = 587BOBNEWS_ID = "@"BOBNEWS_PW = getpass.getyenua.tistory.com한달 전 쯤만 해도 위 글안에 있던 글들 처럼 gmail 연동을 위해서는 2단계 인증 해제, 보안 수준이 낮은 앱 허용이라는 다소 위험.. 2024. 7. 15. 러스트 설치 + VScode extension 추천 러스트 설치https://rust-kr.org/pages/install/자세한 내용은 위 링크에서 확인이 가능하다. 리눅스나 맥, 윈도우(WSL)의 경우 아래 명령어를 통해 다운이 가능하다.curl https://sh.rustup.rs -sSf | sh -s -- --help윈도우의 경우, rustup‑init.exe(위 링크에서 확인 가능)를 다운 후 실행시켜주면 된다.해당 프로그램을 실행하게 되면 아래와 같이 터미널 창이 뜨게 되는데,표준으로 설치 시에 1번을 누르면 아래와 같이 설치가 완료가 된다. utilForever 님이 말아준 VS code extenstion 추천 리스트crates러스트 표준으로 들어간 정적분석 툴. 무조건 깔아라rust-analyzer컴파일 하기 전엔 표시안해줌. 정적분석을.. 2024. 7. 13. [Python] html파일을 불러와서 메일 보내기 import smtplibfrom email.mime.text import MIMETextfrom email.mime.multipart import MIMEMultipartimport csvimport getpass# SMTP 서버 설정#SMTP_SERVER = 'smtp.gmail.com'SMTP_SERVER = 'smtp.naver.com'SMTP_PORT = 587BOBNEWS_ID = "@"BOBNEWS_PW = getpass.getpass("Password: ")# 제목title = "메일 전송 테스트"# HTML 파일 경로html_file_path = 'test html.txt'# CSV 파일 경로#csv_file_path = 'path/to/your/emails.csv'# HTML 파일에서 .. 2024. 5. 28. 이전 1 2 3 4 ··· 64 다음 반응형