Installing PHP Beautifier on Ubuntu

PHP Beautifier makes your codes all pretty like and such.

First, install Pear, if it is not yet installed:

sudo aptitude install php-pear

Then, install php_beautifier:

sudo pear install PHP_Beautifier-0.1.15

Some Links

http://beautifyphp.sourceforge.net/docs/ http://pear.php.net/ http://pear.php.net/package/PHP_Beautifier/

share and enjoy:

share and enjoy:
  • Print
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • Blogplay
  • Fark
  • Reddit
  • Slashdot
  • StumbleUpon
  • Twitter

Perl Low Disk Space Warning Cron Script

This is a quick little script I wrote to warn me when disk space is getting low on a server I’m responsible for.

i just stuck this into a daily cron and now I know when to act!

#!/usr/bin/perl # # lowdiskspacewarning.pl # use strict; use Filesys::DiskFree; # init my $sendmail = "/usr/lib/sendmail -t"; [...]

share and enjoy:
  • Print
  • Digg
  • Sphinn
  • del.icio.us
  • Facebook
  • Mixx
  • Google Bookmarks
  • Blogplay
  • Fark
  • Reddit
  • Slashdot
  • StumbleUpon
  • Twitter