This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# @file: nginx-affinity.sh | |
# @brief: | |
# @author: YoungJoo.Kim <http://vozlt.com> | |
# @version: | |
# @date: | |
# | |
# Linux only. | |
# Nginx worker_cpu_affinity |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# @file: ansicolor.sh | |
# @brief: | |
# @author: YoungJoo.Kim <http://vozlt.com> | |
# @version: | |
# @date: | |
# ANSI 형식: {시작문자}{속성들}{색}{종료문자} | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# | |
# Cheap technique. :) by YoungJoo.Kim <http://vozlt.com> | |
# | |
# | |
SNOOP_ID=$1 | |
SSHD_PPID=$(pgrep -o sshd) | |
MATCH_ID= | |
MATCH_PID= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# | |
# @file: alteonl4add.sh | |
# @brief: Alteon L4 Configuration | |
# @author: YoungJoo.Kim <http://vozlt.com> | |
# @version: | |
# @date: 20060907 | |
usage() { | |
echo "USAGE :" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# | |
# -*- coding: utf-8 -*- | |
# | |
# @file: checkmyip.py | |
# @brief: Python program for ip check with tor + privoxy + squid | |
# @author: YoungJoo.Kim <[email protected]> | |
# @version: | |
# @date: 20131030 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file: exif-remover.c | |
* @brief: ImageMagick MagickStripImage() API Test | |
* @author: YoungJoo.Kim <http://vozlt.com> | |
* @version: | |
* @date: 20140210 | |
* | |
* | |
* shell> yum install ImageMagick-devel | |
* shell> gcc -o test test.c -I/usr/include/ImageMagick -lMagickWand |