Archive for January, 2009

High Quality Video Embedding with Youtube

Notice the difference in the videos . .
Embedding Low Res

Embedded High Res just add &rel=0&ap=%2526fmt%3D18 after fs=1 in the source code 2 times


Read More here .. Comments

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 .. 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 .. Comments