본문 바로가기

전체 글

(148)
TIL 062223 https://stackoverflow.com/questions/23463679/s3-static-pages-without-html-extension S3 static pages without .html extension In serving a static site off of Amazon S3, I'm wondering how to get rid of the .html file extensions for each page. Right now I have: mysite.com/ # works fine, serves index.html mysit... stackoverflow.com https://anands.github.io/blog/2018/11/18/serve-static-pages-on-s3-wit..
TIL 062123 https://stackoverflow.com/questions/71059139/modulenotfounderror-no-module-named-dj-rest-auth ModuleNotFoundError: No module named 'dj_rest_auth' I don't get why I am getting this problem I followed most the steps to the guide in installing: https://dj-rest-auth.readthedocs.io/en/latest/installation.html Except that I used pipenv install. Ho... stackoverflow.com pull 받은 후 pip install -r requirem..
TIL 062023 https://lsjsj92.tistory.com/524 git 파일명 변경 혹은 파일 삭제 시 반영하는 방법 정리 깃허브를 운영하면서 add를 통해 파일을 등록하고 commit으로 로컬에 저장을 하는데 이때 파일명을 변경하거나 삭제를 하면 다르게 처리를 해줘야합니다. 물론 깃허브와 연동된 디렉토리에서 git a lsjsj92.tistory.com https://velog.io/@bami/%ED%8C%8C%EC%9D%BC-%EA%B2%BD%EB%A1%9C-%EC%A0%88%EB%8C%80-%EA%B2%BD%EB%A1%9C%EC%99%80-%EC%83%81%EB%8C%80-%EA%B2%BD%EB%A1%9C 파일 경로 - 절대 경로와 상대 경로 파일 경로는 대단히 중요합니다. 모듈이나 미디어 파일을 이용할 ..
TIL 061923 https://stackoverflow.com/questions/28607727/how-to-calculate-average-in-django How to calculate average in Django? I have Category and Product models below: class Category(models.Model): name = models.CharField(max_length=20) class Product(models.Model): category = models.ForeignKey(Category, on_delete= stackoverflow.com from django.db.models import Avg rate_avg = obj.spot_reviews.aggregate(Avg..
WIL 061923 보호되어 있는 글입니다.
TIL 061623 https://nykim.work/86 [CSS] 이미지 사이즈 맞추기 (object-fit, absolute, background) 프롤로그 컨테이너의 크기는 고정되어 있는데, 해당 컨테이너 안에 들어갈 이미지의 크기는 다양한 경우가 있습니다. 사용자가 이미지를 등록하는 경우 또는 마케팅 팀이 아무 이미지나 넣는 nykim.work https://multifidus.tistory.com/182 일정한 사이즈 div 안에 이미지 넣기 (잘리면서 꽉차게, 잘리지 않고 축소) +) 이번 프로젝트를 진행하면서 퍼블리싱 부분에서 가장 애를 먹었던 부분. 혹시 제가 놓친 점이나 더 좋은 방법, 다른 방법이 있다면 얼마든지 알려주시기 바랍니다. 1. 잘리면서 꽉차게 * 상위 d multifidus.tistory.c..
TIL 061523 optgroup: select의 option들을 묶을 수 있다. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/optgroup : The Option Group element - HTML: HyperText Markup Language | MDN The HTML element creates a grouping of options within a element. developer.mozilla.org 이걸로 234개 시군구를 다 보여줄까 했는데 6개 예시는 괜찮아보였지만 234개는 너무 길다. area와 sigungu를 연동해서 select를 만들고 싶은데 어제 찾은 코드를 적용하는데 문제가 있었다. 일단 하나도 이해가 안 돼서 $(‘document..
TIL 061423 https://aroundck.tistory.com/5948 [Database] -journal 파일의 정체는 뭘까? ( + WAL, temp files ) [Database] -journal 파일의 정체는 뭘까? ( + WAL, temp files ) http://gywn.net/2013/08/let-me-intorduce-sqlite/http://www.sqlite.org/tempfiles.html Journal --journal 은 rollback journal 이다.이는 SQLite 에서 atomic commit & rollback 을 지 aroundck.tistory.com 그냥 db가 업데이트 되는 동안 생기는 temp file이었다. TourAPI의 장소들 이미지는 url로 제공 URLFie..