Quick trick: From Feedly to your eReader in one click

I’m reading most of the time in common transport and offline, on my eBook reader.  So part of my morning routine is to look for new articles to read, and send it to my reading device. Since this week, because of the new Readability updates, I can do this in only one click! Let me share this with you.

The Tooling


Readability


I’m using Readability to keep tracks of all the posts I’m reading.  It also very useful, because it cleans everything and keeps only the text of the article. Readability can also send you automatically post to your device.
post beforepost after in Readability


Readability extension for Chrome


I’m also using the Extension let you from anywhere send a page or a link to your reading list. No need to copy-paste the post’s URL. Since last week, options are also available in the context menu.
Readability extension for Chrome


Feedly


To keep tracks of all the RSS I’m following I use Feedly.  The interface is very polish and the application is always improving. The application is also available on iPhone and Android in addition to being a web app.
Feedly Interface


The Trick

Finally, because Feedly is running in a web browser, you can use the Readability extension. So from now on, when I found interesting article, I can left-click and send it to my eBook reader.

Enjoy!

Feedly_Readability_Kindle






References



Reading Notes #87

april_27Suggestion of the week

 

Cloud


Programming

 

Databases


Miscellaneous


~Frank


Reading Notes #86

from onsoftware.en.softonic .com
picture from http://onsoftware.en.softonic.com/

Suggestion of the week
  • Boxstarter - I really need to “box” my favourite applications, so each time I start working on a new VM all my stuff will be the way I like.
  • Service Bus Messaging Deep-Dive (Clemens V) - If you must see only one video about Service bus is that one. Great job! Know more from A to Z in one shot.

Cloud
Scaling Applications Using Windows Azure Cloud Services Poster
here: http://www.microsoft.com/en-us/download/details.aspx?id =36837
you should also read this complete manual in preparation here: http://msdn.microsoft.com/en-us/library/hh871440.aspx


Databases

Integration

Programming

Miscellaneous

~Frank









Reading Notes #85

Suggestion of the week

Cloud

Databases

Integration

Programming

Miscellaneous

~Frank







Reading Notes #84

Post-it_Sun

Suggestion of the week

Cloud

Programming

Integration
  • What’s new in BizTalk360 v6.0? (Saravana Kumar) - Biztalk360 is holding his promises by releasing a new version after 4-5 month. This post list what the changes.

Database

Miscellaneous

~Frank






Reading Notes #83

Post-it Put your code here

Suggestion of the week

Cloud

Programming

Database

Miscellaneous
  • Teach your kids to be fans (Scott Hanselman) - Good lesson. Today it's simple to send/ publish hard critics about anything... It is also that easy to congratulations... so do it.


~Frank







Reading Notes #82

Post-it_SnowmanSuggestion of the week
Cloud
This blog post summarizes the best practices to be used to protect Windows Azure Virtual Machines.
Integration
Programming
Miscellaneous

~Frank







Reading Notes #81

cloud-snow
 
Suggestion of the week
  • Make your own gem - Very useful post that explain very clearly, with code sample, what need to be done in order to create a Gem (...in Ruby).
Cloud
Integration
Database
Programming
Miscellaneous


~Frank







Reading Notes #80

Post ItSuggestion of the week

Cloud

Database

Programming

Miscellaneous

    ~Frank






    Reading Notes #79

    Suggestion of the week


    Summary_Notes78Cloud

    Database

    Practice

    Integration

    Programming

    Miscellaneous

    ~Frank


      How to copy blobs or VHDs between different Windows Azure subscription

      (An updated version of this post is available in both English and français)

      First of all, why would you want to copy Virtual Hard Drive (VHD) or a blob from a Windows Azure subscription to another? It could be for: doing backups, because your Windows Azure trial is ending, to get a copy of a client’s VM to investigate a problem. So, when one of my client asked me if it was possible to do it, my answer was: “Yes it is, using command line tools”. But since he was looking for a simple solution, I wrote him a little script that I will share here so everyone can enjoy it.
       

      Get Started

      To do the copy, you only need to do one PowerShell command. But, in order to execute this command, you need to have Windows Azure command-line tool already installed. At the end of this post, the script to install the Windows Azure command-line tool will be provided.
       

      The command

      Having installed the required tool, you can execute this one line of code from the Windows Azure command-line:
      azure vm disk upload <source-path> <target-blob-url> <target-storage-account-key>

      Get the source

      In this command, you must replace <source-path> by the url of the VHD or blob that you want to copy from.
      You can get this url through the Windows Azure Portal, using your account where you want to copy from.

      1. On the left side of the screen click on the Storage icon.
      2. Then click on the storage name.
      3. From the top of the screen click on Containers
      4. And when the container list appears click on the name of the container to get the details view.

      2012-10-13_0757_-_Step_1-2

      Get the destination

      2012-11-11_0803Now that the "from" as been identified, we need to specify the “to”. We must replace the <target-blob-url> by the url of the Windows Azure Storage container in the destination Azure subscription. If the Blob container already exists, just connect to this account and follow the previous steps. Otherwise, you need to create a new one by using the “+” imbutton on the bottom left of the screen.

      2012-11-11_0754_Public_ContainerThe easiest way is to set the container with a public access at the time of the transfer. You can set this option when creating or editing the container using the button at the bottom of the screen.

      Then specify the access propriety to Public Container.






      Get the key

      2012-11-11_0821Last part but not the less important we must specify the storage account key and replace the <target-storage-account-key> with it. You can find it by accessing the Manage Keys button from the dashboard of the Storage. You can use either the primary or the secondary access key.



       


      Install the Windows Azure command-line tool


      2012-10-13_0826Here is a little script that you should put in a “.cmd” or “.bat” file. It will install the Windows Azure command-line tool with Node.js and Chocolatey. After running the script, a console window that looks like this should be open.










      @powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('http://bit.ly/psChocInstall'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin
      @powershell "cinst nodejs.install" && SET PATH=%PATH%;%ProgramFiles(x86)%\nodejs
      @powershell -ExecutionPolicy unrestricted "npm install azure -g" && SET PATH=%PATH%;%USERPROFILE%\AppData\Roaming\npm\
      @powershell azure
      pause

      References





    • Windows Azure command-line tool
    • Node Packaged Modules or Node.js
    • Chocolatey 





    • Reading Notes #78

      Cloudy_Mug2Suggestion of the week

      Cloud

       

      Integration

      Database

      Programming

      Miscellaneous


      ~Frank


      Reading Notes #77

       

      QueueToQueueTransfertSuggestion of the week

       

      Cloud

       

      Programming

       

      Integration

       

      Miscellaneous

      • Backing Up WordPress? Don’t Make These 9 Mistakes - If you are a developer, you probably backup your machine and your code. That's good. Do you do the same for your blog? You should, here is how to do it the good way.
      • iPad, Surface, Ultrabook: Are we there yet? (Scott Hanselman) - The comparison we were all waiting for. A MUST READ post. I’m a little sad that no Android device has been included. I think the Asus transformer could be confederates. a bit sad that any Android device was included. I think the Asus Transformer could be ferly confederated.
      • 10 Easy Ways to Get More Done (Geoffrey James) - As always how achieve more with less.

        ~Frank