목록개발 낙서장 (6)
우찬쓰 개발블로그
pram에 ?hl= 추가 ex) https://play.google.com/store/games?hl=en Android Apps on Google Play Enjoy millions of the latest Android apps, games, music, movies, TV, books, magazines & more. Anytime, anywhere, across your devices. play.google.com language list https://serpapi.com/google-languages
개인 토이프로젝트를 하다가 겪은 일이다. Storage에 이미지를 저장하긴 했지만, 너무 비정상적으로 높은 저장된 바이트가 나왔고, 심지어 Storage에 있는 모든 파일을 지워보았지만 이 수치가 떨어지지 않았다. 좀 들여다보니 한가지 힌트를 볼 수 있었는데, 그것은 바로 Container Registry에 사용한 스토리지가 포함된다는 것이다. 이것이 왜 배포할때마다 쌓이고 있는지에 대한 의문은 아래 링크에서 알 수 있었다. https://stackoverflow.com/a/64310577/9797457 간단히 요약하자면, 내가 Firebase Functions를 배포할때마다 옛날 artifects들이 지워지지 않고 쌓이고 있다는 소리다. 그래서 해결 방법을 보자. Firebase Storage에 들어간..
png를 사람이 구분못하는 불필요한 부분을 압축하여 용량을 줄여주는 사이트 https://tinypng.com/ TinyPNG – Compress PNG images while preserving transparency Make your website faster and save bandwidth. TinyPNG optimizes your PNG images by 50-80% while preserving full transparency! tinypng.com
예시) 기존 자바 9가 설치되어 있는 환경에서 자바 8을 추가로 설치하고, 자바 8로 기본 세팅 변경 터미널에서 sudo vi ~/.bash_profile export JAVA_HOME=$(/usr/libexec/java_home -v 1.8) // 1.8로 변경 를 추가 한뒤 다시 터미널에서 source ~/.bash_profile 그다음 자바가 제대로 버전이 반영되었는지 확인한다. java -version
String video_id = "ALZHF5UqnU4"; //You can get the video also in OnVideoId() listener String fullsize_path_img = "https://img.youtube.com/vi/"+video_id+"/0.jpg"; String firstThumb_path_img = "https://img.youtube.com/vi/"+video_id+"/1.jpg"; String secondThumb_path_img = "https://img.youtube.com/vi/"+video_id+"/2.jpg"; String thirdThumb_path_img = "https://img.youtube.com/vi/"+video_id+"/3.jpg";