분류 전체보기(864)
-
React SNS 공유용 메타 태그 적용
1. react-meta-tags를 이용하면 렌더링 시에 메타 태그를 동적으로 적용해준다. 문제는 이것만으로는 SNS에서 공유시 제대로 메타 태그가 적용되지 않는다는 것. (타이밍 이슈) https://www.npmjs.com/package/react-meta-tags react-meta-tags Handle document meta/head tags in isomorphic react with ease. www.npmjs.com 2. 따라서 react-snap을 이용하여 빌드시 메타 태그가 필요한 페이지에 대한 프리렌더링을 해주어야 한다. build가 수행된 다음 postbuild로 지정한 페이지의 index.html을 생성해준다. https://satisfactoryplace.tistory.com/1..
2021.08.23 -
iOS 앱 Firebase 딥링크 연동
Firebase 공식 문서에는 Xcode 화면을 캡쳐 없이 말로만 설명을 하니 바로 이해가 안되는 부분이 있다. https://firebase.google.com/docs/dynamic-links/ios/receive?hl=ko iOS에서 동적 링크 수신 | Firebase 생성한 Firebase 동적 링크를 수신하려면 앱에 동적 링크 SDK를 포함하고 앱이 로드될 때 handleUniversalLink: 및 dynamicLinkFromCustomSchemeURL: 메서드를 호출하여 동적 링크로 전달된 데이터를 가져와야 합니 firebase.google.com https://www.donnywals.com/handling-deeplinks-in-your-app/ Handling deeplinks in y..
2021.08.23 -
Windows에 Docker 설치
WSL2 덕분에 Windows에 Docker 설치 및 사용이 편해졌다. https://www.lainyzine.com/ko/article/a-complete-guide-to-how-to-install-docker-desktop-on-windows-10/ [Windows 10] Docker 설치 완벽 가이드(Home 포함) Docker는 경량 가상화 기술인 리눅스 컨테이너 도구입니다. Windows 10 Home과 Pro에서도 몇 가지 설정을 통해 Docker Desktop으로 리눅스 컨테이너를 사용할 수 있습니다. 이 글에서는 Windows 10에서 Docker Des www.lainyzine.com https://docs.microsoft.com/ko-kr/windows/wsl/install-win10..
2021.08.03 -
Swift TableView Paging 구현
section을 이용하여 스크롤시 자동으로 다음을 로딩할때 사용할수 있다. https://swieeft.github.io/2020/07/20/PagingTableView.html UITableView Paging 구현하기 - 뀔뀔(swieeft)의 개발새발기 안녕하세요. 장마철에 날씨도 꿉꿉해서 나가기 싫어지는 날씨입니다. 이런 날에는 그냥 집에서 에어컨 바람 맞으면서 가만히 있고 싶지만 일을 해야 한다는 슬픈 현실을 마주하며 포스팅을 시 swieeft.github.io
2021.07.28 -
Flask 대용량 파일 업로드 구현
일반적인 파일 업로드 기능을 구현해서 사용하고 있는데, 가끔 대용량 파일 업로드 시에 문제가 발생한다. 그래서 Flask에서 사용할만한 예를 찾아보았는데... 아래와 같이 Flask와 Dropzone.js를 함께 사용하면 손쉽게 문제를 해결할 수 있다. https://codecalamity.com/uploading-large-files-by-chunking-featuring-python-flask-and-dropzone-js/ Uploading large files by chunking - featuring Python Flask and Dropzone.js - Code Calamity It can be a real pain to upload huge files. Many services limit th..
2021.07.27 -
Swift Push notification 처리
맨날 까먹음 https://www.raywenderlich.com/11395893-push-notifications-tutorial-getting-started Push Notifications Tutorial: Getting Started Push notifications allow developers to reach users, even when users aren’t actively using an app! In this tutorial, you’ll learn how to configure your app to receive push notifications and to display them to your users or perform other tasks. www.raywenderlich.co..
2021.07.22