Create jquery tutorial
Posted by in Jquery on August 12th, 2010
A good jquery tutorial that I find good:
- http://blog.jeremymartin.name/2008/02/building-your-first-jquery-plugin-that.html
- http://www.sitepoint.com/blogs/2009/07/22/how-to-develop-a-jquery-plugin/
Submit to RSS directories will not help your ranking
Posted by in General on August 8th, 2010
hat I know and from I researched, submitting your RSS does not help your site ranking much. If they give you link, it might not your keyword as anchor and not dofollow. I don’t know why people say submitting RSS will your rank, maybe to sell RSS submitter software?
More info on the thread I started here.
Permanet Redirect in PHP
Posted by in PHP code on August 6th, 2010
<?php
// Permanent redirection
header(”HTTP/1.1 301 Moved Permanently”);
header(”Location: http://www.website.com/”);
exit();
?>
How to get back files from formatted USB drives!
Posted by data recovery in General on August 5th, 2010
URL: www.datadoctor.biz
Are you unable to access data from logically damaged USB drives? Did virus has corrupted your pen drives making the entire saved data inaccessible? Or someone has formatted your flash drives without taking backup of your significant data? Losing files from an external drive like a USB does not mean they are gone forever. You will need to locate and download a suitable data recovery program in order to find and restore the missing files.
Any good recovery program can safely recover your misplaced data quickly and easily from all commonly used USB drives also popular as Thumb drives, Jet Flash drives, Key chain drives and Pen drives. There are lots of data recovery programs available on the internet and it can sometimes be confusing to find the best one.
Head over to Datadoctor.biz, a platform where you will find highly specialized Pen drive Data Recovery Software specifically designed to salvage the erased files from your pen drives. Utility capable to retrieve your misplaced word files, office records, digital pictures, photos, audio-video songs etc from logically damaged USB media. Well-designed program offers free demo of software to provide you the preview of lost data and information.
Features
Software works effectively with all USB drives of popular manufacturers like Kingston, Transcend, Sony, HP, Sandisk etc.
Non-destructive software facilitates do-it-yourself feature allowing automatic recovery of missing files from USB drives.
Software supports recovery even when the USB drive volume is not recognized by the system.
Cost-effective utility has friendly graphical interface with an inbuilt help guide for novice to easily understand the program.
About Author
Datadoctor.biz is among the most popular organization having highly advanced, professional and affordable software that easily meet the basic requirement for both professionals and general users. There are large numbers of comprehensive tools listed on the website helpful in different sectors like data recovery, bulk sms messaging, live chat software, accounting software, password recovery software etc. Highly economical applications has self-explanatory interface with simple working interface.
List of HTTP status codes
Posted by in General on July 22nd, 2010
The following is a list of HyperText Transfer Protocol (HTTP) response status codes.
Some common status codes are:
- 200 – the server successfully returned the page
- 404 – the requested page doesn’t exist
- 503 – the server is temporarily unavailable
More info here
Import Mochimedia Feed
Posted by in PHP code on July 21st, 2010
Just make a code for importing Mochimedia game feed.
It will import the feed by creating post, add tag, insert into category, and schedule it dailly. It is using wordpress technology. You need to put these files in wp root.
Download it here.
Redirect with htaccess
Posted by in General on June 4th, 2010
A great tutorial about redirect is this, and from apache site.
Several rules:
Regular expression and Rewrite Rule sample
Posted by in htaccess on June 3rd, 2010
RewriteRule ^/?(tag)/([a-zA-Z_$]+)$ /index.php?option=com_tag&t=$1&t1=$2 [L]
^ -> start of expresion
/? -> / can exist or not.
(tag) -> a string “tag”










