Google Reader has got an option to Send to under a feed, in August, 2009. With this, one can share a particular post on any of the popular sites which many of the Sharing buttons give. A good thing is that they have provided an option to add custom Send-to options under Settings.
One can add Google Bookmarks to these sets of options by adding the following code:
Name: Google Bookmarks (or anything of your choice)
URL: http://www.google.com/bookmarks/mark?op=edit&output=popup&b
Icon URL: http://www.google.com/favicon.ico
To add Google Translate:
Name: Autotranslate
URL: http://translate.google.com/translate?u=${url}
Icon URL: http://translate.google.com/favicon.ico
To add Add-to-any:
Name: Add to any
URL: http://www.addtoany.com/share_save?linkurl=${url}&linkname=${title}
Icon URL: http://www.addtoany.com/favicon.ico
It would be fun to get / add as many links to Send-to as needed.
Friday, September 25, 2009
Add GBookmarks, GTranslate, etc. in GReader's Send-to option
Thursday, September 24, 2009
Auto System Log Manager
We all know how our bosses keep on asking us to log our activities for the day. There are days when you are so occupied with activities that logging our activities itself becomes a huge over-head. Plus, we do feel at the back of our mind that our precious time is getting wasted in doing something which is undoubtedly good, but if only we had someone to log our activities!
Well, if not every activity of ours, atleast there should be a way to auto-log the activities which we do on system, right? Atleast some things which are very generic in nature. Fascinated I am to have found one such app on this website. This person is amazing, gets one (new) app a day and they are all simple ones. One of them is this Time Management app. One can download the app and also the Source Code!!! So that way one can customize it to their needs. What it does? From the website,
Time Management allows you to keep track of what you are doing on your PC. I plan on using it to help me fill out my timesheet at the office. The application resides in the systray, and writes to a CSV file each time you switch applications, or the title bar of the current app changes.Find the total list of Apps Download page here.
File format:
[date],[time],[process name],[window title],[duration used]
I am sure, many of us would like it. Currently, using it on my system. I am damn impressed! :) Thanks Dana.
Tuesday, September 8, 2009
List of connected users in Oracle
To know the list of connected users to the Oracle Database, run the below sql
select distinct username, osuser, terminal, utl_inaddr.get_host_address(terminal) ip_address, status, logon_time
from v$session
where username is not null
order by username, osuser;
Friday, September 4, 2009
GChat tips
A word in GChat can be emphasized in many ways, most common being Bold, Italics & Underline.
Knew that adding * on either side of the word (eg. *word* = word) would make it bold, but learnt from the 10tip of Gmail NInja tips page that we can even italicize by adding _ on either side of the word (eg. _word_ = word) and with - on either side, it strikes the word (eg. -word- = word).[SOURCE]
Thursday, September 3, 2009
Site Identity Button
We observe favicon for a site and with new firefox, even some text next to it. Firefox calls it Site Identity Button. It has three levels each with a different color:
- Grey: No information from site
- Blue: The connection is secure
- Green: Not only the connection is secure but it also comes with the owners information
Wednesday, September 2, 2009
Creating Sitemap in Dreamweaver
There was a need to create a Sitemap and submit it to Google Webmaster Tools. Surprisingly, I did not find an option of creating Sitemap in Dreamweaver 8. So, downloaded an extension Google Sitemap Generator and added it to Dreamweaver which created Sitemap very easily.
Update: I did get to see a way to view Sitemap in DMW. Can save it as an image. But, yet to know if Dreamweaver has an option inbuilt, to save it as .xml
META tags for improved search
Came across this webpage on why we need not use META Tags in our Webpages. Truly, no search engine will completely depend on META Tags for their indexing else, by now Search Results would have shown only spammed results.
Never use META tag in html, syntax.
Surprisingly, Google claims to be considering META tags (a bit strongly too!) for a webpage. Google talks about it here.
Update 25th Sept, 2009: Thanks to the comment posted by Vitaly, came to know of the latest blogspot made by Google on their Google Webmaster Central blog on 21st Sept, 2009 where they very clearly mention that Google does not use "keywords" meta tag for their Web search. Occasionally, when needed, they use "description" meta tag. Their Custom Search Engine does consider meta tags though.