Skip to content

Instantly share code, notes, and snippets.

View ujuc's full-sized avatar
🎗️
doing!

강성진 sungjin.kang ujuc

🎗️
doing!
View GitHub Profile
@ujuc
ujuc / Dream.md
Last active September 17, 2015 09:21
하고 싶은 것, 하기 싫은 것

하고 싶은것

  1. 임베디드
  • Todo
    1. ARM 서버 모듈 설계 및 드라이버 개발
    2. CPU 모듈로 장난감 제작
  • Doing?
    • 취미... 활동으로 빼자...
  1. OpenStack
  • Todo
  1. Python 개발
@ujuc
ujuc / bridge.conf
Created August 29, 2015 05:33
Zabbix bridge discovery.
UserParameter=bridge.discovery, /etc/zabbix/bridge_discovery.py
UserParameter=brdige.status[*], /etc/zabbix/bridge_status.py $1
@ujuc
ujuc / ping_check.conf
Created August 25, 2015 14:33
Zabbix Ping check
UserParameter=ping_check[*], /etc/zabbix/ping_check.py $1
@ujuc
ujuc / fchost.conf
Last active August 29, 2015 14:28
zabbix FC host check
UserParameter=fchost.discovery, /etc/zabbix/fchost_discovery.py
UserParameter=fchost.status[*], /etc/zabbix/fchost_status.py $1
@ujuc
ujuc / log_compress.py
Last active September 30, 2015 09:34
logfile 압축
#!/usr/bin/env python
# coding: utf-8-
import os
import re
import sys
import tarfile as tar
LOG_PATH = sys.argv[1]
@ujuc
ujuc / wsgi.py
Last active August 29, 2015 14:06
wsgi
import os
import sys
BASE_DIR = os.path.dirname((os.path.dirname(__file__)))
sys.path.append(BASE_DIR)
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "test.settings")
from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()