Skip to main content

My Bookmarks fly to the Cloud

Updated: 15-Mar-2012

With latest version of Google Chrome (I'm using 17.x), you can now directly sign into Chrome from Options->Peronsal and access your bookmarks across computers. You no longer would need to export the bookmarks to Firefox using the Google Toolbar for Firefox, which is no longer supported by Google. The Google Toolbar is now available only for IE.

Original (dated) article below ...
-------
I have a queer problem of too many! I surf a lot, I subscribe to a lot and I bookmark a lot. Some numbers: 1 laptop and 1 netbook at home, 1 laptop and 1 desktop at office, sometimes its my Kindle and definitely my N900 when I'm on the move. So 6 devices out there and usually 2 browsers on most of them (yes Kindle only as one webkit based experimental implementation).

So my bookmarks are all over the place, scattered over at least 10 different places. And each time I'm working on one box, I wish I had access to the bookmark I made a few hours ago on the other box. And forget the upgrades. Its a nightmare. Backup everything and then restore. What a pain!

So here comes the cloud to the rescue. I decided to move it all to the cloud! Definitely sounds better than "I decided to move it all to the web". I decided to use Google Bookmarks to store all my bookmarks in one central place so that I can access them from anywhere, from everywhere. No export-import/migration-upgrade issues. Well to be precise just one final time and then no more! I had to move my current bookmarks right ...

Here are the steps on how to move all your existing bookmarks to the Google Cloud. The basic approach is to export existing bookmarks from all your browsers, i.e. Chrome, IE, Opera to Firefox and then using Google Toolbar for Firefox to publish these bookmarks to the cloud. Yes you read it right, even Chrome bookmarks have to be pushed using Firefox. There is no other option available in Chrome at present. Somebody definitely forgot something :P

Export Bookmarks:

No need to export bookmarks to a separate file from IE and Opera. Firefox can handle them direct. But you will need to export bookmarks from Chrome as below:

1. Open the Chrome wench or settings icon and select Bookmark Manager
2. You get all bookmarks listed in a new tab
3. Select the Organize -> Export Bookmarks
4. Enter the html file and location where to save your bookmarks

Import Bookmarks to Firefox:

Now lets centralize all bookmarks into Firefox. Follow these steps:

1. Press Ctrl + Shift + B or click on the Firefox Menu on top left and select Bookmarks -> Show all Bookmarks to get to the Bookmarks Library dialog.
2. Now click on Import and Backup -> Import HTML... to open the Import From dialog.
3. Select Opera and run through the steps
4. Repeat the above steps for IE and get in the bookmarks.
5. Finally select the From an HTML file and point to the html file exported earlier from Chrome.

Now all your bookmarks are in Firefox. You can verify this by checking the available Bookmarks from the drop down.

Publish to the Cloud:

Now get Google toolbar for Firefox from this link: http://toolbar.google.com

Once installed you will see the Google toolbar come up in your browser. Select the Bookmarks drop down menu and click on Import Firefox Bookmarks.

This will now take you to Google Bookmarks page with all the Firefox bookmarks listed. You can multi-select all the bookmarks that you want to push to Google Bookmarks and finally click on the Import button.

Hurrah! All your bookmarks are on the cloud now and accessible at www.google.com/bookmarks. You can now create lists, set bookmark permissions, share the lists with others and even tweet about your bookmark lists.

Comments

  1. There is no toolbar for firebox... well this is said on their website....so Google drop off this?

    ReplyDelete
    Replies
    1. Thanks Anonymous for pointing this out. This post is slightly out dated now and have updated the post as you can see.

      Delete

Post a Comment

Popular posts from this blog

Using duplicate IDs in HTML

Well today I'm being a bit controversial. Let us see what the HTML5 spec says about unique IDs in a HTML file. The  id  attribute specifies its element's  unique identifier (ID) . The value must be unique amongst all the IDs in the element's  home subtree  and must contain at least one character. The value must not contain any  space characters . An element's  unique identifier  can be used for a variety of purposes, most notably as a way to link to specific parts of a document using fragment identifiers, as a way to target an element when scripting, and as a way to style a specific element from CSS. Yes its been mentioned almost everywhere on the planet that ID must be unique. Now let us look at the below code, Launch dup.css #p2 {   background-color: yellow;  } dup-id.html <!DOCTYPE html> <html>   <head>     <title>Duplicate ID Tester</title> <link rel="stylesheet" href="dup.css" />  

Fixing Date, Time and Zone on RHEL 6 command line

Had to fix all time related issues on a remote RHEL 6 server which runs without any windowing system. Plain ol' command line. Documenting steps here for future reference: Check to see if your date and timezone settings are accurate: # date # cat /etc/sysconfig/clock The server I accessed had wrong settings for both the commands. Here are the steps I used to correct: Find out your timezone from the folder /usr/share/zoneinfo # ls /usr/share/zoneinfo Mine was pointing to America/EDT instead of  Asia/Calcutta Update and save the /etc/sysconfig/clock file to # sudo vi /etc/sysconfig/clock ZONE="Asia/Calcutta" UTC=true ARC=false Remove the /etc/localtime # sudo rm /etc/localtime Create a new soft link to your time zone # cd /etc # sudo ln -s /usr/share/zoneinfo/Asia/Calcutta /etc/localtime # ls -al localtime Now it should show the link to your time zone Set your hardware clock to UTC # sudo hwclock --systohc --utc # hwclock --show Update your t

Minimal required code in HTML5

I've encountered this question repeatedly of late. "What are the tags required at bare minimum for a html file?" Earlier there were a bunch of mandatory tags that were required for any html file. At bare minimum, the recommended structure was: (ref: http://www.w3.org/TR/html4/struct/global.html ) <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <HTML>   <HEAD>     <TITLE>A small HTML</TITLE>   </HEAD>   <BODY>     <P>Small HTML file!</P>   </BODY> </HTML> Yes, using capitals for the tags was the way to go! Those were the days of the purists and strict was the way to be. Now open your notepad and copy the above code, save the file as old.html and launch it in Chrome or Firefox. You will see only one line "Small HTML file!" shown. Now launch the developer tools in Chrome or Inspect Element in Firefox. Thi