일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- snmp
- c3 step graph
- python popen
- g++ 업데이트
- CentOS7
- 백준
- gcc 업데이트
- 정규식 문자열 출력
- c3 초
- grafana dashboard
- c++ 정규식
- centos pyhon 설치
- 1697
- c3 축 가리기
- linux시간으로 변경
- gcc regex
- c3 축 없애기
- InfluxDB
- snmp test
- subporcess path
- 정규식 활용
- python os
- regex_search
- telegraf
- python subprocess
- 정규식 컴파일
- influxdb 설치
- semanage
- c3 second
- selinux port 등록
- Today
- Total
목록분류 전체보기 (560)
리셋 되지 말자
BACKUP_DATE=$(date '+%Y-%m-%d-%H%M') tar cvf smartd-$BACKUP_DATE.tar /var/log/smartd/
감사합니다. https://ballentain.tistory.com/11 Python의 fileinput module로 파일 수정하는 방법 fileinput module이라고 해서 개념적으로 크게 다른 건 없는 것 같다. 그냥 python에서 파일 입출력할 때 쓰는 module인데 open( )함수말고 fileinput.input( )함수를 쓰면 된다. 그럼 왜 fileinput이란 모듈을.. ballentain.tistory.com
예전에는 보지 못했던 오류가 발생한다. 2021-10-12 16:18:57.450083: F tensorflow/core/platform/cpu_feature_guard.cc:38] The TensorFlow library was compiled to use FMA instructions, but these aren't available on your machine. Aborted (core dumped) 대충 요약하자면 FMA 를 해당 machine 에서 사용할 수 없다는데... 해당 machine이 virtual box로 생성한 VM이다. 찾아보니 virtualbox는 애초에 fma를 지원하지 않는다고 한다. (링크) 예전엔 분명 됐었는데... 아니, 다시 생각해보면 ubuntu 가 설치된 데스크탑에..
https://lucky516.tistory.com/2 Django에 Celery 적용하기 첫번째 https://docs.celeryproject.org/en/stable/django/first-steps-with-django.html First steps with Django — Celery 5.0.5 documentation docs.celeryproject.org 해당 게시물은 위 주소의 사이트의 내용을 기반.. lucky516.tistory.com 프로젝트명/config/__init__.py 에 celery app을 로드하여 django 전체의 shared_task를 수집. 정말 감사합니다.
https://stackoverflow.com/questions/1308386/programmatically-saving-image-to-django-imagefield Programmatically saving image to Django ImageField Ok, I've tried about near everything and I cannot get this to work. I have a Django model with an ImageField on it I have code that downloads an image via HTTP (tested and works) The image is saved stackoverflow.com Super easy if model hasn't been crea..
get으로 조회할 경우 QuerySet이 아닌 Question 모델 객체가 리턴된다. filter는 일치하는 여러 개를 묶어서 리턴하지만 get은 한건만 리턴한다. 그래서 특정 한개만 검색할 경우(id와 같이 고유한 값으로 검색)는 get, 여러개를 검색할 경우는 filter를 사용하는게 좋을것 같다. - filter 를 사용했을 경우, template 예시 def origin_image_show(request, image_id): origin_image = OriginImage.objects.filter(id=image_id) return render(request, 'csapi/image_show.html', { 'image' : origin_image, }) {% block content %} Up..
Separated Image model 이미지 처리가 된 이미지 모델을 추가한다. Origin Image 와 1:1 관계로써 존재하게 된다. csapi/models.py 에 model 추가 from django.db import models from django.contrib.auth.models import User class OriginImage(models.Model): auth_user = models.ForeignKey(User, on_delete=models.CASCADE) origin_image = models.ImageField(upload_to = 'origin_images/') class SeparatedImage(models.Model): origin_image = models.For..
Origin Image model 먼저 image 파일을 업로드할 수 있도록 model 을 추가하고, django admin 페이지에서 확인한다. Dockerfile 에서 pillow 패키지를 설치하도록 수정 FROM python:3.7-slim WORKDIR /csapi ENV PYTHONUNBUFFERED 0 RUN apt update -y RUN apt install -y python3-dev default-libmysqlclient-dev build-essential RUN pip install django mysqlclient pillow COPY . . RUN python manage.py makemigrations RUN python manage.py migrate --run-syncdb C..