Apr 06 2009

Gmail : Undo button

Tag: widget/pluginsvish @ 12:18 pm

Forgot to send an attachment.. Sent a mail too early or to a wrong person.. worry not, gmail labs has introduced an undo function now.. which right now gives you 5 secs (plans to extend it to 10) to undo mail after it has been sent. Read complete article here !!

p.s. : This post is an entry for OG Contest :)

Tags: gmail, gmail labs

Jan 27 2009

Domain Map : A new way to look at world :)

Tag: widget/pluginsvish @ 5:20 am
World Domain Map

World Domain Map

A new way of looking at world. It shows country code top-level domains (ccTLDs) with font size relative to population. It shows about 245 different codes.  It will be good to see a similar map with no. of registerd domains for that TLD as well. Source [bytelevel] :- you can buy a copy for you from their website.

Tags: domains, map, tld

Jan 15 2009

Creating Windows Installer, EclipseNSIS – NSIS plugin for Eclipse

Tag: widget/pluginsvish @ 4:06 am

Nice plugin I found today for eclipse. Its a script editor for Nullsoft Scriptable Install System(NSIS) – which is an open source system for creating Windows Installer.

Earlier we were using Venis for the same, which is ok too. But Its really helpful to have a plugin like this, if you are working with nsis and are addicted to eclipse like me :) .

If you are new to NSIS and want to know how to create windows installers, read this tutorial and few examples here.

Tags: eclipse, EclipseNSIS, nsis, venis, windows installer

May 08 2008

facebook app – java : tutorial links

Tag: widget/pluginsvish @ 6:17 pm

Links to look at for creating a facebook application.

Tags: facebook, tutorial, widgets

Mar 05 2008

Widgets, apps etc..

Tag: web development, widget/pluginsvish @ 6:09 pm

Create widgets/facebook apps from rss feeds or your website itself in just few minutes using any of these..

http://www.clearspring.com/

http://widgets.yahoo.com/tools/

http://www.widgetbox.com/

Tags: widgets

Feb 18 2008

OpenSocial

Tag: widget/pluginsvish @ 1:31 pm

OpenSocial basically consist of a set of 3 APIs, which a site using it has to provide. Developers can use it to access

  • User Information
  • Friends Information
  • Activities on the website.

Those websites which are using OpenSocial would agree to accept the API calls and return appropriate data. OpenSocial uses normal javascript and html, unlike Facebook which has its own markup language (fbml). For the application developers, benefit of the Google approach is that they can use much of their existing front end code and it would be easy for them to just modify the code a bit and get it working with OpenSocial.

You can have a look at it over here :-

http://code.google.com/apis/opensocial/

http://orkut-open-social.blogspot.com/

I just came to know about the youtube APIs google is providing. Its really cool and i’ll try to explore it more to get preview videos for MediaMelon :)

Tags: applications, facebook, fbml, google, OpenSocial, widgets

Dec 08 2007

OpenSearch plugin for IE/FF

Tag: CMS, widget/pluginsvish @ 4:34 pm

This plugn is basically a XML file, that use the OpenSearch description syntax which is compatible with IE 7 and Firefox. Here is a basic template which you can use for making this XML file :

Code:
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/" xmlns:moz="http://www.mozilla.org/2006/browser/search/">
    <ShortName>engineName</ShortName>
    <Description>engineDescription</Description>
    <InputEncoding>inputEncoding</InputEncoding>
    <Image width="16" height="16">data:image/x-icon;base64,imageData</Image>
    <Url type="text/html" method="method" template="searchURL">
    <Param name="paramName1" value="paramValue1"/>
    ...
    <Param name="paramNameN" value="paramValueN"/>
    </Url>
    <Url type="application/x-suggestions+json" template="suggestionURL"/>
    <moz:SearchForm>searchFormURL</moz:SearchForm>
</OpenSearchDescription>

You can find more about it over here. You can also advertise your plugin and install it programmatically.

Tags: opensearch