일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 subprocess
- 정규식 활용
- semanage
- InfluxDB
- gcc 업데이트
- g++ 업데이트
- gcc regex
- 정규식 컴파일
- 백준
- snmp
- c3 second
- linux시간으로 변경
- grafana dashboard
- snmp test
- telegraf
- 정규식 문자열 출력
- c3 축 가리기
- python os
- CentOS7
- c3 초
- influxdb 설치
- c++ 정규식
- 1697
- selinux port 등록
- c3 step graph
- centos pyhon 설치
- subporcess path
- python popen
- c3 축 없애기
- regex_search
- Today
- Total
목록분류 전체보기 (560)
리셋 되지 말자
프로세스 : 하드디스크에 저장된 실행코드(프로그램)가, 메모리에 로딩되어 활성화된 것 - 실행하기 전에는 프로그램. 실행하면 프로세스 포그라운드 프로세스(Foreground Process) - 실행하면 화면에 나타나서 사용자와 상호작용을 하는 프로세스 - 대부분의 응용프로그램 백그라운드 프로세스(Background Process) - 실해은 되었지만 화면에는 나타나지 않고 실행되는 프로세스 - 백신 프로그램, 서버 데몬 등 프로세스 번호 - 각각의 프로세스에 할당된 고유번호 작업 번호 - 현재 실행되고 있는 백그라운드 프로세스의 순차번호 (실습) ps -ef | grep fire 위의 명령어로 fire 가 들어가는 프로세스를 출력하면, 프로세스 번호가 1960, 부모 프로세스 번호가 1인 firewall..
파이프 pipe ( | ) : 두 개의 프로그램을 연결해 주는 연결통로의 의미. ex) ls -l | more : 목록을 한페이지씩 끊어서 보여줌. 스페이스바로 넘길 수 있음) 필터 : 필요한 것만 걸러 주는 명령어 (grep, tail, wc, sort, awk, sed 등) ex)ps -ef : 현재 프로세스를 보여주는 명령어 ps -ef | grep bash : bash와 관련된 프로세스들을 출력 rpm -qa | grep gedit : gedit이 들어가는 설치된 목록을 보여줌. 리다이렉션 : 표준 입출력의 방향을 바꿈 ex) ls -l > file.txt : ls 목록을 file.txt에 저장 >> : 파일이 존재하면 해당 파일에 이어서 저장됨 > : 파일이 존재하면 덮어쓰기가 됨 sort < ..
#include #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(NULL); int cas; cin >> cas; while (cas--) { stacks; int account = 0; int num = 0; int len; cin >> len; int *arr = new int[len + 1](); int *visit = new int[len + 1](); for (int i = 1; i > arr[i]; } for (int i = 1; i < len + 1; i++) { num = 0; if (visit[i] == 0) { visit[i] = 1; s.push(ma..
#include #include using namespace std; queue Q; int *arr; int loc= -1; int start, target; void BFS(void) { loc = Q.front(); Q.pop(); if (loc == target) return; if (loc > 0) { if (arr[loc - 1] == 0) { arr[loc - 1] = arr[loc] + 1; Q.push(loc - 1); } } if (loc < 100000) { if (arr[loc + 1] == 0) { arr[loc + 1] = arr[loc] + 1; Q.push(loc + 1); } } if (2 * loc < 100001) { if (arr[2 * loc] == 0) { arr[..
#include #include #include using namespace std; queue Q; int day = 0; pair D[4] = { {-1, 0}, {0, 1}, {1, 0}, {0, -1} //위, 오른쪽, 아래, 왼쪽 }; int **make_array(int **arr, int col, int row) { arr = new int*[row]; for (int i = 0; i > arr[i][j]; if (arr[i][j] == 1) { Q.push(make_pair(i, j)); //co..
var chart = c3.generate({ data: { x: 'x', columns: [ ['x','1553708269','1553708270','1553708271' ], ['data1', 1,1,1 ] ], types: { data1: 'area-step', }, axes: { data1: 'y', data2: 'y' } }, axis: { y: { show: false }, x: { show:false } } });
var chart = c3.generate({ data: { x: 'x', xFormat: '%Y-%m-%d %H:%M:%S', columns: [ ['x', '2017-01-01 12:13:20', '2017-01-01 12:13:21', '2017-01-01 12:13:22', '2017-01-01 12:13:23', '2017-01-01 12:13:24', '2017-01-01 12:13:25', '2017-01-01 12:13:26'], ['data1', 0, 1, 0, 1, 1, 1, 0], ['data2', 1, 1, 0, 0, 1, 1, 0] ], types: { data1: 'area-step', data2: 'area-step' }, axes: { data1: 'y', data2: 'y'..
y축 값을 0, 1 두 가지만 표시가 되도록 하고 싶었는데, 자꾸 0.1, 0. 2... 와 같이 사이값들이 표시가 되어서 그냥 가리려고 찾은 방법이다. var chart = c3.generate({ data: { columns: [ ['data1', 30, 200, 100, 400, 150, 250], ['data2', 50, 20, 10, 40, 15, 25] ], axes: { data1: 'y', data2: 'y2' } }, axis: { y2: { show: true }, y: { show: false } } }); 위와같이 하면, y나 y2가 true면 보이고 false면 안보이게 된다.