TechLifeWeb

Exploring the digital life

How to Enable Send To Google+ from Google Reader

Recently I posted an article about a great extension for Google Chrome to share to Google+ from Google Reader.  Of course the downside here is not everyone uses Chrome.  I’ve figured out a way to work around that and let people share from any browser using the Chrome send to feature and a hack of the Google+ Mobile interface. It is easy to implement with just a minute or two of your time. Here is how to do it:

Log into Google Reader.

Click the gear icon in upper right corner
Click the send to tab
Click Create Custom Link
Fill in the fields like this:
Name: Google+
URL: https://m.google.com/app/plus/x/?content=${title}%20-%20${url}&v=compose&hideloc=1
Icon URL: http://ssl.gstatic.com/s2/oz/images/favicon.ico
Click Save

Now when you are reading an article in Google Reader and wish to send it to Google+, click the Send To link at the gplus_sendtobottom of your article. A drop down will open showing Google+. Clicking that will open up a new tab showing the title and url of your article. You can edit the text and change who you are sharing with. By default, the sharing is public. Then click post.

Is it perfect? Well, like my share from anywhere bookmarklet, the good part is that it should work just fine whether you use Chrome, Firefox or even IE. Probably others too but I haven’t tested it. The caveat is that it uses the mobile version of Google+ which if you want to post publicly is easy but takes an extra step if you want to just post to some of your Circles. The mobile interface doesn’t post links as pretty as the native method but at least this saves you some time.

Edit 11OCT11: A site called HowToNew figured out a method to do this an instead use the native Google+ +1 interface.

If you use the following in your URL field, clicking on the link will +1 the article and give you the chance to share it with your circles. This is similar to +1 on a page on the web. It does open another window or tab.

https://plusone.google.com/_/+1/confirm?hl=en&url=${url}

So, now you have 2 choices!

 

How to: Build your own app launcher for Windows Media Center

Recently I built and posted a little app that would let you launch Google TV Spotlight in Chrome from within Media Center and then returns to Media Center when Chrome closes. Several people have asked how I created the app so I thought it was time to do a write up. Note, this is for Windows 7.

For this project we’ll make another launcher to launch straight into Clicker.tv in Google Chrome. I’m going to assume you have already set up Windows Media Center and have installed Google Chrome.

First you need to download AutoIt here http://bit.ly/hV1xun. AutoIt is the magic that lets you create the executable. If you aren’t a programmer, don’t worry, this script is pretty basic and if you want to modify it there is really only a couple places to change.  Once you download AutoIt, go ahead and install it.

Next you need the URL you want to open in Chrome. For this example it will be http://tv.clicker.com/

I like to put the whole project in a folder  named for what I am launching.  In your documents or where ever you want create a folder called ClickerTv.

If you want to make the button in Media Center pretty you’ll need a graphic representing your app. You can often get one of these from the web page or by doing search on Google or Bing Images. If you don’t have a graphic then the name you use shows up in the box in Media Center. If you have an image call it clickertv.jpg and put it into your clickertv folder.

The first thing you need to create is the clickertv.au3 file. au3 is the special extension that AutoIt uses. You can create this file with Notepad. I’ve included clickertv.au3 in the download at the end of this tutorial but here it is to show you what is in it. It is really just 4 lines of code. The rest is just comments to help you understand what is going on. clickertv.au3 should be put into your clickertv folder.


