Home|Zing|Videos|Advertise|Submit Your Startup|Contact|About
  Subscribe to StartupSquad.com's Feed

Qwaq delivers 3D collaboration at Intel

By Vivek | September 28th, 2007 at 10:28 pm ET         

3-D based collaboration software developer Qwaq is slowly making in inroads into the enterprise market. Before we talk about the big news, for those not following the startup, I have written about it few times earlier including the post - Qwaq can make WebEx history. In lesser words, Qwaq is SecondLife for enterprises with much to offer and a real team performance gains that it can deliver. Coming back to the news, earlier this week Qwaq made a joint announcement with Intel according to which Miramar, a 3-D information space technology originally developed by Intel Corporation?s research labs, will be brought to market by Qwaq.

Since I didn’t get a chance to talk with Qwaq team earlier this week, I won’t try to interpret the meaning of the above statement. So, talking about the basics, Intel is/will be using the Qwaq technology internally to improve their teamwork ? it will enable information, which is now only available to individual departments or divisions, to be easily accessed and shared across the enterprise, in dynamic unified views.

Besides that, Qwaq and Intel plan to work together to integrate Miramar technology into this new cross-platform edition of Qwaq Forums, which is expected be available next year. As for Miramar’s backgrounder, the software with immersive 3D and 2D components was originally developed by Intel Architecture Labs aimed at increasing the productivity of distributed enterprises by enabling new information visualization capabilities across distributed teams.


PuriCute - Cute pics for girls, fast

By Vivek | September 28th, 2007 at 10:02 pm ET     3 Comments »    

First things first, don’t go by the name of the startup and think I am involved in launching it. Once through this initial confusion, what we have out here is a new photo enhancing site PuriCute. The startup launched over the past weekend does something simple - enhance you images by adding graphics and frames. End result is an embed code that you can place on your blog or site, as you wish. So what is different time around as compared to Slide, or Rockyou, or….? Well the startup is focused on “girly” crowd, hence the pinkish touch to the site.

While the basic graphics and all look great, the pain point in using PuriCute is that you can add only one image per PuriCute pic. Hopefully they will migrate to a slideshow mode, sooner than later.

 


Twitter API: A developer’s darling

By Ashish Singh | September 28th, 2007 at 04:30 am ET     8 Comments »    

Note: Time for new stuff at StartupSquad.com. From time-to-time we will now be talking about webservices, and software development. Posts in this category will have the usual startup talk part while also delving into technical details. Feel free to jump off to the next post if it gets too tech-heavy. On our side we will be doing similar technical post few times a month. Right now, we are starting off by talking about Twitter API. Post is done by Ashish Singh, who is a Software Engineer at upcoming startup Webaroo, India.

Twitter has been arguably most cloned startsups in recent times. It has the reputation of a startup that has been cloned in most languages across the globe. Amazingly simple idea, and outstanding execution have been drivers behind its success. Simplicity has helped it evolve in multi dimensions as well.

The most important factor behind twitter’s tremendous growth has been the APIs, which have been used by hackers to build multifaceted, useful and interesting applications. You can easily estimate a coarse number of “powered by twitter” apps by the fact that twitter api receives more than 10X traffic than twitter website. Certainly, APIs have helped twitter to reach every corner of web in form of various interesting applications, and the list is increasing day by day rapidly. No wonder, it has become developer’s darling.

Twitter API scores for its simplicity, ease of use, diversity, multiple data formats, and above all simple REST architecture. Since twitter was much simpler service with its veins powered by text messages, the existing RSS feeds laid a good foundation for first API set. The API is as simple as firing HTTP requests and receiving responses in any of the four formats, plain old XML, JSON, RSS and Atom. Out of these formats, RSS and Atom are most easy to use as they already have matured parsers on almost every platform being used today. But since RSS and Atom have a predefined DTD, it has a limited footprint and does not capture much information. XML and JSON provide a better and complete view, but you need to take help of third party abstractions in order to use them efficiently.

For example, twitter request for obtaining public timeline in XML is http://twitter.com/statuses/public_timeline.xml. A typical response looks like this

<status>
<created_at>Thu Sep 27 18:42:18 +0000 2007</created_at>
<id>297192592</id>
<text>i just want to know what they are doing at all times</text>
<source>im</source>
<truncated>false</truncated>
<user>
<id>8697452</id>
<name>bluecat34</name>
<screen_name>bluecat34</screen_name>
<location />
<description/> <profile_image_url>http://s3.amazonaws.com/twitter_production/profile_images/ 24378882/ mommy_marissa_normal.jpg</profile_image_url>
<url />
<protected>false</protected>
</user>
</status>

