October 31, 2006

Searchable Google Map

Instructions for setting up a searchable google map.

Filed under Web by admin.
Permalink • Print • 

October 30, 2006

Restart antirelayd

Kept getting a message saying that “antirelayd” had failed.  Did a little searching around and found this site.

Followed the restart instructions, everything seems to be running well, plus opened up a bunch of diskspace.

/scripts/fixrelayd
/etc/rc.d/init.d/antirelayd restart
service exim restart

Filed under Web by admin.
Permalink • Print • 

October 20, 2006

CSS Tool

List of CSS Tools that check and create for you.

And on a related note, some CSS styles.

Filed under Web by admin.
Permalink • Print • 

Why not be the authority on a subject?  Figure out how to be the news source.

Filed under Web by admin.
Permalink • Print • 

Light weight javascript tooltip. Smart enough to realize when there is not enought screen space to position the tip on the screen.

Filed under Web by admin.
Permalink • Print • 

October 18, 2006

PayPal Button Creator

A very simple PayPal “Buy Now” button creator with a twist.

Besides creating a button, this script will also allow you to increase the price by a certain amount each minute.

Filed under PHP by admin.
Permalink • Print • 

October 16, 2006

Proxy Services

http://www.proxy4free.com/

Filed under Web by admin.
Permalink • Print • 

Good site for designers and developers.

A technical resource that provides easy-to-understand, comprehensive tutorials for Flash, ActionScript, PHP/XML, Photoshop, and more.

Filed under Web, PHP by admin.
Permalink • Print • 

October 11, 2006

CPanel accounts

How to list all of your CPanel account names by running a c-shell script from the command line.

1) Create a new file in your /home directory called accounts.com (vi accounts.com)

2) Paste the following into accounts.com

#!/bin/csh
foreach dir (`ls -AF /home/ | grep / | grep -v “\.”`)
echo $dir
end

3) Save and exit the file (:wq)

4) Change the permissions on the accounts.com file, chmod +x accounts.com

5) Run the script, /home/accounts.com

Some more useful stuff (without any explanation):

#!/bin/csh
foreach dir (`ls -AF /home/ | grep / | grep -v “\.”`)
foreach subdir ( `ls -aF /home/$dir\public_html | grep / | grep -v “\.” | egrep -v “cgi-bin|images”` )
\cp /home/style.css /home/$dir\public_html/$subdir\includes/style.css
end
end

#!/bin/csh
foreach dir (`ls -AF /home/ | grep / | grep -v “\.”`)
foreach subdir ( `ls -aF /home/$dir\public_html | grep / | grep -v “\.” | egrep -v “cgi-bin|images”` )
ls /home/$dir\public_html/$subdir\includes/style.css
end
end

#!/bin/csh
foreach dir (`ls -AF /home/ | grep / | grep -v “\.”`)
echo $dir
end

Filed under Web by admin.
Permalink • Print • 

October 10, 2006

Favicon Creator

Cool little tool for creating favicons.

Also has tools for embellishing an image, buddy image creator and an online image splitter

Filed under Web by admin.
Permalink • Print • 

October 5, 2006

Cool Little Blog

Here’s a good looking blog for all the tinkers out there.  Good layout … not sure what Google and Yahoo would say though if they found their competitor’s ads on the same page.

Filed under Web by admin.
Permalink • Print • 

script.aculo.us quick reference for getting those Web 2.0 effects right.

Filed under Web by admin.
Permalink • Print • 

October 2, 2006

Making money online

Here’s someone who knows what he is talking about … making money online.

Filed under Web by admin.
Permalink • Print •