Returned 5 Results for "etc"

CryptM - Mcrypt encryption/cypher manager for PHP


2011-06-27 Digg! icurtain Delcious icurtain
CryptM Mcrypt encryption cypher manager for PHP
class CryptM {     private $input = null;     private $output = null;     private $key = null;     //initated cypher with constant - strongest encryption type     private $cypher = MCRYPT_RIJNDAEL_256;     //in...

PHP File Upload Manager


2011-01-15 Digg! icurtain Delcious icurtain
Thought I would consolidate file upload functions for PHP into one nice easy class - compatible with dbphp - makes my life soooooo easy ;)  class FileUpload {       /*Documentation     FileUpload Class 0.1 - 2010-01-15 by icurtain.co.uk     Imeplentation is as follows          $file = new F...

Ubuntu 9.10 screen flashing and keyboard unresponsive


2009-10-30 Digg! icurtain Delcious icurtain
If Ubuntu 9.10 boots up to a flashing screen and unresponsive keyboard chances are your xwindows configuration isn't working - you can check this by running /etc/init.d/gdm stop (you should have a nice non-flashing shell) for some reason dpkg-reconfigure xserver-xorg didn't work for but simply dele...

Ubuntu alsa-utils sound Issues


2009-10-22 Digg! icurtain Delcious icurtain
Alsa-Utils sound in Ubuntu 8+ is buggy as hell and always seems to die on me When the sound goes all crackly and m@m:~$ /etc/init.d/alsa-utils restart doesn't work; try m@m:~$ /etc/init.d/alsa-utils reset other params are: {start [CARD]|stop [CARD]|restart [CARD]|reset [CARD]}...

PHP Hash Maker - MD5, SHA1 etc


2009-08-22 Digg! icurtain Delcious icurtain
PHP Hash Maker MD5 SHA1 etc
The Hash maker is a quick and easy way to either make hashes and use them directly or try to work out what your lost password was I find it quite useful to be able to generate hashes for passwords directly for the purposes of resetting passwords directly in a database...