The same response in RSS, ATOM and JSON is like:

RSS

<item>
<title>cc_chapman: scheduled to slide into PME around 5 - can’t wait</title>
<description>cc_chapman: scheduled to slide into PME around 5 - can’t wait</description>
<pubDate>Thu, 27 Sep 2007 18:52:26 +0000</pubDate>
 <guid>http://twitter.com/cc_chapman/statuses/297208942</guid>
 <link>http://twitter.com/cc_chapman/statuses/297208942</link>
</item>

ATOM

<entry>
   <title>petestone: longest day ever</title>
   <content type=”html”>petestone: longest day ever</content>
 <id>tag:twitter.com,2007-09-27T18:53:17+00:00:http://twitter.com/petestone/ statuses/297210002</id>
   <published>2007-09-27T18:53:17+00:00</published>
   <updated>2007-09-27T18:53:17+00:00</updated>   <linktype=”text/html” href=”http://twitter.com/petestone/statuses/297210002” rel=”alternate”/>
</entry>

JSON

{”user”:{”name”:”Jessica”,”profile_image_url”:”http:\/\/s3.amazonaws.com\/ twitter_production\/profile_images\/23719302\/JeffDIcon_normal.jpg”,”description”:”", “location”:”",”url”:null,”screen_name”: “MissJess”,”id”:8610542,”protected”:false},”truncated”:false,”text”:”@limespinkles: good luck, Bestie!!”,”created_at”:”Thu Sep 27 18:54:20 +0000 2007″,”source”:”web”,”id”:297211822}

You must have realized that information conveyed by different formats varies. JSON and XML give additional info, whereas RSS and ATOM just provides the messages. Now it is upto you on which format to use. My recommendation for browser based apps is JSON, as it nicely works with javascript, and XML, in case you wish to use it on server side. RSS and ATOM are not information rich, so should be use only when your requirements are fulfilled with mere message and timestamp.

REST powered API is easy to understand and all you need is a browser to play around with it. Although Twitter seems curl territory, but i feel your browser is a good place to begin with. The APIs are nicely documented on twitter wiki and twitter fan wiki. In case you are a “flashy” developer, then start using their actionscript libraries as mentioned on twitter blog. In case you speak Java, Python, .NET, Runy on Rails, php or perl, and find HTTP/XML/JSON/ATOM/RSS too basic/cryptic/unfriendly/, then there is enough juice for you to get started with twitter APIs here.

Fraction of the complete list of existing mashups include email/blog notifications-EmailTwitter, website monitoring-MoniTwitter, server monitoring-ServerMojo, news delivery-BBC News, Manchester United News, TwitterGram, TwitterEarth, and twiddeo.

Twitter API is a useful tool to have. It has built a mature and versatile message delivery network over a period of time, which can be utilized nicely provided it is integrated with other useful services. It can deliver weather forecasts, stock quotes, new arrivals in a store, public address messages, school notices etc. Time will tell where it will head, but this is for sure that it will continue to power better and useful apps each day.


Buzzword: New features and Open Signups

By Samuel Guzman | September 28th, 2007 at 04:15 am ET         

Buzzword hopes to be the first “real” wordprocessor for the web, and last week they took one more step toward that goal. The newest update release included some improvements of old features and some added features.

The most noticeable feature addition is that of spellcheck. Spell check functions very similar to Microsoft Word’s, underlining the misspelled words as you type and offering options to ignore once, all the time, or replace with the properly spelled word. This feature was much anticipated and it really has taken buzzword to the next level, considering just about everyone relies on spell check heavily.

Other features include improved printing, endnotes, and single sign on (good for having multiple buzzword windows open). Also, buzzword also included some bug fixes and better browser support. Signups are now open, so you can give this excellent word processor a try at http://preview.getbuzzword.com.

Earlier: Buzzword- An Excellent Online Word Proccessor


ClayValet - Shopping+Moneysaver - Sneak Peak 9/27

By Vivek | September 27th, 2007 at 04:17 am ET         

clayvalet_logo

Seattle based shopping startup ClayValet is prepping for a sneak peak on Thursday. Led by Mikhail Seregine, the funded startup is claiming their shopping app to be universally useful that will save you time and money when you shop online.

Right now the sneak peak fun is for Seattle based folks, happening at Shinka Tea in Capitol Hill, Seattle. You can catch more details - here


« Previous Entries