Archive

Archive for the ‘General’ Category

group bargaining site for India – Grabbon.com

December 20, 2009 Saj Leave a comment

I love to get discounts on a SPA or Dinner. And I love any site that comes up with good deals to grab. Here is a new site grabbon.com that features an exclusive deal on their site at a discounted price everyday . For each deal, there has to be a minimum number of participants required. User can pay a small token amount to book their deal . The token amount is redeemable as part of your deal. The token amount will be charged from your credit card only if the minimum number of deal request are met for that deal. If you win the deal, grabbon will email you the coupon for the deal.

I liked the idea behind grabbon . It could be great if they can sms me the coupon code when I cut a deal. Checking out the deals from my mobile or by sending an sms to check for any deals could make this business a great success.

On the international market Chicago based groupon is already getting large attention and funding. Mydala is another indian startup in the same vertical.

Cat 2009 – summary of analysis, score percentile calculator and updates

December 1, 2009 Saj 2 comments

CAT 2009 Update from IIMA.
Update on ongoing Computerized CAT 2009
IIMA, November 30, 2009: The decision to conduct computerized CAT was taken unanimously by all IIMs. The contract for delivery of computerized CAT was awarded to Prometric, a world leader in computerized test delivery. IIMs were responsible for generating questions for the tests and Prometric was responsible for conducting the test. The delivery could not be executed flawlessly because of virus attack on several test sites. Prometric is working to address the issues arising from the attacks.
IIMs would categorically like to assure candidates who could not take the test that they would get another opportunity to take the test. This assurance has been given by Prometric. The details will be worked out by Prometric shortly and announced.

Resources

CAT 2009 takers share their problems @ Rediff – CAT 2009 was a nightmare he’d like to forget

percentile calculator for CAT 2009 from career launcher can be found here

CAT 2009 FAQ from IIM A website can be found here with updates.

Testfunda guys put up their analysis for CAT 2009 here

IMS CAT updates can be found here and more updates here

Minglebox CAT 2009 daily analysis can be found here

TCYOnline CAT 2009 analysis can be found here

If you find any other interesting links please leave it as a comment. I will update this post with your links.

*UPDATE 1*
Day 4 analysis and experience from pagalguy can be found here

*UPDATE 2*
CAT 2009 Day 2 analysis can be found here.

*UPDATE 3*
CAT 2009 answer keys will be released only after December 7th.

Yahoo! Meme use jquery as their library – serious!

September 2, 2009 Saj 1 comment

hehe being me I have to check the view source of any website I come across. And I just noticed Yahoo! meme homepage loads jquery and use that as the basic js library. Whatever happened to YUI 3.1 Beta ? If you guys don’t use it how do you expect us to recommend YUI 3.1 for our new projects.

create a digg facebook like frame to display external content

August 28, 2009 Saj 4 comments

You might have noticed the stylish iframes used by digg or facebook that display external content. There are plenty of argument about how bad is the iframe for the web , I believe its okay to use iframe if you wanted to share some interesting content for your visitors and keep them inside your site. Here is the simplest, optimised html and css to create a digg like frame to show external content inside your website. Enjoy.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<style type="text/css">
body {
	overflow: hidden;
}

body, iframe {
	margin: 0 auto;
	padding: 0;
}

#frameHeader {
	background: #ccc;
	height: 30px; /* change this to increase the bar height */
	left: 0;
	top: 0;
	position: absolute;
	width: 100%;
	z-index: 999;
}

#content {
	padding: 5px;
}

iframe {
	margin-top: 30px;  /* change this to increase the bar height */
	width: 100%;
	height: 101%; /* just to make sure that iframe takes the full content, you can reset this to 100%  */
}

</style>
</head>
<body>
<div id="frameHeader">
	YOUR SPACE TO ADD STUFFS
</div>
<iframe src="http://www.ajaxination.com"></iframe>
</body>
</html>

*Update* – 30/Aug/2009
I am glad to know that folks at broadbandproviders.co.uk implimented this code in their broadband news section.

XHTML strict mode and table height

August 26, 2009 Saj 1 comment

I wanted to vertically align something central to the screen. To avoid all the unwanted positioning and looping using DIV tags I decided to try it with a table. My Doctype was XHTML strict mode.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>your page</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
</head>
<body>
	<table width="100%" border="0" style="height: 100%;">
	<tr>
		<td>HELLO</td>
	</tr>
	</table>
</body>
</html>

It turned out that, in XHTML strict mode, you can’t really have 100% table height like the transitional.
Take a look at the allowed attributes for table and valid attributes for td on the XHTML website[http://www.xhtml.com] . Height is not a valid attribute. I would like to know the reason behind removal of height from the table attribute compared to the ‘bad practices’ from HTML 4 standard mode.

Standards are good, provided it meet their purpose. People like me who take extra pain to validate their html every day, we respect standards. But in this case it definitely a broken standard for me.

And oh, the DIV lovers will come and tell me I can do a vertical align to the center of screen ‘easily’ using DIV tag. Yeah right! Again is there a standard way of doing vertical align using a single div tag? I would love to see that :)

