일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 정규식 문자열 출력
- python os
- gcc 업데이트
- c3 second
- InfluxDB
- g++ 업데이트
- python subprocess
- grafana dashboard
- c3 축 없애기
- 정규식 활용
- gcc regex
- c3 축 가리기
- influxdb 설치
- 1697
- snmp test
- subporcess path
- linux시간으로 변경
- c3 step graph
- c++ 정규식
- CentOS7
- snmp
- 백준
- python popen
- c3 초
- telegraf
- semanage
- regex_search
- centos pyhon 설치
- selinux port 등록
- 정규식 컴파일
- Today
- Total
목록분류 전체보기 (560)
리셋 되지 말자
참고 사이트 https://wikidocs.net/book/1379 세상엔 공개된 좋은 자료가 참 많다. 찾기가 힘들고 검증이 필요하지만... 오픈소스 최고다 테스트 환경 OS : ubuntu 18.04 Python : $ python3 --version Python 3.6.9 가상환경 활성화 우분투는 venv를 쓰기 위해서 별도로 설치가 필요. 설치한다 sudo apt-get install python3-venv 가상환경을 생성한다. 이름은 아무거나 해도 상관없음. python3 -m venv test-django 가상환경을 활성화 한다. source test-django/bin/activate 필요한 패키지 설치 pip을 업그레이드 해준다. pip install --upgrade pip $ pip -..
github.com/JaeYeopHan/Interview_Question_for_Beginner/tree/master/Network
aidanbae.github.io/code/docker/dinddood/ DinD(docker in docker)와 DooD(docker out of docker) DinD(docker in docker)와 DooD(docker out of docker) - 아이단의 블로그 aidanbae.github.io 감사합니다
stackoverflow.com/questions/51155947/django-redirect-to-another-view-with-context/51156032 django redirect to another view with context I have this in my view def foo(request): context['bar'] = 'FooBar' return redirect('app:view') is there some way to include this context['bar'] when I redirect to 'app:view'? My last re... stackoverflow.com 일회성 메시지를 전송할 수 있다. 사실 redirect 사용할 때, context를 넘기고 싶어서 ..
git clone 이후, 원격지의 브랜치 명을 사용해서 -t 옵션으로 체크아웃 하면, 해당 브랜치의 내용과 동일한 브랜치가 로컬에 생성된다 git checkout -t origin/feature-branch
python manage.py migrate --run-syncdb 로 해결
is는 id()의 값을 비교하는 함수이다. None은 널(null)로서 값 자체가 정의되어 있지 않으므로 == 을 사용해 비교가 불가능하다. >>> [1,2,3] == a True >>> a = [1,2,3] >>> [1,2,3] == a True >>> list(a) == a True >>> list(a) is a False list 함수로 다시 묶어주면 id 값이 변하게 되므로 is 연산의 결과가 False가 나오게 된다.
객체 파이썬은 모든 것이 객체다. 불변 객체와 가변 객체로 구분한다. 클래스 설명 불변 객체 여부 bool 부울 O int 정수 O float 실수 O list 리스트 X tuple 튜플은 생성할 때 설정한 값이 변경 불가능 O str 문자 O set 중복된 값을 갖이 않는 집합 자료형 X dict 딕셔너리 X 불변 객체 >>> 10 10 >>> id(10) 140732690781504 >>> a=10 >>> b=a >>> id(a) 140732690781504 >>> id(b) 140732690781504 10이라는 불변 객체가 존재하고, 이를 변수 a와 b가 이를 참조할 뿐이다. 그래서 id 값이 전부 동일한것을 확인할 수 있다. int, str, tuple이 불변 객체이며, 불변 객체는 모두 dic..