$temp = EnvGet(“localappdata”)
Run($temp&”\Google\Chrome\Application\chrome.exe –kiosk http://tv.clicker.com/”, $temp&”\Google\Chrome\Application”, @SW_MAXIMIZE)
ProcessWaitClose(“chrome.exe”)
Run(@WindowsDir&”\ehome\ehshell.exe”,@WindowsDir&”\ehome”)

So, what is all that about?

Line 1: Get the path to local appdata. This is done this way because it is variable on different machines as
it equates to a path like C:\Users\<username>\AppData\Local and since I don’t know your user name I use this method.

Line 2: Has several parts. First we set the path to chrome.exe. A standard install of Chrome puts this in
C:\Users\<username>\AppData\Local\Google\Chrome\Application\ which is why we needed line 1.
The –kiosk switch is necessary to launch Chrome in a full screen environment. Down side is you need to do alt+f4 to close
the application because you don’t get any controls to click on.
The next bit is the URL you want to open.
After the first comma we create the path the ‘Start in’ location. In this case, where chrome.exe is.
At the end, @SW_MAXIMIZEensures the application opens maximized. I leave this in even though we used the kiosk switch.

Line 3: This is a special AutoIt wait process that monitors whether chrome.exe has been closed.

Line 4: If chrome.exe is closed then line 4 is executed. This launches ehshell.exe from inside windows\ehome.

NOTE: Detailed explanation of the Run command can be found here: https://www.autoitscript.com/autoit3/docs/functions/Run.htm

If these paths aren’t working for you then you could find the exact paths to these files are on your system and use them instead
of the variables as I have done here.

Save your clickertv.au3 file. You can the right+click on it and click Run Script. If it works right you can right+click on it again and click Compile. Compiling will automatically create clickertv.exe. This file should automatically be created in your clickertv folder if you followed along above.

Next we need to create a file called clickertv.mcl. Again, I’ve included this in the zip file below. It is essentially and xml file that provides the code behind the Media Center button that calls the launcher. clickertv.mcl is created in your clickertv folder with Notepad and it contains the following lines:


<application run=”C:\Users\Public\Documents\clickertv.exe”
Name = “Clicker TV”
bgcolor=”RGB(0,0,0)”
startimage=”C:\Users\Public\Documents\clickertv.jpg”
thumbnailImage=”"
sharedviewport=”false” />
</application>

This is fairly straight forward.

Line 1 is the path to your exe file.

Line 2 is the name of the application within Media Center

Line 4 is the path to the jpg graphic

The rest is necessary code we don’t need to mess with.

Ok, so if you’ve lasted this far, in your clickertv folder you will have: clickertv.au3, clickertv.exe, clickertv.jpg, and clickertv.mcl.

Now you need to copy the files to their appropriate places. This is done by the install.bat file I included in the download but if you created a new launcher for something else you’ll need to know what goes where:

copy clickertv.exe to C:\Users\Public\Documents

copy clickertv.jpg to C:\Users\Public\Documents

copy clickertv.mcl  to “%appdata%\Media Center Programs”  This is the only tricky one.  This folder equates to C:\Users\<username>\AppData\Roaming\Media Center Programs. You should actually be able to open it by opening up Computer and pasting in %appdata%\Media Center Programs into the address bar a the top and then pressing Enter.

That’s it! Now launch Windows Media Center and you should see a new entry for Clicker TV in your Extras Library.

Hopefully this was helpful to someone. If you create a launcher for something cool please share it with me!

Downoad clickertv.zip

Take the Bing Challenge

Have you hear about Bing? It is the new way to search the web from Microsoft. Will it replace Google for searching? Who knows but it is worth a look.

So, since tomorrow starts a new month, I propose we change our default search engines to Bing and see how we all get along.

The Bing home page always has a nice graphic and has been designed to load the graphic last so you can get straight to your searching. You can set this feature on or off by clicking on or the other of these links.

Let me know how it’s going for you.

View the Product Tour video for an excellent overview of Bing.

Follow Bing on Twitter

Bookmarks for April 2nd 2009 through April 5th 2009

Sites that I found interesting for April 2nd 2009 through April 5th 2009:

Bookmarks for January 6th 2009 through January 7th 2009

Sites that I found interesting for January 6th 2009 through January 7th 2009:

  • CSS-Tricks #41: WordPress as a CMS – In this screencast Chris Coyier attempts to show off a number of WordPress features that make it very “CMS-like” in my opinion. Including page templates, dynamic menus, parent-child relationship pages, and using posts as ancillary content.
  • Leo Babauta Interviews Merlin Mann – Leo Babauta is releasing as a free audio download his recent interview with top productivity blogger and speaker Merlin Mann of the incredibly popular 43 Folders blog. Merlin is also known for his Inbox Zero series, his speeches on productivity, his video podcasts including the Merlin Show and MacBreak, and other creative work.
  • DIY IKEA Digital Photo Frame – The simple mod doesn't take much doing, but the nice black frame goes a long way toward classing up a cheap digital frame.

Bookmarks for December 7th 2008 through December 8th 2008

Sites that I found interesting for December 7th 2008 through December 8th 2008:

Bookmarks for November 18th 2008

Sites that I found interesting for November 18th 2008

Bookmarks for October 30th 2008 through November 3rd 2008

Sites that I found interesting for October 30th 2008 through November 3rd 2008:

  • Most Wanted Ajax Techniques: 50+ Examples and Tutorials – This list is made up of the best 50 FREE scripts available, they are all of the highest quality and more or less easy to configure.
  • 40 Beautiful Free Icon Sets – Six Revisions – 40 beautiful, free icon sets that you can use in a variety of ways (websites and/or your desktop). In total, you’ll find close to 3000 invidual icons showcased in this article.
  • Announcing MeshPack – Live Mesh is a unified computing environment that gives data access, device access and synchronization for all my important data and software. This means I can access anything I need from all my computers, from a web browser, and even from my smart phone. Mesh also supports sharing so that I can give someone access to a folder. It’s nicely integrated with the desktop and has a great web interface. For more information on what will ship in the first version check out www.mesh.com.

Bookmarks for October 16th 2008

Sites that I found interesting for October 16th 2008

  • SanDisk Releases $20 slotMusic Player, Dozens of SD Card Albums – The tracks are 320Kbps, DRM-free MP3 files, the SD cards are reusable and the screenless slotMusic players costs next to nothing. Major label albums are priced at a competitive $15, and can be played without the need for transfer from a computer, though you can load other SD cards with up to 16GB of music and play them, too.
  • First look: Firefox 3.1 beta 1 officially released – The beta includes Mozilla's new TraceMonkey JavaScript engine, which uses tracing optimization to deliver a massive performance boost that makes it faster than Google Chrome's V8 engine. Although it still falls short of Apple's recent Squirrelfish Extreme project, the Mozilla developers say that TraceMonkey still leaves plenty of room for additional optimization.
  • 10 interesting Google products you don’t know about – Google has so many different products that it becomes pretty hard to keep track of them over time. Some are worth being reminded of, though, because there are several useful Google products that are flying below the radar, unknown to the vast majority of users out there.
  • Flickr Guide: How to Do Everything with Flickr

links for 2008-07-31

Cuesmes (Belgium), the Van Gogh house.Image via Wikipedia

Zemanta Pixie