본문 바로가기

분류 전체보기244

앱스토어 리뷰 정보 가져오기 구글 플레이는 신규 리뷰 등록시 지메일을 통해 알림을 받을 수 있다 하지만 앱스토어는 알림을 받을 수 없다 커넥트 앱을 설치하면 되지만 오류가 많고 알림이 안올 때도 있다 앱팔로우 같은 사이트를 이용해도 되지만 굳이 돈을 낼 정도는 아니고 rss 정보를 이용해 파이썬으로 해봤는데... 전체 국가를 조회하면 굉장히 느려서 쓸만하지 않다 그래서 그냥 크롬 북마크의 모두 열기를 사용하기로 함 import feedparser urls = { # 스포티파이 'kr': 'https://itunes.apple.com/kr/rss/customerreviews/id=324684580/sortBy=mostRecent/xml', 'us': 'https://itunes.apple.com/us/rss/customerreview.. 2021. 5. 4.
크롬에서 보안 DNS 사용하기 1. 크롬 주소표시줄에서 아래와 같이 이동 chrome://settings/security 2. 보안 DNS 사용 > 다음 항목 사용 > 맞춤설정 https://security.cloudflare-dns.com/dns-query ping 속도에서 1.1.1.2 가 좀 빠르고 멀웨어 방지도 가능해서 셋팅함 ---- comterman.tistory.com/2436 2021. 4. 23.
exe 성능 추세 확인하기 (메모리 누수 체크) docs.microsoft.com/en-us/sysinternals/downloads/process-explorer Process Explorer - Windows Sysinternals Find out what files, registry keys and other objects processes have open, which DLLs they have loaded, and more. docs.microsoft.com * 실행 중인 exe의 속성 > 퍼포먼스 그래프 아래와 같은 경우 메모리 누수가 의심된다 --- 더 자세한 분석은 Windows Performance Toolkit 으로 확인 2021. 2. 1.
라즈베리파이에 freshRSS 설치 피들리 구독을 끊고 Reeder 앱에서 로컬로 써보니 왕 불편 그래서 Reeder에서 지원하는 freshRSS를 라즈베리파이에 도커로 설치함 사전 작업 : https://myinbox.tistory.com/155 portainer > stacks > add stack 이름 지정 후 맨 아래 코드 입력 Deploy the stack 클릭 파이주소:80 으로 접속 --- version: "2.1" services: freshrss: image: linuxserver/freshrss container_name: freshrss environment: - PUID=1000 - PGID=1000 - TZ=asia/seoul volumes: - /path/to/data:/config ports: - 80:80 re.. 2021. 1. 15.
[도커] 마인크래프트 베드락 서버 설치 처음엔 라즈베리파이에서 시도해봤는데 아래 오류 때문에 안됨 xec user process caused "exec format error" 그래서 윈도우10에서 다시 시도 최종적으로 나이 인증이 실패해서 정확한 확인이 불가 myinbox.tistory.com/156 WSL2 우분투 ssh 접속하기 PC를 바꾸면서 기존 꺼를 거실에 두었다 윈도우10 환경에 WSL2를 설치 아래 링크를 참고하였더니 잘 동작함 https://www.44bits.io/ko/post/wsl2-install-and-basic-usage * WSL2 기본 설정 dism.exe /online /ena.. myinbox.tistory.com 일단 위와 같이 WSL2 환경 구축 후 * 도커 설치 docs.docker.com/docker-f.. 2021. 1. 1.
WSL2 우분투 ssh 접속하기 PC를 바꾸면서 기존 꺼를 거실에 두었다 윈도우10 환경에 WSL2를 설치 아래 링크를 참고하였더니 잘 동작함 https://www.44bits.io/ko/post/wsl2-install-and-basic-usage * WSL2 기본 설정 dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart 스토어에서 우분투 설치 후 실행 wsl --set-version Ubuntu 2 wsl --set-default-version 2 * 우분투에서 ss.. 2020. 12. 28.
[라즈베리파이] AirPlay 음악을 Chromecast로 재생하기 (docker) 라즈베리파이4B를 에어플레이 리시버로 사용하기 위해 구입 shairport-sync 설치하면 될 줄 알았는데 어째서인지 안된다 https://www.theapplegeek.co.uk/blog/shairportsync https://nerdiy.de/en/howto-raspberrypi-shairport-airplay-auf-dem-raspberrypi-installieren/ 그래서 에어플레이를 크롬캐스트로 보내주는 airconnect로 변경 https://github.com/1activegeek/docker-airconnect 컨테이너 자동 재시작 문제 빼고는 아직은 잘 동작하고 있음 * 도커 설치 sudo apt update sudo apt upgrade sudo apt install docker.i.. 2020. 12. 26.
파이썬 tkinter - 테이블 항목 선택시 값 가져오기 import tkinter as tk # 툴킷 인터페이스 import tkinter.ttk as ttk # tk의 확장 (트리뷰, 콤보박스 등 제공) window = tk.Tk() window.geometry("400x200+50+50") window.title("창 타이틀") frame = tk.Frame(window) frame.pack() tree = ttk.Treeview(frame, columns=(1, 2, 3), height=5, show="headings") tree.pack(side='left') # 필드명 tree.heading(1, text="A") tree.heading(2, text="B") tree.heading(3, text="C") # 기본 너비 tree.column(1, w.. 2020. 10. 30.
단어 클라우드 만들기 - 설치 윈10 에 파이썬 설치 (3.9에서는 오류 발생해서 3.8로 설치) https://www.python.org/ftp/python/3.8.6/python-3.8.6-amd64.exe add python 3.8 to PATH 체크 인스톨 나우 클릭 cmd 창 실행 명령어 실행 pip install bs4 아래 페이지에서 JPype를 cp38-amd64 파일로 다운로드 https://www.lfd.uci.edu/~gohlke/pythonlibs/#jpype cmd 에서 명령어 실행 pip install [다운받은 whl 파일 경로] ex) pip install C:\Users\test\Desktop\JPype1-1.0.2-cp38-cp38-win_amd64.whl 명령어 실행 pip install konlpy.. 2020. 10. 28.