When I need a favicon.ico for my site I use the favicon.cc generator.
Category Archives: Internet
HTML meta refresh
Used good old meta refresh for a project today. :)
CSS3 opacity Property
Used the CSS3 opacity Property for the first time today!
Preloaders
Preloaders is a loading/spinning GIF/PNG generator for your AJAX web page.
How to build online communities
A lot of reading for me to do about how to build online communities!
Resizing images with PHP
Read an article today about Resizing images with PHP which has a follow up about Retaining Transparency with PHP Image Resizing.
I haven’t had to do this yet, but I see it in my future. :)
PHP error handling and reporting
Quick and dirty PHP error handling:
error_reporting( E_ALL | E_STRICT ); ini_set( 'display_errors', 'on' );
HTML5 autocomplete
Apparently the autocomplete attribute is now supported in HTML5.
Apache2 MaxClients directive
Learned about the Apache2 MaxClients directive which I set in my /etc/apache2/apache2.conf file. To figure out which MPM section to put the setting in I ran:
# apache2 -V | grep MPM
Apache2 mod_status
I learned about Apache2 mod_status today. This can be used to monitor the status of your Apache server!