Posts Tagged ‘better’

Google:Tips for better Googling

Monday, July 14th, 2008

“I can find what I need on Google” – Is this a common refrain amongst staff
and students in your college? Whilst Google is certainly far and away the
most commonly used search engine currently available, it is often not used in
the most effective way. There are many useful extras in Google that are
under-used, but which go towards making it a far more complete and effective
search tool than you would imagine. Here are some of the more interesting,
useful and quirky features that you might like to explore in order to get more
out of Google

ASP vs PHP: Why is PHP Better?

Saturday, June 28th, 2008

What is ASP?Active Server Pages (ASP) is Microsoft’s scripting language for building dynamic web sites, web applications and web services., First released in January 2002 , along with the version 1.0 of the .NET Framework, ASP.net is the successor to Microsoft’s Active Server Pages (ASP) technology. ASP.NET is made on the Common Language Runtime, allowing programmers to write ASP.NET code via any supported .NET language such as VBScript and Jscript.What is PHP?PHP or (PHP: Hypertext Preprocessor) is a PC scripting language designed for the construction of dynamic web pages. PHP is largely used in server-side scripting, but can also be used from a command line interface or in standalone graphical applications.PHP commonly runs on a web server, taking the PHP code as its input and creating web pages as output. It can be set up on most web servers and on almost every operating system and platform for free.To be Continued…

ASP vs PHP: Why is PHP Better?

Saturday, June 28th, 2008

Speed Relatively, PHP is much faster and stable than ASP, this is because ASP is built on a COM-based architecture so whenever a program tries to connect to a database or calls for a COM object, there is an overhead on the server, and this COM overhead adds up and slows things down.While in PHP, everything runs in PHP’s memory space , this implies that PHP code will run faster because there is no overhead of communicating with different COM objects in different processes.In addition to this ASP is slower and is a more memory intensive application than PHP’s model because each ASP language compiler runs in its own process.Bottomline: PHP is faster than ASPTo be Continued…

ASP vs PHP: Why is PHP Better?

Saturday, June 28th, 2008

Price Compared to ASP, PHP installations are absolutely cheaper to install. PHP perfectly runs on Linux (which is a free OS) and programmers use MySQL .(which also comes FREE)ASP runs on the IIS Server (Internet Information Server) which requires Windows N.T/2000/2003 Servers or better. Aside from that ASP mostly uses MS-SQL Server as the back end which is really expensiveThe Bottomline: PHP is CheaperCross Platform compatibility PHP programs run on a wider variety of OS Unix, Linux, Solaris and Window’s.ASP on the other hand only works flawlessly with Windows.Bottomline: PHP tops ASP.net in terms of versatility.SecurityThe biggest disadvantage with PHP and any open source software must be the fact that companies do not want it because they do not trust PHP.To be Continued…

ASP vs PHP: Why is PHP Better?

Saturday, June 28th, 2008

This is because in PHP, common tasks like ftp, encrypt passwords in MD5, or send email from a web page all are built in hidden code, and as PHP is Open source there is a lot
of free code available for PHP.

Unlike PHP there is no hidden code with ASP. If you need to upload files, then you would need a third party component like ASP upload, also if you need to
send mail you need another component and so on.

Bottomline: ASP is more Secure than PHP.

Conclusion:
Both have their Pros and Cons. ASP.net is a good innovation but PHP is better in many aspects.

Does more content means better SEO?

Thursday, June 26th, 2008

Search Engine Optimization is complicated because Search Engines do not want you to figure out how they work or how they rank web sites. This is important because otherwise everyone would be able to manipulate them in order to be able reach the top. This is also why Search Engines always update their algorithms.

What you need to do is remember what the basic reasons are for people to go to a web site. These include:

1. Entertainment
2. Information
3. It sells something that you need.

Ensuring that you have a site that people will want to go to will help you rank better with the Search Engines. Of course, if you have a specialized web site then there is probably already enough content for anyone who wants it. However, many pages of really good content will help you here. Plus, as you create more content people will want to return to your web site to see what you have written. They will then continue to return if they like what they see.

All of this has to do with on site SEO, meaning the steps that you take in order to optimize your web site from the inside out. This is important because every page of content will be indexed by the Search Engines and thus each one will have its own title and tags. This will in turn bring you a lot more traffic to your web site. So, yes, more content does mean better SEO for your web site.

Update frequently

Thursday, June 19th, 2008

There’s no better food for search engine spiders than fresh content.

Post and update your blog frequently using all the rules outlined above and there’s no reason why your blog will not get you top rankings in a short period of time.

Archive Effectively

Thursday, June 19th, 2008

The best archives are carefully organized into subjects and date ranges. For search traffic (particularly long tail terms), it can be best to offer the full content of every post in a category on the archive pages, but from a usability standpoint, just linking to each post is far better (possibly with a very short snippet). Balance these two issues and make the decision based on your goals. A last note on archiving - pagination in blogging can be harmful to search traffic, rather than beneficial (as you provide constantly changing, duplicate content pages). Pagination is great for users who scroll to the bottom and want to see more, though, so consider putting a “noindex” in the meta tag or in the robots.txt file to keep spiders where they belong - in the well-organized archive system.
-

Ntfs Cluster Size, better harddrive performance

Wednesday, June 18th, 2008

Cluster is an allocation unit. If you create file lets say 1 byte in size, at least one cluster should be allocated on FAT file system. On NTFS if file is small enough, it can be stored in MFT record itself without using additional clusters. When file grows beyond the cluster boundary, another cluster is allocated. It means that the bigger the cluster size, the more disk space is wasted, however, the performance is better.

So if you have a large hard drive & don’t mind wasting some space, format it with a larger cluster size to gain added performance.

The following table shows the default values that Windows NT/2000/XP uses for NTFS formatting:

Drive size
(logical volume) Cluster size Sectors
———————————————————-
512 MB or less 512 bytes 1
513 MB - 1,024 MB (1 GB) 1,024 bytes (1 KB) 2
1,025 MB - 2,048 MB (2 GB) 2,048 bytes (2 KB) 4
2,049 MB and larger 4,096 bytes (4 KB) 8
However, when you format the partition manually, you can specify cluster size 512 bytes, 1 KB, 2 KB, 4 KB, 8 KB, 16 KB, 32 KB, 64 KB in the format dialog box or as a parameter to the command line FORMAT utility.

The performance comes thew the bursts from the hard drive. by having a larger cluster size, you affectively have a larger chunk of data sent to ram rather than having to read multiple smaller chunks of the same data.