1 / 3
Caption Text
2 / 3
Caption Two
3 / 3
Caption Three margin testing

Thursday, July 9, 2009

Charge of Google's light brigade

BBC NEWS | Business | Charge of Google's light brigade

ANALYSIS
By Tim Weber
Business editor, BBC News website

Chrome logo
Google's operating system aims to tempt people away from Windows

So at long last Google is making its move. Promising a lightweight but fast operating system - Chrome OS - the internet search company is poised to strike at the heart of Microsoft's software empire.

The Windows operating system is Microsoft's cash cow, powering about 90% of the world's personal computers, and as a result accounting for the majority of its profits.

The benefits are wider, though. Every Windows desktop comes with an invitation (and at times the imperative) to use other Microsoft software and services.

This, in turn, hobbles Google's ambition of organising all the world's information, and making money on the back of it.

After all, most people's computer experience is bogged down with frustration - from the time it takes to start a computer, to software conflicts, and worries about viruses and malware (or for Apple Macs the cost of buying a computer).

Clash of business models

Soon those people who are spending more of their time in the company of Google rather than Microsoft will have the opportunity to use the Chrome OS for all their computing needs
Rory Cellan-Jones
BBC's technology correspondent

Google promises to change all that by stripping desktop computing to its basics. Your PC won't have to do the heavy lifting, applications will run in your browser instead, powered by Google's huge server farms.

It comes down to a clash of business models. Microsoft earns money by charging customers a one-off fee for its operating system, probably $20 for its old Windows XP software, and a rumoured $150 for Windows Vista and the forthcoming Windows 7, which is due to go on sale this autumn.

Google is unlikely to charge for Chrome OS. The company wants you to get online fast, have a whale of a time... and use as many Google services as you can: from search to email, social networking to photo sharing, word processing, to watching films on YouTube.

It is yet another incarnation of the company's "Google everywhere" strategy.

Google, the software firm

Chrome OS also shows what you can achieve when you sit on a huge cash pile, attract some of the world's best software engineers and - most importantly - start with a blank slate.

Google has a track record. Not that long ago the firm announced that it was developing an operating system for smartphones, dubbed Android (which is distinct from Chrome OS).

Microsoft executives that I spoke to back then were dismissive, arguing that Google was underestimating the complexity of such a venture. But already Android is in many ways a more accomplished piece of software than version 6.1 of Microsoft's Windows Mobile.

Google is helped by the fact that unlike Microsoft it has no need to worry about compatibility with legacy software.

That, however, could also be the Achilles heel of Chrome OS.

Consumers who want to buy a Chrome OS computer will have to start with a blank slate as well. Any software that they hold near and dear is unlikely to be compatible with the new system.

And they have to limit their ambitions. If you play computer games, do heavy-duty video or picture editing, or need any kind of specialised software, then you'll return to the shelves heaving with Microsoft powered PCs or Apple Macs.

Timing is everything

As you make your buying decision, you will have this niggling worry that one day, maybe, you will need to use some software that simply can't run in your browser. The advertising campaigns of both Apple and Microsoft will have a great time stoking these worries.

Google's announcement comes at an interesting time. Microsoft is poised to launch its new operating system Windows 7. Unlike its predecessor Vista, Windows 7 is proven to be a good fit for ultraportable netbooks, currently the fastest growing segment of the PC market.

So Chrome OS, due in mid-2010, may come either at just the right time, as the economy recovers and consumers go shopping again, or it may come too late, with Windows 7 already firmly hogging the market.

Chrome impact

In the end, Google's strike may not cut deep into enemy territory.

Chrome, the web browser, is still stuck at a tiny market share of 1.2%. Android is available on just two or three phones, not enough to really make an impact.

Google Apps - productivity software to handle spreadsheets and word documents - has just come out of its "beta" test phase, but look around you and you will find most people still using Microsoft Office.

The one field where Chrome OS may make a difference is the market for the open source Linux operating system. Chrome OS will use bits of the Linux kernel, the link between the computer hardware and the Chrome browser running on it.

Google is bound to make Chrome OS much more user-friendly than most "distros" or versions of Linux available right now. Instead of slaying Microsoft, Chrome OS might corner the segment of the consumer space that might have been Linux's.

No doubt, Google's charge with Chrome OS will needle Microsoft. But we won't know for years whether it will deliver a mere pinprick, or is the fine point of the dagger at the heart of Microsoft.

10 great ways to optimize your Wordpress blog

10 great ways to optimize your Wordpress blog
July 7, 1:06 PM

