일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- selinux port 등록
- python popen
- c3 초
- CentOS7
- 정규식 문자열 출력
- 정규식 활용
- regex_search
- gcc 업데이트
- g++ 업데이트
- InfluxDB
- centos pyhon 설치
- c3 second
- semanage
- c3 step graph
- influxdb 설치
- grafana dashboard
- python os
- gcc regex
- c3 축 가리기
- snmp test
- c++ 정규식
- telegraf
- 백준
- 1697
- python subprocess
- subporcess path
- snmp
- 정규식 컴파일
- linux시간으로 변경
- c3 축 없애기
- Today
- Total
목록분류 전체보기 (560)
리셋 되지 말자
반올림 round 사용 >>> round(1.123) 1 >>> round(1.123, 0) 1.0 >>> round(1.123, 1) 1.1 >>> round(1.123, 2) 1.12 >>> round(1.123, 3) 소수가 아닌 수의 반올림 >>> round(1234, -1) 1230 >>> round(1234, -2) 1200 >>> round(1234, -3) 1000 올림, 내림, 버림 >>> import math >>> math.ceil(1.123) # 올림 2 >>> math.floor(1.123) # 내림 1 >>> math.trunc(1.123) # 버림 1
파이썬에서 postgres 사용하기 django를 docker로 묶어서 사용하려는데, python에서 postgres를 사용하려면 추가 패키지가 필요. 그 중에서도 psycopg2를 설치하라고 경고문구가 나오고, psycopg2를 설치하면 psycopg2는 곧 psycopg3로 이전될 것이니, psycopg2-binary를 설치하라고 나온다. 친절히 설치방법이 있는 링크도 알려준다... pip install psycopg2-binary 링크 : https://www.psycopg.org/docs/install.html#binary-install-from-pypi Django와 postgres를 묶어서 사용하는 방법 링크 : https://docs.docker.com/samples/django/
https://stackoverflow.com/questions/15067107/difference-between-webdriver-dispose-close-and-quit Difference between webdriver.Dispose(), .Close() and .Quit() What is the difference between these Webdriver.Close() Webdriver.Quit() Webdriver.Dispose() Which one to be used and when? stackoverflow.com Thank you
https://swalloow.github.io/tf-tips/ Terraform 입문자를 위한 미세 팁 클라우드를 활용하는 경우, 인프라 구성 관리 도구로 테라폼을 많이 사용합니다. 오늘은 처음 테라폼을 도입하려고 할때 알아두면 좋은 점들에 대해 정리해보려 합니다. Procedural vs Declarative 위 swalloow.github.io 감사합니다.
https://github.com/marcgibbons/django-selenium-docker/blob/master/app/tests.py marcgibbons/django-selenium-docker Example of Django Selenium testing w/ Docker. Contribute to marcgibbons/django-selenium-docker development by creating an account on GitHub. github.com https://medium.com/@adamking0126/a-simple-recipe-for-django-development-in-docker-bonus-testing-with-selenium-6a038ec19ba5 A Simple ..
https://yujuwon.tistory.com/entry/docker%EC%97%90%EC%84%9C-crontab-%EB%8F%99%EC%9E%91 docker에서 crontab 동작 docker container 내에 서비스를 구축하고 나서 crontab으로 스케쥴을 걸어 놓으려고 했는데.. '아뿔사!!!' docker container 내에서 crontab이 동작을 하지 않는다... 몇 몇의 링크를 찾아본 결과 https://www.ek.. yujuwon.tistory.com 감사합니다 ubuntu 계열의 컨테이너는 -e TZ=Asia/Seoul 이 되는것 같은데, alpine 계열의 컨테이너는 되지 않는것 같다.
https://labo.lansi.kr/posts/33 [Alpine] 타임존 변경하기 # tzdata 설치 apk add tzdata # 타임존 목록 출력 ls /usr/share/zoneinfo # 타임존 정보 복사 cp /usr/share/zoneinfo/Asia/Seoul /etc/localtime # 타임존 설정 echo "Asia/Seoul" > /etc/timezone # 현재 시간 출력 date Mon Mar 26 13:17:21 labo.lansi.kr 감사합니다
필요사항 Virtualbox Vagrant VSCode vagrant 로 가상머신 두개 생성 - Virtualbox의 호스트 네트워크 ip 대역 확인 : 여기선 192.168.56.x - Vagrantfile 작성 Vagrant.configure("2") do |config| #my ubuntu config.vm.define "my-ubuntu" do |cfg| cfg.vm.box = "ubuntu/bionic64" # 시스템 사양에 알맞게 cpu, memory 설정 cfg.vm.provider "virtualbox" do |vb| vb.name = "my-ubuntu" vb.cpus = 2 vb.memory = 2048 end cfg.vm.host_name = "my-ubuntu" # virtualbo..