Archive for January, 2009
3 ways to do direct linking to a clickbank checkout page
how to directly link to the order page clickbank
http://www.netprofitstoday.com/blog/video-how-to-link-directly-to-a-clickbank-product-order-page/
Some nice tools per setting cookies when visitors land on your page
http://smugmarketing.com/tools/cookie.html
http://tools.marketingbully.com/covert-cookie/
Read More here .. Permalink Comments (5)
How To Count Inodes For Each Directory
Hostgator whom this website is hosted with limits you to 50,00o inodes per account. So it not unlimited as they claim but nonetheless its pretty good hosting ..
Here is a script that I wrote which helps you count each inodes in a directory
#!/bin/bash
# count inodes for each directory
LIST=`ls`
for i in $LIST; do
echo $i
find $i -printf [...]
Read More here .. Permalink Comments

