<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>A Dude's Journal</title>
	<atom:link href="http://dudechandan.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://dudechandan.wordpress.com</link>
	<description>Usual Blog Of An Unusual Guy</description>
	<lastBuildDate>Fri, 24 Nov 2006 12:01:42 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
		<url>http://www.gravatar.com/blavatar/e0abc1407ae76c033a18d89ae134c60e?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>A Dude's Journal</title>
		<link>http://dudechandan.wordpress.com</link>
	</image>
			<item>
		<title>Introduction To Java</title>
		<link>http://dudechandan.wordpress.com/2006/11/22/introduction-to-java/</link>
		<comments>http://dudechandan.wordpress.com/2006/11/22/introduction-to-java/#comments</comments>
		<pubDate>Wed, 22 Nov 2006 15:50:18 +0000</pubDate>
		<dc:creator>Chandan</dc:creator>
				<category><![CDATA[Java Tutorials]]></category>

		<guid isPermaLink="false">http://dudechandan.wordpress.com/2006/11/22/introduction-to-java/</guid>
		<description><![CDATA[Like any human language, Java provides a way to express concepts. If successful, this medium of expression will be significantly easier and more flexible than the alternatives as problems grow larger and more complex.
You can’t look at Java as just a collection of features &#8211; some of the features make no sense in isolation. You [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dudechandan.wordpress.com&blog=535816&post=37&subd=dudechandan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="MsoNormal"><span style="font-size:11pt;font-family:Arial;">Like any human language, Java provides a way to express concepts. If successful, this medium of expression will be significantly easier and more flexible than the alternatives as problems grow larger and more complex.</span></p>
<p><span style="font-size:11pt;font-family:Arial;">You can’t look at Java as just a collection of features &#8211; some of the features make no sense in isolation. You can use the sum of the parts only if you are thinking about design, not simply coding. And to understand Java in this way, you must understand the problems with it and with programming in general. This tutorial discusses programming problems, why they are problems, and the approach Java has taken to solve them.</span></p>
<p class="MsoNormal"><span style="font-size:11pt;font-family:Arial;"><span style="font-weight:bold;">Prerequisites:</span><br />
</span><span style="font-size:11pt;font-family:Arial;">This tutorial assumes that you have some programming familiarity. Of course, the book will be easier for the C programmers and more so for the C++ programmers. I’ll be introducing the concepts of object-oriented programming (OOP) and Java’s basic control mechanisms.</span></p>
<p class="MsoNormal"><span style="font-size:11pt;font-family:Arial;"><span style="font-weight:bold;">Chapters:</span> </span><span style="font-size:11pt;font-family:Arial;"><br />
Here is a brief description of the chapters contained in the tutorial.</span></p>
<p><span id="more-37"></span><span style="font-size:11pt;font-family:Arial;"><span style="font-weight:bold;"></span></span></p>
<p><span style="font-size:11pt;font-family:Arial;"><span style="font-weight:bold;">Chapter 1: Introduction to Objects</span> </span><span style="font-size:11pt;font-family:Arial;"><br />
This chapter is an overview of what object-oriented programming is all about, including the answer to the basic question “What’s an object?”, interface vs. implementation, abstraction and encapsulation, messages and functions, inheritance and composition, and the all-important polymorphism. You’ll also get an overview of issues of object creation such as constructors, where the objects live, where to put them once they’re created, and the magical garbage collector that cleans up the objects that are no longer needed. </span></p>
<p><span style="font-size:11pt;font-family:Arial;"><span style="font-weight:bold;">Chapter 2: Everything is an Object</span> </span><span style="font-size:11pt;font-family:Arial;"><br />
This chapter moves you to the point where you can write your first Java program, so it must give an overview of the essentials, including the concept of a <span>reference</span> to an object; how to create an object; an introduction to primitive types and arrays; scoping and the way objects are destroyed by the garbage collector; how everything in Java is a new data type (class) and how to create your own classes; functions, arguments, and return values; name visibility and using components from other libraries; the <span>static</span> keyword; and comments and embedded documentation.</span></p>
<p><span style="font-size:11pt;font-family:Arial;"><span style="font-weight:bold;">Chapter 3: Controlling Program Flow</span> </span><span style="font-size:11pt;font-family:Arial;"><br />
This chapter begins with all of the operators that come to Java from C and C++. In addition, you’ll discover common operator pitfalls, casting, promotion, and precedence. This is followed by the basic control-flow and selection operations that you get with virtually any programming language: choice with if-else; looping with for and while; quitting a loop with break and continue as well as Java’s labeled break and labeled continue (which account for the “missing goto” in Java); and selection using switch. Although much of this material has common threads with C and C++ code, there are some differences. </span></p>
<p><span style="font-size:11pt;font-family:Arial;"><span style="font-weight:bold;">Chapter 4: Initialization &amp; Cleanup</span> </span><span style="font-size:11pt;font-family:Arial;"><br />
This chapter begins by introducing the constructor, which guarantees proper initialization. The definition of the constructor leads into the concept of function overloading (since you might want several constructors). This is followed by a discussion of the process of cleanup, which is not always as simple as it seems. Normally, you just drop an object when you’re done with it and the garbage collector eventually comes along and releases the memory. This portion explores the garbage collector and some of its idiosyncrasies. The chapter concludes with a closer look at how things are initialized: automatic member initialization, specifying member initialization, the order of initialization, <span>static</span> initialization and array initialization.</span></p>
<p><span style="font-size:11pt;font-family:Arial;font-weight:bold;">Chapter 5: Hiding the Implementation</span><span style="font-size:11pt;font-family:Arial;"><br />
This chapter covers the way that code is packaged together, and why some parts of a library are exposed while other parts are hidden. It begins by looking at the <span>package</span> and <span>import</span> keywords, which perform file-level packaging and allow you to build libraries of classes. It then examines subject of directory paths and file names. The remainder of the chapter looks at the <span>public</span>, <span>private,</span> and <span>protected</span> keywords, the concept of “friendly” access, and what the different levels of access control mean when used in various contexts. </span></p>
<p><span style="font-size:11pt;font-family:Arial;font-weight:bold;">Chapter 6: Reusing Classes</span><span style="font-size:11pt;font-family:Arial;"><br />
The concept of inheritance is standard in virtually all OOP languages. It’s a way to take an existing class and add to its functionality (as well as change it, the subject of Chapter 7). Inheritance is often a way to reuse code by leaving the “base class” the same, and just patching things here and there to produce what you want. However, inheritance isn’t the only way to make new classes from existing ones. You can also embed an object inside your new class with <span>composition</span>. In this chapter you’ll learn about these two ways to reuse code in Java, and how to apply them. </span></p>
<p><span style="font-size:11pt;font-family:Arial;font-weight:bold;">Chapter 7: Polymorphism</span><span style="font-size:11pt;font-family:Arial;"><br />
On your own, you might take nine months to discover and understand polymorphism, a cornerstone of OOP. Through small, simple examples you’ll see how to create a family of types with inheritance and manipulate objects in that family through their common base class. Java’s polymorphism allows you to treat all objects in this family generically, which means the bulk of your code doesn’t rely on specific type information. This makes your programs extensible, so building programs and code maintenance is easier and cheaper. </span></p>
<p><span style="font-size:11pt;font-family:Arial;font-weight:bold;">Chapter 8: Interfaces &amp; Inner Classes</span><span style="font-size:11pt;font-family:Arial;"><br />
Java provides a third way to set up a reuse relationship, through the <span>interface</span>, which is a pure abstraction of the interface of an object. The <span>interface </span>is more than just an abstract class taken to the extreme, since it allows you to perform a variation on C++’s “multiple inheritance,” by creating a class that can be upcast to more than one base type. At first, inner classes look like a simple code hiding mechanism: you place classes inside other classes. You’ll learn, however, that the inner class does more than that—it knows about and can communicate with the surrounding class—and that the kind of code you can write with inner classes is more elegant and clear, although it is a new concept to most and takes some time to become comfortable with design using inner classes. </span></p>
<p><span style="font-size:11pt;font-family:Arial;font-weight:bold;">Chapter 9: Holding your Objects</span><span style="font-size:11pt;font-family:Arial;"><br />
It’s a fairly simple program that has only a fixed quantity of objects with known lifetimes. In general, your programs will always be creating new objects at a variety of times that will be known only while the program is running. In addition, you won’t know until run-time the quantity or even the exact type of the objects you need. To solve the general programming problem, you need to create any number of objects, anytime, anywhere. This chapter explores in depth the container library that Java 2 supplies to hold objects while you’re working with them: the simple arrays and more sophisticated containers (data structures) such as ArrayList and HashMap</span></p>
<p><span style="font-size:11pt;font-family:Arial;font-weight:bold;">Chapter 10: Error Handling with Exceptions</span><span style="font-size:11pt;font-family:Arial;"><br />
The basic philosophy of Java is that badly-formed code will not be run. As much as possible, the compiler catches problems, but sometimes the problems—either programmer error or a natural error condition that occurs as part of the normal execution of the program—can be detected and dealt with only at run-time. Java has exception handling to deal with any problems that arise while the program is running. This chapter examines how the keywords try, catch, throw, throws, and finally work in Java; when you should throw exceptions and what to do when you catch them. </span></p>
<p><span style="font-size:11pt;font-family:Arial;font-weight:bold;">Chapter 11: The Java I/O System</span><span style="font-size:11pt;font-family:Arial;"><br />
Theoretically, you can divide any program into three parts: input, process, and output. This implies that I/O (input/output) is an important part of the equation. In this chapter you’ll learn about the different classes that Java provides for reading and writing files, blocks of memory, and the console. The distinction between “old” I/O and “new” Java I/O will be shown</span></p>
<p><span style="font-size:11pt;font-family:Arial;font-weight:bold;">Chapter 12: Run-Time Type Identification</span><span style="font-size:11pt;font-family:Arial;"><br />
Java run-time type identification (RTTI) lets you find the exact type of an object when you have a reference to only the base type. Normally, you’ll want to intentionally ignore the exact type of an object and let Java’s dynamic binding mechanism (polymorphism) implement the correct behavior for that type. But occasionally it is very helpful to know the exact type of an object for which you have only a base reference. Often this information allows you to perform a special-case operation more efficiently. This chapter explains what RTTI is for, how to use it, and how to get rid of it when it doesn’t belong there. </span></p>
<p><span style="font-size:11pt;font-family:Arial;font-weight:bold;">Chapter 13: Creating Windows and Applets</span><span style="font-size:11pt;font-family:Arial;"><br />
Java comes with the “Swing” GUI library, which is a set of classes that handle windowing in a portable fashion. These windowed programs can either be applets or stand-alone applications. This chapter is an introduction to Swing and the creation of World Wide Web applets. The important “JavaBeans” technology is introduced. </span></p>
<p><span style="font-size:11pt;font-family:Arial;font-weight:bold;">Chapter 14: Multiple Threads</span><span style="font-size:11pt;font-family:Arial;"><br />
Java provides a built-in facility to support multiple concurrent subtasks, called threads, running within a single program. Although these can be used anywhere, threads are most apparent when trying to create a responsive user interface so, for example, a user isn’t prevented from pressing a button or entering data while some processing is going on. This chapter looks at the syntax and semantics of multithreading in Java. </span></p>
<p class="MsoNormal"><span style="font-size:11pt;font-family:Arial;font-weight:bold;">Chapter 15: Distributed Computing</span><span style="font-size:11pt;font-family:Arial;"><br />
All the Java features and libraries seem to really come together when you start writing programs to work across networks. This chapter explores communication across networks and the Internet, and the classes that Java provides to make this easier. It introduces the very important concepts of Servlets and JSPs (for server-side programming), along with Java DataBase Connectivity (JDBC), and Remote Method Invocation (RMI). Finally, there’s an introduction to the new technologies of JINI, JavaSpaces, and Enterprise JavaBeans (EJBs). </span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dudechandan.wordpress.com/37/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dudechandan.wordpress.com/37/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dudechandan.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dudechandan.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dudechandan.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dudechandan.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dudechandan.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dudechandan.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dudechandan.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dudechandan.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dudechandan.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dudechandan.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dudechandan.wordpress.com&blog=535816&post=37&subd=dudechandan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dudechandan.wordpress.com/2006/11/22/introduction-to-java/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/34617db19fd1103253bffecce39446d3?s=96&#38;d=identicon" medium="image">
			<media:title type="html">dudechandan</media:title>
		</media:content>
	</item>
		<item>
		<title>12 Steps To Get A Promotion</title>
		<link>http://dudechandan.wordpress.com/2006/11/21/12-steps-to-get-a-promotion/</link>
		<comments>http://dudechandan.wordpress.com/2006/11/21/12-steps-to-get-a-promotion/#comments</comments>
		<pubDate>Tue, 21 Nov 2006 04:13:36 +0000</pubDate>
		<dc:creator>Chandan</dc:creator>
				<category><![CDATA[Career]]></category>

		<guid isPermaLink="false">http://dudechandan.wordpress.com/2006/11/21/12-steps-to-get-a-promotion/</guid>
		<description><![CDATA[Climbing the corporate ladder requires hard work, good timing and a little bit of luck. It would be great if your academic credentials, job skills and performance reviews would magically open the doors to the executive suite, but life&#8217;s not like that. You need to create and execute your own plan.
Here are some tips to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dudechandan.wordpress.com&blog=535816&post=26&subd=dudechandan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Climbing the corporate ladder requires hard work, good timing and a little bit of luck. It would be great if your academic credentials, job skills and performance reviews would magically open the doors to the executive suite, but life&#8217;s not like that. You need to create and execute your own plan.</p>
<p>Here are some tips to help you land that promotion.</p>
<p><span id="more-26"></span></p>
<p><strong>1. Master your current job</strong><br />
Even if you&#8217;re not interested in making your present position your life&#8217;s work, give it your very best. Keep track of your accomplishments. Find ways to increase productivity. Offer well-researched suggestions that will reduce costs. Accept constructive criticism. Always be prepared to deal with any situation without becoming defensive, blaming others or blowing your professional image.</p>
<p><strong>2. Volunteer to take on (valuable) extra tasks</strong><br />
Plan your strategy. Sometimes it&#8217;s better to take on a series of smaller tasks instead of a flashy major project in addition to your regular workload. While others are vying for the more visible responsibilities, you&#8217;ll be proving your worth and value by efficiently taking care of the less coveted ones.</p>
<p><strong>3. Make your boss look good</strong><br />
Even if you do not particularly like your current manager, make it your goal to ensure the department is successful. When your boss gets promoted, someone has to take his place. Why shouldn&#8217;t it be you? When you&#8217;re seen as knowledgeable, skilled and interested, you&#8217;ll be considered promotable. Just don&#8217;t be a brownnoser or tie yourself too closely to your boss. If he&#8217;s fired for incompetence, you don&#8217;t want to be guilty by association.</p>
<p><strong>4. Stay in close contact with the HR department</strong><br />
Making friends with people in personnel will help you find out quickly about upcoming openings. Your human resources department can also advise you of available training opportunities. Let it be known that you have long-term goals with the company. When decisions are being made for career development opportunities, you want to be on the HR short list.</p>
<p><strong>5. Maintain positive relationships with the staff</strong><br />
You&#8217;re not going to like everyone you work with, but no one else needs to know it. Be polite, considerate and courteous at all times. Be a team player and share accolades with others. By acknowledging the efforts of other employees, you&#8217;ll earn their trust and respect. And watch your reputation: Keep your personal relationships private and don&#8217;t do or say anything you might regret in the office, on business trips or at company functions.</p>
<p><strong>6. Let your leadership skills shined</strong><br />
Every rung on the corporate ladder requires a strong image as a natural leader. Offer encouragement to others in the office, recognize special achievements and, on occasion, organize office outings. Getting the staff together for a beer after work is a great team-building tool.</p>
<p><strong>7. Groom a successor</strong><br />
If you&#8217;re the only one who can do your job, guess what? You&#8217;ll be doing it forever. Share your knowledge and skills. When you&#8217;re going on vacation, ask other people to handle aspects of your job and teach them how to do them well.</p>
<p><strong>8. Get a mentor</strong><br />
Find someone you trust, preferably a senior manager or director with a lot of experience and a large network. Ask for advice. Discuss your career goals with him and plan your strategy. Sometimes you need to take a lateral transfer to gain a different type of skill in order to return to your preferred area in a higher position of authority.</p>
<p><strong>9. Take additional training</strong><br />
No matter what your educational background is, there&#8217;s always more you could learn. Look into night courses, seminars and workshops, and ask your mentor and your boss if they would add value to the company. Read business publications and books. Sign up for online informational newsletters. Stay up-to-date on your industry as a whole, not just your job.</p>
<p><strong>10. Look presentable at all times</strong><br />
It&#8217;s difficult to see vice president-potential in someone who constantly dresses down. If khakis and polo shirts are the standard in your office, make sure yours are clean, well-pressed and of good quality. Have a sports jacket handy in case you&#8217;re called to an important meeting in the executive offices. Keep your hair stylish and your shoes polished.</p>
<p><strong>11. Perfect your elevator pitch</strong><br />
You never know when opportunity will knock. If you meet the CEO, introduce yourself in a way that will leave him wanting to learn more about you. When networking or meeting clients, you want them to remember you for the right reasons. Never brag and don&#8217;t be pushy. Ambition is an admirable trait unless you&#8217;re perceived as being an egotistical showoff.</p>
<p><strong>12. Watch your timing</strong><br />
It&#8217;s usually better not to ask for a promotion. Avoid bringing this up when your boss is obviously stressed and has a strict deadline to meet. Choose the time wisely and let it be known that you feel ready to take on additional responsibilities. Try not to show you are in a rush for a raise and a new title. Be patient.</p>
<p><strong>Promotions don&#8217;t just happen</strong><br />
You cannot expect to be offered a promotion based solely on merit, potential or seniority, and there will be times when someone seemingly less qualified is offered a position you feel you deserve. Don&#8217;t quit in a childish huff or you&#8217;ll prove that you weren&#8217;t the right person for the job. Hang in there and continue following these tips. An even better position may become available or the incumbent will fail miserably and you&#8217;ll be promoted to replace him.</p>
<p>Remain focused on your long-term career goals. Show off those skills, teach someone your position and always look good Maintain your integrity, your confidence and your efforts, and you&#8217;ll get yourself promoted.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dudechandan.wordpress.com/26/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dudechandan.wordpress.com/26/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dudechandan.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dudechandan.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dudechandan.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dudechandan.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dudechandan.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dudechandan.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dudechandan.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dudechandan.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dudechandan.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dudechandan.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dudechandan.wordpress.com&blog=535816&post=26&subd=dudechandan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dudechandan.wordpress.com/2006/11/21/12-steps-to-get-a-promotion/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/34617db19fd1103253bffecce39446d3?s=96&#38;d=identicon" medium="image">
			<media:title type="html">dudechandan</media:title>
		</media:content>
	</item>
		<item>
		<title>Ace A Job Interview</title>
		<link>http://dudechandan.wordpress.com/2006/11/21/ace-a-job-interview/</link>
		<comments>http://dudechandan.wordpress.com/2006/11/21/ace-a-job-interview/#comments</comments>
		<pubDate>Tue, 21 Nov 2006 04:00:06 +0000</pubDate>
		<dc:creator>Chandan</dc:creator>
				<category><![CDATA[Career]]></category>
		<category><![CDATA[Interviews]]></category>
		<category><![CDATA[Job]]></category>

		<guid isPermaLink="false">http://dudechandan.wordpress.com/2006/11/21/ace-a-job-interview/</guid>
		<description><![CDATA[An important step in every person&#8217;s professional life is the interview for the much anticipated position. People prepare for this moment their whole life, yet many things still go wrong. Here are some key interview tips to remember to have a successful interview, you must have the right type of preparation, and be able to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dudechandan.wordpress.com&blog=535816&post=25&subd=dudechandan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>An important step in every person&#8217;s professional life is the interview for the much anticipated position. People prepare for this moment their whole life, yet many things still go wrong. Here are some key interview tips to remember to have a successful interview, you must have the right type of preparation, and be able to keep a cool mind.</p>
<p><span id="more-25"></span><br />
<strong>Preparation:</strong><br />
All of the interview tips you will learn about, this is probably the most important part of the whole process, because with good preparation, everything should go as planned. This should be the case, at least in theory. Before getting to the interview, conduct some research to know some basic information about the company , like its mission statement and its position in the industry. This will allow you to intelligently answer questions that might suddenly be thrown your way during the interview session.</p>
<p>This research should also include specific job related issues and requirements. Applicants don&#8217;t want to be faced with a tricky question often asked by interviewers, catching the applicant off guard. A good technique is to look at oneself in the mirror and go through the procedure of an interview. Portraying confidence and assertiveness are surely the most important parts of an interview. The interviewer wants to see that the applicant is sure of himself, and that his high confidence is a reflection of his abilities.</p>
<p><strong>Looks That Matter:</strong><br />
Using the same concept as when preparing a resume, your appearance will play a key role in presenting a good image of yourself. We wouldn&#8217;t expect an employer to be wearing running shoes and jeans, so why should we ? Dress appropriately for the position. Office and administrative jobs require, without a doubt, a suit and tie appearance. Be wary of overdressing for the interview, but remember, it&#8217;s better to be overdressed than underdressed.</p>
<p><strong>Body Language:</strong><br />
There are three main things to do when entering the interview room and first meeting a human resources person:</p>
<ol>
<li>Present yourself by clearly stating your name.</li>
<li>Make direct eye contact with the interviewer.</li>
<li>Give a firm handshake. A trick to avoid having sweaty palms when giving a handshake is to carry a tissue in your pocket to dry your hand right before the handshake.</li>
</ol>
<p>Before moving on, there are implicit signs interviewers are trained to look out for during an interview session. Interviewers are usually trained observers of the slightest details, which can say more than what is actually said by the applicant.</p>
<ul>
<li>Constantly moving hands will usually represent nervousness. Keep them on the table, or on your knees.</li>
<li>Sit up straight and don`t slouch. Sitting up portrays confidence and savoir faire.</li>
<li>Unintentional nervous ticks are clearly noticeable by interviewers, but might not be to the applicant. Be careful not to tap the table, touch your face constantly, or stutter when answering questions.</li>
</ul>
<p><strong>Typical Questions:</strong><br />
Every interview contains a series of questions tailored for that specific interview, however, many of them actually include a set of generic questions that might be posed by the interviewer. Here is an exhaustive list to give you an idea of the types of questions that might be put forth in conversation, during an interview. The key is to answer the questions sincerely, while using a rich vocabulary.</p>
<ul>
<li>What experience do you have for the position?</li>
<li>Why should we hire you?</li>
<li>Where do you see yourself in five years from now?</li>
<li>Name one of your weaknesses.</li>
<li>Why do you want to work for our company?</li>
<li>What can you bring to our company?</li>
</ul>
<p>Take the appropriate time to answer each one of the questions. Stick to the basic answer and don`t elaborate, unless asked to. An important aspect is never to assume that you have gotten the position, because employers can pick up on this. This could very well play against your odds during the hiring stage. Follow through the entire interview until the very end.</p>
<p>There are different levels of interviews, from the preliminary one to the final selection. Each level will offer different levels of difficulty and preparation, but with this basic bag of knowledge, you are ready to face any interviewer. Two important interview tips to remember are to answer honestly and not to act arrogant. That`s it for now.</p>
<p>You can find the interview questions in my other post <a href="http://dudechandan.wordpress.com/2006/11/20/60-toughest-interview-questions/" title="Link To 60 Toughtest Interview Questions" target="_blank">60 Toughest Interview Questions</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dudechandan.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dudechandan.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dudechandan.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dudechandan.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dudechandan.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dudechandan.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dudechandan.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dudechandan.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dudechandan.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dudechandan.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dudechandan.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dudechandan.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dudechandan.wordpress.com&blog=535816&post=25&subd=dudechandan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dudechandan.wordpress.com/2006/11/21/ace-a-job-interview/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/34617db19fd1103253bffecce39446d3?s=96&#38;d=identicon" medium="image">
			<media:title type="html">dudechandan</media:title>
		</media:content>
	</item>
		<item>
		<title>Speed Up Windows XP</title>
		<link>http://dudechandan.wordpress.com/2006/11/20/speed-up-windows-xp/</link>
		<comments>http://dudechandan.wordpress.com/2006/11/20/speed-up-windows-xp/#comments</comments>
		<pubDate>Mon, 20 Nov 2006 05:34:38 +0000</pubDate>
		<dc:creator>Chandan</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Speed]]></category>
		<category><![CDATA[Tweaks]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://dudechandan.wordpress.com/2006/11/20/speed-up-windows-xp/</guid>
		<description><![CDATA[Is XP the fastest version of Windows ever? That&#8217;s debatable, but this is not: like every operating system that came before it, it&#8217;s not as fast as it could be without a whole bunch of fine-tuning. Windows operating systems are never streamlined by default.
I just found a good article on the web that lists a few great ways [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dudechandan.wordpress.com&blog=535816&post=20&subd=dudechandan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Is XP the fastest version of Windows ever? That&#8217;s debatable, but this is not: like every operating system that came before it, it&#8217;s not as fast as it could be without a whole bunch of fine-tuning. Windows operating systems are never streamlined by default.</p>
<p>I just found a good article on the web that lists a few great ways of speeding up your Windows.  It’s  a good read.</p>
<p>Find the article about speeding up XP <a TITLE="Link To Optimize XP" TARGET="_blank" HREF="http://mywebpages.comcast.net/SupportCD/OptimizeXP.html">Here</a>.</p>
<p>Turn the flashiest, most colorful Windows yet into a stone cold performance machine with these performance tweaks. Check my tweak section, to find more ways to speed up your system.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dudechandan.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dudechandan.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dudechandan.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dudechandan.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dudechandan.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dudechandan.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dudechandan.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dudechandan.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dudechandan.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dudechandan.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dudechandan.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dudechandan.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dudechandan.wordpress.com&blog=535816&post=20&subd=dudechandan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dudechandan.wordpress.com/2006/11/20/speed-up-windows-xp/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/34617db19fd1103253bffecce39446d3?s=96&#38;d=identicon" medium="image">
			<media:title type="html">dudechandan</media:title>
		</media:content>
	</item>
		<item>
		<title>60 Toughest Interview Questions.</title>
		<link>http://dudechandan.wordpress.com/2006/11/20/60-toughest-interview-questions/</link>
		<comments>http://dudechandan.wordpress.com/2006/11/20/60-toughest-interview-questions/#comments</comments>
		<pubDate>Mon, 20 Nov 2006 03:11:03 +0000</pubDate>
		<dc:creator>Chandan</dc:creator>
				<category><![CDATA[Interviews]]></category>
		<category><![CDATA[Job]]></category>

		<guid isPermaLink="false">http://dudechandan.wordpress.com/2006/11/20/60-toughest-interview-questions/</guid>
		<description><![CDATA[General Guidelines:
Everyone is nervous on interviews. If you simply allow yourself to feel nervous, you&#8217;ll do much better. In general, be upbeat and positive. Never be negative. Never talk for more than 2 minutes straight. Find out what an employer wants most in his or her ideal candidate, then show how you meet those qualifications. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dudechandan.wordpress.com&blog=535816&post=18&subd=dudechandan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>General Guidelines:</strong><br />
Everyone is nervous on interviews. If you simply allow yourself to feel nervous, you&#8217;ll do much better. In general, be upbeat and positive. Never be negative. Never talk for more than 2 minutes straight. Find out what an employer wants most in his or her ideal candidate, then show how you meet those qualifications. In other words, you must match your abilities, with the needs of the employer. Be honest and most important never lie.</p>
<p>Good luck!</p>
<p><span id="more-18"></span></p>
<p><strong>1. Tell me about yourself.</strong><br />
Beware, about 80% of all interviews begin with this “innocent” question. Many candidates, unprepared for the question, skewer themselves by rambling, recapping their life story, delving into ancient work history or personal matters. Start with the present and tell why you are well qualified for the position. Remember that the key to all successful interviewing is to match your qualifications to what the interviewer is looking for.  This is the single most important strategy in job hunting.</p>
<p><strong>2. What are your greatest strengths?</strong><br />
This question seems like a softball lob, but be prepared. You don&#8217;t want to come across as egotistical or arrogant. Neither is this a time to be humble. You know that your key strategy is to first uncover your interviewer&#8217;s greatest wants and needs before you answer questions. You know how to do this from question 1. You should have a list mentally prepared of your greatest strengths. You should also have specific example or two, which illustrates each strength.<br />
<em>The 10 most desirable traits:</em><br />
1.	A proven track record as an achiever.<br />
2.	Intelligence and management capabilities.<br />
3.	Honesty and integrity.<br />
4.	Good to fit corporate culture.<br />
5.	Positive attitude.<br />
6.	Good communication skills.<br />
7.	Dedication to walk the extra mile to achieve excellence.<br />
8.	Definiteness of goals.<br />
9.	Enthusiasm.<br />
10.	Confident.</p>
<p><strong>3. What are your greatest weaknesses?</strong><br />
This is an eliminator question, designed to shorten the candidate list. Any admission of a weakness or fault will earn you an “A” for honesty, but an “F” for the interview. Disguise a strength as a weakness. “I sometimes push my people too hard. I like to work with a sense of urgency and everyone is not always on the same wavelength.” Assure the interviewer that you can think of nothing that would stand in the way of your performing in this position with excellence. Then, quickly review you strongest qualifications.</p>
<p><strong>4. Tell me about something you did – or failed to do.</strong><br />
There are some questions your interviewer has no business asking, and this is one. But while you may feel like answering, “none of your business,” naturally you can’t. Some interviewers ask this question on the chance you admit to something, but if not, at least they’ll see how you think on your feet. Some unprepared candidates, flustered by this question, unburden themselves of guilt from their personal life or career, perhaps expressing regrets regarding a parent, spouse, child, etc. All such answers can be disastrous. As with faults and weaknesses, never confess a regret. But don’t seem as if you’re stonewalling either. Say you harbor no regrets, then add a principle or habit you practice regularly for healthy human relations.</p>
<p><strong>5. Why are you leaving your old position(If you have a job presently)?</strong><br />
Never badmouth your previous industry, company, board, boss, staff, employees or customers. This rule is inviolable: never be negative. Any mud you hurl will only soil your suit. Especially avoid words like “personality clash”, “didn’t get along”, or others which cast a shadow on your competence, integrity, or temperament. Since you have a job, you are in a stronger position than someone who does not. But don’t be coy either. State honestly what you’d be hoping to find in a new spot. Of course, as stated often before, you answer will all the stronger if you have already uncovered what this position is all about and you match your desires to it.</p>
<p><strong>6. The “Silent Treatment”</strong><br />
If you are unprepared for this, you will probably not handle it right and possibly blow the interview. Thank goodness most interviewers don’t employ it. It’s normally used by those determined to see how you respond under stress. You answer an interviewer’s question and then, instead of asking another, he just stares at you in a deafening silence. Most unprepared candidates rush in to fill the void of silence, viewing prolonged, uncomfortable silences as an invitation to clear up the previous answer which has obviously caused some problem. And that’s what they do – ramble on, sputtering more and more information, sometimes irrelevant and often damaging, because they are suddenly playing the role of someone who’s goofed and is now trying to recoup. We can just say “Is there anything else I can fill in on that point?” That’s all there is to it.</p>
<p><strong>7. Why should I hire you?</strong><br />
Believe it or not, this is a killer question because so many candidates are unprepared for it. If you stammer or adlib you’ve blown it. By now you can see how critical it is to apply the overall strategy of uncovering the employer’s needs before you answer questions. If you know the employer’s greatest needs and desires, this question will give you a big leg up over other candidates because you will give him better reasons for hiring you than anyone else is likely to…reasons tied directly to his needs.  The answer would be “As I understand your needs, you are first and foremost looking for someone who can manage the sales and marketing of your book publishing division. As you’ve said you need someone with a strong background in trade book sales. This is where I’ve spent almost all of my career, so I’ve chalked up 18 years of experience exactly in this area. I believe that I know the right contacts, methods, principles, and successful management techniques as well as any person can in our industry.”</p>
<p><strong>8. Aren’t you overqualified for this position?</strong><br />
The employer may be concerned that you’ll grow dissatisfied and leave. As with any objection, don’t view this as a sign of imminent defeat. It’s an invitation to teach the interviewer a new way to think about this situation, seeing advantages instead of drawbacks. Just say  “I recognize the job market for what it is – a marketplace. Like any marketplace, it’s subject to the laws of supply and demand. So ‘overqualified’ can be a relative term, depending on how tight the job market is. And right now, it’s very tight. I understand and accept that.”</p>
<p><strong>9. Where do you see yourself five years from now?</strong><br />
One reason interviewers ask this question is to see if you’re settling for this position, using it merely as a stopover until something better comes along. Or they could be trying to gauge your level of ambition. If you’re too specific, i.e., naming the promotions you someday hope to win, you’ll sound presumptuous. If you’re too vague, you’ll seem rudderless. Reassure your interviewer that you’re looking to make a long-term commitment…that this position entails exactly what you’re looking to do and what you do extremely well. As for your future, you believe that if you perform each job at hand with excellence, future opportunities will take care of themselves.</p>
<p><strong>10. Describe your ideal company, location and job.</strong><br />
This is often asked by an experienced interviewer who thinks you may be overqualified, but knows better than to show his hand by posing his objection directly. So he’ll use this question instead, which often gets a candidate to reveal that, indeed, he or she is looking for something other than the position at hand. The only right answer is to describe what this company is offering, being sure to make your answer believable with specific reasons, stated with sincerity, why each quality represented by this opportunity is attractive to you.</p>
<p><strong>11. Why do you want to work at our company?</strong><br />
This question tests whether you’ve done any homework about the firm. If you haven’t, you lose. If you have, you win big. This question is your opportunity to hit the ball out of the park, thanks to the in-depth research you should do before any interview. Best sources for researching your target company: annual reports, the corporate newsletter, contacts you know at the company or its suppliers, advertisements, articles about the company in the trade press.</p>
<p><strong>12. What are your career options right now?</strong><br />
The interviewer is trying to find out, “How desperate are you?” Prepare for this question by thinking of how you can position yourself as a desired commodity. If you are still working, describe the possibilities at your present firm and why, though you’re greatly appreciated there, you’re looking for something more (challenge, money, responsibility, etc.). Also mention that you’re seriously exploring opportunities with one or two other firms. If you’re not working, you can talk about other employment possibilities you’re actually exploring. But do this with a light touch, speaking only in general terms. You don’t want to seem manipulative or coy.</p>
<p><strong>13. Why have you been out of work so long?</strong><br />
A tough question if you’ve been on the beach a long time. You don’t want to seem like damaged goods. You want to emphasize factors which have prolonged your job search by your own choice. This would be a good answer  “After my job was terminated, I made a conscious decision not to jump on the first opportunities to come along. In my life, I’ve found out that you can always turn a negative into a positive IF you try hard enough. This is what I determined to do. I decided to take whatever time I needed to think through what I do best, what I most want to do, where I’d like to do it…and then identify those companies that could offer such an opportunity.”</p>
<p><strong>14. Tell me about the strong and weak points of your old boss</strong><br />
Skillfull interviewers sometimes make it almost irresistible to open up and air a little dirty laundry from your previous position. DON’T do that. Remember the rule: Never be negative. Stress only the good points, no matter how charmingly you’re invited to be critical. Your interviewer doesn’t care a whit about your previous boss. He wants to find out how loyal and positive you are, and whether you’ll criticize him behind his back if pressed to do so by someone in this own company. This question is your opportunity to demonstrate your loyalty to those you work with.</p>
<p><strong>15. What good books have you read lately?</strong><br />
As in all matters of your interview, never fake familiarity you don’t have. Yet you don’t want to seem like a dullard who hasn’t read a book since Tom Sawyer. Unless you’re up for a position in academia or as book critic for The New York Times, you’re not expected to be a literary lion. But it wouldn’t hurt to have read a handful of the most recent and influential books in your profession and on management. Consider it part of the work of your job search to read up on a few of these leading books. But make sure they are quality books that reflect favorably upon you, nothing that could even remotely be considered superficial. Finally, add a recently published bestselling work of fiction by a world-class author and you’ll pass this question with flying colors.</p>
<p><strong>16. Tell me about a situation when your work was criticized.</strong><br />
This is a tough question because it’s a more clever and subtle way to get you to admit to a weakness. You can’t dodge it by pretending you’ve never been criticized. Everybody has been. Yet it can be quite damaging to start admitting potential faults and failures that you’d just as soon leave buried. This question is also intended to probe how well you accept criticism and direction. Begin by emphasizing the extremely positive feedback you’ve gotten throughout your career and (if it’s true) that your performance reviews have been uniformly excellent. Of course, no one is perfect and you always welcome suggestions on how to improve your performance. Then, give an example of a not-too-damaging learning experience from early in your career and relate the ways this lesson has since helped you.</p>
<p><strong>17. What are your outside interests?</strong><br />
You want to be a well-rounded, not a drone. But your potential employer would be even more turned off if he suspects that your heavy extracurricular load will interfere with your commitment to your work duties. Try to gauge how this company’s culture would look upon your favorite outside activities and be guided accordingly.</p>
<p><strong>18. The “Fatal Flaw” question</strong><br />
If an interviewer has read your resume carefully, he may try to zero in on a “fatal flaw” of your candidacy, perhaps that you don’t have a college degree…you’ve been out of the job market for some time…you never earned your CPA, etc. A fatal flaw question can be deadly, but usually only if you respond by being overly defensive.<br />
Whenever you come up against a fatal flaw question:<br />
1.	Be completely honest, open and straightforward about admitting the shortcoming.<br />
2.	Do not apologize or try to explain it away. You know that this supposed flaw is nothing to be concerned about, and this is the attitude you want your interviewer to adopt as well.<br />
3.	Add that as desirable as such a qualification might be, its lack has made you work all the harder throughout your career and has not prevented you from compiling an outstanding tack record of achievements. You might even give examples of how, through a relentless commitment to excellence, you have consistently outperformed those who do have this qualification.</p>
<p><strong>19. How do you feel about reporting to a younger person ?</strong><br />
It’s a shame that some interviewers feel the need to ask this question, but many understand the reality that prejudices still exist among some job candidates, and it’s better to try to flush them out beforehand. The trap here is that in today’s politically sensitized environment, even a well-intentioned answer can result in planting your foot neatly in your mouth. Avoid anything which smacks of a patronizing or an insensitive attitude, such as “I think they make terrific bosses” or “Hey, some of my best friends are…” You greatly admire a company that hires and promotes on merit alone and you couldn’t agree more with that philosophy. The age (gender, race, etc.) of the person you report to would certainly make no difference to you. Whoever has that position has obviously earned it and knows their job well. Both the person and the position are fully deserving of respect.</p>
<p><strong>20. On confidential matters…</strong><br />
When an interviewer presses you to reveal confidential information about a present or former employer, you may feel it’s a no-win situation. If you cooperate, you could be judged untrustworthy. If you don’t, you may irritate the interviewer and seem obstinate, uncooperative or overly suspicious. Your interviewer may press you for this information for two reasons. First, many companies use interviews to research the competition. It’s a perfect set-up. Second, the company may be testing your integrity to see if you can be cajoled or bullied into revealing confidential data. What to do? The answer here is easy. Never reveal anything truly confidential about a present or former employer.</p>
<p><strong>21. Would you lie for the company?</strong><br />
This another question that pits two values against one another, in this case loyalty against integrity. Try to avoid choosing between two values, giving a positive statement which covers all bases instead.  “I would never do anything to hurt the company..”</p>
<p><strong>22. Looking back, what would you do differently in your life?</strong><br />
This question is usually asked to uncover any life-influencing mistakes, regrets, disappointments or problems that may continue to affect your personality and performance. You do not want to give the interviewer anything negative to remember you by, such as some great personal or career disappointment, even long ago, that you wish could have been avoided. Indicate that you are a happy, fulfilled, optimistic person and that, in general, you wouldn’t change a thing.</p>
<p><strong>23. Could you have done better in your last job?</strong><br />
This is no time for true confessions of major or even minor problems. Again never be negative.  “I suppose with the benefit of hindsight you can always find things to do better, of course, but off the top of my head, I can’t think of anything of major consequence.”</p>
<p><strong>24. Can you work under pressure?</strong><br />
An easy question, but you want to make your answer believable. Absolutely…(then prove it with a vivid example or two of a goal or project accomplished under severe pressure.)</p>
<p><strong>25. What makes you angry?</strong><br />
You don’t want to come across either as a hothead or a wimp. Give an answer that’s suited to both your personality and the management style of the firm. “I’m an even-tempered and positive person by nature, and I believe this helps me a great deal in keeping my department running smoothly, harmoniously and with a genuine esprit de corps.</p>
<p><strong>26. Why aren’t you earning more money at this stage of your career?</strong><br />
You don’t want to give the impression that money is not important to you, yet you want to explain why your salary may be a little below industry standards. You like to make money, but other factors are even more important.  “Making money is very important to me, and one reason I’m here is because I’m looking to make more. Throughout my career, what’s been even more important to me is doing work I really like to do at the kind of company I like and respect.</p>
<p><strong>27. Who has inspired you in your life and why?</strong><br />
The two traps here are unpreparedness and irrelevance. If you grope for an answer, it seems you’ve never been inspired. If you ramble about your high school basketball coach, you’ve wasted an opportunity to present qualities of great value to the company. Have a few heroes in mind, from your mental “Board of Directors” – Leaders in your industry, from history or anyone else who has been your mentor.</p>
<p><strong>28. What was the toughest decision you ever had to make?</strong><br />
Be prepared with a good example, explaining why the decision was difficult…the process you followed in reaching it…the courageous or effective way you carried it out…and the beneficial results.</p>
<p><strong>29. Tell me about the most boring job you’ve ever had.</strong><br />
You give a very memorable description of a very boring job. Result? You become associated with this boring job in the interviewer’s mind. You have never allowed yourself to grow bored with a job and you can’t understand it when others let themselves fall into that rut.  “Perhaps I’ve been fortunate, but that I’ve never found myself bored with any job I have ever held. I’ve always enjoyed hard work.”</p>
<p><strong>30. Have you been absent from work more than a few days in any previous position?</strong><br />
If you’ve had a problem, you can’t lie. You could easily be found out. Yet admitting an attendance problem could raise many flags. If you have had no problem, emphasize your excellent and consistent attendance record throughout your career.</p>
<p><strong>31. What changes would you make if you came on board?</strong><br />
Watch out! This question can derail your candidacy faster than a bomb on the tracks – and just as you are about to be hired. No matter how bright you are, you cannot know the right actions to take in a position before you settle in and get to know the operation’s strengths, weaknesses key people, financial condition, methods of operation, etc. If you lunge at this temptingly baited question, you will probably be seen as someone who shoots from the hip. Moreover, no matter how comfortable you may feel with your interviewer, you are still an outsider. You, of course, will want to take a good hard look at everything the company is doing before making any recommendations.</p>
<p><strong>32. I’m concerned that you don’t have as much experience as we’d like in…</strong><br />
This could be a make-or-break question. The interviewer mostly likes what he sees, but has doubts over one key area. If you can assure him on this point, the job may be yours. This question is related to “The Fatal Flaw” (Question 18), but here the concern is not that you are totally missing some qualifications, such as CPA certification, but rather that your experience is light in one area. Before going into any interview, try to identify the weakest aspects of your candidacy from this company’s point of view. Then prepare the best answer you possible can to shore up your defenses.</p>
<p><strong>33. How do you feel about working nights and weekends?</strong><br />
Blurt out “no way, Jose” and you can kiss the job offer goodbye. But what if you have a family and want to work a reasonably normal schedule? Is there a way to get both the job and the schedule you want? First, if you’re a confirmed workaholic, this question is a softball lob. Whack it out of the park on the first swing by saying this kind of schedule is just your style. Add that your family understands it. Indeed, they’re happy for you, as they know you get your greatest satisfaction from your work.</p>
<p><strong>34. Are you willing to relocate or travel?</strong><br />
Answer with a flat “no” and you may slam the door shut on this opportunity. But what if you’d really prefer not to relocate or travel, yet wouldn’t want to lose the job offer over it? First find out where you may have to relocate and how much travel may be involved. Then respond to the question. If there’s no problem, say so enthusiastically.</p>
<p><strong>35. Do you have the stomach to fire people? Have you had experience firing many people?</strong><br />
This “innocent” question could be a trap door which sends you down a chute and lands you in a heap of dust outside the front door. Why? Because its real intent is not just to see if you’ve got the stomach to fire, but also to uncover poor judgment in hiring which has caused you to fire so many. Also, if you fire so often, you could be a tyrant. So don’t rise to the bait by boasting how many you’ve fired, unless you’ve prepared to explain why it was beyond your control, and not the result of your poor hiring procedures or foul temperament. Describe the rational and sensible management process you follow in both hiring and firing.</p>
<p><strong>36. Why have you had so many jobs?</strong><br />
Your interviewer fears you may leave this position quickly, as you have others. He’s concerned you may be unstable, or a “problem person” who can’t get along with others. First, before you even get to the interview stage, you should try to minimize your image as job hopper. If there are several entries on your resume of less than one year, consider eliminating the less important ones. Perhaps you can specify the time you spent at previous positions in rounded years not in months and years.</p>
<p><strong>37. What do you see as the proper role/mission of good job, good manager?</strong><br />
These and other “proper role” questions are designed to test your understanding of your place in the bigger picture of your department, company, community and profession….as well as the proper role each of these entities should play in its bigger picture. Think of the most essential ingredients of success for each category above – your job title, your role as manager, your firm’s role, etc. Identify at least three but no more than six qualities you feel are most important to success in each role. Then commit your response to memory.</p>
<p><strong>38. What would you say to your boss if he’s crazy about an idea, but you think it stinks?</strong><br />
This is another question that pits two values, in this case loyalty and honesty, against one another. Remember the rule stated earlier: In any conflict between values, always choose integrity. Say “I believe that when evaluating anything, it’s important to emphasize the positive. What do I like about this idea? After all, the most important thing I owe my boss is honesty. If he can’t count on me for that, then everything else I may do or say could be questionable in his eyes. But I also want to express my thoughts in a constructive way. So my goal in this case would be to see if my boss and I could make his idea even stronger and more appealing, so that it effectively overcomes any initial reservation I or others may have about it. Of course, if he overrules me and says, ‘no, let’s do it my way,’ then I owe him my full and enthusiastic support to make it work as best it can.”</p>
<p><strong>39. How could you have improved your career progress?</strong><br />
This is another variation on the question, “If you could, how would you live your life over?” Remember, you’re not going to fall for any such invitations to rewrite person history. You can’t win if you do. You’re generally quite happy with your career progress. Maybe, if you had known something earlier in life, you might have moved in a certain direction sooner. But all things considered, you take responsibility for where you are, how you’ve gotten there, where you are going…and you harbor no regrets.</p>
<p><strong>40. What would you do if a fellow executive on your own corporate level wasn’t pulling his/her weight…and this was hurting your department?</strong><br />
This question and other hypothetical ones test your sense of human relations and how you might handle office politics. Try to gauge the political style of the firm and be guided accordingly. In general, fall back on universal principles of effective human relations – which in the end, embody the way you would like to be treated in a similar circumstance.</p>
<p><strong>41. You’ve been with your firm a long time. Won’t it be hard switching to a new company?</strong><br />
Your interviewer is worried that this old dog will find it hard to learn new tricks. To overcome this objection, you must point to the many ways you have grown and adapted to changing conditions at your present firm. It has not been a static situation. Highlight the different responsibilities you’ve held, the wide array of new situations you’ve faced and conquered.</p>
<p><strong>42. May I contact your present employer for a reference?</strong><br />
If you’re trying to keep your job search private, this is the last thing you want. But if you don’t cooperate, won’t you seem as if you’re trying to hide something? Express your concern that you’d like to keep your job search private, but that in time, it will be perfectly okay.</p>
<p><strong>43. Give me an example of your creativity</strong><br />
The worst offense here is simply being unprepared. Your hesitation may seem as if you’re having a hard time remembering the last time you were creative, analytical, etc. Remember from Question 2 that you should commit to memory a list of your greatest and most recent achievements, ever ready on the tip of your tongue.</p>
<p><strong>44. Where could you use some improvement?</strong><br />
Another tricky way to get you to admit weaknesses. Don’t fall for it. Keep this answer, like all your answers, positive. A good way to answer this question is to identify a cutting-edge branch of your profession (one that’s not essential to your employer’s needs) as an area you’re very excited about and want to explore more fully over the next six months.</p>
<p><strong>45. What do you worry about?</strong><br />
Admit to worrying and you could sound like a loser. Saying you never worry doesn’t sound credible. Redefine the word ‘worry’ so that it does not reflect negatively on you.</p>
<p><strong>46. How many hours a week do you normally work?</strong><br />
You don’t want to give a specific number. Make it to low, and you may not measure up. Too high, and you’ll forever feel guilty about sneaking out the door at 5:15. If you are in fact a workaholic and you sense this company would like that: Say you are a confirmed workaholic, that you often work nights and weekends. Your family accepts this because it makes you fulfilled. If you are not a workaholic: Say you have always worked hard and put in long hours.</p>
<p><strong>47. What’s the most difficult part of remaining at a position?</strong><br />
Unless you phrase your answer properly, your interviewer may conclude that whatever you identify as “difficult” is where you are weak. First, redefine “difficult” to be “challenging” which is more positive. Then, identify an area everyone in your profession considers challenging and in which you excel. Describe the process you follow that enables you to get splendid results…and be specific about those results.</p>
<p><strong>48. The “Hypothetical Problem”</strong><br />
Sometimes an interviewer will describe a difficult situation and ask, “How would you handle this?” Since it is virtually impossible to have all the facts in front of you from such a short presentation, don’t fall into the trap of trying to solve this problem and giving your verdict on the spot. It will make your decision-making process seem woefully inadequate. Instead, describe the rational, methodical process you would follow in analyzing this problem, who you would consult with, generating possible solutions, choosing the best course of action, and monitoring the results.</p>
<p><strong>49. What was the toughest challenge you’ve ever faced?</strong><br />
Being unprepared or citing an example from so early in your life that it doesn’t score many points for you at this stage of your career. This is an easy question if you’re prepared. Have a recent example ready that demonstrates either:<br />
1.	A quality most important to the job at hand<br />
2.	A quality that is always in demand, such as leadership, initiative, managerial skill, persuasiveness, courage, persistence, intelligence, etc.<br />
<strong>50. Have you consider starting your own business?</strong><br />
If you say “yes” and elaborate enthusiastically, you could be perceived as a loose cannon in a larger company, too entrepreneurial to make a good team player…or someone who had to settle for the corporate life because you couldn’t make a go of your own business. On the other hand, if you answer “no, never” you could be perceived as a security-minded drone who never dreamed a big dream. Again it’s best to:<br />
1.	Gauge this company’s corporate culture before answering.<br />
2.	 Be honest.</p>
<p><strong>51. What are your goals?</strong><br />
Not having any…or having only vague generalities, not highly specific goals. Many executives in a position to hire you are strong believers in goal-setting. (It’s one of the reason they’ve achieved so much). They like to hire in kind. If you’re vague about your career and personal goals, it could be a big turnoff to may people you will encounter in your job search.</p>
<p><strong>52. What do you for when you hire people?</strong><br />
Speak your own thoughts here, but for the best answer weave them around the three most important qualifications for any position.<br />
1.	Can the person do the work (qualifications)?<br />
2.	Will the person do the work (motivation)?<br />
3.	Will the person fit in (“our kind of team player”)?</p>
<p><strong>53. “The Salary Question” – How much money do you want?</strong><br />
May also be phrases as, “What salary are you worth?”…or, “How much are you making now?” This is your most important negotiation. Handle it wrong and you can blow the job offer or go to work at far less than you might have gotten. For maximum salary negotiating power, remember these five guidelines:<br />
1.	Never bring up salary. Let the interviewer do it first.<br />
2.	If your interviewer raises the salary question too early, before you’ve had a chance to create desire for your qualifications, postpone the question, saying something like, “Money is important to me, but is not my main concern. Opportunity and growth are far more important.<br />
3.	The #1 rule of any negotiation is: the side with more information wins. After you’ve done a thorough job of selling the interviewer and it’s time to talk salary, the secret is to get the employer talking about what he’s willing to pay before you reveal what you’re willing to accept. So, when asked about salary, respond by asking, “I’m sure the company has already established a salary range for this position. Could you tell me what that is?” Or, “I want an income commensurate with my ability and qualifications. I trust you’ll be fair with me. What does the position pay?” Or, more simply, “What does this position pay?”<br />
4.	Know beforehand what you’d accept. To know what’s reasonable, research the job market and this position for any relevant salary information.<br />
5.	Never lie about what you currently make, but feel free to include the estimated cost of all your fringes, which could well tack on 25-50% more to your present “cash-only” salary.</p>
<p><strong>54. What was the toughest part of your last job?</strong><br />
This is slightly different from the question raised earlier, “What’s the most difficult part of being at a position because this asks what you personally have found most difficult in your last position. This question is more difficult to redefine into something positive. Your interviewer will assume that whatever you found toughest may give you a problem in your new position. State that there was nothing in your prior position that you found overly difficult, and let your answer go at that.</p>
<p><strong>55. How do you define success…and how do you measure up to your own definition?</strong><br />
Seems like an obvious enough question. Yet many executives, unprepared for it, fumble the ball. Give a well-accepted definition of success that leads right into your own stellar collection of achievements.</p>
<p><strong>56. If you won $10 million lottery, would you still work?</strong><br />
Your totally honest response might be, “Hell, no, are you serious?” That might be so, but any answer which shows you as fleeing work if given the chance could make you seem lazy. On the other hand, if you answer, “Oh, I’d want to keep doing exactly what I am doing, only doing it for your firm,” you could easily inspire your interviewer to silently mutter to himself, “Yeah, sure. Gimme a break.” This type of question is aimed at getting at your bedrock attitude about work and how you feel about what you do. Your best answer will focus on your positive feelings.</p>
<p><strong>57. Looking back on your last position, have you done your best work?</strong><br />
Tricky question. Answer “absolutely” and it can seem like your best work is behind you. Answer, “no, my best work is ahead of me,” and it can seem as if you didn’t give it your all. To cover both possible paths this question can take, your answer should state that you always try to do your best, and the best of your career is right now. Like an athlete at the top of his game, you are just hitting your career stride thanks to several factors. Then, recap those factors, highlighting your strongest qualifications.</p>
<p><strong>58. Why should I hire you from the outside when I could promote someone from within?</strong><br />
This question isn’t as aggressive as it sounds. It represents the interviewer’s own dilemma over this common problem. He’s probably leaning toward you already and for reassurance, wants to hear what you have to say on the matter. Help him see the qualifications that only you can offer.</p>
<p><strong>59. Tell me something negative you’ve heard about our company</strong><br />
This is a common fishing expedition to see what the industry grapevine may be saying about the company. But it’s also a trap because as an outsider, you never want to be the bearer of unflattering news or gossip about the firm. It can only hurt your chances and sidetrack the interviewer from getting sold on you. Just remember the rule – never be negative – and you’ll handle this one just fine.</p>
<p><strong>60. On a scale of one to ten, rate me as an interviewer.</strong><br />
Give a perfect “10,” and you’ll seem too easy to please. Give anything less than a perfect 10, and he could press you as to where you’re being critical, and that road leads downhill for you. Once again, never be negative. The interviewer will only resent criticism coming from you. This is the time to show your positivism. However, don’t give a numerical rating. Simply praise whatever interview style he’s been using.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dudechandan.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dudechandan.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dudechandan.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dudechandan.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dudechandan.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dudechandan.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dudechandan.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dudechandan.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dudechandan.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dudechandan.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dudechandan.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dudechandan.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dudechandan.wordpress.com&blog=535816&post=18&subd=dudechandan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dudechandan.wordpress.com/2006/11/20/60-toughest-interview-questions/feed/</wfw:commentRss>
		<slash:comments>21</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/34617db19fd1103253bffecce39446d3?s=96&#38;d=identicon" medium="image">
			<media:title type="html">dudechandan</media:title>
		</media:content>
	</item>
		<item>
		<title>Internet Explorer 7 Hits The Street</title>
		<link>http://dudechandan.wordpress.com/2006/11/17/internet-explorer-7-hits-the-street/</link>
		<comments>http://dudechandan.wordpress.com/2006/11/17/internet-explorer-7-hits-the-street/#comments</comments>
		<pubDate>Fri, 17 Nov 2006 11:26:14 +0000</pubDate>
		<dc:creator>Chandan</dc:creator>
				<category><![CDATA[Browser]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://dudechandan.wordpress.com/2006/11/17/internet-explorer-7-hits-the-street/</guid>
		<description><![CDATA[Microsoft released the Public Preview version of Internet Explorer (IE) 7.0 Beta, a pre-release version of its next Web browser. The idea was that developers and Web site operators should use this build to test their sites in anticipation of the final IE 7 release.
Download Internet Explorer 7 Here.

What Has Changed in Version 7:
Unlike both [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dudechandan.wordpress.com&blog=535816&post=15&subd=dudechandan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Microsoft released the Public Preview version of Internet Explorer (IE) 7.0 Beta, a pre-release version of its next Web browser. The idea was that developers and Web site operators should use this build to test their sites in anticipation of the final IE 7 release.</p>
<p>Download Internet Explorer 7 <a href="http://www.microsoft.com/windows/ie/downloads/" title="IE7 Download">Here.</a></p>
<p><span id="more-15"></span><br />
<strong>What Has Changed in Version 7:</strong><br />
Unlike both IE 5.x and IE 6.0, IE 7.0 includes both major functional changes as well as major changes under the hood that impact both the security and stability of IE as well as how the product renders Web sites.</p>
<ul>
<li><em>User Interface Improvements:</em> The navigation bar in the new internet explorer is completely redesigned. Everything else is new and interesting. The major theme here is to have buttons as short cuts and pulldowns for more detail.</li>
<li><em>Tabbed Browsing:</em> Another interesting change is that the IE 7 introduced tabbed browsing. There is Quick Tabs feature which is technically unique. Quick Tabs let&#8217;s you visually switch between open Web documents.</li>
<li><em>Integrated Search:</em> The new Internet Explorer features a built-in search box, similar to the one in Firefox. Like Firefox, Internet Explorer has an infrastructure for adding more search engines.</li>
<li><em>Favorites and History:</em> Favorites and History have gone through a major redesign in this version, which aggregates these two document lists with the new RSS (Real Simple Syndication) support.</li>
<li><em>RSS Integration:</em> If there is one thing that definitely stands out in IE7, it is RSS integration. IE presents RSS feeds using a smart view which lets the user search, filter and sort the entries contained in the feed.</li>
<li><em>Other Notable Features:</em> There are also lot of additions in this new version like Printing Advances, Clear Type, Text Zoom, Fix Settings, Security Features, Enterprise Features and so on.</li>
</ul>
<p><strong>Getting Around IE7 Problems:</strong><br />
The new version of internet explorer has born with some problems.</p>
<ul>
<li><em>Problem With Viewing Some Sites:</em> Every time a new version of Internet Explorer has been released, there have been sites that will not work with that new version. We can get around this problem with User Agent String Utility Tool <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9517db9c-3c0d-47fe-bd04-fad82a9aac9f&amp;DisplayLang=en" title="Download Tool">Here</a>. This tool opens an Internet Explorer 7.0 window which is configured to report its identity to websites as being Internet Explorer 6.0 &#8211; an excellent way to work with Web sites that are improperly coded to only recognise IE6 and earlier.</li>
<li><em>IE7 (iexplore.exe) Crashes:</em> Some times when we open a new tab the process crashes without any error message. Just vanishes from processes.This may be due to Add-Ons, so sometimes disabling add-ons will help(Internet Options -&gt; Advanced -&gt; Reset Internet Explorer Settings).</li>
<li><em>McAfee Update Problems: </em>Security settings in the new version of Internet Explorer are causing problems for users of McAfee software.McAfee have released a workaround solution to the problem. The install advice is<a href="http://ts.mcafeehelp.com/faq3.asp?docid=410002" title="Install Advice"> here</a>, and the update guide is<a href="http://ts.mcafeehelp.com/faq3.asp?docid=410052" title="Update Guide"> here</a>.</li>
<li><em>&#8220;Internet Explorer Has Encountered A Problem And Needs To Close&#8221;: </em>Instead of manually installing IE7, download it along with windows update.</li>
<li><em>Start-Up Problems: </em>Sometimes during start-up we get a window named &#8220;SMARTBRIDGE ALERTS: MotiveSB.exe and some error message. MotiveSB.exe is a program installed by SBC Yahoo and some other Internet providers to help them diagnose problems.Just disable the startup entry of MotiveSB.exe(Start-&gt;Run-&gt;msconfig-&gt; startup).</li>
</ul>
<p>If you still have problems with IE7, then try downloading IE from windows update site instead of manually downloading and installing.</p>
<p><strong>Bottom-Line:</strong> IE 7 is a huge monumental improvement over IE 6 in both security and functionality, and will likely impress most typical Windows users. There is evidence of really good effort and innovation.</p>
<p><em>The bigger question is how does IE7 compare to Firefox 2.0 and is it enough to hang on to IE&#8217;s huge market share?</em></p>
<p>IE 7.0 Beta 2 is stable enough to use on production PCs and servers, and if you&#8217;re wondering what the future is going to look like, dive right in.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dudechandan.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dudechandan.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dudechandan.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dudechandan.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dudechandan.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dudechandan.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dudechandan.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dudechandan.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dudechandan.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dudechandan.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dudechandan.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dudechandan.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dudechandan.wordpress.com&blog=535816&post=15&subd=dudechandan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dudechandan.wordpress.com/2006/11/17/internet-explorer-7-hits-the-street/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/34617db19fd1103253bffecce39446d3?s=96&#38;d=identicon" medium="image">
			<media:title type="html">dudechandan</media:title>
		</media:content>
	</item>
		<item>
		<title>Google Docs &amp; Spreadsheets</title>
		<link>http://dudechandan.wordpress.com/2006/11/17/google-docs-spreadsheets/</link>
		<comments>http://dudechandan.wordpress.com/2006/11/17/google-docs-spreadsheets/#comments</comments>
		<pubDate>Fri, 17 Nov 2006 11:10:17 +0000</pubDate>
		<dc:creator>Chandan</dc:creator>
				<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://dudechandan.wordpress.com/2006/11/17/google-docs-spreadsheets/</guid>
		<description><![CDATA[Google has forayed into the word processing industry by releasing a test version of Google Docs &#38; Spreadsheets.


Google Docs &#38; Spreadsheets is a web-based word processing and spreadsheet program that keeps documents current and lets the people you choose update files from their own computers. The new service aims to provide a solution for people [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dudechandan.wordpress.com&blog=535816&post=12&subd=dudechandan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Google has forayed into the word processing industry by releasing a test version of <a href="http://docs.google.com/" title="Home Page">Google Docs &amp; Spreadsheets.</a></p>
<p><span id="more-12"></span><br />
<a href="http://dudechandan.wordpress.com/2006/11/17/google-docs-spreadsheets/google-docs-and-spreadsheets/" title="Google Docs and Spreadsheets" rel="attachment wp-att-13"><img src="http://dudechandan.files.wordpress.com/2006/11/google-docs-and-spreadsheets.png" alt="Google Docs and Spreadsheets" /></a></p>
<p>Google Docs &amp; Spreadsheets is a web-based word processing and spreadsheet program that keeps documents current and lets the people you choose update files from their own computers. The new service aims to provide a solution for people trying to collaborate information stored in different word processors and spreadsheets by using the web to review and manipulate the data. A key feature of Google Docs &amp; Spreadsheets is the ability for numerous users to simultaneously work on the same document from different locations.</p>
<p>Google Docs &amp; Spreadsheets is currently in public test mode and available for free. It is supported by most of the browsers. At this time Google Docs &amp; Spreadsheets is only available in English.</p>
<p><a href="http://dudechandan.wordpress.com/2006/11/17/google-docs-spreadsheets/edit/" title="Edit" rel="attachment wp-att-14"><img src="http://dudechandan.files.wordpress.com/2006/11/266677884_d99a052c94.jpg" alt="Edit" /> </a></p>
<p><strong>What can we do:</strong></p>
<ul>
<li>We can create and upload Word documents, OpenOffice, RTF, HTML or text.</li>
<li>Invite others (by e-mail address) to edit or view our documents and spreadsheets.</li>
<li>Edit documents online with whomever we choose.</li>
<li>Use formatting and formula editing in spreadsheets so you can calculate results and make your data look the way you want it.</li>
<li>Chat in real time with others who are editing your spreadsheet.</li>
<li>Publish documents and spreadsheets online to the world, as Web pages.</li>
<li>Download documents to your desktop as Word, OpenOffice, RTF,  HTML or zip.</li>
</ul>
<p>Google Docs &amp; Spreadsheets works on Creating, Sharing, Storing and Publishing.</p>
<p>Try it now for free <a href="http://docs.google.com/" title="Home Page">Here.</a></p>
<p>I’m more impressed by Google every time I play around with their products.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dudechandan.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dudechandan.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dudechandan.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dudechandan.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dudechandan.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dudechandan.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dudechandan.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dudechandan.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dudechandan.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dudechandan.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dudechandan.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dudechandan.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dudechandan.wordpress.com&blog=535816&post=12&subd=dudechandan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dudechandan.wordpress.com/2006/11/17/google-docs-spreadsheets/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/34617db19fd1103253bffecce39446d3?s=96&#38;d=identicon" medium="image">
			<media:title type="html">dudechandan</media:title>
		</media:content>

		<media:content url="http://dudechandan.files.wordpress.com/2006/11/google-docs-and-spreadsheets.png" medium="image">
			<media:title type="html">Google Docs and Spreadsheets</media:title>
		</media:content>

		<media:content url="http://dudechandan.files.wordpress.com/2006/11/266677884_d99a052c94.jpg" medium="image">
			<media:title type="html">Edit</media:title>
		</media:content>
	</item>
		<item>
		<title>Favourite Websites Blocked???- Well, Here&#8217;s The Solution</title>
		<link>http://dudechandan.wordpress.com/2006/11/14/favourite-websites-blocked-well-heres-the-solution/</link>
		<comments>http://dudechandan.wordpress.com/2006/11/14/favourite-websites-blocked-well-heres-the-solution/#comments</comments>
		<pubDate>Tue, 14 Nov 2006 11:16:36 +0000</pubDate>
		<dc:creator>Chandan</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://dudechandan.wordpress.com/2006/11/14/favourite-websites-blocked-well-heres-the-solution/</guid>
		<description><![CDATA[What is this article about?
This article is for all those sad and worried pathetic souls sitting in their schools, colleges, and office cabins who cannot access their favourite sites as they are blocked by either their school/college/office administration or their ISP(Internet Service Provider).
After reading this article I’m sure you will be able to access your [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dudechandan.wordpress.com&blog=535816&post=10&subd=dudechandan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>What is this article about?</strong><br />
This article is for all those sad and worried pathetic souls sitting in their schools, colleges, and office cabins who cannot access their favourite sites as they are blocked by either their school/college/office administration or their ISP(Internet Service Provider).</p>
<p>After reading this article I’m sure you will be able to access your favourite sites like Myspace,Friendster,Orkut and Facebook anywhere. These are the best ways around blocked IP address filters at school and work. I’m listing a few approaches to help you in accessing your sites. So read on.</p>
<p><span id="more-10"></span></p>
<p><strong>1.</strong> Surf the internet via a proxy server. A proxy server is a service that hides the identity of your computer. This means that only the address of the proxy server is visible to the world and not yours. Just visit the proxy server website with your Web browser and enter a URL (website address) in the form provided. Here is the huge list of proxies.</p>
<p>http://www.iphant.de<br />
http://www.vcamo.com<br />
http://www.3proxy.com<br />
http://www.3proxy.org<br />
http://www.45percent.com<br />
http://www.75i.net<br />
http://www.anproxy.info<br />
http://www.anymouse.org<br />
http://www.anymousindex.com<br />
http://www.anymoussurf.be<br />
http://www.anymousurfing.info<br />
http://www.anypost.com<br />
http://www.anti-boredom.co.uk<br />
http://www.aproxysite.com<br />
http://www.arnit.net<br />
http://www.attackcensorship.com<br />
http://www.betaproxy.com<br />
http://www.boredatschool.net<br />
http://www.browseatschool.net<br />
http://www.bypassbrowser.com<br />
http://www.bypassit.be<br />
http://www.cecid.com<br />
http://www.cleverproxy.com<br />
http://www.clickcop.com<br />
http://www.collegeproxy.com<br />
http://www.computersteroids.com<br />
http://www.concealme.com<br />
http://www.cpr0x.com<br />
http://www.cyberbite.com<br />
http://www.darkproxy.com<br />
http://www.demonproxy.com<br />
http://www.desireproxy.com<br />
http://www.directproxy.com<br />
http://www.dnbroker.us<br />
http://www.dzzt.com<br />
http://www.ebypass.org<br />
http://www.fastopener.com<br />
http://www.fireprox.com<br />
http://www.flyproxy.com<br />
http://www.free-proxy.info<br />
http://www.freeinternetproxy.com<br />
http://www.freeproxy.ca<br />
http://www.freeproxy01.com<br />
http://www.freeproxysurf.info<br />
http://www.fsurf.com<br />
http://www.fullysickproxy.com<br />
http://www.game678.com<br />
http://www.gamecrib.net<br />
http://www.ghostclick.com<br />
http://www.gouc.fr<br />
http://www.handsoffmycomputer.com<br />
http://www.hideip.be<br />
http://www.hideyour.info<br />
http://www.hidingyou.com<br />
http://www.hostwindsor.com<br />
http://www.httproxy.com<br />
http://www.hujiko.com<br />
http://www.idoxy.com<br />
http://www.ieproxy.com<br />
http://www.ipzap.com<br />
http://www.lightningproxy.com<br />
http://www.liteproxy.com<br />
http://www.mirkoreich.de<br />
http://www.ninjaproxy.com<br />
http://www.pc-portal.at<br />
http://www.mrproxy.com<br />
http://www.myfreeproxy.com<br />
http://www.myproxysurfer.com<br />
http://www.mysticproxy.com<br />
http://www.netsack.net<br />
http://www.networktechs.com<br />
http://www.newproxy.be<br />
http://www.pimps.com<br />
http://www.pagewash.com<br />
http://www.peoplesproxy.com<br />
http://www.perlproxy.com<br />
http://www.phproxy.org<br />
http://www.poxy.us.to<br />
http://www.pr0xy.org<br />
http://www.primeproxy.com<br />
http://www.projectbypass.com<br />
http://www.proxifree.com<br />
http://www.proxify.co.uk<br />
http://www.proxify.com<br />
http://www.proxify.info<br />
http://www.proxy-sock.com<br />
http://www.proxycraze.com<br />
http://www.proxydrop.net<br />
http://www.proxydrop.org<br />
http://www.proxyfoxy.com<br />
http://www.proxygasp.com<br />
http://www.proxyguy.com<br />
http://www.proxyhero.com<br />
http://www.proxyip.org<br />
http://www.proxylord.com<br />
http://www.proxyking.net<br />
http://www.proxymod.com<br />
http://www.proxymouse.com<br />
http://www.proxypi.com<br />
http://www.proxypowered.com<br />
http://www.proxyprince.com<br />
http://www.proxyserver7.com<br />
http://www.proxysnail.com<br />
http://www.proxysw.com<br />
http://www.proxyspy.com<br />
http://www.proxytastic.com<br />
http://www.proxyz.be<br />
http://www.pureprivacy.com<br />
http://www.rapidproxy.com<br />
http://www.roachhost.com<br />
http://www.satanproxy.com<br />
http://www.scriptdownloads.com<br />
http://www.secretbrowse.com<br />
http://www.shadowsurf.com<br />
http://www.smartproxy.net<br />
http://www.sneak3.po.gs<br />
http://www.sonicpig.com<br />
http://www.spiderproxy.com<br />
http://www.stoptheblock.com<br />
http://www.strongproxy.com<br />
http://www.studentproxy.com<br />
http://www.stupidcensorship.com<br />
http://www.surf-an.com<br />
http://www.surfanym.de<br />
http://www.surfnameless.com<br />
http://www.switchproxy.com<br />
http://www.thecabletown.com<br />
http://www.thecgiproxy.com<br />
http://www.thestrongestlinks.com<br />
http://www.thatproxy.com<br />
http://www.theproxy.be<br />
http://www.theproxy.info<br />
http://www.torify.com<br />
http://www.totalupload.com<br />
http://www.umzo.com<br />
http://www.unblockthis.com<br />
http://www.unipeak.com<br />
http://www.urlencoded.com<br />
http://www.useproxy.net<br />
http://www.vproxy.be</p>
<p><strong>2.</strong> To access the blocked Web site, type the IP address of the blocked website instead of the actual website URL in the address bar. You can find out the IP address of any website <a href="http://www.my-ip.eu/urltoip.php" title="Convert URL to IP address" target="_blank">Here</a>.</p>
<p><strong>3.</strong> Use a URL redirection service like tinyurl.com or snipurl.com. These domain forward services sometimes work as the address in the the url box remain the redirect url and do not change to the banned site.</p>
<p><strong>4.</strong> Enter the URL in Google or Yahoo search and then visit the cached copy of the page. To retrieve the page more quickly from Google’s cache, click “Cached Text Only” while the browser is loading the page from cache.</p>
<p><strong>5.</strong> We can try changing the name of the websites by adding prefixes. For example we can use http://home.orkut.com instead of http://www.orkut.com. Other prefixes include search, invite, mail, blog, invite, favorites, forum, groups, events etc…</p>
<p><strong>6.</strong> Finally when nothing works try this, it should work<br />
https://74-38-40-204.dsl1.chi.il.frontiernet.net/cgi-bin/nph-202087.cgi/000000A/https/www.orkut.com/GLogin.aspx=3fdone=3dhttp=253A=252F=252Fwww.orkut.com=252F</p>
<p>Inorder to use the above link for other websites just replace the orkut with the website name . If you still have got any problems just post your problems in the comment box and I’ll get to them as soon as possible.</p>
<p>This article should be used only when an innocent website is accidentally blocked by your ISP or your government. There are always legitimate reasons to visit these blocked websites.</p>
<p>Good Luck.</p>
<p><strong>Disclaimer:</strong> The author is not at all responsible for the misuse of the content in this article . The author cannot be held responsible for anything or whatever happens.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dudechandan.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dudechandan.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dudechandan.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dudechandan.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dudechandan.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dudechandan.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dudechandan.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dudechandan.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dudechandan.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dudechandan.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dudechandan.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dudechandan.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dudechandan.wordpress.com&blog=535816&post=10&subd=dudechandan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dudechandan.wordpress.com/2006/11/14/favourite-websites-blocked-well-heres-the-solution/feed/</wfw:commentRss>
		<slash:comments>264</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/34617db19fd1103253bffecce39446d3?s=96&#38;d=identicon" medium="image">
			<media:title type="html">dudechandan</media:title>
		</media:content>
	</item>
		<item>
		<title>GTalk Profile</title>
		<link>http://dudechandan.wordpress.com/2006/11/14/gtalk-profile/</link>
		<comments>http://dudechandan.wordpress.com/2006/11/14/gtalk-profile/#comments</comments>
		<pubDate>Tue, 14 Nov 2006 08:32:56 +0000</pubDate>
		<dc:creator>Chandan</dc:creator>
				<category><![CDATA[GTalk]]></category>

		<guid isPermaLink="false">http://dudechandan.wordpress.com/2006/11/14/gtalk-profile/</guid>
		<description><![CDATA[What is it?
GTalk Profile is a  service through which we can connect to other Google Talk users. GTalk Profile can help you find other Google Talk users from around the world.
Visit GTalk Profile Here.
There is a world map on the homepage where  we can see  the countries with google talk users who [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dudechandan.wordpress.com&blog=535816&post=8&subd=dudechandan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>What is it?<br />
GTalk Profile is a  service through which we can connect to other Google Talk users. GTalk Profile can help you find other Google Talk users from around the world.</p>
<p>Visit GTalk Profile <a TITLE="GTalk Profile" TARGET="_blank" HREF="http://www.gtalkprofile.com/">Here.</p>
<p></a>There is a world map on the homepage where  we can see  the countries with google talk users who are registered with gtalk profile. We can zoom on the countries  and see which states or city the google talk users are located. There are points on the map to represent  different countries, states/provinces, or cities/towns. When we click a point on the map  we can see  the users at that location.  We can also use the search box to even further narrow your search.</p>
<p>In order to  use the service  we should have  a gtalk profile of your own. The best part    about this service is that our privacy is not compromised as your google talk ID is never revealed, any member can  contact us if only  we       wish to. To talk to other members  we have to add them to our profile as private or public friend, once we do that a notice is sent to other person  requesting their permission to be added as our friend and we will only be able to see their google talk ID if and only if they accept.</p>
<p>This service is available in more languages apart from english.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dudechandan.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dudechandan.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dudechandan.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dudechandan.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dudechandan.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dudechandan.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dudechandan.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dudechandan.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dudechandan.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dudechandan.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dudechandan.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dudechandan.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dudechandan.wordpress.com&blog=535816&post=8&subd=dudechandan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dudechandan.wordpress.com/2006/11/14/gtalk-profile/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/34617db19fd1103253bffecce39446d3?s=96&#38;d=identicon" medium="image">
			<media:title type="html">dudechandan</media:title>
		</media:content>
	</item>
		<item>
		<title>Visual Task Tips</title>
		<link>http://dudechandan.wordpress.com/2006/11/13/visual-task-tips/</link>
		<comments>http://dudechandan.wordpress.com/2006/11/13/visual-task-tips/#comments</comments>
		<pubDate>Mon, 13 Nov 2006 13:10:03 +0000</pubDate>
		<dc:creator>Chandan</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://dudechandan.wordpress.com/2006/11/13/visual-task-tips/</guid>
		<description><![CDATA[Visual Task Tips is a lightweight shell enhancement utility. It provides thumbnail preview image for each task in the Windows Taskbar, as seen in the upcoming Microsoft Windows Vista.



Features:
Simple: Visual Task Tips is a simple utility. Just download and install it.
Useful: By using Visual Task Tips you can significantly increase your productivity.
Free: Visual Task Tips [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dudechandan.wordpress.com&blog=535816&post=5&subd=dudechandan&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Visual Task Tips is a lightweight shell enhancement utility. It provides thumbnail preview image for each task in the Windows Taskbar, as seen in the upcoming Microsoft Windows Vista.</p>
<p><span id="more-5"></span><a href="http://dudechandan.files.wordpress.com/2006/11/visual-task-tips.jpg" title="VisualTaskTips"></p>
<p style="text-align:center;"><img src="http://dudechandan.files.wordpress.com/2006/11/visual-task-tips.jpg" alt="VisualTaskTips" /></p>
<p></a></p>
<p><strong>Features:</strong><br />
<em>Simple:</em> Visual Task Tips is a simple utility. Just download and install it.<br />
<em>Useful:</em> By using Visual Task Tips you can significantly increase your productivity.<br />
<em>Free:</em> Visual Task Tips is absolutely free for non-commercial use.</p>
<p>NOTE: Windows XP is minimum requirement to run Visual Task Tips.</p>
<p>Download the visual task tips <a href="http://www.visualtasktips.com/download.php" title="VisualTaskTips" target="_blank">Here.</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/dudechandan.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/dudechandan.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/dudechandan.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/dudechandan.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/dudechandan.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/dudechandan.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/dudechandan.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/dudechandan.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/dudechandan.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/dudechandan.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/dudechandan.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/dudechandan.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=dudechandan.wordpress.com&blog=535816&post=5&subd=dudechandan&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://dudechandan.wordpress.com/2006/11/13/visual-task-tips/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/34617db19fd1103253bffecce39446d3?s=96&#38;d=identicon" medium="image">
			<media:title type="html">dudechandan</media:title>
		</media:content>

		<media:content url="http://dudechandan.files.wordpress.com/2006/11/visual-task-tips.jpg" medium="image">
			<media:title type="html">VisualTaskTips</media:title>
		</media:content>
	</item>
	</channel>
</rss>