본문 바로가기

SW 프로그래밍188

Customizing Matplotlib with style sheets and rcParams #### MATPLOTLIBRC FORMAT ## This is a sample matplotlib configuration file - you can find a copy ## of it on your system in ## site-packages/matplotlib/mpl-data/matplotlibrc. If you edit it ## there, please note that it will be overwritten in your next install. ## If you want to keep a permanent local copy that will not be ## overwritten, place it in the following location: ## unix/linux: ## $HO.. 2019. 10. 24.
문자열을 숫자로 변환; 문자를 정수(int, long), 실수(float)로 바꾸기 MySQL에서 데이터를 가져오면 대부분 문자이다.(varchar) 화면에는 숫자처럼 보이지만 실제는 문자열이다. 이를 통해 그래프를 그리거나 연산을 할수 없다. 간단히 숫자로 변환하는 방법이 있다. #!/usr/bin/python # -*- coding: cp949 -*- # 이 파일의 맨 첫줄에 빈줄이 있으면 # SyntaxError: Non-UTF-8 code starting with '\xbc' in file example3.py on line 6, # but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details # 이런 식의 에러가 납니다. # "정수 문자열"을 정수로 만들어, 플러스 1 하기 s = "123" n =.. 2019. 10. 24.
Python 소스코드 버전 변환 2to3.py C:\Python34\Tools\Scripts\2to3.py 소스파일이 3버전에 맞게 변환되고, 원본은 "파일명.bak"으로 보존된다. python C:\Python34\Tools\Scripts\2to3.py -w 소스파일명 실행예시 D:\workspace\python>python C:\Python34\Tools\Scripts\2to3.py -w greeting.py RefactoringTool: Skipping implicit fixer: buffer RefactoringTool: Skipping implicit fixer: idioms RefactoringTool: Skipping implicit fixer: set_literal RefactoringTool: Skipping implicit fixe.. 2019. 8. 31.
top 화면 색상 변경하기 1) 설정하기 전 top 화면 2) 설정하기 root 또는 로그인 계정에 .toprc 라는 파일을 생성하고 다음과 같이 값을 넣어줍니다. RCfile for “top with windows” # shameless braggin’ Id:a, Mode_altscr=0, Mode_irixps=1, Delay_time=3.000, Curwin=0 Def fieldscur=AEHIOQTWKLNMbcdfgjrpsuvyzX winflags=97144, sortindx=10, maxtasks=0 summclr=3, msgsclr=1, headclr=3, taskclr=2 Job fieldscur=ABcefgjlrstuvyzMKNHIWOPQDX winflags=62777, sortindx=0, maxtasks=0 sum.. 2019. 7. 14.
Centos7 Tomcat 설치 톰켓을 설치하기전, 최신버전을 확인합니다. --> https://tomcat.apache.org Apache Tomcat® - Welcome! The Apache Tomcat® software is an open source implementation of the Java Servlet, JavaServer Pages, Java Expression Language and Java WebSocket technologies. The Java Servlet, JavaServer Pages, Java Expression Language and Java WebSocket specifications are tomcat.apache.org 2019.06.29일 현재 Tomcat 9.0.21이 최신 버전입니다. Cen.. 2019. 6. 29.
history 명령어 사용하기 리눅스에서 이전에 입력한 명령어 이력을 보여주는 history 명령을 이용해서 과거에 입력했던 명령어들 중에 다시 실행할 명령어를 선택해서 재실행할 수 있다. 아래의 예시를 보면 금방 감을 잡을 수 있을 것이다. # 이전 명령어 이력 출력 history 출력된 결과에는 번호가 붙어 있는데, 예를 들어 이 중에 35번에 해당되는 명령어를 다시 실행한다거나 cp로 시작되면서 가장 최근에 실행된 명령어를 다시 실행할 수 있다. 아래의 예시처럼 앞에 느낌표(!)를 붙여주면 된다. # 35번 명령어 재실행 !35 # cp로 시작되는 가장 최근 명령어 재실행 !cp 이전에 꽤 긴 명령어를 입력했는데 다시 반복해야 할 경우 유용하다. history 출력이 좀 길다 싶으면 grep 명령과 조합해서 명령어 번호를 찾은 .. 2019. 6. 21.