Web 2.0 Design Tutorials.

Read More »

A list of cheap web 2.0 logo banner avatar design services.

Read More »

A Beautiful Site is a beautiful site and it shows in this article how to have external PopUp links using Jquery.

Read More »

Here is a nice Google Map API PHP API, class, functions, library etc.

Read More »

You can send more than 500 emails per day by using Google’s recommendation of creating more than one account for sending.

Read More »

The solution:

updatedb
locate CA.sh
locate CA.pl
…./CA.sh –newca

Start an SVNServe Daemon

svnserve -d –listen-port=5555 -r /home/svn/dir

update [table_name] set [field_name] = replace([field_name],’[string_to_find]‘,’[string_to_replace]‘);

With sed you must include 3 brackets:

sed ’s/what/it/’

sed ’s/http:\/\/.*\.photobucket\.com\//\//’ new.txt

Read More »

Robb Wolf writes a brilliant comparison of Weston Price vs. Paleo Diet with a fair look at both sides of the argument.

Read More »

Decentralized Social Networking articles of interest. Read More »

If you get the error:

mysqlimport: Error: Table ‘database.mydatabase’ doesn’t exist

Read More »

Proper syntax for svn import on Ubuntu. Read More »

Parsing feeds in Python is best achieved with Mark Pilgrims Universal Feed Parser.

Read More »

A simple tutorial on how to obtain geo coordinates with php and the Google Maps API.

Read More »

Setting up Postfix can be a pain. Here’s the ultimate cheat sheet to setting up Postfix.

Read More »

Amazing Grace is a beautiful WordPress theme from Vladimir Prelovac.

How to use the WordPress bundled jQuery.

Read More »

A selection of Ajax and Javascript scripts, forms, controls for Calendars and Time. Read More »

google video search pop up plugin

I’ve created this plugin called Video Search Pop N Code which allows you to search for videos, watch videos, get embed code, and format code within your wordpress editor without refreshing your browser.

This technology users the Google Ajax Search API.

Details and download of the plugin can be found here.

LightWindow is a lightbox function that you can use to create YouTube PopUp’s.

Read More »

Here is an interesting Blog Hosting Model.

Read More »

Nginx combined with WP Super Cache for WordPress Mu is an interesting idea. However, you can potentially set up a simpler, and superior caching system using internal Nginx features that replaces the need for Super Cache.

Read More »

To configure Nginx to load balance multiple FastCgi servers use this type of configuration:

upstream servercom {
server 127.0.0.1:44440;
server 127.0.0.1:44441;
server 127.0.0.1:44442;
server 127.0.0.1:44443;
server 127.0.0.1:44444;
}

location ~ \.php$ {
fastcgi_pass servercom;
fastcgi_index stream.app;
fastcgi_param SCRIPT_FILENAME /var/www/htdocs$fastcgi_script_name;
include /etc/nginx/fastcgi.conf;
}

Read More »