Anyway this is how I made it work finally. So here is the code to align a div block center to the screen both horizontal and vertical. And yeah, this one works on FF and even on IE6;) [see my IE 6.0 support pledge]

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>your page</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<style type="text/css">
body{
	margin: 0 auto;
}

#verticalWrapper {
	display: block;
	height: 1px;
	left: 0px;
	position: absolute;
	top: 50%;
	text-align: center;
	width: 100%;
}

#verticalContainer {
	height: 140px;
	left: 50%;
	margin-left: -76px;
	position: absolute;
	top: -10px;
	width: 150px;
}
</style>
</head>
<body>
	<div id="verticalWrapper">
		<div id="verticalContainer">
			CENTER
		</div>
	</div>
</body>
</html>

Phoenix Career Solutions brings in opportunities for Indian Nurses in Britain

August 5, 2009 Saj Comments off

Kottayam, Kerala, India: Phoenix Career Solutions Private Limited, the 1996 established Government of India approved International Recruitment Company providing recruitment solutions to the Healthcare Sector of the United Kingdom, has successfully placed 100 staff nurses in UK last academic year. This has been one of the major initiatives of the company in the recent past through which the nurses have been provided an excellent opportunity to study Care Management Courses in UK while working part time as Senior Carers in the Care Sector.

These courses help the nurses to achieve highly sought after international qualifications in Care whilst getting ample opportunity to whet their skills in English language and network with medical professionals from various other international communities within the work places. This also provides them with chances of improving their scores in international English Language tests like IELTS, which form one of the essential eligibility criteria for registration with the Nursing Councils of various English speaking countries. Subsequently these qualified nurses become eligible to seek employment in such countries as registred medical nurses.

These courses have been designed and developed by Edexel, one of the most reputed awarding bodies in UK providing internationally recognized BTEC National awards in Health and Social Care. The three year dual diploma awarded by Edexel aims at making the participants efficient care givers and managers in any given professional care setting.

This rare achievement of Phoenix Career Solutions is the result of the meritorious efforts of the expert educational consultants employed by Phoenix and the world class facilities provided by Wave Training Ltd, Birmingham, one of the most reputed and largest Care Training establishments in UK.

CAT 2008 : Answer Key, Question paper, detailed analysis and expected cut-offs

November 17, 2008 Saj 1 comment

CAT 2008 Questions were tougher compared to last year. There were 40 questions on language skills, that included 20 questions on grammar and English usage and 20 questions on reading comprehension. This was the unexpected part for the CAT 2008 I believe. 35 page paper was definitely lengthy and quantitative part was tougher than expected.

Here is some useful links :

  • CAT 2008 Answer Key
  • CAT 2008 Detailed Analysis

  • CAT 2008 explanatory answers

    *Updated*
    Here is the cut-offs from various institutes like IMS, Career Launcher and TIMES

    Expected cut-offs & Analysis

    Hope all you guys did well and relaxed by now :)

    * Update *
    Here is a simple CAT 2008 Score/Percentile Calculator

  • google says 1$ = 1Rs for Indian Adsense publishers

    September 27, 2008 Saj Leave a comment
    google india adsense error

    google india adsense error

    Well, here is a shocker to the Foreign exchange rules and RBI :) . Google Adsense issued cheques to her Indian publishers on a exchange rate of $1 = 1Rs. I just hope they will fix it soon and re-issue the cheques.

    This reminds me the old forward joke that assumes 1Rs = $45 :) )

    logo plagarism

    August 4, 2008 Saj 2 comments

    Ever since I saw the new website www.in.com, I have been thinking about their UI and Logo. Today afternoon suddenly I remembered the source of their logo and UI theme.

    It’s not a bad idea to getting some inspiration from other designers ideas, color schemes and even the work flow. But this looks like a rip off to me :)

    I am not just talking about the logo, compare the color scheme and the layout as well :) . I admire the linkedin.com’s usability and UI.
    www.linkedin.com logo

    linkedin logo

    linkedin logo

    www.in.com logo

    Do you think the designer or whoever approved the design can justify this inspired creativity ? :)

    opensocial, orkut and the standards

    July 26, 2008 Saj Leave a comment

    Its been a while since orkut launched its opensocial apps to the Indian users. It was launched with 25 pre-selected interesting apps. After a month or so, there are 317 and growing number of applications in the directory. The excitement among the developer community is really heart warming while it raises a lot of questions as an orkut user to me.

    The Standards
    Though orkut have a strict guidelines about the behavior and work flow of the apps, most of the apps seems like dont give a damn about it. We all know, how facebook is fighting with the apps now to make it less spammy and protect user data.

    I would love to see orkut coming up with a more strict guideline before they approve an app in the directory. Take a look at the screen shot, seems like orkut approved an app with a “Under Construction” screen shot.

    My point is as a user, I love the apps but give me apps thats not buggy and cheap. I don’t want to see the orkut users are “forced” to use this kind of half cooked products. How can orkut assure that my information will be safe and secure with these app owners?

    While opensocial is interesting, it will be nice if they can control the apps and make sure that quality of the apps are good.