Skip to content

Instantly share code, notes, and snippets.

View tomcoonen's full-sized avatar
🏠
Working from home

Tom Coonen tomcoonen

🏠
Working from home
View GitHub Profile
@tomcoonen
tomcoonen / keybase.md
Last active August 29, 2015 14:16
Keybase

Keybase proof

I hereby claim:

  • I am tomcoonen on github.
  • I am tomcoonen (https://keybase.io/tomcoonen) on keybase.
  • I have a public key whose fingerprint is 55C6 5C9C 3533 F3AF CEA9 8240 416B 14A2 7E64 0046

To claim this, I am signing this object:

@tomcoonen
tomcoonen / nxlog.conf
Last active August 29, 2015 14:04
nxlog config
# http://help.papertrailapp.com/kb/configuration/configuring-remote-syslog-from-windows
## Please set the ROOT to your nxlog installation directory
#define ROOT C:\Program Files\nxlog
define ROOT C:\Program Files (x86)\nxlog
Moduledir %ROOT%\modules
CacheDir %ROOT%\data
Pidfile %ROOT%\data\nxlog.pid
@tomcoonen
tomcoonen / install_zend_guard.sh
Last active March 8, 2018 11:05 — forked from corny/install_zend_guard.sh
Installation of Zend Guard 6.0.0 using PHP 5.4 and Ubuntu 12.04 (32 bit).
#!/bin/bash
wget http://downloads.zend.com/guard/6.0.0/ZendGuardLoader-70429-PHP-5.4-linux-glibc23-i386.tar.gz
tar xzf ZendGuardLoader-70429-PHP-5.4-linux-glibc23-i386.tar.gz
cp ZendGuardLoader-70429-PHP-5.4-linux-glibc23-i386/php-5.4.x/ZendGuardLoader.so /usr/lib/php5/20100525+lfs/
file=/usr/lib/php5/20100525+lfs/ZendGuardLoader.so
echo zend_extension=$file > /etc/php5/conf.d/zend_extensions.ini
chmod 644 $file
chown 0:0 $file