I hereby claim:
- I am apisznasdin on github.
- I am hafidz (https://keybase.io/hafidz) on keybase.
- I have a public key whose fingerprint is 2CF2 4A73 9FE5 F1A1 30C0 6705 3CE8 82E5 BD99 64B8
To claim this, I am signing this object:
| select ext_name, count(*) | |
| from ew_process_instance | |
| group by ext_name | |
| having count(*) > 1; |
| find . -type d -name .svn -exec rm -rf {} \; |
| # | |
| # Config file for sSMTP sendmail | |
| # | |
| # The person who gets all mail for userids < 1000 | |
| # Make this empty to disable rewriting. | |
| [email protected] | |
| # The place where the mail goes. The actual machine name is required no | |
| # MX records are consulted. Commonly mailhosts are named mail.domain.com | |
| mailhub=smtp.mandrillapp.com:587 |
| ### This file implements a blacklist for certain user agents and | |
| ### referrers. It's a first line of defense. It must be included | |
| ### inside a http block. | |
| # based from https://github.com/perusio/piwik-nginx/blob/master/blacklist.conf | |
| # blacklist from http://perishablepress.com/2013-user-agent-blacklist/ | |
| ## Add here all user agents that are to be blocked. | |
| map $http_user_agent $bad_bot { | |
| default 0; |
| # Refer http://www.w3schools.com/tags/ref_urlencode.asp for URL-encoding for ASCII Character if used in password eg | |
| # %23 = # | |
| # %40 = @ | |
| # %5C = / | |
| # | |
| # example http://putrajaya/apisznasdin:password@proxysvr:8080 | |
| export http_proxy=http://domain%5Cusername:password@proxysvr:8080 | |
| export https_proxy=http://domain%5Cusername:password@proxysvr:8080 | |
| export ftp_proxy=http://domain%5Cusername:password@proxysvr:8080 |
| LC_ALL=en_US.UTF-8 | |
| LANG=en_US.UTF-8 |
I hereby claim:
To claim this, I am signing this object:
| # /etc/auto_master | |
| # | |
| # Automounter master map | |
| # | |
| +auto_master # Use directory service | |
| /net -hosts -nobrowse,hidefromfinder,nosuid | |
| /home auto_home -nobrowse,hidefromfinder | |
| /Network/Servers -fstab | |
| /Users/username/Documents/Shares auto_resources | |
| /- -static |
| APACHE_HOME=/usr/local/apache2 | |
| CONF_FILE=${APACHE_HOME}/conf/httpd.conf | |
| RUNDIR=/var/run/apache2 | |
| PIDFILE=${RUNDIR}/httpd.pid | |
| if [ ! -f ${CONF_FILE} ]; then | |
| exit 0 | |
| fi | |
| if [ ! -d ${RUNDIR} ]; then |
| #!/sbin/sh | |
| # | |
| # Copyright 2008 Sun Microsystems, Inc. All rights reserved. | |
| # Use subject to license terms. | |
| # | |
| #ident "@(#)apache.sh 1.6 08/04/04 SMI" | |
| APACHE_HOME=/usr/apache | |
| CONF_FILE=/etc/apache/httpd.conf | |
| RUNDIR=/var/run/apache |