<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-2134621606372966906</id><updated>2012-02-16T18:35:54.770-08:00</updated><title type='text'>Latest php-mysql technical news</title><subtitle type='html'>This Blog is for providing latest technical web related news to the web masters...It is mostly included php  mysql  linux  ajax search engine optimization etc...</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>23</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-7438012508583396605</id><published>2008-08-06T00:13:00.000-07:00</published><updated>2008-08-06T00:14:39.644-07:00</updated><title type='text'>Top Ten Security Vulnerabilities in PHP Code !</title><content type='html'>&lt;h2&gt;1. Unvalidated Parameters&lt;/h2&gt; &lt;p&gt;Most importantly, turn off &lt;code&gt;register_globals&lt;/code&gt;. This configuration setting defaults to off in PHP 4.2.0 and later. Access values from URLs, forms, and cookies through the superglobal arrays &lt;code&gt;$_GET&lt;/code&gt;, &lt;code&gt;$_POST&lt;/code&gt;, and &lt;code&gt;$_COOKIE&lt;/code&gt;.&lt;/p&gt; &lt;p&gt;Before you use values from the superglobal arrays, validate them to make sure they don’t contain unexpected input. If you know what type of value you are expecting, make sure what you’ve got conforms to an expected format. For example, if you’re expecting a US ZIP Code, make sure your value is either five digits or five digits, a hyphen, and four more digits (ZIP+4). Often, regular expressions are the easiest way to validate data:&lt;/p&gt; &lt;pre&gt;if (preg_match('/^\d{5}(-\d{4})?$/',$_GET['zip'])) {&lt;br /&gt;   $zip = $_GET['zip'];&lt;br /&gt;} else {&lt;br /&gt;   die('Invalid ZIP Code format.');&lt;br /&gt;}&lt;/pre&gt; &lt;p&gt;If you’re expecting to receive data in a cookie or a hidden form field that you’ve previously sent to a client, make sure it hasn’t been tampered with by sending a hash of the data and a secret word along with the data. Put the hash in a hidden form field (or in the cookie) along with the data. When you receive the data and the hash, re-hash the data and make sure the new hash matches the old one:&lt;/p&gt; &lt;pre&gt;// sending the cookie&lt;br /&gt;$secret_word = 'gargamel';&lt;br /&gt;$id = 123745323;&lt;br /&gt;$hash = md5($secret_word.$id);&lt;br /&gt;setcookie('id',$id.'-'.$hash);&lt;br /&gt;&lt;br /&gt;// receiving and verifying the cookie&lt;br /&gt;list($cookie_id,$cookie_hash) = explode('-',$_COOKIE['id']);&lt;br /&gt;if (md5($secret_word.$cookie_id) == $cookie_hash) {&lt;br /&gt;   $id = $cookie_id;&lt;br /&gt;} else {&lt;br /&gt;   die('Invalid cookie.');&lt;br /&gt;}&lt;/pre&gt; &lt;p&gt;If a user has changed the ID value in the cookie, the hashes won’t match. The success of this method obviously depends on keeping &lt;code&gt;$secret_word&lt;/code&gt; secret, so put it in a file that can’t be read by just anybody and change it periodically. (But remember, when you change it, old hashes that might be lying around in cookies will no longer be valid.)&lt;/p&gt; &lt;p&gt;&lt;strong&gt;See Also:&lt;/strong&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt; PHP Manual: &lt;a href="http://www.php.net/manual/security.registerglobals"&gt;Using Register Globals&lt;/a&gt;&lt;/li&gt;&lt;li&gt;PHP Cookbook: Recipe 9.7 (”Securing PHP’s Form Processing”), Recipe 14.3 (”Verifying Data with Hashes”)&lt;/li&gt;&lt;/ul&gt; &lt;h2&gt;2. Broken Access Control&lt;/h2&gt; &lt;p&gt;Instead of rolling your own access control solution, use PEAR modules. &lt;code&gt;Auth&lt;/code&gt; does cookie-based authentication for you and &lt;code&gt;Auth_HTTP&lt;/code&gt; does browser-based authentication.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;See Also:&lt;/strong&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;PEAR Packages: &lt;a href="http://pear.php.net/package-info.php?package=Auth"&gt;Auth&lt;/a&gt;, &lt;a href="http://pear.php.net/package-info.php?package=Auth_HTTP"&gt;Auth_HTTP&lt;/a&gt;.&lt;/li&gt;&lt;/ul&gt; &lt;h2&gt;3. Broken Account and Session Management&lt;/h2&gt; &lt;p&gt;Use PHP’s built-in session management functions for secure, standardized session management. However, be careful how your server is configured to store session information. For example, if session contents are stored as world-readable files in /tmp, then any user that logs into the server can see the contents of all the sessions. Store the sessions in a database or in a part of the file system that only trusted users can access.&lt;/p&gt; &lt;p&gt;To prevent network sniffers from scooping up session IDs, session-specific traffic should be sent over SSL. You don’t need to do anything special to PHP when you’re using an SSL connection, but you do need to specially configure your webserver.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;See Also:&lt;/strong&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;PHP Manual: &lt;a href="http://www.php.net/session"&gt;Session handling functions&lt;/a&gt;&lt;/li&gt;&lt;li&gt;PHP Cookbook: Recipe 8.5 (”Using Session Tracking”), Recipe 8.6 (”Storing Sessions in a Database”)&lt;/li&gt;&lt;/ul&gt; &lt;h2&gt;4. Cross-Site Scripting (XSS) Flaws&lt;/h2&gt; &lt;p&gt;Never display any information coming from outside your program without filtering it first. Filter variables before including them in hidden form fields, in query strings, or just plain page output.&lt;/p&gt; &lt;p&gt;PHP gives you plenty of tools to filter untrusted data:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;code&gt;htmlspecialchars()&lt;/code&gt; turns &lt;code&gt;&amp;amp; &gt; " &lt;&lt;/code&gt; into their HTML-entity equivalents and can also convert  single quotes by passing &lt;code&gt;ENT_QUOTES&lt;/code&gt; as a second argument.&lt;/li&gt;&lt;li&gt;&lt;code&gt;strtr()&lt;/code&gt; filters any characters you’d like. Pass &lt;code&gt;strtr()&lt;/code&gt; an array of characters and their replacements. To change &lt;code&gt;(&lt;/code&gt; and &lt;code&gt;)&lt;/code&gt; into their entity equivalents, which is recommended to prevent XSS attacks, do:&lt;br /&gt;&lt;code&gt; $safer = strtr($untrusted, array('(' =&gt; '&amp;#40;', ')' =&gt; '&amp;#41;'));&lt;/code&gt;&lt;/li&gt;&lt;li&gt;&lt;code&gt;strip_tags()&lt;/code&gt; removes HTML and PHP tags from a string.&lt;/li&gt;&lt;li&gt;&lt;code&gt;utf8_decode()&lt;/code&gt; converts the ISO-8859-1 characters in a string encoded with the Unicode UTF-8 encoding to single-byte ASCII characters. Sometimes cross-site scripting attackers attempt to hide their attacks in Unicode encoding. You can use &lt;code&gt;utf8_decode()&lt;/code&gt; to peel off that encoding.&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;&lt;strong&gt;See Also:&lt;/strong&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;PHP Manual: &lt;a href="http://www.php.net/htmlspecialchars"&gt;htmlspecialchars()&lt;/a&gt;, &lt;a href="http://www.php.net/strtr"&gt;strtr()&lt;/a&gt;, &lt;a href="http://www.php.net/strip-tags"&gt;strip_tags()&lt;/a&gt;, &lt;a href="http://www.php.net/utf8-decode"&gt;utf8_decode()&lt;/a&gt;&lt;/li&gt;&lt;li&gt;PHP Cookbook: Recipe 8.8 (”Building a GET Query String”), Recipe 9.8 (”Escaping Control Characters from User Data”)&lt;/li&gt;&lt;/ul&gt; &lt;h2&gt;5. Buffer Overflows&lt;/h2&gt; &lt;p&gt;You can’t allocate memory at runtime in PHP and their are no pointers like in C so your PHP code, however sloppy it may be, won’t have any buffer overflows. What you do have to watch out for, however, are buffer overflows in PHP itself (and its extensions.) Subscribe to the php-announce mailing list to keep abreast of patches and new releases.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;See Also:&lt;/strong&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt; PHP Mailing Lists: &lt;a href="http://www.php.net/mailing-lists.php"&gt;http://www.php.net/mailing-lists.php&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt; &lt;h2&gt;6. Command Injection Flaws&lt;/h2&gt; &lt;p&gt;Cross-site scripting flaws happen when you display unfiltered, unescaped malicious content to a user’s browser. Command injection flaws happen when you pass unfiltered, unescaped malicious commands to an external process or database. To prevent command injection flaws, in addition to validating input, always escape user input before passing it to an external process or database.&lt;/p&gt; &lt;p&gt;If you’re passing user input to a shell (via a command like &lt;code&gt;exec()&lt;/code&gt;, &lt;code&gt;system()&lt;/code&gt;, or the backtick operator), first, ask yourself if you really need to. Most file operations can be performed with native PHP functions. If you absolutely, positively need to run an external program whose name or arguments come from untrusted input, escape program names with &lt;code&gt;escapeshellcmd()&lt;/code&gt; and arguments with &lt;code&gt;escapeshellarg()&lt;/code&gt;.&lt;/p&gt; &lt;p&gt;Before executing an external program or opening an external file, you should also canonicalize its pathname with &lt;code&gt;realpath()&lt;/code&gt;. This expands all symbolic links, translates &lt;code&gt;.&lt;/code&gt; (current directory) &lt;code&gt;..&lt;/code&gt; (parent directory), and removes duplicate directory separators. Once a pathname is canonicalized you can test it to make sure it meets certain criteria, like being beneath the web server document root or in a user’s home directory.&lt;/p&gt; &lt;p&gt;If you’re passing user input to a SQL query, escape the input with &lt;code&gt;addslashes()&lt;/code&gt; before putting it into the query. If you’re using MySQL, escape strings with &lt;code&gt;mysql_real_escape_string()&lt;/code&gt; (or &lt;code&gt;mysql_escape_string()&lt;/code&gt; for PHP versions before 4.3.0). If you’re using the PEAR DB database abstraction layer, you can use the DB::quote() method or use a query placeholder like &lt;code&gt;?&lt;/code&gt;, which automatically escapes the value that replaces the placeholder.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;See Also:&lt;/strong&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt; PHP Manual: &lt;a href="http://www.php.net/escapeshellcmd"&gt;escapeshellcmd()&lt;/a&gt;, &lt;a href="http://www.php.net/escapeshellarg"&gt;escapeshellarg()&lt;/a&gt;, &lt;a href="http://www.php.net/realpath"&gt;realpath()&lt;/a&gt;, &lt;a href="http://www.php.net/addslashes"&gt;addslashes()&lt;/a&gt;, &lt;a href="http://www.php.net/mysql_real_escape_string"&gt;mysql_real_escape_string()&lt;/a&gt;, &lt;a href="http://www.php.net/mysql_escape_string"&gt;mysql_escape_string()&lt;/a&gt;&lt;/li&gt;&lt;li&gt; PEAR Package: &lt;a href="http://pear.php.net/package-info.php?package=DB"&gt;DB&lt;/a&gt;, &lt;a href="http://pear.php.net/manual/en/core.db.php"&gt;DB Documentation&lt;/a&gt;&lt;/li&gt;&lt;li&gt; PHP Cookbook: Recipe 18.20 (”Escaping Shell Metacharacters”), Recipe 10.9 (”Escaping Quotes”)&lt;/li&gt;&lt;/ul&gt; &lt;h2&gt;7. Error Handling Problems&lt;/h2&gt; &lt;p&gt;If users (and attackers) can see the raw error messages returned from PHP, your database, or external programs, they can make educated guesses about how your system is organized and what software you use. These educated guesses make it easier for attackers to break into your system. Error messages shouldn’t contain any descriptive system information. Tell PHP to put error messages in your server’s error log instead of displaying them to a user with these configuration directives:&lt;/p&gt; &lt;pre&gt;log_errors = On&lt;br /&gt;display_errors = Off&lt;/pre&gt; &lt;p&gt;&lt;strong&gt;See Also:&lt;/strong&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt; PHP Manual: &lt;a href="http://www.php.net/errorfunc"&gt;Error Handling and Logging Functions&lt;/a&gt;&lt;/li&gt;&lt;li&gt; PHP Cookbook: Recipe 8.14 (”Hiding Error Messages from Users”)&lt;/li&gt;&lt;/ul&gt; &lt;h2&gt;8. Insecure Use of Cryptography&lt;/h2&gt; &lt;p&gt;The &lt;code&gt;mcrypt&lt;/code&gt; extension provides a standardized interface to many popular cryptographic algorithms. Use &lt;code&gt;mcrypt&lt;/code&gt; instead of rolling your own encryption scheme. Also, be careful about where (if anywhere) you store encryption keys. The strongest algorithm in the world is pointless if an attacker can easily obtain a key for decryption. If you need to store keys at all, store them apart from encrypted data. Better yet, don’t store the keys and prompt users to enter them when something needs to be decrypted. (Of course, if you’re prompting a user over the web for sensitive information like an encryption key, that prompt and the user’s reply should be passed over SSL.)&lt;/p&gt; &lt;p&gt;&lt;strong&gt;See Also:&lt;/strong&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;PHP Manual: &lt;a href="http://www.php.net/mcrypt"&gt;Mcrypt Encryption Functions&lt;/a&gt;&lt;/li&gt;&lt;li&gt;PHP Cookbook: Recipe 14.7 (”Encrypting and Decrypting Data”)&lt;/li&gt;&lt;/ul&gt; &lt;h2&gt;9. Remote Administration Flaws&lt;/h2&gt; &lt;p&gt;When possible, run remote administration tools over an SSL connection to prevent sniffing of passwords and content. If you’ve installed third-party software that has a remote administration component, change the default administrative user names and passwords. Change the default administrative URL as well, if possible. Running administrative tools on a different web server than the public web server that the administrative tool administrates can be a good idea as well.&lt;/p&gt; &lt;h2&gt;10. Web and Application Server Misconfiguration&lt;/h2&gt; &lt;p&gt;Keep on top of PHP patches and security problems by subscribing to the php-announce mailing list. Stay away from the automatic PHP source display handler (&lt;code&gt;AddType application/x-httpd-php-source .phps&lt;/code&gt;), since it lets attackers look at your code. Of the two sample &lt;code&gt;php.ini&lt;/code&gt; files distributed with PHP ( &lt;code&gt;php.ini-dist&lt;/code&gt; and &lt;code&gt;php.ini-recommended&lt;/code&gt;), use &lt;code&gt;php.ini-recommended&lt;/code&gt; as a base for your site configuration.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-7438012508583396605?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/7438012508583396605/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=7438012508583396605' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/7438012508583396605'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/7438012508583396605'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2008/08/top-ten-security-vulnerabilities-in-php.html' title='Top Ten Security Vulnerabilities in PHP Code !'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-2484730424660567585</id><published>2008-03-27T04:33:00.000-07:00</published><updated>2008-03-27T04:35:29.354-07:00</updated><title type='text'>Best Practices for Speeding Up Your Web Site</title><content type='html'>&lt;h2&gt;High Performance Web Sites: The Importance of Front-End Performance&lt;/h2&gt; &lt;p&gt;In 2004, I started the Exceptional Performance group at Yahoo!. We’re a small team chartered to measure and improve the performance of Yahoo!’s products. Having worked as a back-end engineer most of my career, I approached this as I would a code optimization project - I profiled web performance to identify where there was the greatest opportunity for improvement. Since our goal is to improve the end-user experience, I measured response times in a browser over various bandwidth speeds. What I saw is illustrated in the following chart showing HTTP traffic for &lt;a linkindex="35" href="http://www.yahoo.com/"&gt;http://www.yahoo.com&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;&lt;img src="http://l.yimg.com/us.yimg.com/i/rt/stair-step-ydn-blog.gif" /&gt;&lt;/p&gt; &lt;p&gt;In the figure above, the first bar, labeled “html”, is the initial request for the HTML document. In this case, only 5% of the end-user response time is spent fetching the HTML document. This result holds true for almost all web sites. In sampling the top ten U.S. websites, all but one spend less than 20% of the total response time getting the HTML document. The other 80+% of the time is spent dealing with what’s in the HTML document, namely, the front-end. That’s why the key to faster web sites is to focus on improving front-end performance.&lt;/p&gt; &lt;p style="margin-bottom: 0pt;"&gt; There are three main reasons why front-end performance is the place to start.&lt;/p&gt; &lt;ol style="margin-top: 0pt;"&gt;&lt;li&gt; There is more potential for improvement by focusing on the front-end. Cutting it in half reduces response times by 40% or more, whereas cutting back-end performance in half results in less than a 10% reduction.&lt;/li&gt;&lt;li&gt; Front-end improvements typically require less time and resources than back-end projects (redesigning application architecture and code, finding and optimizing critical code paths, adding or modifying hardware, distributing databases, etc.).&lt;/li&gt;&lt;li&gt; Front-end performance tuning has been proven to work. Over fifty teams at Yahoo! have reduced their end-user response times by following our performance best practices, often by 25% or more.&lt;/li&gt;&lt;/ol&gt; &lt;p&gt;Our performance golden rule is: &lt;i&gt;optimize front-end performance first, that’s where 80% or more of the end-user response time is spent&lt;/i&gt;.&lt;/p&gt; &lt;p&gt;&lt;a linkindex="36" href="http://developer.yahoo.net/blog/archives/2007/03/high_performanc.html"&gt;Discuss the Importance of Front-End Performance&lt;/a&gt;&lt;/p&gt; &lt;h2 class="first"&gt;1: Minimize HTTP Requests&lt;/h2&gt; &lt;p&gt;80% of the end-user response time is spent on the front-end. Most of this time is tied up in downloading all the components in the page: images, stylesheets, scripts, Flash, etc. Reducing the number of components in turn reduces the number of HTTP requests required to render the page. This is the key to faster pages.&lt;/p&gt; &lt;p&gt;One way to reduce the number of components in the page is to simplify the page’s design. But is there a way to build pages with richer content while also achieving fast response times? Here are some techniques for reducing the number of HTTP requests, while still supporting rich page designs.&lt;/p&gt; &lt;p&gt;&lt;a linkindex="37" href="http://www.w3.org/TR/html401/struct/objects.html#h-13.6"&gt;&lt;b&gt;Image maps&lt;/b&gt;&lt;/a&gt; combine multiple images into a single image. The overall size is about the same, but reducing the number of HTTP requests speeds up the page. Image maps only work if the images are contiguous in the page, such as a navigation bar. Defining the coordinates of image maps can be tedious and error prone.&lt;/p&gt; &lt;p&gt;&lt;a linkindex="38" href="http://alistapart.com/articles/sprites"&gt;&lt;b&gt;CSS Sprites&lt;/b&gt;&lt;/a&gt; are the preferred method for reducing the number of image requests. Combine all the images in your page into a single image and use the CSS &lt;code&gt;background-image&lt;/code&gt; and &lt;code&gt;background-position&lt;/code&gt; properties to display the desired image segment.&lt;/p&gt; &lt;p&gt;&lt;b&gt;Inline images&lt;/b&gt; use the &lt;a linkindex="39" href="http://tools.ietf.org/html/rfc2397"&gt;&lt;code&gt;data:&lt;/code&gt; URL scheme&lt;/a&gt; to embed the image data in the actual page. This can increase the size of your HTML document. Combining inline images into your (cached) stylesheets is a way to reduce HTTP requests and avoid increasing the size of your pages.&lt;/p&gt; &lt;p&gt;&lt;b&gt;Combined files&lt;/b&gt; are a way to reduce the number of HTTP requests by combining all scripts into a single script, and similarly combining all stylesheets into a single stylesheet. It’s a simple idea that hasn’t seen wide adoption. The ten top U.S. web sites average 7 scripts and 2 stylesheets per page. Combining files is more challenging when the scripts and stylesheets vary from page to page, but making this part of your release process improves response times.&lt;/p&gt; &lt;p&gt;Reducing the number of HTTP requests in your page is the place to start. This is the most important guideline for improving performance for first time visitors. As described in Tenni Theurer’s blog &lt;a set="yes" linkindex="40" href="http://yuiblog.com/blog/2007/01/04/performance-research-part-2/"&gt;Browser Cache Usage - Exposed!&lt;/a&gt;, 40-60% of daily visitors to your site come in with an empty cache. Making your page fast for these first time visitors is key to a better user experience.&lt;/p&gt; &lt;p&gt;&lt;a linkindex="41" href="http://developer.yahoo.net/blog/archives/2007/04/rule_1_make_few.html"&gt;Discuss Rule 1&lt;/a&gt;&lt;/p&gt; &lt;h2&gt;2: Use a Content Delivery Network&lt;/h2&gt; &lt;p&gt;The user’s proximity to your web server has an impact on response times. Deploying your content across multiple, geographically dispersed servers will make your pages load faster from the user’s perspective. But where should you start?&lt;/p&gt; &lt;p&gt;As a first step to implementing geographically dispersed content, don’t attempt to redesign your web application to work in a distributed architecture. Depending on the application, changing the architecture could include daunting tasks such as synchronizing session state and replicating database transactions across server locations. Attempts to reduce the distance between users and your content could be delayed by, or never pass, this application architecture step.&lt;/p&gt; &lt;p&gt;Remember that 80-90% of the end-user response time is spent downloading all the components in the page: images, stylesheets, scripts, Flash, etc. This is the &lt;i&gt;Performance Golden Rule&lt;/i&gt;, as explained in &lt;a set="yes" linkindex="42" href="http://developer.yahoo.net/blog/archives/2007/03/high_performanc.html"&gt;The Importance of Front-End Performance&lt;/a&gt;. Rather than starting with the difficult task of redesigning your application architecture, it’s better to first disperse your static content. This not only achieves a bigger reduction in response times, but it’s easier thanks to content delivery networks.&lt;/p&gt; &lt;p&gt;A content delivery network (CDN) is a collection of web servers distributed across multiple locations to deliver content more efficiently to users. The server selected for delivering content to a specific user is typically based on a measure of network proximity. For example, the server with the fewest network hops or the server with the quickest response time is chosen.&lt;/p&gt; &lt;p&gt;Some large Internet companies own their own CDN, but it’s cost-effective to use a CDN service provider, such as &lt;a set="yes" linkindex="43" href="http://www.akamai.com/"&gt;Akamai Technologies&lt;/a&gt;, &lt;a linkindex="44" href="http://www.mirror-image.com/"&gt;Mirror Image Internet&lt;/a&gt;, or &lt;a linkindex="45" href="http://www.limelightnetworks.com/"&gt;Limelight Networks&lt;/a&gt;. For start-up companies and private web sites, the cost of a CDN service can be prohibitive, but as your target audience grows larger and becomes more global, a CDN is necessary to achieve fast response times. At Yahoo!, properties that moved static content off their application web servers to a CDN improved end-user response times by 20% or more. Switching to a CDN is a relatively easy code change that will dramatically improve the speed of your web site.&lt;/p&gt; &lt;p&gt;&lt;a linkindex="46" href="http://developer.yahoo.net/blog/archives/2007/04/high_performanc_1.html"&gt;Discuss Rule 2&lt;/a&gt;&lt;/p&gt; &lt;h2&gt;3: Add an Expires Header&lt;/h2&gt; &lt;p&gt;Web page designs are getting richer and richer, which means more scripts, stylesheets, images, and Flash in the page. A first-time visitor to your page may have to make several HTTP requests, but by using the Expires header you make those components cacheable. This avoids unnecessary HTTP requests on subsequent page views. Expires headers are most often used with images, but they should be used on &lt;i&gt;all&lt;/i&gt; components including scripts, stylesheets, and Flash components.&lt;/p&gt; &lt;p&gt;Browsers (and proxies) use a cache to reduce the number and size of HTTP requests, making web pages load faster. A web server uses the Expires header in the HTTP response to tell the client how long a component can be cached. This is a far future Expires header, telling the browser that this response won’t be stale until April 15, 2010.&lt;/p&gt; &lt;pre&gt;      Expires: Thu, 15 Apr 2010 20:00:00 GMT&lt;/pre&gt; &lt;p&gt;If your server is Apache, use the ExiresDefault directive to set an expiration date relative to the current date. This example of the ExpiresDefault directive sets the Expires date 10 years out from the time of the request.&lt;/p&gt; &lt;pre&gt;      ExpiresDefault "access plus 10 years"&lt;/pre&gt; &lt;p&gt;Keep in mind, if you use a far future Expires header you have to change the component’s filename whenever the component changes. At Yahoo! we often make this step part of the build process: a version number is embedded in the component’s filename, for example, yahoo_2.0.6.js.&lt;/p&gt; &lt;p&gt;Using a far future Expires header affects page views only after a user has already visited your site. It has no effect on the number of HTTP requests when a user visits your site for the first time and the browser’s cache is empty. The impact of this performance improvement depends, therefore, on how often users hit your pages with a primed cache. (A “primed cache” already contains all of the components in the page.) We &lt;a linkindex="47" href="http://yuiblog.com/blog/2007/01/04/performance-research-part-2/"&gt;measured this at Yahoo!&lt;/a&gt; and found the number of page views with a primed cache is 75-85%. By using a far future Expires header, you increase the number of components that are cached by the browser and re-used on subsequent page views without sending a single byte over the user’s Internet connection.&lt;/p&gt; &lt;p&gt;&lt;a linkindex="48" href="http://developer.yahoo.net/blog/archives/2007/05/high_performanc_2.html"&gt;Discuss Rule 3&lt;/a&gt;&lt;/p&gt; &lt;h2&gt;4: Gzip Components&lt;/h2&gt; &lt;p&gt;The time it takes to transfer an HTTP request and response across the network can be significantly reduced by decisions made by front-end engineers. It’s true that the end-user’s bandwidth speed, Internet service provider, proximity to peering exchange points, etc. are beyond the control of the development team. But there are other variables that affect response times. Compression reduces response times by reducing the size of the HTTP response.&lt;/p&gt; &lt;p&gt;Starting with HTTP/1.1, web clients indicate support for compression with the Accept-Encoding header in the HTTP request.&lt;/p&gt; &lt;pre&gt;      Accept-Encoding: gzip, deflate&lt;/pre&gt; &lt;p&gt;If the web server sees this header in the request, it may compress the response using one of the methods listed by the client. The web server notifies the web client of this via the Content-Encoding header in the response.&lt;/p&gt; &lt;pre&gt;      Content-Encoding: gzip&lt;/pre&gt; &lt;p&gt;Gzip is the most popular and effective compression method at this time. It was developed by the GNU project and standardized by &lt;a linkindex="49" href="http://www.ietf.org/rfc/rfc1952.txt"&gt;RFC 1952&lt;/a&gt;. The only other compression format you’re likely to see is deflate, but it’s less effective and less popular.&lt;/p&gt; &lt;p&gt;Gzipping generally reduces the response size by about 70%. Approximately 90% of today’s Internet traffic travels through browsers that claim to support gzip. If you use Apache, the module configuring gzip depends on your version: Apache 1.3 uses &lt;a linkindex="50" href="http://sourceforge.net/projects/mod-gzip/"&gt;mod_gzip&lt;/a&gt; while Apache 2.x uses &lt;a linkindex="51" href="http://httpd.apache.org/docs/2.0/mod/mod_deflate.html"&gt;mod_deflate&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;There are known issues with browsers and proxies that may cause a mismatch in what the browser expects and what it receives with regard to compressed content. Fortunately, these edge cases are dwindling as the use of older browsers drops off. The Apache modules help out by adding appropriate Vary response headers automatically.&lt;/p&gt; &lt;p&gt;Servers choose what to gzip based on file type, but are typically too limited in what they decide to compress. Most web sites gzip their HTML documents. It’s also worthwhile to gzip your scripts and stylesheets, but many web sites miss this opportunity. In fact, it’s worthwhile to compress any text response including XML and JSON. Image and PDF files should not be gzipped because they are already compressed. Trying to gzip them not only wastes CPU but can potentially increase file sizes.&lt;/p&gt; &lt;p&gt;Gzipping as many file types as possible is an easy way to reduce page weight and accelerate the user experience.&lt;/p&gt; &lt;p&gt;&lt;a linkindex="52" href="http://developer.yahoo.net/blog/archives/2007/07/high_performanc_3.html"&gt;Discuss Rule 4&lt;/a&gt;&lt;/p&gt; &lt;h2&gt;5: Put Stylesheets at the Top&lt;/h2&gt; &lt;p&gt;While researching performance at Yahoo!, we discovered that moving stylesheets to the document HEAD makes pages load faster. This is because putting stylesheets in the HEAD allows the page to render progressively.&lt;/p&gt; &lt;p&gt;Front-end engineers that care about performance want a page to load progressively; that is, we want the browser to display whatever content it has as soon as possible. This is especially important for pages with a lot of content and for users on slower Internet connections. The importance of giving users visual feedback, such as progress indicators, has been well researched and &lt;a set="yes" linkindex="53" href="http://www.useit.com/papers/responsetime.html"&gt;documented&lt;/a&gt;. In our case the HTML page is the progress indicator! When the browser loads the page progressively the header, the navigation bar, the logo at the top, etc. all serve as visual feedback for the user who is waiting for the page. This improves the overall user experience.&lt;/p&gt; &lt;p&gt;The problem with putting stylesheets near the bottom of the document is that it prohibits progressive rendering in many browsers, including Internet Explorer. Browsers block rendering to avoid having to redraw elements of the page if their styles change. The user is stuck viewing a blank white page. Firefox doesn’t block rendering, which means when the stylesheet is done loading it’s possible elements in the page will have to be redrawn, resulting in the &lt;a linkindex="54" href="http://weblogs.mozillazine.org/hyatt/archives/2004_05.html#005496"&gt;flash of unstyled content&lt;/a&gt; problem.&lt;/p&gt; &lt;p&gt;The &lt;a linkindex="55" href="http://www.w3.org/TR/html4/struct/links.html#h-12.3"&gt;HTML specification&lt;/a&gt; clearly states that stylesheets are to be included in the HEAD of the page: “Unlike A, [LINK] may only appear in the HEAD section of a document, although it may appear any number of times.” Neither of the alternatives, the blank white screen or flash of unstyled content, are worth the risk. The optimal solution is to follow the HTML specification and load your stylesheets in the document HEAD.&lt;/p&gt; &lt;p&gt;&lt;a linkindex="56" href="http://developer.yahoo.net/blog/archives/2007/07/high_performanc_4.html"&gt;Discuss Rule 5&lt;/a&gt;&lt;/p&gt; &lt;h2&gt;6: Put Scripts at the Bottom&lt;/h2&gt; &lt;p&gt;Rule 5 described how stylesheets near the bottom of the page prohibit progressive rendering, and how moving them to the document HEAD eliminates the problem. Scripts (external JavaScript files) pose a similar problem, but the solution is just the opposite: it’s better to move scripts from the top to as low in the page as possible. One reason is to enable progressive rendering, but another is to achieve greater download parallelization.&lt;/p&gt; &lt;p&gt;With stylesheets, progressive rendering is blocked until all stylesheets have been downloaded. That’s why it’s best to move stylesheets to the document HEAD, so they get downloaded first and rendering isn’t blocked. With scripts, progressive rendering is blocked for all content &lt;i&gt;below&lt;/i&gt; the script. Moving scripts as low in the page as possible means there’s more content above the script that is rendered sooner.&lt;/p&gt; &lt;p&gt;The second problem caused by scripts is blocking parallel downloads. The &lt;a linkindex="57" href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec8.html#sec8.1.4"&gt;HTTP/1.1 specification&lt;/a&gt; suggests that browsers download no more than two components in parallel per hostname. If you serve your images from multiple hostnames, you can get more than two downloads to occur in parallel. (I’ve gotten Internet Explorer to download over 100 images in parallel.) While a script is downloading, however, the browser won’t start any other downloads, even on different hostnames.&lt;/p&gt; &lt;p&gt;In some situations it’s not easy to move scripts to the bottom. If, for example, the script uses &lt;code&gt;document.write&lt;/code&gt; to insert part of the page’s content, it can’t be moved lower in the page. There might also be scoping issues. In many cases, there are ways to workaround these situations.&lt;/p&gt; &lt;p&gt;An alternative suggestion that often comes up is to use deferred scripts. The &lt;code&gt;DEFER&lt;/code&gt; attribute indicates that the script does not contain document.write, and is a clue to browsers that they can continue rendering. Unfortunately, Firefox doesn’t support the &lt;code&gt;DEFER&lt;/code&gt; attribute. In Internet Explorer, the script may be deferred, but not as much as desired. If a script can be deferred, it can also be moved to the bottom of the page. That will make your web pages load faster.&lt;/p&gt; &lt;p&gt;&lt;a linkindex="58" href="http://developer.yahoo.net/blog/archives/2007/07/high_performanc_5.html"&gt;Discuss Rule 6&lt;/a&gt;&lt;/p&gt; &lt;h2&gt;7: Avoid CSS Expressions&lt;/h2&gt; &lt;p&gt;CSS expressions are a powerful (and dangerous) way to set CSS properties dynamically. They’re supported in Internet Explorer, starting with &lt;a linkindex="59" href="http://msdn.microsoft.com/workshop/author/dhtml/overview/recalc.asp"&gt;version 5&lt;/a&gt;. As an example, the background color could be set to alternate every hour using CSS expressions.&lt;/p&gt; &lt;pre&gt;      background-color: expression( (new Date()).getHours()%2 ? "#B8D4FF" : "#F08A00" );&lt;/pre&gt; &lt;p&gt;As shown here, the &lt;code&gt;expression&lt;/code&gt; method accepts a JavaScript expression. The CSS property is set to the result of evaluating the JavaScript expression. The &lt;code&gt;expression&lt;/code&gt; method is ignored by other browsers, so it is useful for setting properties in Internet Explorer needed to create a consistent experience across browsers.&lt;/p&gt; &lt;p&gt;The problem with expressions is that they are evaluated more frequently than most people expect. Not only are they evaluated when the page is rendered and resized, but also when the page is scrolled and even when the user moves the mouse over the page. Adding a counter to the CSS expression allows us to keep track of when and how often a CSS expression is evaluated. Moving the mouse around the page can easily generate more than 10,000 evaluations.&lt;/p&gt; &lt;p&gt;One way to reduce the number of times your CSS expression is evaluated is to use one-time expressions, where the first time the expression is evaluated it sets the style property to an explicit value, which replaces the CSS expression. If the style property must be set dynamically throughout the life of the page, using event handlers instead of CSS expressions is an alternative approach. If you must use CSS expressions, remember that they may be evaluated thousands of times and could affect the performance of your page.&lt;/p&gt; &lt;p&gt;&lt;a linkindex="60" href="http://developer.yahoo.net/blog/archives/2007/07/high_performanc_6.html"&gt;Discuss Rule 7&lt;/a&gt;&lt;/p&gt; &lt;h2&gt;8: Make JavaScript and CSS External&lt;/h2&gt; &lt;p&gt;Many of these performance rules deal with how external components are managed. However, before these considerations arise you should ask a more basic question: Should JavaScript and CSS be contained in external files, or inlined in the page itself?&lt;/p&gt; &lt;p&gt;Using external files in the real world generally produces faster pages because the JavaScript and CSS files are cached by the browser. JavaScript and CSS that are inlined in HTML documents get downloaded every time the HTML document is requested. This reduces the number of HTTP requests that are needed, but increases the size of the HTML document. On the other hand, if the JavaScript and CSS are in external files cached by the browser, the size of the HTML document is reduced without increasing the number of HTTP requests.&lt;/p&gt; &lt;p&gt;The key factor, then, is the frequency with which external JavaScript and CSS components are cached relative to the number of HTML documents requested. This factor, although difficult to quantify, can be gauged using various metrics. If users on your site have multiple page views per session and many of your pages re-use the same scripts and stylesheets, there is a greater potential benefit from cached external files.&lt;/p&gt; &lt;p&gt;Many web sites fall in the middle of these metrics. For these properties, the best solution generally is to deploy the JavaScript and CSS as external files. The only exception I’ve seen where inlining is preferable is with home pages, such as Yahoo!’s front page (http://www.yahoo.com) and My Yahoo! (http://my.yahoo.com). Home pages that have few (perhaps only one) page view per session may find that inlining JavaScript and CSS results in faster end-user response times.&lt;/p&gt; &lt;p&gt;For front pages that are typically the first of many page views, there are techniques that leverage the reduction of HTTP requests that inlining provides, as well as the caching benefits achieved through using external files. One such technique is to inline JavaScript and CSS in the front page, but dynamically download the external files after the page has finished loading. Subsequent pages would reference the external files that should already be in the browser’s cache.&lt;/p&gt; &lt;p&gt;&lt;a linkindex="61" href="http://developer.yahoo.net/blog/archives/2007/07/rule_8_make_jav.html"&gt;Discuss Rule 8&lt;/a&gt;&lt;/p&gt; &lt;h2&gt;9: Reduce DNS Lookups&lt;/h2&gt; &lt;p&gt;The Domain Name System (DNS) maps hostnames to IP addresses, just as phonebooks map people’s names to their phone numbers. When you type www.yahoo.com into your browser, a DNS resolver contacted by the browser returns that server’s IP address. DNS has a cost. It typically takes 20-120 milliseconds for DNS to lookup the IP address for a given hostname. The browser can’t download anything from this hostname until the DNS lookup is completed.&lt;/p&gt; &lt;p&gt;DNS lookups are cached for better performance. This caching can occur on a special caching server, maintained by the user’s ISP or local area network, but there is also caching that occurs on the individual user’s computer. The DNS information remains in the operating system’s DNS cache (the “DNS Client service” on Microsoft Windows). Most browsers have their own caches, separate from the operating system’s cache. As long as the browser keeps a DNS record in its own cache, it doesn’t bother the operating system with a request for the record.&lt;/p&gt; &lt;p&gt;Internet Explorer caches DNS lookups for 30 minutes by default, as specified by the  &lt;code&gt;DnsCacheTimeout&lt;/code&gt; registry setting. Firefox caches DNS lookups for 1 minute, controlled by the &lt;code&gt;network.dnsCacheExpiration&lt;/code&gt; configuration setting. (Fasterfox changes this to 1 hour.)&lt;/p&gt; &lt;p&gt;When the client’s DNS cache is empty (for both the browser and the operating system), the number of DNS lookups is equal to the number of unique hostnames in the web page. This includes the hostnames used in the page’s URL, images, script files, stylesheets, Flash objects, etc. Reducing the number of unique hostnames reduces the number of DNS lookups.&lt;/p&gt; &lt;p&gt;Reducing the number of unique hostnames has the potential to reduce the amount of parallel downloading that takes place in the page. Avoiding DNS lookups cuts response times, but reducing parallel downloads may increase response times. My guideline is to split these components across at least two but no more than four hostnames. This results in a good compromise between reducing DNS lookups and allowing a high degree of parallel downloads.&lt;/p&gt; &lt;p&gt;&lt;a linkindex="62" href="http://developer.yahoo.net/blog/archives/2007/07/high_performanc_7.html"&gt;Discuss Rule 9&lt;/a&gt;&lt;/p&gt; &lt;h2&gt;10: Minify JavaScript&lt;/h2&gt; &lt;p&gt;Minification is the practice of removing unnecessary characters from code to reduce its size thereby improving load times. When code is minified all comments are removed, as well as unneeded white space characters (space, newline, and tab). In the case of JavaScript, this improves response time performance because the size of the downloaded file is reduced. Two popular tools for minifying JavaScript code are &lt;a linkindex="63" href="http://crockford.com/javascript/jsmin"&gt;JSMin&lt;/a&gt; and &lt;a linkindex="64" href="http://developer.yahoo.com/yui/compressor/"&gt;YUI Compressor&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;Obfuscation is an alternative optimization that can be applied to source code. Like minification, it removes comments and white space, but it also munges the code. As part of munging, function and variable names are converted into smaller strings making the code more compact as well as harder to read. This is typically done to make it more difficult to reverse engineer the code. But munging can help performance because it reduces the code size beyond what is achieved by minification. The tool-of-choice is less clear in the area of JavaScript obfuscation. Dojo Compressor (&lt;a linkindex="65" href="http://dojotoolkit.org/docs/shrinksafe"&gt;ShrinkSafe&lt;/a&gt;) is the one I’ve seen used the most.&lt;/p&gt; &lt;p&gt;Minification is a safe, fairly straightforward process. Obfuscation, on the other hand, is more complex and thus more likely to generate bugs as a result of the obfuscation step itself. Obfuscation also requires modifying your code to indicate API functions and other symbols that should not be munged. It also makes it harder to debug your code in production. Although I’ve never seen problems introduced from minification, I have seen bugs caused by obfuscation. In a survey of ten top U.S. web sites, minification achieved a 21% size reduction versus 25% for obfuscation. Although obfuscation has a higher size reduction, I recommend minifying JavaScript code because of the reduced risks and maintenance costs.&lt;/p&gt; &lt;p&gt;In addition to minifying external scripts, inlined script blocks can and should also be minified. Even if you gzip your scripts, as described in &lt;a linkindex="66" href="http://developer.yahoo.com/performance/rules.html#gzip"&gt;Rule 4&lt;/a&gt;, minifying them will still reduce the size by 5% or more. As the use and size of JavaScript increases, so will the savings gained by minifying your JavaScript code.&lt;/p&gt; &lt;p&gt;&lt;a linkindex="67" href="http://developer.yahoo.net/blog/archives/2007/07/high_performanc_8.html"&gt;Discuss Rule 10&lt;/a&gt;&lt;/p&gt; &lt;h2&gt;11: Avoid Redirects&lt;/h2&gt; &lt;p&gt;Redirects are accomplished using the 301 and 302 status codes. Here’s an example of the HTTP headers in a 301 response:&lt;/p&gt; &lt;pre&gt;      HTTP/1.1 301 Moved Permanently&lt;br /&gt;    Location: http://example.com/newuri&lt;br /&gt;    Content-Type: text/html&lt;/pre&gt; &lt;p&gt;The browser automatically takes the user to the URL specified in the &lt;code&gt;Location&lt;/code&gt; field. All the information necessary for a redirect is in the headers. The body of the response is typically empty. Despite their names, neither a 301 nor a 302 response is cached in practice unless additional headers, such as &lt;code&gt;Expires&lt;/code&gt; or &lt;code&gt;Cache-Control&lt;/code&gt;, indicate it should be. The meta refresh tag and JavaScript are other ways to direct users to a different URL, but if you must do a redirect, the preferred technique is to use the standard 3xx HTTP status codes, primarily to ensure the back button works correctly.&lt;/p&gt; &lt;p&gt;The main thing to remember is that redirects slow down the user experience. Inserting a redirect between the user and the HTML document delays everything in the page since nothing in the page can be rendered and no components can start being downloaded until the HTML document has arrived.&lt;/p&gt; &lt;p&gt;One of the most wasteful redirects happens frequently and web developers are generally not aware of it. It occurs when a trailing slash (/) is missing from a URL that should otherwise have one. For example, going to &lt;a linkindex="68" href="http://astrology.yahoo.com/astrology"&gt;http://astrology.yahoo.com/astrology&lt;/a&gt; results in a 301 response containing a redirect to &lt;a linkindex="69" href="http://astrology.yahoo.com/astrology/"&gt;http://astrology.yahoo.com/astrology/&lt;/a&gt; (notice the added trailing slash). This is fixed in Apache by using &lt;code&gt;Alias&lt;/code&gt; or &lt;code&gt;mod_rewrite&lt;/code&gt;, or the &lt;code&gt;DirectorySlash&lt;/code&gt; directive if you’re using Apache handlers.&lt;/p&gt; &lt;p&gt;Connecting an old web site to a new one is another common use for redirects. Others include connecting different parts of a website and directing the user based on certain conditions (type of browser, type of user account, etc.). Using a redirect to connect two web sites is simple and requires little additional coding. Although using redirects in these situations reduces the complexity for developers, it degrades the user experience. Alternatives for this use of redirects include using &lt;code&gt;Alias&lt;/code&gt; and &lt;code&gt;mod_rewrite&lt;/code&gt; if the two code paths are hosted on the same server. If a domain name change is the cause of using redirects, an alternative is to create a CNAME (a DNS record that creates an alias pointing from one domain name to another) in combination with &lt;code&gt;Alias&lt;/code&gt; or &lt;code&gt;mod_rewrite&lt;/code&gt;.&lt;/p&gt; &lt;p&gt;&lt;a linkindex="70" href="http://developer.yahoo.net/blog/archives/2007/07/high_performanc_9.html"&gt;Discuss Rule 11&lt;/a&gt;&lt;/p&gt; &lt;h2&gt;12: Remove Duplicate Scripts&lt;/h2&gt; &lt;p&gt;It hurts performance to include the same JavaScript file twice in one page. This isn’t as unusual as you might think. A review of the ten top U.S. web sites shows that two of them contain a duplicated script. Two main factors increase the odds of a script being duplicated in a single web page: team size and number of scripts. When it does happen, duplicate scripts hurt performance by creating unnecessary HTTP requests and wasted JavaScript execution.&lt;/p&gt; &lt;p&gt;Unnecessary HTTP requests happen in Internet Explorer, but not in Firefox. In Internet Explorer, if an external script is included twice and is not cacheable, it generates two HTTP requests during page loading. Even if the script is cacheable, extra HTTP requests occur when the user reloads the page.&lt;/p&gt; &lt;p&gt;In addition to generating wasteful HTTP requests, time is wasted evaluating the script multiple times. This redundant JavaScript execution happens in both Firefox and Internet Explorer, regardless of whether the script is cacheable.&lt;/p&gt; &lt;p&gt;One way to avoid accidentally including the same script twice is to implement a script management module in your templating system. The typical way to include a script is to use the SCRIPT tag in your HTML page.&lt;/p&gt; &lt;pre&gt;      script type="text/javascript" src="menu_1.0.17.js"&gt;&lt;/pre&gt; &lt;p&gt;An alternative in PHP would be to create a function called &lt;code&gt;insertScript&lt;/code&gt;.&lt;/p&gt; &lt;pre&gt;      &lt;/pre&gt; &lt;p&gt;In addition to preventing the same script from being inserted multiple times, this function could handle other issues with scripts, such as dependency checking and adding version numbers to script filenames to support far future Expires headers.&lt;/p&gt; &lt;p&gt;&lt;a linkindex="71" href="http://developer.yahoo.net/blog/archives/2007/07/high_performanc_10.html"&gt;Discuss Rule 12&lt;/a&gt;&lt;/p&gt; &lt;h2&gt;13: Configure ETags&lt;/h2&gt; &lt;p&gt;Entity tags (ETags) are a mechanism that web servers and browsers use to determine whether the component in the browser’s cache matches the one on the origin server. (An “entity” is another word for what I’ve been calling a “component”: images, scripts, stylesheets, etc.) ETags were added to provide a mechanism for validating entities that is more flexible than the last-modified date. An ETag is a string that uniquely identifies a specific version of a component. The only format constraints are that the string be quoted. The origin server specifies the component’s ETag using the &lt;code&gt;ETag&lt;/code&gt; response header.&lt;/p&gt; &lt;pre&gt;      HTTP/1.1 200 OK&lt;br /&gt;    Last-Modified: Tue, 12 Dec 2006 03:03:59 GMT&lt;br /&gt;    ETag: "10c24bc-4ab-457e1c1f"&lt;br /&gt;    Content-Length: 12195&lt;/pre&gt; &lt;p&gt;Later, if the browser has to validate a component, it uses the &lt;code&gt;If-None-Match&lt;/code&gt; header to pass the ETag back to the origin server. If the ETags match, a 304 status code is returned reducing the response by 12195 bytes for this example.&lt;/p&gt; &lt;pre&gt;      GET /i/yahoo.gif HTTP/1.1&lt;br /&gt;    Host: us.yimg.com&lt;br /&gt;    If-Modified-Since: Tue, 12 Dec 2006 03:03:59 GMT&lt;br /&gt;    If-None-Match: "10c24bc-4ab-457e1c1f"&lt;br /&gt;    HTTP/1.1 304 Not Modified&lt;/pre&gt; &lt;p&gt;The problem with ETags is that they typically are constructed using attributes that make them unique to a specific server hosting a site. ETags won’t match when a browser gets the original component from one server and later tries to validate that component on a different server, a situation that is all too common on Web sites that use a cluster of servers to handle requests. By default, both Apache and IIS embed data in the ETag that dramatically reduces the odds of the validity test succeeding on web sites with multiple servers.&lt;/p&gt; &lt;p&gt;The ETag format for Apache 1.3 and 2.x is &lt;code&gt;inode-size-timestamp&lt;/code&gt;. Although a given file may reside in the same directory across multiple servers, and have the same file size, permissions, timestamp, etc., its inode is different from one server to the next.&lt;/p&gt; &lt;p&gt;IIS 5.0 and 6.0 have a similar issue with ETags. The format for ETags on IIS is &lt;code&gt;Filetimestamp:ChangeNumber&lt;/code&gt;. A &lt;code&gt;ChangeNumber&lt;/code&gt; is a counter used to track configuration changes to IIS. It’s unlikely that the &lt;code&gt;ChangeNumber&lt;/code&gt; is the same across all IIS servers behind a web site.&lt;/p&gt; &lt;p&gt;The end result is ETags generated by Apache and IIS for the exact same component won’t match from one server to another. If the ETags don’t match, the user doesn’t receive the small, fast 304 response that ETags were designed for; instead, they’ll get a normal 200 response along with all the data for the component. If you host your web site on just one server, this isn’t a problem. But if you have multiple servers hosting your web site, and you’re using Apache or IIS with the default ETag configuration, your users are getting slower pages, your servers have a higher load, you’re consuming greater bandwidth, and proxies aren’t caching your content efficiently. Even if your components have a far future &lt;code&gt;Expires&lt;/code&gt; header, a conditional GET request is still made whenever the user hits Reload or Refresh.&lt;/p&gt; &lt;p&gt;If you’re not taking advantage of the flexible validation model that ETags provide, it’s better to just remove the ETag altogether. The &lt;code&gt;Last-Modified&lt;/code&gt; header validates based on the component’s timestamp. And removing the ETag reduces the size of the HTTP headers in both the response and subsequent requests. This &lt;a linkindex="72" href="http://support.microsoft.com/?id=922733"&gt;Microsoft Support article&lt;/a&gt; describes how to remove ETags. In Apache, this is done by simply adding the following line to your Apache configuration file:&lt;/p&gt; &lt;pre&gt;      FileETag none&lt;/pre&gt; &lt;p&gt;&lt;a linkindex="73" href="http://developer.yahoo.net/blog/archives/2007/07/high_performanc_11.html"&gt;Discuss Rule 13&lt;/a&gt;&lt;/p&gt; &lt;h2&gt;14: Make Ajax Cacheable&lt;/h2&gt; &lt;p&gt;People ask whether these performance rules apply to Web 2.0 applications. They definitely do! This rule is the first rule that resulted from working with Web 2.0 applications at Yahoo!.&lt;/p&gt; &lt;p&gt;One of the cited benefits of Ajax is that it provides instantaneous feedback to the user because it requests information asynchronously from the backend web server. However, using Ajax is no guarantee that the user won’t be twiddling his thumbs waiting for those asynchronous JavaScript and XML responses to return. In many applications, whether or not the user is kept waiting depends on how Ajax is used. For example, in a web-based email client the user will be kept waiting for the results of an Ajax request to find all the email messages that match their search criteria. It’s important to remember that “asynchronous” does not imply “instantaneous”.&lt;/p&gt; &lt;p&gt;To improve performance, it’s important to optimize these Ajax responses. The most important way to improve the performance of Ajax is to make the responses cacheable, as discussed in &lt;a set="yes" linkindex="74" href="http://developer.yahoo.com/performance/rules.html#expires"&gt;Rule 3: Add an Expires Header&lt;/a&gt;. Some of the other rules also apply to Ajax:&lt;/p&gt; &lt;ul&gt;&lt;li&gt; &lt;a set="yes" linkindex="75" href="http://developer.yahoo.com/performance/rules.html#gzip"&gt;Rule 4: Gzip Components&lt;/a&gt;&lt;/li&gt;&lt;li&gt; &lt;a set="yes" linkindex="76" href="http://developer.yahoo.com/performance/rules.html#dns_lookups"&gt;Rule 9: Reduce DNS Lookups&lt;/a&gt;&lt;/li&gt;&lt;li&gt; &lt;a linkindex="77" href="http://developer.yahoo.com/performance/rules.html#minify"&gt;Rule 10: Minify JavaScript&lt;/a&gt;&lt;/li&gt;&lt;li&gt; &lt;a set="yes" linkindex="78" href="http://developer.yahoo.com/performance/rules.html#redirects"&gt;Rule 11: Avoid Redirects&lt;/a&gt;&lt;/li&gt;&lt;li&gt; &lt;a set="yes" linkindex="79" href="http://developer.yahoo.com/performance/rules.html#etags"&gt;Rule 13: Configure ETags&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;However, Rule 3 is the most important for speeding up the user experience. Let’s look at an example. A Web 2.0 email client might use Ajax to download the user’s address book for autocompletion. If the user hasn’t modified her address book since the last time she used the email web app, the previous address book response could be read from cache if that Ajax response was made cacheable with a future Expires header. The browser must be informed when to use a previously cached address book response versus requesting a new one. This could be done by adding a timestamp to the address book Ajax URL indicating the last time the user modified her address book, for example, &lt;code&gt;&amp;amp;t=1190241612&lt;/code&gt;. If the address book hasn’t been modified since the last download, the timestamp will be the same and the address book will be read from the browser’s cache eliminating an extra HTTP roundtrip. If the user has modified her address book, the timestamp ensures the new URL doesn’t match the cached response, and the browser will request the updated address book entries.&lt;/p&gt; &lt;p&gt;Even though your Ajax responses are created dynamically, and might only be applicable to a single user, they can still be cached. Doing so will make your Web 2.0 apps faster.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-2484730424660567585?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/2484730424660567585/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=2484730424660567585' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/2484730424660567585'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/2484730424660567585'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2008/03/best-practices-for-speeding-up-your-web.html' title='Best Practices for Speeding Up Your Web Site'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-3230986154127689598</id><published>2008-01-22T16:45:00.000-08:00</published><updated>2008-01-22T16:48:45.987-08:00</updated><title type='text'>10 ways to increase pages increased</title><content type='html'>For a while now webmasters have fretted over why all of the pages of their website are not indexed. As usual there doesn't seem to be any definite answer. But some things are definite, if not automatic, and some things seem like pretty darn good guesses.&lt;br /&gt;&lt;br /&gt;&lt;hr align="center" noshade="noshade" size="1" width="90%"&gt;  &lt;b&gt;Editor's Note:&lt;/b&gt; If you know a good way to increase the number, or are certain (or can guess) of a way to get all of a website's pages crawled, then please join the conversation by letting us know in the &lt;a href="http://www.webpronews.com/topnews/2008/01/21/10-ways-to-increase-pages-indexed#comments" style="color: rgb(204, 0, 0);" target="_blank"&gt;&lt;b&gt;comments section&lt;/b&gt;&lt;/a&gt;. &lt;hr align="center" noshade="noshade" size="1" width="90%"&gt;&lt;br /&gt;So, we scoured the forums, blogs, and Google's own guidelines for increasing the number of pages Google indexes, and came up with our (and the community's) best guesses. The running consensus is that a webmaster shouldn't expect to get all of their pages crawled and indexed, but there are ways to increase the number.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;PageRank &lt;/b&gt;&lt;br /&gt;&lt;br /&gt;It depends a lot on PageRank. The higher your PageRank the more pages that will be indexed. PageRank isn't a blanket number for all your pages. Each page has its own PageRank. A high PageRank gives the Googlebot more of a reason to return. &lt;a href="http://www.seroundtable.com/archives/003418.html" target="_blank"&gt;Matt Cutts confirms&lt;/a&gt;, too, that a higher PageRank means a deeper crawl.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Links&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Give the Googlebot something to follow. Links (especially deep links) from a high PageRank site are golden as the trust is already established.&lt;br /&gt;&lt;br /&gt;Internal links can help, too. Link to important pages from your homepage. On content pages link to relevant content on other pages.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Sitemap &lt;/b&gt;&lt;br /&gt;&lt;br /&gt;A lot of buzz around this one. Some report that a clear, well-structured Sitemap helped get all of their pages indexed. Google's Webmaster guidelines recommends &lt;a href="https://www.google.com/webmasters/tools/docs/en/about.html" target="_blank"&gt;submitting a Sitemap file&lt;/a&gt;, too:&lt;br /&gt;&lt;br /&gt;·&lt;i&gt; Tell us all about your pages by submitting a Sitemap file; help us learn which pages are most important to you and how often those pages change.&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;That page has other advice for improving crawlability, like fixing violations and validating robots.txt.&lt;br /&gt;&lt;br /&gt;Some recommend having a Sitemap for every category or section of a site.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Speed &lt;/b&gt;&lt;br /&gt;&lt;br /&gt;A recent &lt;a href="http://radar.oreilly.com/archives/2008/01/limits_google_crawl_markmail.html" target="_blank"&gt;O'Reilly report&lt;/a&gt; indicated that page load time and the ease with which the Googlebot can crawl a page may affect how many pages are indexed. The logic is that the faster the Googlebot can crawl, the greater number of pages that can be indexed.&lt;br /&gt;&lt;br /&gt;This could involve simplifying the structures and/or navigation of the site. The spiders have difficulty with Flash and Ajax. A text version should be added in those instances.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Google's crawl caching proxy &lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Matt Cutts provides diagrams of how &lt;a href="http://www.mattcutts.com/blog/crawl-caching-proxy/" target="_blank"&gt;Google's crawl caching proxy&lt;/a&gt; at his blog. This was part of the Big Daddy update to make the engine faster. Any one of three indexes may crawl a site and send the information to a remote server, which is accessed by the remaining indexes (like the blog index or the AdSense index) instead of the bots for those indexes physically visiting your site. They will all use the mirror instead.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Verify &lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Verify the site with Google using the Webmaster tools.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Content, content, content&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Make sure content is original. If a verbatim copy of another page, the Googlebot may skip it. Update frequently. This will keep the content fresh. Pages with an older timestamp might be viewed as static, outdated, or already indexed.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Staggered launch&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Launching a huge number of pages at once could send off spam signals. In one forum, it is suggested that a webmaster launch a maximum of &lt;a href="http://www.webmasterworld.com/google/3200455.htm" target="_blank"&gt;5,000 pages per week&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Size matters &lt;/b&gt;&lt;br /&gt;&lt;br /&gt;If you want tens of millions of pages indexed, your site will probably have to be on an &lt;a href="http://amazon.com/" target="_blank"&gt;Amazon.com&lt;/a&gt; or &lt;a href="http://microsoft.com/" target="_blank"&gt;Microsoft.com&lt;/a&gt; level.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Know how your site is found, and tell Google&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;Find the top queries that lead to your site and remember that anchor text helps in links. Use Google's tools to see which of your pages are indexed, and if there are violations of some kind. Specify your preferred domain so Google knows what to index.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-3230986154127689598?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/3230986154127689598/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=3230986154127689598' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/3230986154127689598'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/3230986154127689598'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2008/01/for-while-now-webmasters-have-fretted.html' title='10 ways to increase pages increased'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-675648321985426098</id><published>2008-01-17T17:56:00.000-08:00</published><updated>2008-01-17T17:57:46.486-08:00</updated><title type='text'>Yahoo finds fault with Google's secret sauce</title><content type='html'>&lt;center&gt;&lt;a href="http://www.webpronews.com/topnews/2008/01/16/yahoo-patent-filing-sheds-light-on-pagerank" target="_blank"&gt;&lt;img src="http://images.ientrymail.com/webpronews/wpn_title_011708.gif" alt="Yahoo Finds Fault with Google's Secret Sauce" title="Yahoo Finds Fault with Google's Secret Sauce" border="0" /&gt;&lt;/a&gt;&lt;/center&gt; &lt;div style="width: 336px; text-align: right;"&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/div&gt;&lt;br /&gt;As complex as Google's PageRank may be, search experts at Yahoo seem to think it's not complex enough. Based on patent filings, Yahoo is dabbling in ranking algorithms that incorporate more user behavior data in advance of the company's next run at toppling Google's haloed relevance.&lt;br /&gt;&lt;br /&gt;&lt;hr align="center" noshade="noshade" size="1" width="90%"&gt;  &lt;b&gt;Editor's Note:&lt;/b&gt; Yahoo, as usual, is fairly confident in its ability to create a search algorithm that meets or exceeds the quality of Google's. Lots of search players have felt the same and have yet to deliver. Do you think Yahoo will ever catch Google or is it just too late to take down the Mountain View Monolith. Let us know in the &lt;a href="http://www.webpronews.com/topnews/2008/01/16/yahoo-patent-filing-sheds-light-on-pagerank#comments" target="_blank"&gt;comment section&lt;/a&gt;.  &lt;hr align="center" noshade="noshade" size="1" width="90%"&gt;&lt;br /&gt;Seeing will be believing when it happens, of course, as Google is highly secretive about how its search engine calculates PageRank. If history is any indication, they're already way ahead on behavioral factoring.&lt;br /&gt;&lt;br /&gt;Nonetheless, Yahoo can afford the best search engineers in the business (if they can get them before Google does, anyway) and the patent filings shed some light on how PageRank is currently calculated and ways it might be improved in the future.&lt;br /&gt;&lt;br /&gt;Bill Slawski, Director of Search Marketing at KeyRelevance, goes into painstaking detail of Yahoo's user data challenges at his &lt;a href="http://www.seobythesea.com/?p=977" target="_blank"&gt;SEObytheSea blog&lt;/a&gt;. Patent language, especially when dealing with algorithms, can be confusing and dense, so we'll just highlight a few interesting points and leave the lexicographical deciphering to you.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Some Yahoo assumptions about PageRank and flaws associated:&lt;/b&gt; &lt;ul style="margin: 6px auto;"&gt;&lt;li&gt;Internal and external links are often weighed equally even though internal links can be less reliable and more self-promotional. Some links, like disclaimer links, are rarely followed.&lt;/li&gt;&lt;li&gt;PageRank ignores that webpages are often purchased and repurposed, decay or become less valuable over time at variable rates.&lt;/li&gt;&lt;li&gt;Current calculations, like TrustRank, are engineered more to combat webspam than to reflect actual user behavior.&lt;/li&gt;&lt;li&gt;Sometimes PageRank deals with links in bulk, aggregating according host or domain, also known as blocked PageRank.&lt;/li&gt;&lt;/ul&gt; &lt;table style="border: 1px solid rgb(204, 204, 204);" align="center" cellpadding="0" cellspacing="0" width="100%"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="border: 1px solid rgb(38, 125, 212); padding: 5px; font-family: Verdana,Arial,Helvetica,sans-serif; font-size: 10px;" align="center"&gt;&lt;a href="http://aj.600z.com/aj/48346/0/cc?z=1&amp;amp;b=48344&amp;amp;c=48345" target="_blank"&gt;&lt;img src="http://images.ientrymail.com/ads/AOL-USERPLAN-0531.gif" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;b&gt;What Yahoo plans to do about it:&lt;/b&gt; &lt;ul style="margin: 6px auto;"&gt;&lt;li&gt;Measure link weight  influenced by the frequency with which users follow a link&lt;/li&gt;&lt;li&gt;Note when links are ignored and users leave (teleport) to another page of their choosing&lt;/li&gt;&lt;li&gt;Calculate the probability that a user stops and reads a webpage rather than views it and moves on.&lt;/li&gt;&lt;li&gt;Incorporate user data into the algorithm  "User Sensitive PageRank could reflect "the navigational behavior of the user population with regard to documents, pages, sites, and domains visited, and links selected."&lt;/li&gt;&lt;li&gt;Personalize PageRank based on demographic information  age, gender, income, user location)&lt;/li&gt;&lt;li&gt;Emphasize recent information&lt;/li&gt;&lt;li&gt;Weigh anchor text more heavily  the patent filing calls anchor text "one of the most useful features used in ranking retrieved Web search results"&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-675648321985426098?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/675648321985426098/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=675648321985426098' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/675648321985426098'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/675648321985426098'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2008/01/yahoo-finds-fault-with-googles-secret.html' title='Yahoo finds fault with Google&apos;s secret sauce'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-4862821495861108840</id><published>2008-01-13T18:23:00.000-08:00</published><updated>2008-01-13T18:24:28.161-08:00</updated><title type='text'>January Newsflash</title><content type='html'>&lt;ul&gt;&lt;li&gt; &lt;p&gt;Python has been declared as programming language of 2007. It was a close finish, but in the end Python  appeared to have the largest increase in ratings in one year time (2.04%). There is no clear reason why Python  made this huge jump in 2007. Last month Python surpassed Perl for the first time in history, which is an  indication that Python has become the "de facto" glue language at system level. It is especially beloved by  system administrators and build managers. Chances are high that Python's star will rise further in 2008, thanks  to the upcoming release of Python 3. &lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p&gt;A couple of interesting trends can be derived from the 2007 data. First of all, languages without automated  garbage collection are losing ground rapidly. The most prominent examples of languages with explicit memory  management, C and C++, both lost about 2% in one year. Another trend is that the battle between scripting  languages seems to be going on in the background. There is a continuous flow of new scripting languages. In  2006, Ruby entered the main scene, followed this year by Lua. In the top 50, Groovy and Factor are new kids on  the block. None of these new scripting languages seem to stay permanently, they are just replaced by  successors. &lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p&gt; What were the big movers and shakers in 2007? The big winners are Lua (from 46 to 16), Groovy (from 66 to 31),  Focus (from 78 to 41), and Factor (new at 45). The most prominent shakers are ABAP (from 15 to 29) and IDL  (from 23 to 48). &lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p&gt; What is to be expected in 2008? And, what became of the forecasts for 2007? At the beginning of 2007, I thought  C# and D would become the winners and Perl and Delphi the losers. C# was indeed one of the big winners, and  Perl one of the big losers. But the forecasts for D and Delphi were completely wrong. There has been no  breakthrough for D. On the other hand, Delphi reclaimed a top 10 position... What about 2008? C, C++ and Perl  will continue to fall. C and C++ because they have no automated garbage collection. C++ will get an extra push  down because Microsoft is not actively supporting the language anymore. Perl is just dead. Java and C# will  eventually be the 2 most popular languages. So I expect them to rise further in 2008. What new languages will  enter the top 20 in 2008 is a wild guess, but I think ActionScript and Groovy are really serious candidates. &lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p&gt; Nguyen Quang Chien suggested to rename the OCaml entry to Caml. This has been done. Thanks Nguyen! &lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p&gt; In the tables below some long term trends are listed about categories of languages. The tables show that  dynamically typed object-oriented languages are still becoming more popular.&lt;br /&gt;&lt;br /&gt;&lt;table class="ttable" bordercolordark="#003366" bordercolorlight="#c0c0c0" id="Table4" align="center" border="1"&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt; &lt;b&gt;Category&lt;/b&gt; &lt;/td&gt; &lt;td&gt; &lt;b&gt;Ratings January 2008&lt;/b&gt; &lt;/td&gt; &lt;td&gt; &lt;b&gt;Delta January 2007&lt;/b&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; Object-Oriented Languages &lt;/td&gt; &lt;td&gt; 56.1% &lt;/td&gt; &lt;td&gt; +4.0% &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; Procedural Languages &lt;/td&gt; &lt;td&gt; 40.9% &lt;/td&gt; &lt;td&gt; -3.6% &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; Functional Languages &lt;/td&gt; &lt;td&gt; 1.9% &lt;/td&gt; &lt;td&gt; +0.2% &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; Logical Languages &lt;/td&gt; &lt;td&gt; 1.1% &lt;/td&gt; &lt;td&gt; -0.6% &lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;&lt;table class="ttable" bordercolordark="#003366" bordercolorlight="#c0c0c0" id="Table5" align="center" border="1"&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td&gt; &lt;b&gt;Category&lt;/b&gt; &lt;/td&gt; &lt;td&gt; &lt;b&gt;Ratings January 2008&lt;/b&gt; &lt;/td&gt; &lt;td&gt; &lt;b&gt;Delta January 2007&lt;/b&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; Statically Typed Languages &lt;/td&gt; &lt;td&gt; 56.2% &lt;/td&gt; &lt;td&gt; -1.5% &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; Dynamically Typed Languages &lt;/td&gt; &lt;td&gt; 43.8% &lt;/td&gt; &lt;td&gt; +1.5% &lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-4862821495861108840?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/4862821495861108840/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=4862821495861108840' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/4862821495861108840'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/4862821495861108840'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2008/01/january-newsflash.html' title='January Newsflash'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-4008144830283143969</id><published>2008-01-13T18:21:00.000-08:00</published><updated>2008-01-13T18:34:52.700-08:00</updated><title type='text'>TIOBE declares Python as programming language of 2007 !!</title><content type='html'>&lt;p&gt;The TIOBE Programming Community index gives an indication of the popularity of programming  languages. The index is updated once a month. The ratings are based on the world-wide availability of  skilled engineers, courses and third party vendors. The popular search engines Google, MSN, Yahoo!, and  YouTube are used to calculate the ratings. Observe that the TIOBE index is not about the &lt;i&gt;best&lt;/i&gt; programming  language or the language in which &lt;i&gt;most lines of code&lt;/i&gt; have been written.&lt;/p&gt; &lt;p&gt;The index can be used to check whether your programming skills are still up to date or to make a  strategic decision about what programming language should be adopted when starting to build a new  software system. The definition of the TIOBE index can be found &lt;a href="http://www.tiobe.com/tiobe_index/tpci_definition.htm"&gt;here&lt;/a&gt;. &lt;/p&gt;  &lt;table class="ttable" bordercolordark="#003366" bordercolorlight="#c0c0c0" id="Table2" align="center" border="1"&gt;&lt;colgroup&gt; &lt;col align="center"&gt; &lt;col align="center"&gt; &lt;col align="center"&gt; &lt;col&gt; &lt;col align="center"&gt; &lt;col align="center"&gt; &lt;col align="center"&gt; &lt;/colgroup&gt;&lt;tbody&gt;&lt;tr&gt; &lt;th align="center" nowrap="nowrap"&gt; Position&lt;br /&gt;Jan 2008&lt;/th&gt;&lt;th align="center" nowrap="nowrap"&gt;Position&lt;br /&gt;Jan 2007&lt;/th&gt;&lt;th align="center" nowrap="nowrap"&gt;Delta in Position&lt;/th&gt;&lt;th align="center" nowrap="nowrap"&gt;Programming Language&lt;/th&gt;&lt;th align="center" nowrap="nowrap"&gt;Ratings&lt;br /&gt;Jan 2008&lt;/th&gt;&lt;th align="center" nowrap="nowrap"&gt;Delta&lt;br /&gt;Jan 2007&lt;/th&gt;&lt;th align="center" nowrap="nowrap"&gt;Status&lt;/th&gt;&lt;/tr&gt; &lt;tr height="25"&gt; &lt;td align="center"&gt;1&lt;/td&gt; &lt;td align="center"&gt;1&lt;/td&gt; &lt;td align="center"&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Same.gif" border="0" /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.tiobe.com/tiobe_index/Java.html"&gt;Java&lt;/a&gt;&lt;/td&gt; &lt;td align="center"&gt;20.849%&lt;/td&gt; &lt;td align="center"&gt;+1.69%&lt;/td&gt; &lt;td align="left"&gt;  A&lt;/td&gt; &lt;/tr&gt; &lt;tr height="25"&gt; &lt;td align="center"&gt;2&lt;/td&gt; &lt;td align="center"&gt;2&lt;/td&gt; &lt;td align="center"&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Same.gif" border="0" /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.tiobe.com/tiobe_index/C.html"&gt;C&lt;/a&gt;&lt;/td&gt; &lt;td align="center"&gt;13.916%&lt;/td&gt; &lt;td align="center"&gt;-1.89%&lt;/td&gt; &lt;td align="left"&gt;  A&lt;/td&gt; &lt;/tr&gt; &lt;tr height="25"&gt; &lt;td align="center"&gt;3&lt;/td&gt; &lt;td align="center"&gt;4&lt;/td&gt; &lt;td align="center"&gt; &lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt; &lt;/td&gt; &lt;td&gt;&lt;a href="http://www.tiobe.com/tiobe_index/%28Visual%29_Basic.html"&gt;(Visual) Basic&lt;/a&gt;&lt;/td&gt; &lt;td align="center"&gt;10.963%&lt;/td&gt; &lt;td align="center"&gt;+1.84%&lt;/td&gt; &lt;td align="left"&gt;  A&lt;/td&gt; &lt;/tr&gt; &lt;tr height="25"&gt; &lt;td align="center"&gt;4&lt;/td&gt; &lt;td align="center"&gt;5&lt;/td&gt; &lt;td align="center"&gt; &lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt; &lt;/td&gt; &lt;td&gt;&lt;a href="http://www.tiobe.com/tiobe_index/PHP.html"&gt;PHP&lt;/a&gt;&lt;/td&gt; &lt;td align="center"&gt;9.195%&lt;/td&gt; &lt;td align="center"&gt;+1.25%&lt;/td&gt; &lt;td align="left"&gt;  A&lt;/td&gt; &lt;/tr&gt; &lt;tr height="25"&gt; &lt;td align="center"&gt;5&lt;/td&gt; &lt;td align="center"&gt;3&lt;/td&gt; &lt;td align="center"&gt; &lt;img src="http://www.tiobe.com/tiobe_index/images/Down.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Down.gif" border="0" /&gt; &lt;/td&gt; &lt;td&gt;&lt;a href="http://www.tiobe.com/tiobe_index/C__.html"&gt;C++&lt;/a&gt;&lt;/td&gt; &lt;td align="center"&gt;8.730%&lt;/td&gt; &lt;td align="center"&gt;-1.70%&lt;/td&gt; &lt;td align="left"&gt;  A&lt;/td&gt; &lt;/tr&gt; &lt;tr height="25"&gt; &lt;td align="center"&gt;6&lt;/td&gt; &lt;td align="center"&gt;8&lt;/td&gt; &lt;td align="center"&gt; &lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt; &lt;/td&gt; &lt;td&gt;&lt;a href="http://www.tiobe.com/tiobe_index/Python.html"&gt;Python&lt;/a&gt;&lt;/td&gt; &lt;td align="center"&gt;5.538%&lt;/td&gt; &lt;td align="center"&gt;+2.04%&lt;/td&gt; &lt;td align="left"&gt;  A&lt;/td&gt; &lt;/tr&gt; &lt;tr height="25"&gt; &lt;td align="center"&gt;7&lt;/td&gt; &lt;td align="center"&gt;6&lt;/td&gt; &lt;td align="center"&gt; &lt;img src="http://www.tiobe.com/tiobe_index/images/Down.gif" border="0" /&gt; &lt;/td&gt; &lt;td&gt;&lt;a href="http://www.tiobe.com/tiobe_index/Perl.html"&gt;Perl&lt;/a&gt;&lt;/td&gt; &lt;td align="center"&gt;5.247%&lt;/td&gt; &lt;td align="center"&gt;-0.99%&lt;/td&gt; &lt;td align="left"&gt;  A&lt;/td&gt; &lt;/tr&gt; &lt;tr height="25"&gt; &lt;td align="center"&gt;8&lt;/td&gt; &lt;td align="center"&gt;7&lt;/td&gt; &lt;td align="center"&gt; &lt;img src="http://www.tiobe.com/tiobe_index/images/Down.gif" border="0" /&gt; &lt;/td&gt; &lt;td&gt;&lt;a href="http://www.tiobe.com/tiobe_index/C_.html"&gt;C#&lt;/a&gt;&lt;/td&gt; &lt;td align="center"&gt;4.856%&lt;/td&gt; &lt;td align="center"&gt;+1.34%&lt;/td&gt; &lt;td align="left"&gt;  A&lt;/td&gt; &lt;/tr&gt; &lt;tr height="25"&gt; &lt;td align="center"&gt;9&lt;/td&gt; &lt;td align="center"&gt;12&lt;/td&gt; &lt;td align="center"&gt; &lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt; &lt;/td&gt; &lt;td&gt;&lt;a href="http://www.tiobe.com/tiobe_index/Delphi.html"&gt;Delphi&lt;/a&gt;&lt;/td&gt; &lt;td align="center"&gt;3.335%&lt;/td&gt; &lt;td align="center"&gt;+1.00%&lt;/td&gt; &lt;td align="left"&gt;  A&lt;/td&gt; &lt;/tr&gt; &lt;tr height="25"&gt; &lt;td align="center"&gt;10&lt;/td&gt; &lt;td align="center"&gt;9&lt;/td&gt; &lt;td align="center"&gt; &lt;img src="http://www.tiobe.com/tiobe_index/images/Down.gif" border="0" /&gt; &lt;/td&gt; &lt;td&gt;&lt;a href="http://www.tiobe.com/tiobe_index/JavaScript.html"&gt;JavaScript&lt;/a&gt;&lt;/td&gt; &lt;td align="center"&gt;3.203%&lt;/td&gt; &lt;td align="center"&gt;+0.36%&lt;/td&gt; &lt;td align="left"&gt;  A&lt;/td&gt; &lt;/tr&gt; &lt;tr height="25"&gt; &lt;td align="center"&gt;11&lt;/td&gt; &lt;td align="center"&gt;10&lt;/td&gt; &lt;td align="center"&gt; &lt;img src="http://www.tiobe.com/tiobe_index/images/Down.gif" border="0" /&gt; &lt;/td&gt; &lt;td&gt;&lt;a href="http://www.tiobe.com/tiobe_index/Ruby.html"&gt;Ruby&lt;/a&gt;&lt;/td&gt; &lt;td align="center"&gt;2.345%&lt;/td&gt; &lt;td align="center"&gt;-0.17%&lt;/td&gt; &lt;td align="left"&gt;  A&lt;/td&gt; &lt;/tr&gt; &lt;tr height="25"&gt; &lt;td align="center"&gt;12&lt;/td&gt; &lt;td align="center"&gt;13&lt;/td&gt; &lt;td align="center"&gt; &lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt; &lt;/td&gt; &lt;td&gt;&lt;a href="http://www.tiobe.com/tiobe_index/PL_SQL.html"&gt;PL/SQL&lt;/a&gt;&lt;/td&gt; &lt;td align="center"&gt;1.230%&lt;/td&gt; &lt;td align="center"&gt;-0.34%&lt;/td&gt; &lt;td align="left"&gt;  A&lt;/td&gt; &lt;/tr&gt; &lt;tr height="25"&gt; &lt;td align="center"&gt;13&lt;/td&gt; &lt;td align="center"&gt;11&lt;/td&gt; &lt;td align="center"&gt; &lt;img src="http://www.tiobe.com/tiobe_index/images/Down.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Down.gif" border="0" /&gt; &lt;/td&gt; &lt;td&gt;&lt;a href="http://www.tiobe.com/tiobe_index/SAS.html"&gt;SAS&lt;/a&gt;&lt;/td&gt; &lt;td align="center"&gt;1.204%&lt;/td&gt; &lt;td align="center"&gt;-1.14%&lt;/td&gt; &lt;td align="left"&gt;  A&lt;/td&gt; &lt;/tr&gt; &lt;tr height="25"&gt; &lt;td align="center"&gt;14&lt;/td&gt; &lt;td align="center"&gt;14&lt;/td&gt; &lt;td align="center"&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Same.gif" border="0" /&gt;&lt;/td&gt; &lt;td&gt;&lt;a href="http://www.tiobe.com/tiobe_index/D.html"&gt;D&lt;/a&gt;&lt;/td&gt; &lt;td align="center"&gt;1.172%&lt;/td&gt; &lt;td align="center"&gt;-0.16%&lt;/td&gt; &lt;td align="left"&gt;  A&lt;/td&gt; &lt;/tr&gt; &lt;tr height="25"&gt; &lt;td align="center"&gt;15&lt;/td&gt; &lt;td align="center"&gt;18&lt;/td&gt; &lt;td align="center"&gt; &lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt; &lt;/td&gt; &lt;td&gt;&lt;a href="http://www.tiobe.com/tiobe_index/COBOL.html"&gt;COBOL&lt;/a&gt;&lt;/td&gt; &lt;td align="center"&gt;0.932%&lt;/td&gt; &lt;td align="center"&gt;+0.30%&lt;/td&gt; &lt;td align="left"&gt;  A&lt;/td&gt; &lt;/tr&gt; &lt;tr height="25"&gt; &lt;td align="center"&gt;16&lt;/td&gt; &lt;td align="center"&gt;46&lt;/td&gt; &lt;td align="center"&gt; &lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt; &lt;/td&gt; &lt;td&gt;&lt;a href="http://www.tiobe.com/tiobe_index/Lua.html"&gt;Lua&lt;/a&gt;&lt;/td&gt; &lt;td align="center"&gt;0.579%&lt;/td&gt; &lt;td align="center"&gt;+0.48%&lt;/td&gt; &lt;td align="left"&gt;  A--&lt;/td&gt; &lt;/tr&gt; &lt;tr height="25"&gt; &lt;td align="center"&gt;17&lt;/td&gt; &lt;td align="center"&gt;22&lt;/td&gt; &lt;td align="center"&gt; &lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt; &lt;/td&gt; &lt;td&gt;&lt;a href="http://www.tiobe.com/tiobe_index/FoxPro_xBase.html"&gt;FoxPro/xBase&lt;/a&gt;&lt;/td&gt; &lt;td align="center"&gt;0.506%&lt;/td&gt; &lt;td align="center"&gt;+0.05%&lt;/td&gt; &lt;td align="left"&gt;  B&lt;/td&gt; &lt;/tr&gt; &lt;tr height="25"&gt; &lt;td align="center"&gt;18&lt;/td&gt; &lt;td align="center"&gt;19&lt;/td&gt; &lt;td align="center"&gt; &lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt; &lt;/td&gt; &lt;td&gt;&lt;a href="http://www.tiobe.com/tiobe_index/Pascal.html"&gt;Pascal&lt;/a&gt;&lt;/td&gt; &lt;td align="center"&gt;0.456%&lt;/td&gt; &lt;td align="center"&gt;-0.11%&lt;/td&gt; &lt;td align="left"&gt;  B&lt;/td&gt; &lt;/tr&gt; &lt;tr height="25"&gt; &lt;td align="center"&gt;19&lt;/td&gt; &lt;td align="center"&gt;16&lt;/td&gt; &lt;td align="center"&gt; &lt;img src="http://www.tiobe.com/tiobe_index/images/Down.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Down.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Down.gif" border="0" /&gt; &lt;/td&gt; &lt;td&gt;&lt;a href="http://www.tiobe.com/tiobe_index/Lisp_Scheme.html"&gt;Lisp/Scheme&lt;/a&gt;&lt;/td&gt; &lt;td align="center"&gt;0.413%&lt;/td&gt; &lt;td align="center"&gt;-0.26%&lt;/td&gt; &lt;td align="left"&gt;  A--&lt;/td&gt; &lt;/tr&gt; &lt;tr height="25"&gt; &lt;td align="center"&gt;20&lt;/td&gt; &lt;td align="center"&gt;27&lt;/td&gt; &lt;td align="center"&gt; &lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt;&lt;img src="http://www.tiobe.com/tiobe_index/images/Up.gif" border="0" /&gt; &lt;/td&gt; &lt;td&gt;&lt;a href="http://www.tiobe.com/tiobe_index/Logo.html"&gt;Logo&lt;/a&gt;&lt;/td&gt; &lt;td align="center"&gt;0.386%&lt;/td&gt; &lt;td align="center"&gt;+0.07%&lt;/td&gt; &lt;td align="left"&gt;  B&lt;br /&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-4008144830283143969?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/4008144830283143969/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=4008144830283143969' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/4008144830283143969'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/4008144830283143969'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2008/01/tiobe-declares-python-atiobe-declares.html' title='TIOBE declares Python as programming language of 2007 !!'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-401132465859532843</id><published>2008-01-06T21:06:00.000-08:00</published><updated>2008-01-06T21:07:05.785-08:00</updated><title type='text'>IBM developerWorks: Mastering regular expressions in PHP, Part 1</title><content type='html'>&lt;p&gt; The IBM developerWorks website has &lt;a linkindex="20" href="http://www.ibm.com/developerworks/opensource/library/os-php-regex1/index.html?ca=drs-tp0108"&gt;posted the first part&lt;/a&gt; of a series they've created to help PHP developers become more informed about what regular expressions are and how they can harness their power for their applications. &lt;/p&gt; &lt;blockquote&gt;Pattern matching is such a common chore for software that a special shorthand â€" regular expressions â€" has evolved to make light work of the task. Learn how to use this shorthand in your code here in Part 1 of this "&lt;a linkindex="21" href="http://www.ibm.com/developerworks/views/opensource/libraryview.jsp?search_by=mastering+regular+expressions+in+php,"&gt;Mastering regular expressions in PHP&lt;/a&gt;" series. &lt;/blockquote&gt; &lt;p&gt; In this &lt;a set="yes" linkindex="22" href="http://www.ibm.com/developerworks/opensource/library/os-php-regex1/index.html?ca=drs-tp0108"&gt;first part&lt;/a&gt; of the series, they look at the basics - the idea behind regular expressions, some of the common operators, the PHP functions to use them and example of how to use them to match/split out strings and capture just the data you need from the given input. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-401132465859532843?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/401132465859532843/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=401132465859532843' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/401132465859532843'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/401132465859532843'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2008/01/ibm-developerworks-mastering-regular.html' title='IBM developerWorks: Mastering regular expressions in PHP, Part 1'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-4201382423910077370</id><published>2008-01-03T19:19:00.000-08:00</published><updated>2008-01-03T19:20:01.511-08:00</updated><title type='text'>CakePHP 1.2 Release (and a New Site Design)</title><content type='html'>&lt;p&gt; As &lt;i&gt;Chris Hartjes&lt;/i&gt; &lt;a linkindex="45" href="http://www.littlehart.net/atthekeyboard/2008/01/02/new-release-of-cakephp-12/"&gt;points out&lt;/a&gt; there's a new release of the popular PHP framework &lt;a linkindex="46" href="http://cakephp.org/"&gt;CakePHP&lt;/a&gt; (as well as a new web site design). &lt;/p&gt;   &lt;p&gt; You can grab the latest download &lt;a linkindex="50" href="http://cakephp.org/"&gt;directly from the homepage&lt;/a&gt; or look into &lt;a linkindex="51" href="http://manual.cakephp.org/"&gt;the manual&lt;/a&gt; to find out more about the framework and how it can be used. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-4201382423910077370?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/4201382423910077370/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=4201382423910077370' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/4201382423910077370'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/4201382423910077370'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2008/01/cakephp-12-release-and-new-site-design.html' title='CakePHP 1.2 Release (and a New Site Design)'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-9083846229082163713</id><published>2008-01-03T18:37:00.000-08:00</published><updated>2008-01-03T18:38:01.381-08:00</updated><title type='text'>Rails for PHP Developers Website Launched</title><content type='html'>&lt;p&gt; &lt;i&gt;Mike Naberezny&lt;/i&gt; has start up a new resource to try to bridge some of the gap between PHP and Ruby and to help developers of either to get a bit more insight into the others' side - &lt;a set="yes" linkindex="45" href="http://railsforphp.com/"&gt;Rails for PHP Developers&lt;/a&gt; (based on &lt;a linkindex="46" href="http://www.pragprog.com/titles/ndphpr"&gt;the book&lt;/a&gt; published by the Pragmatic Programmers). &lt;/p&gt; &lt;blockquote&gt; Rails for PHP Developers is a new site for PHP developers who are also interested in Rails and Ruby. PHP and Ruby are great complementary tools that are sometimes seen as adversarial, which is really unfortunate. We use both and we'll be writing regular articles to help cross-pollinate ideas and promote collaboration between the communities. &lt;/blockquote&gt; &lt;p&gt; There's already some good content there - &lt;a set="yes" linkindex="47" href="http://railsforphp.com/2008/01/03/useful-perlisms-in-ruby/"&gt;useful perlisms in ruby&lt;/a&gt;, a look at &lt;a set="yes" linkindex="48" href="http://railsforphp.com/2007/12/21/accessing-attributes-in-php-objects/"&gt;PHP object attributes and some information about &lt;/a&gt;&lt;a linkindex="49" href="http://railsforphp.com/2007/12/11/beta-2-released/"&gt;the&lt;/a&gt; &lt;a linkindex="50" href="http://railsforphp.com/2007/11/08/about-the-book/"&gt;release&lt;/a&gt; of the site itself.  &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-9083846229082163713?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/9083846229082163713/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=9083846229082163713' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/9083846229082163713'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/9083846229082163713'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2008/01/rails-for-php-developers-website.html' title='Rails for PHP Developers Website Launched'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-6645593218533901798</id><published>2008-01-01T05:13:00.000-08:00</published><updated>2008-01-01T05:15:30.541-08:00</updated><title type='text'>The Web's Most, Biggest, Best, and Worst of 2007</title><content type='html'>&lt;b&gt;Yes, another year-end retrospective &lt;/b&gt;&lt;br /&gt;&lt;br /&gt;2007 was a frenzied year for all things digital, and could be marked as when the revolution really began to take hold. Social media took center stage, impacting everything from politics to major corporate maneuvers to raising awareness of social causes.&lt;br /&gt;&lt;br /&gt;&lt;hr align="center" noshade="noshade" size="1" width="90%"&gt;  &lt;b&gt;Editor's Note:&lt;/b&gt;Superlatives are always a matter of opinion. What's the best, worst, biggest, or most to one person is trivial to another. Anything you'd like to add to the list? Let us know in the comments section. &lt;hr align="center" noshade="noshade" size="1" width="90%"&gt; &lt;br /&gt;There were lawsuits, mysteries, legal abuses, policy shifts, embarrassments, scandals, oppressions, miscalculations, bubble discussions, and significant innovations. All and all, 2007 was a big year for anybody with a stake on the Net.&lt;br /&gt;&lt;br /&gt;So, without further ado, we present the Most, the Biggest, the Best, and the Worst of 2007.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-6645593218533901798?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/6645593218533901798/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=6645593218533901798' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/6645593218533901798'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/6645593218533901798'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2008/01/webs-most-biggest-best-and-worst-of.html' title='The Web&apos;s Most, Biggest, Best, and Worst of 2007'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-2403477266171391734</id><published>2007-12-12T03:08:00.000-08:00</published><updated>2007-12-12T03:10:15.305-08:00</updated><title type='text'>PayPal: New Solutions for PHP Developers</title><content type='html'>&lt;div id="content"&gt;   &lt;h1&gt;Overview&lt;/h1&gt;   &lt;div class="intro"&gt;    &lt;p&gt;The PayPal Solutions Directory brings together PayPal screened and approved third-party solutions. Popular shopping carts. Leading hosting solutions. Experienced website consultants. So whether you're integrating PayPal yourself or for a client, this is the place to quickly find what you're looking for.&lt;/p&gt;   &lt;/div&gt;   &lt;div class="solutions-highlights"&gt;    &lt;h2&gt;PayPal Compatible Carts&lt;/h2&gt;    &lt;p&gt;Whatever PayPal product you're using, you're sure to find the perfect shopping cart. Browse through a complete list of compatible carts with pricing information and spotlighted featured items.&lt;/p&gt;    &lt;ul&gt;&lt;li&gt;&lt;a href="https://www.paypal.com/en_US/html/SolutionsDirectory/sd_ec-compatible.html" title="Express Checkout Compatible Carts" class="ec-compatible"&gt;Express Checkout Compatible Carts&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="https://www.paypal.com/en_US/html/SolutionsDirectory/sd_wp-standard.html" title="Website Payments Standard Compatible Carts"&gt;Website Payments Standard Compatible Carts&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="https://www.paypal.com/en_US/html/SolutionsDirectory/sd_wp-pro-us.html" title="Website Payments Pro (U.S.) Compatible Carts"&gt;Website Payments Pro (U.S.) Compatible Carts&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="https://www.paypal.com/en_US/html/SolutionsDirectory/sd_wp-pro-uk.html" title="Website Payments Pro (U.K.) Compatible Carts"&gt;Website Payments Pro (U.K.) Compatible Carts&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="https://www.paypal.com/en_US/html/SolutionsDirectory/sd_pf-compatible.html" title="Payflow Compatible Carts"&gt;Payflow Compatible Carts&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;   &lt;/div&gt; &lt;!--  &lt;div class="solutions-highlights"&gt;    &lt;h2&gt;Payment Processors &amp;amp; Commerce Platforms&lt;/h2&gt;    &lt;div class="description"&gt;     &lt;p&gt;If you're looking for payment processing solutions suitable for large merchants, you've come to the right place. Respected merchant solution providers and commerce platform developers have integrated PayPal to complete their payment offering.&lt;/p&gt;    &lt;/div&gt;    &lt;ul&gt;     &lt;li&gt;&lt;a href="sd_pp-cp.html" title="Payment Processors &amp;amp; Commerce Platforms"&gt;Payment Processors &amp;amp; Commerce Platforms&lt;/a&gt;&lt;/li&gt;    &lt;/ul&gt;   &lt;/div&gt;  --&gt;   &lt;div class="solutions-highlights"&gt;    &lt;h2&gt;Other Solutions&lt;/h2&gt;    &lt;div class="description"&gt;     &lt;p&gt;Take your website beyond the basics with tools designed to help you increase productivity and streamline your online operations. Find all PayPal approved third-party solutions, pricing information, and links to the provider's websites.&lt;/p&gt;    &lt;/div&gt;    &lt;ul&gt;&lt;li&gt;&lt;a href="https://www.paypal.com/en_US/html/SolutionsDirectory/sd_aib.html" title="Accounting, Invoicing, Billing"&gt;Accounting, Invoicing, Billing&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="https://www.paypal.com/en_US/html/SolutionsDirectory/sd_aff-software.html" title="Affiliate Software"&gt;Affiliate Software&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="https://www.paypal.com/en_US/html/SolutionsDirectory/sd_dgd.html" title="Digital Goods Delivery"&gt;Digital Goods Delivery&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="https://www.paypal.com/en_US/html/SolutionsDirectory/sd_em.html" title="Email Marketing"&gt;Email Marketing&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="https://www.paypal.com/en_US/html/SolutionsDirectory/sd_enterprisesolutions.html" title="Enterprise Solutions"&gt;Enterprise Solutions&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="https://www.paypal.com/en_US/html/SolutionsDirectory/sd_emf.html" title="Events, Membership, Fundraising"&gt;Events, Memberships, Fundraising&lt;/a&gt;&lt;/li&gt;&lt;!-- &lt;li&gt;&lt;a href="sd_ipn-tools.html" title="IPN Tools"&gt;IPN Tools&lt;/a&gt;&lt;/li&gt; --&gt;&lt;li&gt;&lt;a href="https://www.paypal.com/en_US/html/SolutionsDirectory/sd_mobile-solutions.html" title="Mobile Solutions"&gt;Mobile Solutions&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="https://www.paypal.com/en_US/html/SolutionsDirectory/sd_pci-compliance.html" title="PCI Compliance" class="pci"&gt;PCI Compliance&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="https://www.paypal.com/en_US/html/SolutionsDirectory/sd_plugins.html" title="Plug-Ins"&gt;Plug-Ins&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="https://www.paypal.com/en_US/html/SolutionsDirectory/sd_wbh.html" title="Website Building and Hosting"&gt;Website Building and Hosting&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;   &lt;/div&gt;   &lt;div class="get-listed"&gt;    &lt;h2&gt;Get in the Solutions Directory&lt;/h2&gt;    &lt;div class="description"&gt;     &lt;p&gt;Are you an e-commerce solutions provider that would like to be listed in the PayPal Solutions Directory?&lt;/p&gt;    &lt;/div&gt;    &lt;ul&gt;&lt;li&gt;&lt;a href="https://www.paypal.com/en_US/html/SolutionsDirectory/sd_get-listed.html" title="Get listed in the Paypal Solutions Directory"&gt;Get listed&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;   &lt;/div&gt;  &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-2403477266171391734?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/2403477266171391734/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=2403477266171391734' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/2403477266171391734'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/2403477266171391734'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2007/12/paypal-new-solutions-for-php-developers.html' title='PayPal: New Solutions for PHP Developers'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-520619428166930918</id><published>2007-11-30T16:10:00.000-08:00</published><updated>2007-11-30T16:11:34.371-08:00</updated><title type='text'>Google Giving Kids A Chance To Develop For Them</title><content type='html'>In an effort to introduce secondary school and high school students to open source software development, Google has announced the &lt;a href="http://code.google.com/opensource/ghop/2007-8/" target="_blank"&gt;Google Highly Open Participation Contest &lt;/a&gt;at the Open Source Developer's Conference in Brisbane, Australia.&lt;br /&gt;&lt;br /&gt;Students can compete for prizes such as cash and t-shirts; ten grand prize winners will receive a chance to visit the Googleplex in Mountain View, Ca.&lt;br /&gt;&lt;br /&gt;The contest features tasks that fall into the categories of code, documentation, research, outreach, quality assurance, training, translation, and user interface.&lt;br /&gt;&lt;br /&gt;Over the past three years, college level students have participated in the &lt;a href="http://code.google.com/soc/2007/" target="_blank"&gt;Google Summer of Code&lt;/a&gt; where they have been introduced to open software development. &lt;br /&gt;&lt;br /&gt;Throughout that time, thousands of people from around the world have begun developing and writing millions of lines of code together, and now it's time for Google to turn their attention to the younger crowds.&lt;br /&gt;&lt;br /&gt;&lt;table align="center" border="0" width="100%"&gt; &lt;tbody&gt;&lt;tr&gt;  &lt;td align="center" bgcolor="#ff0000" height="20"&gt; &lt;table bgcolor="#fdfbfb" width="100%"&gt; &lt;tbody&gt;&lt;tr&gt;  &lt;td style="font-family: Verdana,Arial,Helvetica,sans-serif; font-size: 11px;" align="center" height="30"&gt;&lt;strong&gt;&lt;a href="http://aj.600z.com/aj/44133/0/cc?z=1&amp;amp;b=44131&amp;amp;c=44132" style="color: rgb(0, 0, 0);" target="_blank"&gt;Download a Free Trial of Ektron CMS400.NET&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;As we thought about what we could do to help encourage students before university and build a pipeline of future talent, we developed the Google Highly Open Participation Contest - the first contest from our open source team exclusively for secondary school and high school students.&lt;br /&gt;&lt;br /&gt;Google is working with ten open source organizations for the pilot effort to come up with a list of tasks to be completed by the students.&lt;br /&gt;&lt;br /&gt;The organizations include: Apache Software Foundation, Drupal, GNOME, Joomla!, MoinMoin, Mono, Moodle, Plone, Python Software Foundation, and SilverStripe CMS.&lt;br /&gt;&lt;br /&gt;The contest is open to students that are 13 years of age or older and have not yet begun university training. &lt;br /&gt;&lt;br /&gt;Students will be able to claim their tasks until 12:00am PST on Jan.22, 2008.&lt;br /&gt;&lt;br /&gt;We hope that students who participate will be long-term contributors to these and other open source projects in the future, and we look forward to announcing the grand-prize winners on February 11.&lt;br /&gt;&lt;br /&gt;If you need more information, check out &lt;a href="http://code.google.com/" target="_blank"&gt;Google's Developer Home.&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-520619428166930918?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/520619428166930918/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=520619428166930918' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/520619428166930918'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/520619428166930918'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2007/11/google-giving-kids-chance-to-develop.html' title='Google Giving Kids A Chance To Develop For Them'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-6700325339139147912</id><published>2007-11-27T15:44:00.000-08:00</published><updated>2007-11-27T15:45:17.021-08:00</updated><title type='text'>How to look your Best in search results</title><content type='html'>&lt;center&gt; &lt;a href="http://www.webpronews.com/topnews/2007/11/27/how-to-look-your-best-in-search-results" target="_blank"&gt;&lt;img src="http://images.ientrymail.com/webpronews/wpn_title_112707.gif" alt="How To Look Your Best In Search Results" title="How To Look Your Best In Search Results" border="0" /&gt;&lt;/a&gt;&lt;/center&gt; &lt;br /&gt;Mom always said, "Put your best foot forward." It's valuable advice, because often how you appear on a first meeting sends subtle signals about you and can influence what happens next. We should also be concerned the same way with how we appear, what information is presented about us, in the search results.&lt;br /&gt;&lt;br /&gt;&lt;hr align="center" noshade="noshade" size="1" width="90%"&gt;  &lt;b&gt;Editor's Note:&lt;/b&gt; While influencing where your site ranks in Google's search results is an involved science, controlling what the searcher sees about your site is much simpler. Of prime interest is the "snippet," where the most control can be exerted. Have you experimented with your snippet? If so, tell us what worked for you in the &lt;a href="http://www.webpronews.com/comment/reply/42380" target="_blank"&gt;&lt;b&gt;comments sections&lt;/b&gt;&lt;/a&gt;. &lt;hr align="center" noshade="noshade" size="1" width="90%"&gt; &lt;br /&gt;Because nobody makes snap judgments like a searcher. &lt;br /&gt;&lt;br /&gt;During a recent trip to Google's Kirkland, Washington office, Matt Cutts and colleagues spent an hour creating  &lt;a href="http://www.webpronews.com/topnews/2007/11/27/how-to-look-your-best-in-search-results" target="_blank"&gt;impromptu videos&lt;/a&gt; on various search-related topics. The first to be posted involves " &lt;a href="http://www.mattcutts.com/blog/" target="_blank"&gt;the anatomy of a search snippet&lt;/a&gt;," and how much control a webmaster has over what information is displayed in search results. &lt;br /&gt;&lt;br /&gt;The answer to how much control is: quite a bit, actually. This article will explore  &lt;a href="http://www.webpronews.com/topnews/2007/11/27/how-to-look-your-best-in-search-results" target="_blank"&gt;Cutts's explanation&lt;/a&gt; of the snippet, and ways to make the best of your search presence. Much of managing your appearance in the search results involves telling Google what to index and what not to index.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Homepage Title &lt;/strong&gt; &lt;br /&gt;&lt;br /&gt;The first thing you see in your search result is the title, and this is the first thing that Cutts also addresses. In honor of being in the Pacific Northwest, he used &lt;a href="http://www.google.com/search?q=starbucks&amp;amp;start=0&amp;amp;ie=utf-8&amp;amp;oe=utf-8&amp;amp;client=firefox-a&amp;amp;rls=org.mozilla:en-US:official" target="_blank"&gt;Starbucks' search result&lt;/a&gt; as an example, which labels its homepage as "Starbucks Homepage." This is your first impression. &lt;br /&gt;&lt;br /&gt;Cutts questioned whether the word "homepage" was a good choice (Google took the title directly from the page) as few would search for that word. Starbucks being so recognizable, it hardly matters, but for smaller business it's a good idea to optimize wherever you can. "Starbucks Coffee" might have been a better SEO choice.&lt;br /&gt;&lt;br /&gt;A usability expert might argue, though, that straightforward is best, and giving the searcher what he or she expects to see will have a direct impact on whether a link is clicked. &lt;a href="http://www.webpronews.com/topnews/2007/11/27/how-to-look-your-best-in-search-results" target="_blank"&gt;&lt;b&gt;Watch the Video.&lt;/b&gt;&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;The Snippet&lt;/strong&gt; &lt;br /&gt;&lt;br /&gt;The snippet is where the webmaster has the most control of what is displayed about his or her site. Google often pulls the snippet text directly from the meta description tags, and Cutts recommends experimenting with the text to see what yields the best results for individual sites.&lt;br /&gt;&lt;br /&gt;Longer snippets, as  &lt;a href="http://www.webpronews.com/insiderreports/2007/01/18/search-top-is-the-new-top" target="_blank"&gt;we've noted before&lt;/a&gt;, help searchers with informational queries, and may also be of benefit for SEO reasons. Shorter ones work better for navigational queries.&lt;br /&gt;&lt;br /&gt;Google may also pull snippets from other places as well, depending on the query or situation. If no description is available, Cutts says Google may grab information from the Open Directory Project (dmoz) or other directories. Or, to find the context of a query, Google may look to beyond meta description tags to increase relevance.&lt;br /&gt;&lt;br /&gt;If there is content you don't want to appear in the snippet, you can add the "nosnippet tag" to your HTML, which looks like this:&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Cache Page&lt;/strong&gt; &lt;br /&gt;&lt;br /&gt;&lt;table style="margin: 0px 0px 5px 5px; font-family: verdana,arial; font-size: 11px;" align="right" cellpadding="0" cellspacing="0" width="200"&gt;  &lt;tbody&gt;&lt;tr&gt; &lt;td style="padding: 2px 2px 2px 25px; color: rgb(255, 255, 255); font-weight: bold;" background="http://images.ientrymail.com/webpronews/wpn_feature_box.jpg"&gt;Under Your Command&lt;/td&gt; &lt;/tr&gt;  &lt;tr&gt; &lt;td style="border-left: 1px solid rgb(159, 159, 159); border-right: 1px solid rgb(159, 159, 159); padding: 5px 5px 0px;"&gt;&lt;img src="http://images.ientrymail.com/webpronews/newstyle/bullets.gif" height="10" width="12" /&gt; Your title&lt;br /&gt;&lt;br /&gt;&lt;img src="http://images.ientrymail.com/webpronews/newstyle/bullets.gif" height="10" width="12" /&gt; Your snippet&lt;br /&gt;&lt;br /&gt;&lt;img src="http://images.ientrymail.com/webpronews/newstyle/bullets.gif" height="10" width="12" /&gt; What's indexed&lt;br /&gt;&lt;br /&gt;&lt;img src="http://images.ientrymail.com/webpronews/newstyle/bullets.gif" height="10" width="12" /&gt; What's cached&lt;br /&gt;&lt;br /&gt;&lt;img src="http://images.ientrymail.com/webpronews/newstyle/bullets.gif" height="10" width="12" /&gt; How long is something&lt;br /&gt;    indexed&lt;br /&gt;&lt;br /&gt;&lt;img src="http://images.ientrymail.com/webpronews/newstyle/bullets.gif" height="10" width="12" /&gt; The language&lt;br /&gt;&lt;br /&gt;&lt;img src="http://images.ientrymail.com/webpronews/newstyle/bullets.gif" height="10" width="12" /&gt; Experimentation&lt;/td&gt; &lt;/tr&gt;  &lt;tr&gt; &lt;td&gt;&lt;img src="http://images.ientrymail.com/webpronews/wpn_feature_box_bottom.jpg" /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt; The cache page acts as a backup if a website is for some reason unavailable. It will show an archived version of your site, show when it was last crawled by the Googlebot, and serves as a sort of content freshness indicator. Regularly updating content is a good way to influence what appears there, but also useful is the ability to tell Google what not to archive. To prevent the Googlebot from creating a cached version of a page, use the NOARCHIVE tag, which looks like this&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Site Links&lt;/strong&gt; &lt;br /&gt;&lt;br /&gt;Cutts was quick to assure viewers that site links were algorithmic and not payment based. In the Starbucks example, these would be headed "Store Locator" and "Career Center." So there may not be a lot of control over Google chooses as an important related page to increase searcher relevancy, other than using a NOINDEX tag for certain pages so the Googlebot knows what to skip, and making sure the language is clear as to what the pages you do want indexed are for.&lt;br /&gt;&lt;br /&gt;If a page is seasonal or promotional only and you want Google to stop crawling that page after a certain time period, you can use the "unavailable_after" tag. Effective use of the tags mentioned also help control what appears on the "more results" page.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-6700325339139147912?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/6700325339139147912/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=6700325339139147912' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/6700325339139147912'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/6700325339139147912'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2007/11/how-to-look-your-best-in-search-results.html' title='How to look your Best in search results'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-1302830183658899350</id><published>2007-11-22T15:11:00.001-08:00</published><updated>2007-11-22T15:11:47.077-08:00</updated><title type='text'>PHP 5.2.5 Released</title><content type='html'>&lt;p&gt;PHP 5.2.5 has now been released and is ready for download. According to the &lt;a class="ceresLink" href="http://www.php.net/"&gt;php.net&lt;/a&gt; site,&lt;/p&gt; &lt;p class="ceresIndent"&gt;{{This release focuses on improving the stability of the PHP 5.2.x branch with over 60 bug fixes, several of which are security related. All users of PHP are encouraged to upgrade to this release.}}&lt;/p&gt; &lt;p class="ceresIndent"&gt;Highlights of the release include:&lt;/p&gt; &lt;ul class="ceresUl"&gt;&lt;li class="ceresLi"&gt;Upgraded PCRE to version 7.3&lt;/li&gt;&lt;li class="ceresLi"&gt;Updated timezone database to version 2007.9&lt;/li&gt;&lt;li class="ceresLi"&gt;Added ability to control memory consumption between request using ZEND_MM_COMPACT environment variable.&lt;/li&gt;&lt;li class="ceresLi"&gt;Improved speed of array_intersect_key(), array_intersect_assoc(), array_uintersect_assoc(), array_diff_key(), array_diff_assoc() and array_udiff_assoc() functions&lt;/li&gt;&lt;li class="ceresLi"&gt;Fixed bug #43139 (PDO ignores ATTR_DEFAULT_FETCH_MODE in some cases with fetchAll())&lt;/li&gt;&lt;li class="ceresLi"&gt;Fixed bug #42785 (json_encode() formats doubles according to locale rather then following standard syntax)&lt;/li&gt;&lt;li class="ceresLi"&gt;Fixed bug #42549 (ext/mysql failed to compile with libmysql 3.23)&lt;/li&gt;&lt;li class="ceresLi"&gt;Over 60 bug fixes.&lt;/li&gt;&lt;/ul&gt;You can read the &lt;a class="ceresLink" href="http://www.php.net/releases/5_2_5.php"&gt;release announcement&lt;/a&gt;, see the &lt;a class="ceresLink" href="http://www.php.net/ChangeLog-5.php#5.2.5"&gt;changelog&lt;/a&gt;, or &lt;a set="yes" class="ceresLink" href="http://www.php.net/downloads.php#v5"&gt;download this version.&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-1302830183658899350?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/1302830183658899350/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=1302830183658899350' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/1302830183658899350'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/1302830183658899350'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2007/11/php-525-released.html' title='PHP 5.2.5 Released'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-8927381258292620821</id><published>2007-11-22T15:08:00.000-08:00</published><updated>2007-11-22T15:09:26.370-08:00</updated><title type='text'>PayPerPost Bloggers Unranked By Google</title><content type='html'>&lt;strong&gt;&lt;p&gt;PageRank zero became the big number for blogs participating in Izea's PayPerPost program; Google's move to drop the rankings of those blogs drew a harsh rebuke from Izea's CEO.&lt;/p&gt;&lt;/strong&gt; &lt;table border="0" cellpadding="2" cellspacing="0" width="400"&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td align="center"&gt;&lt;img src="http://images.ientrymail.com/webpronews/article_pics/payperpost_bloggers_unranked_google.jpg" title="PayPerPost Bloggers Unranked By Google" alt="PayPerPost Bloggers Unranked By Google" class="irImage" border="0" height="200" width="400" /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td style="padding-bottom: 10px; padding-left: 45px; padding-right: 45px;" class="caption" align="right"&gt;PayPerPost Bloggers Unranked By Google&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td style="padding-bottom: 0px;" class="caption" align="center"&gt;&lt;img src="http://images.ientrymail.com/webpronews/salon/complete.gif" alt="" height="21" width="334" /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt; &lt;p&gt;Ted Murphy has been a lightning rod for criticism ever since the unveiling of PayPerPost, an ad system where bloggers are paid to write about an advertiser. Murphy's company, now called Izea, fought back against early complaints about non-disclosure by instituting a disclosure policy.&lt;/p&gt; &lt;p&gt; Compared to what happened recently, that brouhaha looks like a minnow compared to what the big fish in the search industry did to PPP bloggers. Murphy &lt;a href="http://community.izea.com/blog/2007/11/google-goes-aft.html"&gt;blogged&lt;/a&gt; that Google had tweaked the PageRank of a number of those bloggers, dropping them to PR 0.&lt;/p&gt; &lt;p&gt; When it comes to finding blogs on Google, PageRank is one of a number of factors used to qualify the authoritativeness, and therefore the placement, of a site or blog in Google's search results. Higher PR sites tend to rank well, which means people are more likely to find them and visit.&lt;/p&gt; &lt;p&gt; "Once again Google has proved that PR has little to do with blog traffic, influence or relevance and everything to defending their monopolistic stranglehold on search and online advertising," Murphy said in his post.&lt;/p&gt; &lt;p&gt; He suggested services like PPP and similar competitors offering revenue to bloggers all have a common denominator: they aren't Google AdSense. Google's content network of AdSense participants extends the reach of its AdWords ad platform.&lt;/p&gt; &lt;p&gt; Despite the ominous drop in PageRank, it has been suggested that the blogs victimized by the change have not suffered a loss in traffic, according to &lt;a href="http://www.blogherald.com/2007/11/17/is-google-making-a-lesson-out-of-payperpost-er-izea/"&gt;Tony Hung&lt;/a&gt;. "My take on things is that Google wants to make an example out of Izea," he wrote.&lt;/p&gt; &lt;p&gt; Traffic may not be impacted today, but the effects of the dramatic lowering of PageRank may be evident in the months to follow. As the dominant search engine, Google drives traffic to websites, and the higher they place in search results, the better the chance a site will receive a visit.&lt;/p&gt; &lt;p&gt; If the PageRank drop knocks blogs out of places where they had been ranking well in search, we expect that traffic will fall as well, and we will hear about this again.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-8927381258292620821?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/8927381258292620821/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=8927381258292620821' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/8927381258292620821'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/8927381258292620821'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2007/11/payperpost-bloggers-unranked-by-google.html' title='PayPerPost Bloggers Unranked By Google'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-2120335208874968301</id><published>2007-11-22T15:03:00.001-08:00</published><updated>2007-11-22T15:03:44.866-08:00</updated><title type='text'>Unvalidated Robots.Txt Risks Google Banishment</title><content type='html'>&lt;strong&gt;&lt;p&gt;The web crawling Googlebot may find a forgotten line in robots.txt that causes it to de-index a site from the search engine.&lt;/p&gt;&lt;/strong&gt; &lt;table border="0" cellpadding="2" cellspacing="0" width="400"&gt; &lt;tbody&gt;&lt;tr&gt; &lt;td align="center"&gt;&lt;img src="http://images.ientrymail.com/webpronews/article_pics/unvalidated_robots_risks_google_banishment.jpg" title="Unvalidated Robots.Txt Risks Google Banishment" alt="Unvalidated Robots.Txt Risks Google Banishment" class="irImage" border="0" height="200" width="400" /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="caption" style="padding-bottom: 10px; padding-left: 45px; padding-right: 45px;" align="right"&gt;Unvalidated Robots.Txt Risks Google Banishment&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td class="caption" style="padding-bottom: 0px;" align="center"&gt;&lt;img src="http://images.ientrymail.com/webpronews/salon/complete.gif" alt="" height="21" width="334" /&gt;&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt; &lt;p&gt;Webmasters welcome being dropped out of Google about as much as they enjoy flossing with barbed wire. Making it easier for Google to do that would be anathema to being a webmaster. Why willingly exclude one's site from Google?&lt;/p&gt; &lt;p&gt; That could happen with an unvalidated robots.txt file. Robots.txt allows webmasters to provide standing instructions to visiting spiders, which contributes to having a site indexed faster and more accurately.&lt;/p&gt; &lt;p&gt; Google has been &lt;a href="http://www.webpronews.com/topnews/2007/07/13/some-new-tags-to-play-with"&gt;considering new syntax&lt;/a&gt; to recognize within robots.txt. The &lt;a href="http://sebastians-pamphlets.com/validate-your-robots-txt-or-google-might-deindex-your-site/"&gt;Sebastians-Pamphlets&lt;/a&gt; blog said Google confirmed recognizing experimental syntax like Noindex in the robots.txt file.&lt;/p&gt; &lt;p&gt; This poses a danger to webmasters who have not validated their robots.txt. A line reading &lt;tt&gt;Noindex: /&lt;/tt&gt; could lead to one's site being completely de-indexed.&lt;/p&gt; &lt;p&gt; The surname-less Sebastian recommended Google's &lt;a href="https://www.google.com/webmasters/tools/robots?siteUrl="&gt;robots.txt analyzer&lt;/a&gt;, part of Google's Webmaster Tools, and only using the &lt;tt&gt;Disallow, Allow, and Sitemaps&lt;/tt&gt; crawler directives in the Googlebot section of robots.txt.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-2120335208874968301?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/2120335208874968301/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=2120335208874968301' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/2120335208874968301'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/2120335208874968301'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2007/11/unvalidated-robotstxt-risks-google.html' title='Unvalidated Robots.Txt Risks Google Banishment'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-1207981150562780058</id><published>2007-11-21T15:11:00.000-08:00</published><updated>2007-11-21T15:12:37.253-08:00</updated><title type='text'>Give Your Website A Voice With Speaking Characters</title><content type='html'>&lt;div style="font-family: verdana,Helvetica,sans-serif; font-size: 12px;" align="center"&gt;&lt;wbr&gt;------------------------------&lt;wbr&gt;------------------------------&lt;wbr&gt;------------------------------&lt;/div&gt;    &lt;table align="center" border="0" cellpadding="0" cellspacing="0" width="590"&gt;&lt;tbody&gt;&lt;tr&gt;     &lt;td height="74" width="590"&gt;&lt;a href="http://aj.600z.com/aj/42250/0/cc?z=1&amp;amp;b=42247&amp;amp;c=42249" target="_blank"&gt;&lt;img src="http://www.oddcast.com/images/nl/SitePal_header.gif" alt="SitePal - Talk about a small business solution" border="0" height="74" width="590" /&gt;&lt;/a&gt;&lt;/td&gt;   &lt;/tr&gt;   &lt;tr&gt;      &lt;td&gt;&lt;table border="0" cellpadding="0" cellspacing="0" width="590"&gt;       &lt;tbody&gt;&lt;tr&gt;         &lt;td background="http://www.oddcast.com/images/nl/line_gray_left.gif" width="10"&gt;&lt;br /&gt;&lt;/td&gt;         &lt;td width="570"&gt;&lt;p align="center"&gt;&lt;span style="font-size:130%;color:#ff6600;"&gt;&lt;strong&gt;&lt;span style="font-family:Arial, Helvetica, sans-serif;"&gt;                   Give Your Website a Voice With an Animated Speaking Character &lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;           &lt;p&gt;&lt;span style="font-family:Arial, Helvetica, sans-serif;font-size:85%;"&gt;A SitePal speaking character is proven, easy-to-use and cost-effective tool to enhance your customers online experience and improve the site conversion. &lt;a href="http://aj.600z.com/aj/42250/0/cc?z=1&amp;amp;b=42247&amp;amp;c=42249" target="_blank"&gt;Try it free for 15 days&lt;/a&gt;&lt;/span&gt;.&lt;/p&gt;           &lt;ul&gt;&lt;li&gt;&lt;span style="font-family:Arial, Helvetica, sans-serif;font-size:85%;"&gt;&lt;strong&gt;Engage&lt;/strong&gt; site visitors on personal level&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Arial, Helvetica, sans-serif;font-size:85%;"&gt;&lt;strong&gt;Provide&lt;/strong&gt; information on your products &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Arial, Helvetica, sans-serif;font-size:85%;"&gt;&lt;strong&gt;Persuade&lt;/strong&gt; your visitors to take action&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-family:Arial, Helvetica, sans-serif;font-size:85%;"&gt;&lt;strong&gt;Stand&lt;/strong&gt; out from the competition &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;                               &lt;p&gt;&lt;span style="font-family:Arial, Helvetica, sans-serif;font-size:85%;"&gt;&lt;strong&gt;The result? Increased time-on-site, message                                  recalls,  conversions and sales.&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;                             &lt;p align="center"&gt;&lt;a href="http://aj.600z.com/aj/42250/0/cc?z=1&amp;amp;b=42247&amp;amp;c=42249" target="_blank"&gt;&lt;img src="http://www.oddcast.com/images/nl/Button_free.gif" alt="Try it FREE for 15 Days" border="0" height="43" width="232" /&gt;&lt;/a&gt;&lt;/p&gt;                                           &lt;table align="center" border="0" cellpadding="0" cellspacing="0" width="550"&gt;             &lt;tbody&gt;&lt;tr&gt;               &lt;td align="center" valign="middle" width="0"&gt;&lt;table align="center" border="0" cellpadding="0" cellspacing="0" width="312"&gt;                   &lt;tbody&gt;&lt;tr&gt;                     &lt;td height="11" width="500"&gt;&lt;img src="http://www.oddcast.com/images/nl/greenbox_top.gif" height="11" width="500" /&gt;&lt;/td&gt;                    &lt;/tr&gt;                   &lt;tr&gt;                     &lt;td&gt;&lt;table align="center" border="0" cellpadding="0" cellspacing="0" width="500"&gt;                         &lt;tbody&gt;&lt;tr&gt;                           &lt;td background="http://www.oddcast.com/images/nl/line_green_left.gif" width="10"&gt;&lt;br /&gt;&lt;/td&gt;                           &lt;td&gt;                    &lt;p align="left"&gt;&lt;span style="font-family:Arial, Helvetica, sans-serif;font-size:85%;"&gt;&lt;strong&gt;&lt;span style="font-size:100%;color:#ff6600;"&gt;SitePal Proved 144% Higher Conversions &lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;                    &lt;table align="left" cellpadding="0" cellspacing="0"&gt; &lt;tbody&gt;&lt;tr&gt;&lt;td&gt;            &lt;a href="http://aj.600z.com/aj/42250/0/cc?z=1&amp;amp;b=42247&amp;amp;c=42249" target="_blank"&gt;&lt;img src="http://www.oddcast.com/images/nl/anita.jpg" style="padding-right: 5px;" border="0" /&gt;&lt;/a&gt;&lt;/td&gt;      &lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;     &lt;p align="left"&gt;&lt;span style="font-family:Arial, Helvetica, sans-serif;font-size:85%;"&gt;Anita Campbell, CEO of Small Business &lt;a href="http://trends.com/" target="_blank"&gt;Trends.com&lt;/a&gt; and renowned small business expert, wanted to see if SitePal can improve the sign up rate of the email newsletter on her website and decided to run an A/B test. 50% of the site visitors were shown a SitePal speaking character inviting them to subscribe for the newsletter, and the other 50% were shown a version of the page without a SitePal character. &lt;/span&gt;           &lt;/p&gt;                     &lt;p align="left"&gt;&lt;span style="font-family:Arial, Helvetica, sans-serif;font-size:85%;"&gt;The results:                &lt;em&gt;&lt;strong&gt;After just 1 week, we got more than double the sign-ups using the SitePal character&lt;/strong&gt;, as without it. &lt;strong&gt;The conversion rate was 144% higher!&lt;/strong&gt; The avatar focused the attention of visitors on the newsletter and was successful in convincing visitors to take the extra steps to subscribe. The SitePal avatar exceeded my expectations. &lt;strong&gt;The SitePal character is a powerful sales and marketing tool for a website&lt;/strong&gt;.&lt;/em&gt;&lt;br /&gt;                &lt;/span&gt;          &lt;/p&gt;              &lt;div align="right"&gt;&lt;span style="font-family:Arial, Helvetica, sans-serif;font-size:85%;"&gt; - Anita Campbell, CEO, Small Business &lt;a href="http://trends.com/" target="_blank"&gt;Trends.com&lt;/a&gt; &lt;/span&gt;&lt;/div&gt;                             &lt;/td&gt;                           &lt;td background="http://www.oddcast.com/images/nl/line_green_right.gif" width="10"&gt;&lt;br /&gt;&lt;/td&gt;                         &lt;/tr&gt;                     &lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;                   &lt;/tr&gt;                   &lt;tr&gt;                     &lt;td height="11" width="312"&gt;&lt;img src="http://www.oddcast.com/images/nl/greenbox_bottom.gif" height="11" width="500" /&gt;&lt;/td&gt;                   &lt;/tr&gt;               &lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;              &lt;/tr&gt;           &lt;/tbody&gt;&lt;/table&gt;           &lt;p align="left"&gt;&lt;span style="font-family:Arial, Helvetica, sans-serif;font-size:85%;"&gt;&lt;strong&gt;&lt;span style="font-size:100%;color:#ff6600;"&gt;SitePal Is Easy! &lt;/span&gt;&lt;/strong&gt;&lt;br /&gt;With SitePal, creating and publishing your own speaking character is as easy as 1,2,3. Using our online editor, you can easily customize any character to your liking, and add your audio message by using our Text-to-Speech or Record-by-Phone feature. The process is automated, no technical experience is required. &lt;/span&gt;&lt;/p&gt;          &lt;p&gt;&lt;span style="font-family:Arial, Helvetica, sans-serif;font-size:85%;"&gt;Visit &lt;a href="http://aj.600z.com/aj/42250/0/cc?z=1&amp;amp;b=42247&amp;amp;c=42249" target="_blank"&gt;www.SitePal.com&lt;/a&gt; to learn more and start your 15 day free trial!&lt;/span&gt;&lt;/p&gt;           &lt;p align="center"&gt;&lt;a href="http://aj.600z.com/aj/42250/0/cc?z=1&amp;amp;b=42247&amp;amp;c=42249" target="_blank"&gt;&lt;img src="http://www.oddcast.com/images/nl/Button_free.gif" alt="Try it FREE for 15 Days" border="0" height="43" width="232" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-1207981150562780058?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/1207981150562780058/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=1207981150562780058' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/1207981150562780058'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/1207981150562780058'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2007/11/give-your-website-voice-with-speaking.html' title='Give Your Website A Voice With Speaking Characters'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-5149107345566795905</id><published>2007-11-21T15:08:00.000-08:00</published><updated>2007-11-21T15:09:18.579-08:00</updated><title type='text'>Get top 10 rankings on Google &amp; Yahoo with IBP's proven Top 10 Optimizer</title><content type='html'>&lt;p&gt;If you want to get high rankings on Google and other major search engines then you must optimize your web pages. IBP's Top 10 Optimizer helps you optimize your web pages quickly and easily.&lt;/p&gt; &lt;p style="border: 1px dotted rgb(221, 221, 221); padding: 10px; background: rgb(255, 255, 204) none repeat scroll 0% 50%; color: black; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;&lt;b&gt;Fact:&lt;/b&gt; If you want to get high rankings on Google and other major search engines then you need optimized web page content and high quality inbound links. IBP helps you get both.&lt;/p&gt; &lt;p&gt;IBP helps you get high Google rankings in three easy steps:&lt;/p&gt; &lt;p&gt; &lt;/p&gt;&lt;table border="0" cellpadding="1" cellspacing="0" width="100%"&gt; &lt;tbody&gt;&lt;tr&gt;&lt;td bgcolor="black"&gt;&lt;img src="http://www.axandra.com/images/steps.gif" alt="three steps" height="59" width="482" /&gt;&lt;br /&gt;&lt;table border="0" cellpadding="10" cellspacing="0" width="100%"&gt; &lt;tbody&gt;&lt;tr&gt;&lt;td bgcolor="white" valign="top" width="17"&gt; &lt;center&gt; &lt;img src="http://www.axandra.com/images/step1.gif" alt="website promotion software tool" align="middle" border="0" height="18" width="12" /&gt;&lt;/center&gt;&lt;/td&gt; &lt;td bgcolor="white"&gt;&lt;a href="http://aj.600z.com/aj/43328/0/cc?z=1&amp;amp;b=43326&amp;amp;c=43327" target="_blank"&gt;Download IBP now&lt;/a&gt; and install it on your computer. IBP runs on Windows 98/Me/2000/XP/Vista.&lt;/td&gt;  &lt;/tr&gt; &lt;tr&gt;&lt;td bgcolor="white" valign="top" width="17"&gt;&lt;center&gt;&lt;img src="http://www.axandra.com/images/step2.gif" alt="search engine placement" align="middle" border="0" height="18" width="14" /&gt;&lt;/center&gt;&lt;/td&gt; &lt;td bgcolor="white"&gt;Start IBP and enter your website address in IBP's Top 10 Optimizer tools.&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt;&lt;td bgcolor="white" valign="top" width="17"&gt;&lt;center&gt; &lt;img src="http://www.axandra.com/images/step3.gif" alt="top 10 search engine ranking" align="middle" border="0" height="19" width="14" /&gt;&lt;/center&gt; &lt;/td&gt;&lt;td bgcolor="white"&gt;Follow the instructions and benefit from top 10 search engine rankings on Google &amp;amp; Yahoo!&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td colspan="2" bgcolor="#f6f6ff"&gt;IBP tells you in plain English and in great detail what you have to do to get a top 10 ranking for your specific keyword in the search engine you've chosen. IBP supports all important search engines.&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt; &lt;/tr&gt;  &lt;/tbody&gt;&lt;/table&gt;  &lt;h3&gt;IBP uses a proven method that works&lt;/h3&gt; &lt;p&gt;A search engine optimization method that really works is to analyze the web pages that currently have a high ranking for your important keyword. Since these pages have a top 10 ranking, the pages must have all the best settings.&lt;/p&gt; &lt;p&gt;With IBP, analyzing the top ranked web pages is as easy as 1-2-3. IBP analyzes the web pages that currently have a top 10 ranking in the search engine of your choice and compares them with your page.&lt;/p&gt; &lt;p&gt;IBP tells you how the pages have achieved that ranking and how you must change your web pages and the links to your website to obtain a similar ranking. Improving your website has never been so easy. IBP helps you get more customers and more sales with increased search engine rankings.&lt;/p&gt; &lt;div&gt; &lt;span&gt;How to optimize your website for Google&lt;/span&gt; &lt;p&gt;&lt;span&gt;IBP's Top 10 Ranking report demystifies Google's ranking algorithm&lt;/span&gt; and tells you in easy-to-understand words how to optimize and prepare your website specifically for better results in Google.&lt;/p&gt;  &lt;p&gt;Suppose you want to know how to get a top 10 ranking for the search term "&lt;i&gt;outdoor equipment&lt;/i&gt;" in Google. IBP will tell you how to optimize your website for exactly that search term in Google.&lt;/p&gt; &lt;p&gt;IBP's advice is based on in-depth analysis of current, up-to-the-minute top 10 results in Google for that search term and it is &lt;span&gt;specifically for that search term and specifically for Google.&lt;/span&gt;.&lt;/p&gt; &lt;p&gt;IBP's high quality analysis results are &lt;span&gt;always up-to-date, specific, and accurate&lt;/span&gt;. You won't get that level of search engine optimization accuracy with any other tool.&lt;/p&gt; IBP also works with Yahoo's latest search engine ranking algorithm, with MSN Search and all other major search engines. IBP helps you get the rankings you deserve. &lt;/div&gt;&lt;br /&gt;&lt;h3&gt;Is your search engine optimization company really good?&lt;/h3&gt;  &lt;p&gt;Did you hire a search engine placement or a search engine optimization company to get high rankings for your site? Use IBP to find out if they really optimized your site for high rankings on Google.&lt;/p&gt;  &lt;p&gt;Of course, IBP also works with other search engines. Don't wait any longer and &lt;a href="http://aj.600z.com/aj/43328/0/cc?z=1&amp;amp;b=43326&amp;amp;c=43327" target="_blank"&gt;download the free IBP trial now&lt;/a&gt;.&lt;/p&gt;   &lt;div&gt; &lt;p&gt;&lt;span&gt;Read what our customers say about IBP:&lt;/span&gt;&lt;/p&gt;  &lt;p&gt;&lt;img alt="" src="http://www.axandra.com/images/jeanboucher.gif" height="32" width="32" /&gt;Jean-Boucher, &lt;a href="http://magicien.biz/" target="_blank"&gt;Magicien.biz&lt;/a&gt;, says:&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;"I   have bought books, e-books and applications about SEO, I subscribe  to numerous newsletters related to SEO, but &lt;strong&gt;the only tool I  don't regret buying is IBP&lt;/strong&gt;. With IBP, I have managed to place  my website on the first place for my target keyword.  &lt;/p&gt; &lt;p&gt;&lt;strong&gt;I'm first in Yahoo &amp;amp; MSN and I am currently 3rd with Google&lt;/strong&gt;. The beauty of this program is that it works with any language. All you have to do is to follow the clear instructions. Thank you IBP."&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt;&lt;img alt="" src="http://www.axandra.com/images/avatar14.gif" height="32" width="32" /&gt;Michael Wong, Mikes-Marketing-Tools.com, says:&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;&lt;strong&gt;"IBP is a search engine optimization tool that turns SEO novices   into experts overnight! &lt;/strong&gt;[...] The report is not only comprehensive, but goes into the kind of detail that would take a professional optimizer quite a few hours to produce.&lt;/p&gt; &lt;p&gt;You then simply go through the checklist and make the appropriate changes to your web page. [...]&lt;strong&gt; You really have to see for yourself&lt;/strong&gt;&lt;i&gt;.&lt;/i&gt; It's   so simple, even a complete computer novice can use it. I highly recommend   it!"&lt;/p&gt;  &lt;/blockquote&gt; &lt;p&gt;&lt;img alt="" src="http://www.axandra.com/images/avatar4.gif" height="32" width="32" /&gt;Yvonne Walker, HerbalLuxuries.com, says:&lt;/p&gt; &lt;blockquote&gt; &lt;p&gt;"I just purchased IBP and I love the product. &lt;strong&gt;I had previously    purchased a couple of other programs before buying IBP, wow what a difference.&lt;/strong&gt;         The reports are very in-depth.&lt;/p&gt; &lt;p&gt;The main items that differentiate IBP from the others are the reports make sense and they are clear and concise. The other thing is the design of the software, nice interface, easy to follow. &lt;strong&gt;Thanks for such  a great tool that actually works."&lt;/strong&gt;&lt;/p&gt;  &lt;/blockquote&gt; &lt;p&gt;&lt;img alt="" src="http://www.axandra.com/images/avatar58.gif" height="32" width="32" /&gt;Richard Bravo, Jackson Hole Real Estate Company, says:&lt;/p&gt;  &lt;blockquote&gt; &lt;p&gt;"I just wanted to let you know &lt;b&gt;your software ROCKS!&lt;/b&gt; After just one week of implementing data from our IBP reports we have seen 23 NEW listings.&lt;/p&gt;&lt;p&gt;We jumped an average of 10 spots that &lt;b&gt;put us on the first page of most of our key phrases and we just hit #1&lt;/b&gt; on one of our most coveted key words. Yee-Haw! Thanks for developing such a great tool."&lt;/p&gt;  &lt;/blockquote&gt; &lt;/div&gt;   &lt;p&gt;Order IBP now 100% risk-free. &lt;a href="http://aj.600z.com/aj/43339/0/cc?z=1&amp;amp;b=43338&amp;amp;c=43327" target="_blank"&gt;We take the risk, you get the results&lt;/a&gt;. IBP helps you get higher search engine rankings, more customers and more sales. &lt;/p&gt;  &lt;p&gt;&lt;img src="http://www.axandra.com/images/download-img.gif" align="absmiddle" /&gt; &lt;a href="http://aj.600z.com/aj/43328/0/cc?z=1&amp;amp;b=43326&amp;amp;c=43327" target="_blank"&gt;&lt;strong&gt;Click here to download the free trial version.&lt;/strong&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-5149107345566795905?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/5149107345566795905/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=5149107345566795905' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/5149107345566795905'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/5149107345566795905'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2007/11/get-top-10-rankings-on-google-yahoo.html' title='Get top 10 rankings on Google &amp; Yahoo with IBP&apos;s proven Top 10 Optimizer'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-7401736764193425946</id><published>2007-11-20T16:13:00.001-08:00</published><updated>2007-11-20T16:15:22.687-08:00</updated><title type='text'>MySQL Lunch &amp; Learn Program</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://mysql.com/common/logos/mysql_100x52-64.gif"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 132px; height: 68px;" src="http://mysql.com/common/logos/mysql_100x52-64.gif" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;p&gt;The "MySQL Lunch-n-Learn Program" is designed to be a fun and informal educational event for your team. MySQL provides the technical experts, and brings lunch! Select a topic of your choice:&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;MySQL Enterprise Monitor, Replication Monitor, and Scale-Out&lt;/li&gt;&lt;li&gt;MySQL High Availability and Scalability Architectures&lt;/li&gt;&lt;li&gt;MySQL Performance Tuning - Advanced Tips &amp;amp; Tricks&lt;/li&gt;&lt;li&gt;MySQL Partitioning&lt;/li&gt;&lt;li&gt;MySQL for Data Warehousing&lt;/li&gt;&lt;li&gt;MySQL for the Oracle DBA&lt;/li&gt;&lt;li&gt;MySQL Cluster - Carrier Grade Edition (for Telecoms only)&lt;/li&gt;&lt;li&gt;Embedded Databases: Why MySQL is a perfect fit for ISV applications&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-7401736764193425946?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/7401736764193425946/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=7401736764193425946' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/7401736764193425946'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/7401736764193425946'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2007/11/mysql-lunch-learn-program.html' title='MySQL Lunch &amp; Learn Program'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-1947257582082548781</id><published>2007-11-20T16:08:00.001-08:00</published><updated>2007-11-20T16:09:24.738-08:00</updated><title type='text'>X-Cart 4.1.9 released and announced</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.x-cart.com/images/xcart_logo.gif"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 287px; height: 77px;" src="http://www.x-cart.com/images/xcart_logo.gif" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Qualiteam Software Ltd. company, a &lt;a set="yes" href="http://www.qualiteam.biz/"&gt;provider of e-commerce software solutions&lt;/a&gt;, used by tens of thousands online merchants in 111 countries worldwide, released a new version of X-Cart v 4.1.9. New release of X-Cart features further improvements in core functions, payment modules and addons.   &lt;p&gt;  The major changes between v4.1.8 and v4.1.9 are:  &lt;/p&gt;&lt;ul class="ProductFeatures"&gt;&lt;li&gt;Completely re-worked &lt;a href="http://www.x-cart.com/magnifier.html" target="_blank"&gt;X-Magnifier add-on&lt;/a&gt;, see below for details.&lt;/li&gt;&lt;li&gt;Improved installation wizard now suggests solutions.&lt;/li&gt;&lt;li&gt;HTML meta keywords and description tags moved above JavaScript code for SEO purposes.&lt;/li&gt;&lt;li&gt;Shipping Label Generator module has been updated (USPS labels retrieval, code refactoring).&lt;/li&gt;&lt;li&gt;Major improvement in online payment processing security. 3DSecure transactions support enabled in the following modules:&lt;/li&gt;&lt;/ul&gt;  &lt;ul style="margin-left: 20px;"&gt;&lt;li&gt;eSelect Plus. Transaction API&lt;/li&gt;&lt;li&gt;iDEB&lt;/li&gt;&lt;li&gt;Caledon&lt;/li&gt;&lt;li&gt;eSec.Direct&lt;/li&gt;&lt;li&gt;eSec.ReDirect&lt;/li&gt;&lt;li&gt;WebCraft/Transactium&lt;/li&gt;&lt;li&gt;PayFlow Pro (via PayFlow FPS)&lt;/li&gt;&lt;li&gt;Authorize.NET&lt;/li&gt;&lt;li&gt;PsiGate&lt;/li&gt;&lt;li&gt;Netbilling&lt;/li&gt;&lt;li&gt;USA ePay&lt;/li&gt;&lt;/ul&gt;    &lt;br /&gt;  &lt;p&gt;  Qualiteam Software announces a new version of &lt;a href="http://www.x-cart.com/magnifier.html" target="_blank"&gt;X-Magnifier add-on&lt;/a&gt;, which features usability and performance improvements, including:   &lt;/p&gt;&lt;ul class="ProductFeatures"&gt;&lt;li&gt;A completely stretchable zoom window.&lt;/li&gt;&lt;li&gt;Improved usability (scaling images with mouse scroll wheel button, "fit to page" button, thumbnail management interface in admin zone).&lt;/li&gt;&lt;li&gt;Customizable zoom window (two predefined skin sets come with the add-on out-of-the-box).&lt;/li&gt;&lt;li&gt;Improved performance (46% less memory needed).&lt;/li&gt;&lt;/ul&gt;  &lt;br /&gt;  &lt;p&gt; For detailed changes description see the CHANGELOG file, which is included into X-Cart installation package, or can be downloaded from the File Area section of your Support Help Desk account. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-1947257582082548781?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/1947257582082548781/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=1947257582082548781' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/1947257582082548781'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/1947257582082548781'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2007/11/x-cart-419-released-and-announced.html' title='X-Cart 4.1.9 released and announced'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-6749941255761591980</id><published>2007-11-20T16:05:00.000-08:00</published><updated>2007-11-20T16:06:42.899-08:00</updated><title type='text'>CRE Loaded 6.2 SP1 - Now Available for Download</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.creloaded.com/templates/creDefault/images/header/t01_01.jpg"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 320px;" src="http://www.creloaded.com/templates/creDefault/images/header/t01_01.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Chain Reaction Ecommerce (CRE), makers of the popular open source shopping cart CRE Loaded, announce the release of CRE Loaded 6.2 SP1 with several new services, partner tie-ins, and essential updates and fixes. All CRE Loaded 6.2 storeowners (applies to Standard, Pro and Pro B2B applications) can visit www.creloaded.com and download SP1 for FREE. &lt;p&gt;New Services available via the CRE Loaded 6.2 SP1 admin panel:&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;strong&gt;CRE Merchant&lt;/strong&gt;&lt;sup&gt;SM&lt;/sup&gt; for the best rates in credit card processing. (Available for US users only at this time) &lt;/li&gt;&lt;li&gt;&lt;strong&gt;CRE Messenger&lt;/strong&gt;&lt;sup&gt;SM&lt;/sup&gt; for in-store sales and customer-service chat .&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;New Partner Integrations available inside the CRE Loaded 6.2 SP1 admin panel:&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;em&gt;PayPal&lt;/em&gt; Pro integration and &lt;em&gt;PayPal&lt;/em&gt; certification.&lt;/li&gt;&lt;li&gt;&lt;em&gt;BuySAFE&lt;/em&gt; transaction bonding service enhances customer trust and security.&lt;/li&gt;&lt;li&gt;&lt;em&gt;MyStoreRewards&lt;/em&gt; pay-per-performance buyer-loyalty program.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;Key updates and fixes include:&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;em&gt;Godaddy.com&lt;/em&gt; – now completely compatible.&lt;/li&gt;&lt;li&gt;&lt;em&gt;Google&lt;/em&gt; Feed support enhancements.&lt;/li&gt;&lt;li&gt;Enhanced Create Order and Edit Order functions for better product selection.&lt;/li&gt;&lt;li&gt;Enhancements to Sub-Product handling to provide more consistent functionality.&lt;/li&gt;&lt;li&gt;Major enhancements to the Affiliate presentation and reporting to reduce confusion.&lt;/li&gt;&lt;li&gt;Enabled editing of product prices when editing an order.&lt;/li&gt;&lt;li&gt;Fixes applied to the backup.php and backup_mysql.php to better support compression.&lt;/li&gt;&lt;li&gt;Corrections to the &lt;em&gt;PayPal&lt;/em&gt; IPN module to support Invoice Number and Printing.&lt;/li&gt;&lt;li&gt;Easy Populate Advanced Import / Export updated to work in a PHP 5.2 environment.&lt;/li&gt;&lt;li&gt;Several enhancements to better support special characters, such as apostrophes, in product names and attributes.&lt;/li&gt;&lt;li&gt;A major change to Sessions to provide more stability.&lt;/li&gt;&lt;li&gt;Correction to Date handling for Spanish-language sites.&lt;/li&gt;&lt;li&gt;Several enhancements to Coupon handling and functionality.&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;It is highly recommended that SP1 be installed on all CRE Loaded 6.2 shopping carts. Visit the link below to download. Pro and Pro B2B customers must login and go to their Mydownloads link. Standard users &lt;a set="yes" href="http://www.creloaded.com/fdm_folder_files.php?fPath=15_16"&gt;&lt;u&gt;Get Patch 12 (SP1) HERE&lt;/u&gt;&lt;u&gt;.&lt;/u&gt;&lt;/a&gt; Click and then locate the file.&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-6749941255761591980?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/6749941255761591980/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=6749941255761591980' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/6749941255761591980'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/6749941255761591980'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2007/11/cre-loaded-62-sp1-now-available-for.html' title='CRE Loaded 6.2 SP1 - Now Available for Download'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-7777403097643950807</id><published>2007-11-20T10:07:00.000-08:00</published><updated>2007-11-20T10:09:02.147-08:00</updated><title type='text'>PHP Designer 2007 - Professional version 5.3 is available!</title><content type='html'>MPSOFTWARE proud announces the new release of PHP Designer 2007 - Professional version 5.3 featuring more than 50 new features, enhancements and bug fixes.&lt;br /&gt;&lt;br /&gt;Version 5.3 includes:&lt;br /&gt;&lt;br /&gt;- Significant improvement in speed and performance&lt;br /&gt;&lt;br /&gt;- PHP Code Explorer&lt;br /&gt;  * Support for dependencies (include, include_, require and require_once)&lt;br /&gt;  * Support for classes, extends classes and implements&lt;br /&gt;  * Support for functions&lt;br /&gt;  * Support for grouped variables with counts&lt;br /&gt;  * Support for context of variables (global, local - inside function)&lt;br /&gt;  * Support for constants&lt;br /&gt;  * Support for interfaces&lt;br /&gt;  * Jump to extends classes, implements and dependencies&lt;br /&gt;  * Get information on the fly about where each item is declared in, including phpDocumentor information&lt;br /&gt;  * Search filter&lt;br /&gt;&lt;br /&gt;- PHP Code Completion&lt;br /&gt;  * Support for PHP 4.4.6 and PHP 5.2.1&lt;br /&gt;  * Intelligent suggestion on the fly!&lt;br /&gt;  * Customizable&lt;br /&gt;  * Auto trigger by variables ($), PHP class (:&lt;img src="http://www.php-editors.com/forums/images/smilies/smile.gif" alt="" title="Smile" class="inlineimg" border="0" /&gt; and PHP object (-&gt;)&lt;br /&gt;  * Support for native/user functions, variables and constants&lt;br /&gt;  * Support for context of variables (global, local - inside function)&lt;br /&gt;  * Support for simple and nested objects&lt;br /&gt;  * Support for keywords (include, if, else etc.)&lt;br /&gt;  * Support for class member visibility (private, protected, public, static, final, var)&lt;br /&gt;  * Support for extends classes and implements&lt;br /&gt;  * Support for interfaces&lt;br /&gt;  * Get description about all native functions, what PHP version it is supported in and what it returns.&lt;br /&gt;&lt;br /&gt;- HTML Code Completion&lt;br /&gt;  * Support for HTML and XHTML&lt;br /&gt;  * Intelligent suggestion on the fly!&lt;br /&gt;  * Auto trigger&lt;br /&gt;  * Show information on the fly about tag attributes&lt;br /&gt;  * Customizable&lt;br /&gt;&lt;br /&gt;- CSS Code Completion&lt;br /&gt;  * Support for CSS 1 and CSS 2.1&lt;br /&gt;  * Intelligent suggestion on the fly&lt;br /&gt;  * Auto trigger&lt;br /&gt;&lt;br /&gt;- Code Tip for PHP&lt;br /&gt;  * Support for PHP 4.4.6 and PHP 5.2.1&lt;br /&gt;  * Intelligent suggestion on the fly&lt;br /&gt;  * Auto trigger inside functions and by mouse clicking&lt;br /&gt;  * Support for multiple functions&lt;br /&gt;  * Support for multiple lines&lt;br /&gt;  * Extended information about functions (classes and types)&lt;br /&gt;  * Fixed position (always at beginning of function call)&lt;br /&gt;&lt;br /&gt;- Project Manager&lt;br /&gt;  * Parse project for classes, functions, variables, constants, extends, implements, interfaces etc.&lt;br /&gt;  * The active project is protected against renaming&lt;br /&gt;&lt;br /&gt;- Jump to File/Project Declaration (classes, functions, interfaces, constants and variables)&lt;br /&gt;- Search and jump to File/Project Declaration (classes, functions, interfaces, constants and variables)&lt;br /&gt;- Support for Frameworks&lt;br /&gt;- Embedded PHP in the HTML highlighter&lt;br /&gt;- Asia characters are now displayed corrected when working in PHP/HTML/CSS/JS&lt;br /&gt;- Support for key strokes in the file/project browser&lt;br /&gt;- New file-templates for PHP and HTML&lt;br /&gt;- File overview in the File tabs&lt;br /&gt;- Close all files except active file&lt;br /&gt;- The AutoClose Bracket has been improved when working in PHP/HTML/CSS/JS&lt;br /&gt;- Show hint with active line position when scrolling&lt;br /&gt;- Support for deleting Desktop Layouts&lt;br /&gt;- Fixed loading syntax highlighters on upstart&lt;br /&gt;- Fixed saving and loading HTML versions on upstart&lt;br /&gt;- Support for the extended PHP manual in the code libraries&lt;br /&gt;- New statusbar in the browser preview&lt;br /&gt;- Fixed loading highlighters&lt;br /&gt;- Fixed the alignment properties in Table and Images&lt;br /&gt;- Fixed layout on the Getting Started page&lt;br /&gt;- Support for an edit popup-menu in the search toolbar&lt;br /&gt;- Support for tabs/tabs-to-spaces in the auto-completion, snippets and templates&lt;br /&gt;- Support for external looking up in the PHP manual&lt;br /&gt;- Fixes and enhancements&lt;br /&gt;&lt;br /&gt;This new release can be downloaded at &lt;a set="yes" href="http://www.mpsoftware.dk/" target="_blank"&gt;http://www.mpsoftware.dk&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This new release is free for registered customers who have previous ordered version 5.x.x.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="mailto:mpsoftware@mpsoftware.dk"&gt;&lt;br /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-7777403097643950807?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/7777403097643950807/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=7777403097643950807' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/7777403097643950807'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/7777403097643950807'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2007/11/php-designer-2007-professional-version.html' title='PHP Designer 2007 - Professional version 5.3 is available!'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-2134621606372966906.post-5562935888869634161</id><published>2007-11-20T09:59:00.000-08:00</published><updated>2007-11-20T10:00:55.412-08:00</updated><title type='text'>VirtueMart Developer Central launched!</title><content type='html'>The VirtueMart Team is very proud to announce the Launch of the new Portal "&lt;i&gt;&lt;b&gt;VirtueMart Development Central&lt;/b&gt;&lt;/i&gt;" &lt;a set="yes" href="http://dev.virtuemart.net/" target="_blank"&gt;dev.virtuemart.net&lt;/a&gt;.   &lt;p&gt; This will be the place where users can help develop VirtueMart, report Bugs and Feature Requests, start their own Projects and much more. &lt;b&gt;Your own Project?&lt;/b&gt; Yes, you've read correctly: the Developer Platform is meant for &lt;b&gt;Open Source&lt;/b&gt; Projects who work together with or enhance VirtueMart (like Payment &amp;amp; Shipping Modules, Frontend Modules etc.) - Extensions for VirtueMart. Every Project receives free Space for Documents, Trackers, Forums, Wiki, SVN/CVS. &lt;/p&gt; &lt;p&gt; &lt;img src="http://dev.virtuemart.net/cb/images/powered-by-codebeamer.gif" alt="CodeBeamer Logo" style="border: 1px solid rgb(0, 0, 0); margin: 5px; float: left;" class="jce_tooltip" /&gt; The Portal is powered by a &lt;i&gt;Free Open Source Community License of &lt;a href="http://www.intland.com/products/codebeamer.html"&gt;CodeBeamer&lt;/a&gt;&lt;/i&gt;. Thanks to Intland GmbH the VirtueMart Community now can make use of the full Power of an Enterprise-Level Collaboration Suite.  &lt;/p&gt; &lt;p&gt; The Tasks from the &lt;b&gt;Flyspray Bugtracker&lt;/b&gt; have been transferred to the &lt;a href="http://dev.virtuemart.net/cb/proj/tracker.do?proj_id=1" target="_blank"&gt;new Trackers&lt;/a&gt; keeping their attachments, comments and IDs.  &lt;/p&gt; &lt;p&gt; The &lt;a href="https://dev.virtuemart.net/svn/virtuemart/" target="_blank" title="New Subversion Repository Location"&gt;SVN Repository&lt;/a&gt;  will move to the new Location tomorrow (Nov. 21st 2007). How to access SVN then can be read in the &lt;a href="http://dev.virtuemart.net/cb/proj/wiki/displayHomePage.do?proj_id=1" target="_blank"&gt;new Wiki&lt;/a&gt;. &lt;/p&gt; &lt;p&gt; Please head over to &lt;a href="http://dev.virtuemart.net/" target="_blank"&gt;dev.virtuemart.net&lt;/a&gt; and see yourself. &lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2134621606372966906-5562935888869634161?l=latesttechnicalnews.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://latesttechnicalnews.blogspot.com/feeds/5562935888869634161/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=2134621606372966906&amp;postID=5562935888869634161' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/5562935888869634161'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/2134621606372966906/posts/default/5562935888869634161'/><link rel='alternate' type='text/html' href='http://latesttechnicalnews.blogspot.com/2007/11/virtuemart-developer-central-launched.html' title='VirtueMart Developer Central launched!'/><author><name>Vishnu</name><uri>http://www.blogger.com/profile/00105970927173529591</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='23' height='32' src='http://4.bp.blogspot.com/_VaPaJZjaMcU/Sidi0GcuCpI/AAAAAAAAAWQ/deMOw9o1CCM/S220/vishnu.jpg'/></author><thr:total>0</thr:total></entry></feed>
