Chrome and Android – A Potent Combination

If you’re a Google user when it comes to email, browsing the web, or using your phone, you’ll know that if there’s one thing the search-engine giant is good at, it’s integrating one Google idea into another seamlessly. Chrome and Android and two great examples, and there are a fair few examples of why you’ll find the two Google products easy to use in sync with one another.

1) Google everyday apps.

Gmail, Google Calendar, Google Reader – all integrated and easy to sync between your two devices using Chrome and Android, whether you’re setting reminders for a party casino tournament, or you’re aiming to finish off an email draft on your phone moments after the draft saves on your computer. It syncs extremely well, and you’ll never feel as though your choice of phone and browser are clashing.

2) Chrome to Phone.

This one feature/extension justifies using Chrome and Android together more than anything else. One click, and the web-page is waiting for you on an archive-enabled app on your Android device. Brilliant for those on the go, or for people who often find themselves having to switch between phone and computer.

3) Chrome on Android.

It’s on its way, and when it arrives you’ll finally realise just how great Chrome can be once it goes portable. Chrome is a powerful, customisable, reliable browser, fun to use and with extensions (and some impressive apps and games – Bastion is one great example), it becomes a necessity for anyone who’s tired of Firefox and duly averse to so much as opening Internet Explorer if there’s an alternative.

These are just a few reasons, but there are many more – the best way to find your own is to test out the Chrome-Android combo yourself. We’re fairly confident you might enjoy them both, even if they’re not linked through email or extensions. Have fun!


Tags: , ,

Post simili:

    No related posts.

Magento problem with Paypal Express and new customer registration [Solved]

You know there is this problem with Magento 1.4.* and 1.5.*, if you are using Paypal Express as payment method and your customer is a new one, when she/he complete the order this is without account association (Customer Group 0 USER NOT LOGGED IN) and the new customer is not created. To solve this problem [...]


AWS EC2 Manage Snapshot Backup with PHP SDK

This is a simple script based upon AWS SDK PHP to manage volume’s snapshots. It simply create one snapshot per volume (once you run it) and delete snapshot older then 1 month. Please provide your personal information by copying config-sample.inc.php into config.inc.php. Run the script backup-snapshots.php with your CRON. For example: # Auto AWS Snapshots [...]


Magento add Bestseller products by date range

Here is how to get a collection of products best sold in a given date range (could be daily, monthly, weekly, etc…) <ul> <?php $from = date("Y-m-d H:i:s", (time()-2592000)); $to = date("Y-m-d H:i:s", time()); $_productCollection = Mage::getResourceModel('reports/product_collection') ->addAttributeToSelect('*') ->addOrderedQty($from, $to, true) ->addAttributeToFilter('status', 1) ->setOrder('ordered_qty', 'desc') ->getSelect()->limit(10)->query(); foreach ( $_productCollection as $prod ) : $_product = [...]


Magento adding you own custom RSS Feeds

You know you will need, before or after, to add your own custom RSS feeds to your Magento. For example, I needed to create some custom RSS Feeds to list bestseller products by date (bestseller weekly, monthly, etc…) How to do it? It’s quite complex but not so much if you follow this mini tutorial: [...]


Magento adding downloadable product to cart by coding php

Probably you know it’s possible to add a product to the cart via querystring, but may be you prefer code a new module for your needs using Magento objects and methods. So adding a simple product is easy: … $cart = Mage::getSingleton('checkout/cart'); // start adding the product try { $cart->addProduct($product, array('qty' => 1)); // save [...]


Magento Export products in custom XML [script]

If you have to export all or a part of your Magento products you can try this simple script which creates a products collection and writes a simple and custom XML file per product (but you can simply change it to write a single long XML file). Hope you enjoy it! <?php // Magento XML [...]


Integrate WordPress functions on Magento

Per integrare tutte le funzioni di WordPress su Magento in modo da poter fare chiamate come wp_list_pages(), wp_list_categories() o la famosa WP_Query, basta far caricare WordPress da Magento prima che si carichi lui stesso (per evitare il sovrapporsi di header e funzioni varie). Aprite il file index.php di Magento, all’inzio inserite le due righe: define('WP_USE_THEMES', false); require('/<you absolute path to wordpress root>/wp-load.php'); [...]


Best Google Chrome Extensions SEO, Screenshot, Delicious…

Here is my current Google Chrome extensions I use every days, hope you find something useful. You could find your best extensions in the official Google Chrome Extensions site. SEO Status Pagerank/Alexa Toolbar SEO Status is lightweight. It will check the Google Pagerank (PR) & Alexa rank for every page. Using this will increase your [...]


Magento ecommerce tips & tricks

Tanto per non scordarmeli appunto alcuni suggerimenti molto utili sulla gestione di Magento: per disabilitare la frase “Exception printing is disabled by default for security reasons” quando occorre un errore e farlo printare a schermo basta modificare il file “errors/local.xml.sample” se invece non volete abilitare il printing (che e’ meglio) ma volete comunque vedere di [...]


Categories