Archive for category General

Submit to RSS directories will not help your ranking

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.

, , , , ,

No Comments

How to get back files from formatted USB drives!

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.

, , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

No Comments

List of HTTP status codes

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

, , ,

No Comments

Redirect with htaccess

A great tutorial about redirect is this, and from apache site.

Several rules:

, ,

No Comments

Find out PHP execution time

function microtime_float ()
{
list ($msec, $sec) = explode(’ ‘, microtime());
$microtime = (float)$msec + (float)$sec;
return $microtime;
}
$startdebug = microtime_float();

$end = microtime_float();

echo ‘Script Execution Time: ‘ . round($end – $startdebug, 3) . ‘ seconds’;

, , , ,

No Comments

Reading Text Global Resources Hang with photoshop

HOW TO SOLVE THIS PROBLEM.

1. Find the file called “Adobe Photoshop CS Prefs.psp” in the following folder:

C:\Documents and Settings\user\Application Data\Adobe\Photoshop\8.0\Adobe Photoshop CS Settings\

* note: user will be whatever your are loged in as.

3. Delete this file or rename it to: Adobe Photoshop CS Prefs-old.psp (i just put “-old” at the end) – or whatver you want. The goal is so that photoshop doesnt use this .psp file again when it starts to load.

4. start photoshop again.

, , , , , , , , , , ,

No Comments

Programming tips

  • Name your functions and variables with meaningful names so that people will understand the function or variable just by reading it’s name. If a function return best selling product, name it like get_best_selling_products().
  • Do a lot of comment for your code, especially if you are working in a team. By commenting you are making other peoples life more easy.
  • Make your function small where you can see all code for that function in one screen without scrolling. When the function is getting bigger than your screen, its time to split it into smaller function.
  • If your chunk of code is often use, then create a function for it so every part of your application can call this function. An example of this is database connection and query.
  • Put your javascript code and css style in different file. Save your javascript as .js file and your css file as .css file.

, , , , , , , , , ,

No Comments

Instaling wordpress MU on subdomain

A nice tutorial on setting wordpress MU on subdomain. http://www.blogopreneur.com/2006/11/06/installing-wordpress-mu-on-a-cpanelwhm-server/

No Comments

Testing IE with firefox plugin

Here’s a great plugin for testing IE. This is a great tool for web developers, since you can easily see how your web page displayed in IE with just one click and then switch back to Firefox.

,

No Comments