Creating an effective presence in the blogosphere has become far more competitive in recent years. With the steady growth of Facebook and Twitter, blogs are morphing into social media micro sites of their social network affiliates. I only host sites on Linux backed servers for performance and security purposes. Some of the following suggestions can only be applied in a LAMP environment (i.e. - askapache's .htaccess tweaks). Here are a few tips and plugins that I have found have worked quite well. I cannot take full credit for these so please make sure to check out the developers associated with each tweak for further information.

1. Install All-in-One SEO Pack by hallsofmontezuma and Google XML Sitemap plugin by Arne Brachhold. Post titles should appear before site name and sitewide keywords should mirror Google Adwords for relevant keyword searches. Also, regularly resubmit and update your xml sitemap and robot.txt files. I know this goes without saying, but it's something I sometimes forget to do.

2. Install Wp-Super Cache by Donncha O Caoimh. This will greatly speed up page load times. If you use firefox I would install ySlow to see where your site is prior to installation and your load time once you have gzip compression and page caching in place. To make this plugin even more effective check out Askapache's Hacking WP Super Cache For Speed. His re-writing of the .htaccess file has proven to be quite effective.

3. Make the most out of your .htaccess file - by enabling Gzip Compression, adding an Expires Header, and disabling ETags you can definitely give your Wordpress blog a needed boost. Here is a glimpse at some of the things I do with my .htaccess file.

# Use PHP5CGI as default AddHandler fcgid-script .php ##################################################### # Expires Header Header set Expires "Thu, 15 Apr 2010 20:00:00 EST" ##################################################### # Mod_Deflate <IfModule mod_deflate.c> <FilesMatch "\.(js|css)$"> SetOutputFilter DEFLATE </FilesMatch> </IfModule> ##################################################### # BEGIN WordPress SetEnv HTTP_IF_GZ_MATCH .html SetEnvIfNoCase ^Accept-Encoding$ "(.*gzip.*)" HTTP_IF_GZ_MATCH=.html.gz RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] RewriteCond %{ENV:REDIRECT_STATUS} !=200 RewriteCond %{QUERY_STRING} !s RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /(.+)\ HTTP/ [NC] RewriteCond %{HTTP:Cookie} !^.*(comment_author_|wordpress|wp-postpass_|Facebook Connect API Number Here_user).*$ RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/%1/index%{ENV:HTTP_IF_GZ_MATCH} -f RewriteRule ^(.*)$ /wp-content/cache/supercache/$1/index%{ENV:HTTP_IF_GZ_MATCH} [L,NC] # END WordPress ##################################################### # CONFIGURE media caching Header unset ETag FileETag None Header unset Last-Modified Header set Expires "Fri, 21 Dec 2012 00:00:00 EST" Header set Cache-Control "public, no-transform" #####################################################

This accomplishes quite a bit and I also block out known malicious IP addresses for additional security.

4. Add a php opcode cache - eAccelerator and xCache are two popular systems. You need to have a good working knowledge of .ssh terminal commands in Linux and must have root access to your server to effectively utilize php optimization and opcode caching. This will help with your blogs ability to perform server-side php functions by creating a stored cache.

5. Make your Permalinks Pretty - SEF canonical urls are a no-brainer yet a lot of blogger still don't get it. I'm always surprised to find major corporate sites that have sloppy link structure.

6. Make your code Valid XHTML and CSS, consolidating Javascript and CSS into two files - This can be laborious, but it is essential. I am a big fan of semantic tableless CSS. However from what I have read and heard it seems that Googlebot and most other bots don't really have a problem indexing tables.

7. Write compelling content with solid back links and make sure to ping! - This is not really an optimization technique. It's more or less a pre-requisite. RSS snippets that leave your readers wanting more is important. Check out Searchengine Land's 25 Tips To Optimize Your Blog For Readers and Search Engines for more.

8. Deactivate unused plugins - There are several plugins I used every so often for maintenance purposes, but that don't serve an everyday purpose such as WP-DB Manager, DB Optimize, and Wp-Maintenance (to launch a quick maintenance splash page.)

9. Add rel=no follow to all sites you display in you link directory that have a page rank of 5 or less - This might be considered controversial, but to keep up with the big boys you have to pay careful consideration to who you back link to and why. Back links should fall into a related genre to what the mission your blog desires to achieve. Blogroll links need to also be site related.

10. Marry Facebook and Twitter on your blog - I encourage integrating the Facebook Connect API so users can login with their encrypted Facebook account and add a follow me on Twitter link either in your sidebar or at the bottom of your post page.

Including the Sociable social bookmarking plugin by Joost de Valk is also a suggestion. It's important to create meaningful footprints. If you provide relevant information that readers appreciate they will want to talk about it, share it, and thank you for it. It's pretty simple. Of course shamelessly self promoting your blog on Facebook and Twitter is a must! That is if you believe in what you write... I would like to thank askapache, Joost de Valk, and everyone else that contributes to making Wordpress a better and more reliable blogging platform. Their knowledge has helped me become better at what I do.

originally posted on 4 Darby Media Interactive May 4, 2009.

Featured Post

Windows和Ubuntu双系统完全独立的安装方法

http://www.ubuntuhome.com/windows-and-ubuntu-install.html  | Ubuntu Home Posted by Snow on 2012/06/25 安装Windows和Ubuntu双系统时,很多人喜欢先安装windows,然...