Wi-Fizzle.com - Putting the fizzle in Wi-Fi since 2005 .. (yes, this was a poor choice for a domain name)

February 18, 2008 - April 10, 2008

< Previous Articles >< Next Articles >

Useful PHP Tool: phpsh

Posted by dandriff on Thursday April 10, 2008@09:17AM

phpsh is an interactive shell for php with a full suite of features like auto tab completion and readline history. Ironically, the tool was written in Python (hah..). It has been a really nice tool to quickly test out lines of php to make sure they'll do what I expect them to do.


Su trick

Posted by dandriff on Thursday April 10, 2008@07:35AM

You can preserve your environment by passing -m to the su command.


Anyone know about Ubuntu Error #15?

Posted by dandriff on Friday April 04, 2008@04:48PM

Do any of you know about Ubuntu Error #15 while booting? If so please contact me via e-mail..


HOWTO: Change the default image viewer in Ubuntu

Posted by dandriff on Friday March 07, 2008@12:04PM

vi ~/.local/share/applications/defaults.list

 [Default Applications]
 application/x-php=gvim.desktop
 image/gif=gthumb.desktop;
 image/jpg=gthumb.desktop;
 image/jpeg=gthumb.desktop;
 image/bmp=gthumb.desktop;
 image/png=gthumb.desktop;
 image/tif=gthumb.desktop;
 image/tiff=gthumb.desktop;

Something like that will do the trick..


Firefox extended preferences

Posted by dandriff on Friday March 07, 2008@09:26AM

In FireFox just type about:config into the url-bar to access a ton of preferences.


LatencyTop

Posted by dandriff on Thursday March 06, 2008@08:45AM

LatencyTop looks like an interesting tool.


HOWTO: Improve BASH autocompletion

Posted by dandriff on Tuesday February 26, 2008@11:13AM

How to improve BASH autocompletion

Add the following to your ~/.bashrc:

 # enable programmable completion features (you don't need to enable
 # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
 # sources /etc/bash.bashrc).
 if [ -f /etc/bash_completion ]; then
 . /etc/bash_completion
 fi

source


Compiz config settings manager error fix

Posted by dandriff on Tuesday February 26, 2008@08:43AM

Error:

$ ccsm

 Traceback (most recent call last):
   File "/usr/bin/ccsm", line 45, in 
     idle = ccm.IdleSettingsParser(context)
   File "usr/lib/python2.5/site-packages/ccm/Utils.py", line 229, in __init__
   File "usr/lib/python2.5/site-packages/ccm/Utils.py", line 228, in 
   File "usr/lib/python2.5/site-packages/ccm/Utils.py", line 225, in FilterPlugin
 AttributeError: 'compizconfig.Plugin' object has no attribute 'Initialized'

Fixed by:
 sudo aptitude remove compizconfig-settings-manager
 sudo aptitude install compizconfig-settings-manager

Fix found in the ubuntu forums.


HOWTO: Get ZendStudio 5.2.0 working in Ubuntu Gutsy

Posted by dandriff on Tuesday February 26, 2008@08:25AM


HOWTO: Mount an ISO image file in Linux

Posted by dandriff on Monday February 25, 2008@10:31AM

How to mount an ISO image file in Linux:
mount -o loop -t iso9660 image_file.iso /mnt/target_directory


VIM: Helpful chart for creating ColorSchemes

Posted by dandriff on Thursday February 21, 2008@10:42AM

Helpful chart for creating VIM ColorSchemes


Nice VIM ColorScheme

Posted by dandriff on Wednesday February 20, 2008@02:55PM

I really like this VIM colorscheme: Neverness


Posted by dandriff on Tuesday February 19, 2008@03:09PM

I thought this was kind of neat:

MySQL Base64 functions in procedural SQL


MySQL: CREATE TRIGGER `some_table___select` BEFORE SELECT ON `some_table`

Posted by dandriff on Monday February 18, 2008@03:56PM

Read the full article to see what I found out about getting TRIGGER xTriggerNamex BEFORE SELECT ON xTablex behavior out of mysql.


< Previous Articles >< Next Articles >