<?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/"
	>

<channel>
	<title>Loginworks Blog</title>
	<atom:link href="http://www.loginworks.com/blog/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.loginworks.com/blog</link>
	<description>Team Loginworks to rest of the world</description>
	<lastBuildDate>Wed, 19 May 2010 06:17:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to delete default minimize and maximize button of window using c#.</title>
		<link>http://www.loginworks.com/blog/index.php/2010/05/18/how-to-delete-minimize-and-maximize-button-from-window-wpf/</link>
		<comments>http://www.loginworks.com/blog/index.php/2010/05/18/how-to-delete-minimize-and-maximize-button-from-window-wpf/#comments</comments>
		<pubDate>Tue, 18 May 2010 11:43:11 +0000</pubDate>
		<dc:creator>Neeraj</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[How to delete default minimize and maximize button of window using c#]]></category>

		<guid isPermaLink="false">http://www.loginworks.com/blog/?p=190</guid>
		<description><![CDATA[Add namespaces : using System.Windows.Interop; using System.Runtime.InteropServices; 
public Window1()
{
InitializeComponent();
}
private void Window_Loaded(object sender, RoutedEventArgs e)
{
RemoveControlBoxes();
}
[DllImport("User32.dll", EntryPoint = "GetWindowLong")]
private extern static Int32 GetWindowLongPtr(IntPtr hWnd, Int32 nIndex);
[DllImport("User32.dll", EntryPoint = "SetWindowLong")]
private extern static Int32 SetWindowLongPtr(IntPtr hWnd, Int32 nIndex, Int32 dwNewLong);
private const Int32 GWL_STYLE = -16;
private void RemoveControlBoxes()
{
IntPtr hWnd = new WindowInteropHelper(this).Handle;
long WindowLong = GetWindowLongPtr(hWnd, GWL_STYLE);
WindowLong = WindowLong &#38; -131073 [...]]]></description>
			<content:encoded><![CDATA[<p>Add namespaces :<span style="font-size: 10pt;color: blue;font-family: 'Verdana','sans-serif'"><span style="font-size: x-small"><span style="font-family: Verdana,Arial,Helvetica,sans-serif"> using</span></span></span><span style="font-size: 10pt;font-family: 'Verdana','sans-serif'"><span style="font-size: x-small"><span style="font-family: Verdana,Arial,Helvetica,sans-serif"> System.Windows.Interop; </span></span></span><span style="font-size: 10pt;color: blue;font-family: 'Verdana','sans-serif'"><span style="font-size: x-small"><span style="font-family: Verdana,Arial,Helvetica,sans-serif">using</span></span></span><span style="font-size: 10pt;font-family: 'Verdana','sans-serif'"><span style="font-size: x-small"><span style="font-family: Verdana,Arial,Helvetica,sans-serif"> System.Runtime.InteropServices; </span></span></span></p>
<p>public Window1()<br />
{<br />
InitializeComponent();<br />
}</p>
<p>private void Window_Loaded(object sender, RoutedEventArgs e)<br />
{<br />
RemoveControlBoxes();<br />
}</p>
<p>[DllImport("User32.dll", EntryPoint = "GetWindowLong")]<br />
private extern static Int32 GetWindowLongPtr(IntPtr hWnd, Int32 nIndex);</p>
<p>[DllImport("User32.dll", EntryPoint = "SetWindowLong")]<br />
private extern static Int32 SetWindowLongPtr(IntPtr hWnd, Int32 nIndex, Int32 dwNewLong);</p>
<p>private const Int32 GWL_STYLE = -16;<br />
private void RemoveControlBoxes()<br />
{<br />
IntPtr hWnd = new WindowInteropHelper(this).Handle;<br />
long WindowLong = GetWindowLongPtr(hWnd, GWL_STYLE);<br />
WindowLong = WindowLong &amp; -131073 &amp; -65537;<br />
SetWindowLongPtr(hWnd, GWL_STYLE, Convert.ToInt32(WindowLong));<br />
}</p>
<p><img src="/Users/Neeraj/Desktop/Window1.jpg" alt="" /></p>
<div><table border=0 bgcolor=#ffffff> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fwww.loginworks.com%2Fblog%2Findex.php%2F2010%2F05%2F18%2Fhow-to-delete-minimize-and-maximize-button-from-window-wpf%2F&amp;t=How+to+delete+default+minimize+and+maximize+button+of+window+using+c%23.&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http%3A%2F%2Fwww.loginworks.com%2Fblog%2Findex.php%2F2010%2F05%2F18%2Fhow-to-delete-minimize-and-maximize-button-from-window-wpf%2F&amp;title=How+to+delete+default+minimize+and+maximize+button+of+window+using+c%23.&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=How+to+delete+default+minimize+and+maximize+button+of+window+using+c%23.;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=square></script></td> <td><script type="text/javascript"> var fbShare = {url: 'http://www.loginworks.com/blog/index.php/2010/05/18/how-to-delete-minimize-and-maximize-button-from-window-wpf/',size:'large'}</script><script type="text/javascript" src="http://widgets.fbshare.me/files/fbshare.js"></script></td></table></div><!-- Generated by Digg Digg plugin, 
    Author : Yong Mook Kim
    Website : http://www.mkyong.com/blog/digg-digg-wordpress-plugin/
	-->]]></content:encoded>
			<wfw:commentRss>http://www.loginworks.com/blog/index.php/2010/05/18/how-to-delete-minimize-and-maximize-button-from-window-wpf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Communication management is the new mantra for any business success.</title>
		<link>http://www.loginworks.com/blog/index.php/2010/05/06/communication-management-is-the-new-mantra-for-any-business-success/</link>
		<comments>http://www.loginworks.com/blog/index.php/2010/05/06/communication-management-is-the-new-mantra-for-any-business-success/#comments</comments>
		<pubDate>Thu, 06 May 2010 11:25:04 +0000</pubDate>
		<dc:creator>preeti</dc:creator>
				<category><![CDATA[Communication]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[TaskTrek]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[Workplace communication]]></category>

		<guid isPermaLink="false">http://www.loginworks.com/blog/?p=183</guid>
		<description><![CDATA[There is something called a communication and document management software that can help evade problem that every manager faces in work life. Tasktrek is one such recommended software that helps simplify work, encourages seamless communication, formulates standards or templates for team members to follow, minimizes communication channels to cut the clutter and keeps you updated anytime and anywhere. Other basics such as delegation of task, monitoring and reporting are other important in-built tools of this software.]]></description>
			<content:encoded><![CDATA[<p><strong>Communication management is the new mantra for any business success. </strong>It is only now that companies across sectors have started to realize. Hence, the new Blackberry and the sleek branded laptop with internet connection bestowed on you. It may seem to you that work is only increasing day by day and the supervision is getting tighter but actually, it is communication management that has taken over the enormity of work.</p>
<p>Let me explain this to you. Any entrepreneur, CEO or MD of a company would want to grow business exponentially through expansion and resource management. In the process, the work only gets obscene and therefore one would find project managers or group leads or team leads managing beyond their capacities, clients more than 10 or specialists more than 20 at times. That makes it 30 business relationships to manage. We all know it is not humanly possible for one person to run the show this way, delegation is important. Once work is delegated, monitoring is important. Likewise, managing resources, clients, documents and mainly the task or project in hand to make the business successful is something every manager struggles to cope with in work life.</p>
<p>With your latest acquisition of your gadgets and gizmos your 10 hours at office have now increased to 16 (perhaps) and taken your weekends too. Oh boy! What a life? You may think. Then again, you are happy because you have something to flaunt in your social circle which you probably wouldn’t have invested on otherwise.</p>
<p>At the end of the day, despite of all the luxuries your company has showered on you, what you are taking back home is Stress.</p>
<p>Have you ever wondered why? The answer to this is communication management. No matter how great interpersonal skills you may have but to manage, organize, discipline, delegate, monitor, track is not a ball game. Gadgets and gizmos have their limitations and too many of them only add to clutter. You need technology that is far superior to bridge communication and grow relationships.</p>
<p>With a realization of this basic understanding, half your stress will be gone. Really!</p>
<p>Communicate. Organize. Information. Three important rules of any business game.</p>
<p>If there is no communication, lack of communication or miscommunication, you will Assume (make an ass of you and me).</p>
<p>If there is free will to organize data or style of work, you will lose track and information.</p>
<p>Information, either excessive or scattered can bombard you and leave you in a dilemma</p>
<p>In my many years of work life, nothing has changed. There is clutter, too much information, different mind sets, miscommunication, wastage of time and more. Probably, in my next job I will see it happening all again.</p>
<p>I say stop. There is something called a communication and document management software that can help evade problem that every manager faces in work life. Tasktrek is one such recommended software that helps simplify work, encourages seamless communication, formulates standards or templates for team members to follow, minimizes communication channels to cut the clutter and keeps you updated anytime and anywhere. Other basics such as delegation of task, monitoring and reporting are other important in-built tools of this software.</p>
<p>I have not given up my Blackberry or laptop yet. The day this new age technology will spread its wings in the Indian business scenarios, there will be an environment friendly and stress free environment for sure. It is communication which ties in people, projects and fate of any business.</p>
<p>Preeti Juneja</p>
<p>Communications Consultant</p>
<div><table border=0 bgcolor=#ffffff> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fwww.loginworks.com%2Fblog%2Findex.php%2F2010%2F05%2F06%2Fcommunication-management-is-the-new-mantra-for-any-business-success%2F&amp;t=Communication+management+is+the+new+mantra+for+any+business+success.&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http%3A%2F%2Fwww.loginworks.com%2Fblog%2Findex.php%2F2010%2F05%2F06%2Fcommunication-management-is-the-new-mantra-for-any-business-success%2F&amp;title=Communication+management+is+the+new+mantra+for+any+business+success.&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=Communication+management+is+the+new+mantra+for+any+business+success.;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=square></script></td> <td><script type="text/javascript"> var fbShare = {url: 'http://www.loginworks.com/blog/index.php/2010/05/06/communication-management-is-the-new-mantra-for-any-business-success/',size:'large'}</script><script type="text/javascript" src="http://widgets.fbshare.me/files/fbshare.js"></script></td></table></div><!-- Generated by Digg Digg plugin, 
    Author : Yong Mook Kim
    Website : http://www.mkyong.com/blog/digg-digg-wordpress-plugin/
	-->]]></content:encoded>
			<wfw:commentRss>http://www.loginworks.com/blog/index.php/2010/05/06/communication-management-is-the-new-mantra-for-any-business-success/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Successfully handle a client</title>
		<link>http://www.loginworks.com/blog/index.php/2009/12/18/successfully-handle-a-client/</link>
		<comments>http://www.loginworks.com/blog/index.php/2009/12/18/successfully-handle-a-client/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 15:15:32 +0000</pubDate>
		<dc:creator>dheerajjuneja</dc:creator>
				<category><![CDATA[Communication]]></category>
		<category><![CDATA[communicate]]></category>
		<category><![CDATA[Project Management]]></category>
		<category><![CDATA[TaskTrek]]></category>

		<guid isPermaLink="false">http://www.loginworks.com/blog/index.php/2009/12/18/successfully-handle-a-client/</guid>
		<description><![CDATA[This question popups so many times that even 10k answers won&#8217;t be sufficient. I will only say: Document everything that you communicate with your client and yes, communicate with your client.
Communication is the best possible remedy to NOT spoiling your project and relationships with your client.
Points that we follow at work:
1. Atleast reply to your [...]]]></description>
			<content:encoded><![CDATA[<p>This question popups so many times that even 10k answers won&#8217;t be sufficient. I will only say: Document everything that you communicate with your client and yes, communicate with your client.</p>
<p>Communication is the best possible remedy to NOT spoiling your project and relationships with your client.</p>
<p>Points that we follow at work:<br />
1. Atleast reply to your client with &#8220;Ok&#8221; to every email.<br />
2. Document everything, a great tool to help you document everything is TaskTrek here: <a title="TaskTrek: Commnication Management (No click)" href="http://www.loginworks.com/blog/go.php?http://www.tasktrek.in">http://www.tasktrek.in</a> it helps you by taking out the obvious out of the way.<br />
3. Teach your team members to communicate with you, don&#8217;t just train them, train even their subconscious mind to communicate.<br />
4. Hire good resources, even if they cost more. You won&#8217;t make much money initially, but then when your client&#8217;s appreciate your work, they will bring the cash flow with them.<br />
5. Keep in touch with your client, believe me this is the second best thing you can do, next only to to doing the best job.</p>
<p>Regards,<br />
Dheeraj Juneja</p>
<div><table border=0 bgcolor=#ffffff> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fwww.loginworks.com%2Fblog%2Findex.php%2F2009%2F12%2F18%2Fsuccessfully-handle-a-client%2F&amp;t=Successfully+handle+a+client&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http%3A%2F%2Fwww.loginworks.com%2Fblog%2Findex.php%2F2009%2F12%2F18%2Fsuccessfully-handle-a-client%2F&amp;title=Successfully+handle+a+client&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=Successfully+handle+a+client;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=square></script></td> <td><script type="text/javascript"> var fbShare = {url: 'http://www.loginworks.com/blog/index.php/2009/12/18/successfully-handle-a-client/',size:'large'}</script><script type="text/javascript" src="http://widgets.fbshare.me/files/fbshare.js"></script></td></table></div><!-- Generated by Digg Digg plugin, 
    Author : Yong Mook Kim
    Website : http://www.mkyong.com/blog/digg-digg-wordpress-plugin/
	-->]]></content:encoded>
			<wfw:commentRss>http://www.loginworks.com/blog/index.php/2009/12/18/successfully-handle-a-client/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Key to success &#8211; effective communication management</title>
		<link>http://www.loginworks.com/blog/index.php/2009/11/06/key-to-success-effective-communication-management/</link>
		<comments>http://www.loginworks.com/blog/index.php/2009/11/06/key-to-success-effective-communication-management/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 13:17:19 +0000</pubDate>
		<dc:creator>dheerajjuneja</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Communication]]></category>
		<category><![CDATA[Communication Management]]></category>
		<category><![CDATA[Information Management]]></category>
		<category><![CDATA[Resource Management]]></category>
		<category><![CDATA[service provider]]></category>
		<category><![CDATA[TaskTrek]]></category>
		<category><![CDATA[team communication]]></category>
		<category><![CDATA[Team Managment]]></category>
		<category><![CDATA[Workplace communication]]></category>

		<guid isPermaLink="false">http://www.loginworks.com/blog/?p=170</guid>
		<description><![CDATA[
In today&#8217;s world when people can communication through all sorts of media, chat clients, emails, social networks, telephones and what not, there is a need to bring all communication back into one one place. You cannot let the information be scattered all over the place or someone will end up in trouble, either by spending [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>In today&#8217;s world when people can communication through all sorts of media, chat clients, emails, social networks, telephones and what not, there is a need to bring all communication back into one one place. You cannot let the information be scattered all over the place or someone will end up in trouble, either by spending hours to look for what was agreed or biting the bullet and doing what was NOT agreed upon just because they cannot find the communication anywhere. Larger the projects, larger the penalty.</p>
<p>There can be no doubt as to the critical importance of effective communication management in terms of successfully facilitating not only the ultimate success of any particular project, but the meeting of criteria as far as planning, cost and deadlines are concerned. Most project managers would admit that around eighty percent of their time is spent communicating in one form or another with the various members and groups within the project team.</p>
<p>This means that a project manager has to manage communications effectively before being able to organize the smooth and efficient progress of any project. With a greater than ever number of people tending to be involved in large-scale projects and a far more diverse range of methods of communication, this is no small feat. Added to this is the very real probability that many of the related parties advising on or developing aspects of the project might be based many miles apart &#8211; even on different continents.</p>
<p>Another issue which will have to be addressed is the screening of communications, and this may also require a range of means by which data can be screened. Clearly, some communications will be of a more critical nature than others will, and it will be necessary for any communications management program to be capable of prioritizing information and ensuring that it is delivered to the right person, in the right format, and with the appropriate priority handling.</p>
<p>Naturally, it is not simply the collation and screening of communications which will need to be handled effectively, but the distribution of that information to the various parties who will need to be informed. Any project manager may admit to being partially little more than a glorified errand boy, passing notes from one party to another!</p>
<p>However, the complexity and dynamism involved in large scale, international projects can result very easily in breakdowns in communications, and it will be crucial for any project manager to know that the chosen system will be capable of handling multiple streams of information, in multiple formats, delivering that information to the right person, in the right format, and all taking into account the priority for each transmission. It&#8217;s a great deal to expect, but entirely necessary, since the likely success of any project is necessarily reduced the greater the frequency of communications errors, delays or failures. The importance of this issue makes the selection of software programs a fundamental issue in managing any project, especially a large-scale one.</p>
<p>Today we bring such a solution for people who would like everything back in one place, not only for project management, but for communication management, information management and once again be able to find everything in one place, which is simple enough to search.</p>
<p>A lot of tools are available, but they are far more complicated than what a small company would need, they only need a simple solution which brings the information required by any team member accessible when they need. Cut down on relying on emails to communicate and cut down on time spent on making people remind of what was already communicated to them.</p>
<p>The solution is going to be available very soon, i.e. by end of december, 2009. We shall keep updating this blog with the progress&#8230;</p></div>
<div><table border=0 bgcolor=#ffffff> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fwww.loginworks.com%2Fblog%2Findex.php%2F2009%2F11%2F06%2Fkey-to-success-effective-communication-management%2F&amp;t=Key+to+success+-+effective+communication+management&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http%3A%2F%2Fwww.loginworks.com%2Fblog%2Findex.php%2F2009%2F11%2F06%2Fkey-to-success-effective-communication-management%2F&amp;title=Key+to+success+-+effective+communication+management&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=Key+to+success+-+effective+communication+management;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=square></script></td> <td><script type="text/javascript"> var fbShare = {url: 'http://www.loginworks.com/blog/index.php/2009/11/06/key-to-success-effective-communication-management/',size:'large'}</script><script type="text/javascript" src="http://widgets.fbshare.me/files/fbshare.js"></script></td></table></div><!-- Generated by Digg Digg plugin, 
    Author : Yong Mook Kim
    Website : http://www.mkyong.com/blog/digg-digg-wordpress-plugin/
	-->]]></content:encoded>
			<wfw:commentRss>http://www.loginworks.com/blog/index.php/2009/11/06/key-to-success-effective-communication-management/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Enable remote connection of Microsoft Sql Express database server.</title>
		<link>http://www.loginworks.com/blog/index.php/2009/11/06/enable-remote-connection-of-microsoft-sql-express-database-server/</link>
		<comments>http://www.loginworks.com/blog/index.php/2009/11/06/enable-remote-connection-of-microsoft-sql-express-database-server/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 05:57:02 +0000</pubDate>
		<dc:creator>jagannath</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.loginworks.com/blog/?p=122</guid>
		<description><![CDATA[Configuration for remote connection of SQL Server(in this example database server instance name is SQLEXPRESS )
Click Start, point to Programs, point to Microsoft SQL Server 2005, point to Configuration Tools, and then click SQL Server Surface Area configuration.

 
 
 
On the SQL Server 2005 Surface Area Configuration page, click Surface Area Configuration for Services and Connections.

 
On the Surface Area Configuration [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Configuration for remote connection of SQL Server(in this example database server instance name is SQLEXPRESS )</strong></p>
<p>Click <strong>Start</strong>, point to <strong>Programs</strong>, point to <strong>Microsoft SQL Server 2005</strong>, point to <strong>Configuration Tools</strong>, and then click <strong>SQL Server Surface Area configuration</strong>.</p>
<p><img class="aligncenter size-full wp-image-172" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/sql1.jpg" alt="sql1" width="598" height="480" /></p>
<p> </p>
<p> </p>
<p> </p>
<p>On the <strong>SQL Server 2005 Surface Area Configuration</strong> page, click <strong>Surface Area Configuration for Services and Connections</strong>.</p>
<p><img class="aligncenter size-full wp-image-128" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/sql2.JPG" alt="sql2" width="669" height="595" /></p>
<p> </p>
<p>On the <strong>Surface Area Configuration for Services and Connections</strong> page, expand <strong>Database Engine.</strong> click <strong>Remote Connections</strong><strong>.</strong></p>
<p><img class="aligncenter size-full wp-image-174" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/sql41.jpg" alt="Sql browser" width="530" height="480" /></p>
<p>click <strong>Local and remote connections</strong>, click <strong>the  Using both TCP/IP and named pipes</strong>, and then click <strong>Apply</strong>.</p>
<p> <img class="aligncenter size-full wp-image-176" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/sql51.jpg" alt="SQL Server 2005 Surface Area Configuration" width="521" height="480" /></p>
<p><strong>Note</strong> Click <strong>OK</strong> when you receive the following message:</p>
<p>Changes to Connection Settings will not take effect until you restart the Database Engine service<span> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in"><span> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in"><span> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in"><span> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in"><span> </span></p>
<ol>
<li>On the <strong>Surface Area Configuration for Services and Connections</strong> page, expand <strong>Database Engine</strong>, click <strong>Service</strong>, click <strong>Stop</strong>, wait until the MSSQLSERVER service stops, and then click <strong>Start</strong> to restart the MSSQLSERVER service.</li>
</ol>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in"><span><img class="aligncenter size-full wp-image-134" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/sql71.jpg" alt="sql7" width="675" height="604" /></span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in"><span> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.25in"><span><img class="aligncenter size-full wp-image-135" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/sql8.jpg" alt="sql8" width="675" height="604" /></span></p>
<p> </p>
<p>On the <strong>Surface Area Configuration for Services and Connections</strong> page, click <strong>SQL Server Browser</strong>, click <strong>Automatic</strong> for <strong>Startup type</strong>, and then click <strong>Apply</strong>.</p>
<p><img class="aligncenter size-full wp-image-136" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/sql9.jpg" alt="sql9" width="676" height="604" /></p>
<p> </p>
<p align="center"><strong>Create exceptions in Windows Firewall</strong></p>
<p>Click <strong>Start</strong>, point to <strong>Programs</strong>, point to <strong>Microsoft SQL Server 2005</strong>, point to <strong>Configuration Tools</strong>, and then click <strong>SQL Server Configuration Manage</strong></p>
<p><img class="aligncenter size-full wp-image-138" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/sql11.jpg" alt="sql11" width="1008" height="630" /></p>
<p> </p>
<p>In SQL Server Configuration Manager, click the <strong>SQL Server (MYSENIORCENTER)</strong> service in the right pane, right-click the instance name in the main window, and then click <strong>Properties</strong></p>
<p><img class="aligncenter size-full wp-image-139" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/sql12.jpg" alt="sql12" width="864" height="540" /></p>
<p>On the <strong>SQL Server (MYSENIORCENTER)</strong> <strong>Properties</strong> page, click the <strong>Service</strong> tab, locate the binary path, and then click <strong>OK</strong></p>
<p><img class="aligncenter size-full wp-image-140" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/sql13.jpg" alt="sql13" width="1160" height="582" /></p>
<p> </p>
<p><img class="aligncenter size-full wp-image-142" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/sql14.jpg" alt="sql14" width="1156" height="609" /></p>
<p> </p>
<p>On the <strong>SQL Server Browser Properties</strong> page, click the <strong>Service</strong> tab, locate the binary path, and then click <strong>OK</strong><strong> </strong></p>
<p><strong><img class="aligncenter size-full wp-image-143" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/sql15.jpg" alt="sql15" width="1155" height="628" /></strong></p>
<p><strong> </strong></p>
<p>Open windows Firewall from Control Panel</p>
<p><img class="aligncenter size-full wp-image-144" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/f1.jpg" alt="f1" width="1008" height="630" /></p>
<p> </p>
<p>Click on add program</p>
<p><img class="aligncenter size-full wp-image-145" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/f2.jpg" alt="f2" width="460" height="531" /></p>
<p><strong>Do the following process </strong></p>
<p><img class="aligncenter size-full wp-image-146" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/f4.jpg" alt="f4" width="1152" height="720" /></p>
<p> </p>
<p><img class="aligncenter size-full wp-image-148" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/l2.jpg" alt="l2" width="460" height="531" /></p>
<p><img class="aligncenter size-full wp-image-149" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/l3.jpg" alt="l3" width="1440" height="900" /></p>
<p> </p>
<p><strong>Creating ODBC data source on Windows XP System </strong></p>
<p><img class="aligncenter size-full wp-image-150" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/O1.jpg" alt="O1" width="1166" height="729" /></p>
<p><img class="aligncenter size-full wp-image-151" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/O2.jpg" alt="O2" width="1152" height="720" /></p>
<p> </p>
<p><img class="aligncenter size-full wp-image-153" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/O3.jpg" alt="O3" width="1008" height="630" /></p>
<p><img class="aligncenter size-full wp-image-154" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/O4.jpg" alt="O4" width="1008" height="630" /></p>
<p><img class="aligncenter size-full wp-image-155" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/O5.jpg" alt="O5" width="1008" height="630" /></p>
<p><img class="aligncenter size-full wp-image-156" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/O6.jpg" alt="O6" width="1008" height="630" /></p>
<p><img class="aligncenter size-full wp-image-157" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/O7.jpg" alt="O7" width="1008" height="630" /></p>
<p><img class="aligncenter size-full wp-image-158" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/O8.jpg" alt="O8" width="1008" height="630" /></p>
<p><img class="aligncenter size-full wp-image-159" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/O9.jpg" alt="O9" width="1008" height="630" /></p>
<p><img class="aligncenter size-full wp-image-160" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/O10.jpg" alt="O10" width="1440" height="900" /></p>
<p><img class="aligncenter size-full wp-image-161" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/O101.jpg" alt="O10" width="1440" height="900" /></p>
<p><img class="aligncenter size-full wp-image-162" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/O11.jpg" alt="O11" width="1008" height="630" /></p>
<p><img class="aligncenter size-full wp-image-163" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/O12.jpg" alt="O12" width="1008" height="630" /></p>
<p><img class="aligncenter size-full wp-image-164" src="http://www.loginworks.com/blog/wp-content/uploads/2009/11/O13.jpg" alt="O13" width="1008" height="630" /></p>
<div><table border=0 bgcolor=#ffffff> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fwww.loginworks.com%2Fblog%2Findex.php%2F2009%2F11%2F06%2Fenable-remote-connection-of-microsoft-sql-express-database-server%2F&amp;t=Enable+remote+connection+of+Microsoft+Sql+Express+database+server.&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http%3A%2F%2Fwww.loginworks.com%2Fblog%2Findex.php%2F2009%2F11%2F06%2Fenable-remote-connection-of-microsoft-sql-express-database-server%2F&amp;title=Enable+remote+connection+of+Microsoft+Sql+Express+database+server.&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=Enable+remote+connection+of+Microsoft+Sql+Express+database+server.;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=square></script></td> <td><script type="text/javascript"> var fbShare = {url: 'http://www.loginworks.com/blog/index.php/2009/11/06/enable-remote-connection-of-microsoft-sql-express-database-server/',size:'large'}</script><script type="text/javascript" src="http://widgets.fbshare.me/files/fbshare.js"></script></td></table></div><!-- Generated by Digg Digg plugin, 
    Author : Yong Mook Kim
    Website : http://www.mkyong.com/blog/digg-digg-wordpress-plugin/
	-->]]></content:encoded>
			<wfw:commentRss>http://www.loginworks.com/blog/index.php/2009/11/06/enable-remote-connection-of-microsoft-sql-express-database-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Communication management at work</title>
		<link>http://www.loginworks.com/blog/index.php/2009/11/05/communication-management/</link>
		<comments>http://www.loginworks.com/blog/index.php/2009/11/05/communication-management/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 08:27:05 +0000</pubDate>
		<dc:creator>dheerajjuneja</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Communication]]></category>
		<category><![CDATA[Communication Management]]></category>
		<category><![CDATA[team communication]]></category>
		<category><![CDATA[Workplace communication]]></category>

		<guid isPermaLink="false">http://www.loginworks.com/blog/?p=117</guid>
		<description><![CDATA[Communication is an essential process in the world in which we all live on a day to day basis (our work place). It is difficult to master, but essential to make a good effort in achieving. Communication is essentially the effective and complete exchange of information from one person or persons in team to other [...]]]></description>
			<content:encoded><![CDATA[<p><span>Communication is an essential process in the world in which we all live on a day to day basis (our work place). It is difficult to master, but essential to make a good effort in achieving. Communication is essentially the effective and complete exchange of information from one person or persons in team to other person or persons. Communication on an effective team starts from day one, from the moment a project is thought over, assigned, and continues on a daily basis, if not hourly basis, throughout the life cycle of a project, once the project is complete it also becomes essential to archive all old communication as it might become vital in dicision making for future work. </span></p>
<p><span>Effective communication means that each and every project team member should be fully apprised of the project status (at least on a macro level) at all times. Some detailed information may not be shared with all team members if they are very individual specific, but the big items should always be shared among the entire team. Communication can also take the form of regular updates to the assigning party as to status of the project and/or specific components of it.</span></p>
<p><span>Today a lot of tools exists which can help you and your team manage communication and effectivly be able to access that information whenever the need arrise.<br />
</span></p>
<p>We have checked and used a lot of tools in past, i shall write about our experience with different tools here soon.</p>
<div><table border=0 bgcolor=#ffffff> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fwww.loginworks.com%2Fblog%2Findex.php%2F2009%2F11%2F05%2Fcommunication-management%2F&amp;t=Communication+management+at+work&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http%3A%2F%2Fwww.loginworks.com%2Fblog%2Findex.php%2F2009%2F11%2F05%2Fcommunication-management%2F&amp;title=Communication+management+at+work&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=Communication+management+at+work;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=square></script></td> <td><script type="text/javascript"> var fbShare = {url: 'http://www.loginworks.com/blog/index.php/2009/11/05/communication-management/',size:'large'}</script><script type="text/javascript" src="http://widgets.fbshare.me/files/fbshare.js"></script></td></table></div><!-- Generated by Digg Digg plugin, 
    Author : Yong Mook Kim
    Website : http://www.mkyong.com/blog/digg-digg-wordpress-plugin/
	-->]]></content:encoded>
			<wfw:commentRss>http://www.loginworks.com/blog/index.php/2009/11/05/communication-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SaaS &#8211; Software as a service</title>
		<link>http://www.loginworks.com/blog/index.php/2009/11/05/saas-software-as-a-service/</link>
		<comments>http://www.loginworks.com/blog/index.php/2009/11/05/saas-software-as-a-service/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 08:08:18 +0000</pubDate>
		<dc:creator>dheerajjuneja</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Managed software]]></category>
		<category><![CDATA[SaaS]]></category>
		<category><![CDATA[Software as a service]]></category>

		<guid isPermaLink="false">http://www.loginworks.com/blog/?p=115</guid>
		<description><![CDATA[Software As A Service (SaaS)
SaaS refers to software that is accessed via a web browser and is paid on a subscription basis. Different from the traditional model where a customer buys a license to software and assumes ownership for its maintenance and installation, SaaS presents significant advantages to the customer.
SaaS is a new way of [...]]]></description>
			<content:encoded><![CDATA[<h3>Software As A Service (SaaS)</h3>
<p>SaaS refers to software that is accessed via a web browser and is paid on a subscription basis. Different from the traditional model where a customer buys a license to software and assumes ownership for its maintenance and installation, SaaS presents significant advantages to the customer.</p>
<p>SaaS is a new way of using software. There are no hardware, implementation or acquisition costs involved to run the application from the customer&#8217;s side. It&#8217;s the responsibility of the SaaS vendor (us) to manage and run the application with <span>utmost security</span>, performance and reliability.</p>
<p>Since <span>customers pay a subscription</span>, they have <span>immediate access to the new features and functionality</span>. Unlike traditional softwares where upgrades would happen once a year or once in 6 months (with the vendor coming to your office with a CD), the SaaS vendor continuously pushes new updates, fixes to the application, which is immediately accessible by the customer. This reduces the length of time it takes a customer to <span>recognize value</span> from the software.</p>
<p>That being said, all this benefit does not comes without any challenges:</p>
<p><strong>Technical challenges</strong></p>
<p>The traditional enterprise applications available in the marketplace are usually not architected and designed to run on the SaaS platform for the following reasons:</p>
<ul>
<li>They do not have a built-in functionality that is required to support the subscription based hosted service. This functionality includes billing, monitoring, support, and performance related functions.</li>
<li>The data store of the application is not architected and designed to isolate data of multiple tenants [ tenants are group of clients using the service ]</li>
<li>The application is not built to support customization of its user interface, business logic, and database by configuration through the browser in such a way that different tenants within the same hosted instance see different behavior of each of these three layers of the application.</li>
<li>The traditional applications usually do not support security of the sensitive data, which becomes necessary if the application data resides outside the firewall.</li>
<li>The applications are usually not built to scale for a large number of users. The application scalability is important to cater to the load created by users from multiple tenants of the application using the single runtime instance.</li>
</ul>
<p>SaaS is still in its growing years and vendors are gearing towards meeting all these challenges. Not only software companies, even hosting companies are growing up and facing the challenges of huge amount of data getting transfered to and fro.</p>
<p>Looking from the past experience, its very clear that we will get solid solutions built and provided to clients in near future.</p>
<div><table border=0 bgcolor=#ffffff> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fwww.loginworks.com%2Fblog%2Findex.php%2F2009%2F11%2F05%2Fsaas-software-as-a-service%2F&amp;t=SaaS+-+Software+as+a+service&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http%3A%2F%2Fwww.loginworks.com%2Fblog%2Findex.php%2F2009%2F11%2F05%2Fsaas-software-as-a-service%2F&amp;title=SaaS+-+Software+as+a+service&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=SaaS+-+Software+as+a+service;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=square></script></td> <td><script type="text/javascript"> var fbShare = {url: 'http://www.loginworks.com/blog/index.php/2009/11/05/saas-software-as-a-service/',size:'large'}</script><script type="text/javascript" src="http://widgets.fbshare.me/files/fbshare.js"></script></td></table></div><!-- Generated by Digg Digg plugin, 
    Author : Yong Mook Kim
    Website : http://www.mkyong.com/blog/digg-digg-wordpress-plugin/
	-->]]></content:encoded>
			<wfw:commentRss>http://www.loginworks.com/blog/index.php/2009/11/05/saas-software-as-a-service/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saas &#8211; How it can be beneficial and how to pick up a vendor?</title>
		<link>http://www.loginworks.com/blog/index.php/2009/11/01/saas-how-it-can-be-beneficial-and-how-to-pick-up-a-vendor/</link>
		<comments>http://www.loginworks.com/blog/index.php/2009/11/01/saas-how-it-can-be-beneficial-and-how-to-pick-up-a-vendor/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 17:08:37 +0000</pubDate>
		<dc:creator>dheerajjuneja</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[hosted software]]></category>
		<category><![CDATA[Hosted solution]]></category>
		<category><![CDATA[Managed software]]></category>
		<category><![CDATA[manages service]]></category>
		<category><![CDATA[SaaS]]></category>
		<category><![CDATA[select vendor]]></category>
		<category><![CDATA[service provider]]></category>
		<category><![CDATA[Software as a service]]></category>

		<guid isPermaLink="false">http://www.loginworks.com/blog/?p=112</guid>
		<description><![CDATA[The whole idea of going SaaS is to free yourself from the worries of managing a software, a team which actually manages the software, the IT infrastructure that runs your software and the team that manages that infrastructure.
SaaS can be lucrative for companies who are not technology centric and technology centric alike, with a difference [...]]]></description>
			<content:encoded><![CDATA[<p>The whole idea of going SaaS is to free yourself from the worries of managing a software, a team which actually manages the software, the IT infrastructure that runs your software and the team that manages that infrastructure.</p>
<p>SaaS can be lucrative for companies who are not technology centric and technology centric alike, with a difference that technology centric companies can still do with using their existing infrastructure to run the application. The decision they need to make is that are their current resources free enough to maintain the software and if they are that free, do these companies even need to carry that burden?</p>
<p>Resources do not come cheap, while a well designed SaaS and a good company running that application can actually come at the fraction of that cost.</p>
<p>To pick up a SaaS vendor you need to ask the following questions:</p>
<ul>
<li>Is our data safe with that company?</li>
<li>Are they capable enough to sustain their business?</li>
<li>Do they have the infrastructure to keep your data available?</li>
<li>Do they have enough experience and staff to manage your data, for you?</li>
<li>What kind of support do they provide?</li>
<li>Are they open when you are?</li>
<li>Is there a setup fee for getting started?</li>
<li>Do they offer customization of the product for you?</li>
<li>Will the prices remain same in future?</li>
<li>What about the security of the data?</li>
<li>What is their data backup policy?</li>
<li>Do they provide option to integrate their solution into your existing applications, if yes how much do they charge?</li>
<li>Is there a SLA? What happens if the SLA is not met?</li>
<li>Whats the exit policy if tomorrow you do not want to continue their service?</li>
<li>Do they have a backup plan, if their server(s) fails?</li>
<li>How well do their support staff understands the applications?</li>
<li>Can they help people or they can only understand the application from the IT perspective?</li>
<li>Who manages their infrastructure? Do they do it themselves or they have a professional team to manage and ensure smooth operations?</li>
<li>What kind of compatability features do thier solution offers?</li>
<li>Is the solution easy to use, do they provide training, if yes, does it costs, if yes, how much?</li>
</ul>
<p>Well these are some questions that will get you started to dig deep into what the vendor has to offer. Once you have tested the vendor and you are comfortable with working with them, it does makes a lot of sense to go SaaS way:</p>
<p><strong>Minimal Initial Investment</strong></p>
<p>Generally SaaS applications come with Pay-As-You-Go price model i.e. you pay as much as you use, it can&#8217;t get better than this. You start up with little to no expense, and pay only for the resources you use. When you start using the application seriously and start to depend on that application, it means the application is of a great value and then you should be paying for the hard work the company has put in to make the application come close to your business and is helping you grow. Even then the solutions generally present in the market are far more economic than building and maintaining one for your own personal use.</p>
<p><strong>Reduced operations cost</strong></p>
<p>You don&#8217;t have to employ people to manage servers, good resource comes at a premium and good people will be sitting idle 75% of their time because a good person knows who to get the job done in that time. On the other hand, cheap resource generally means you will be sitting idle 75% of the time without the data that application is supposed to provide you.</p>
<p><strong>Available anywhere</strong></p>
<p>These applications are generally designed to be available through a general web browser, which means your data is available to you 24*7 without you being stuck in office for that long. It makes a huge difference in today&#8217;s world that information be accessible to you when you need it. Ask your vendor, how do they handle small screen mobile devices?</p>
<p>I will continue from here in the next part of this blog, I hope this helps you to get a basic idea of how it can be helpful for you to go SaaS and how to choose the correct vendor to be a part of your business.</p>
<div><table border=0 bgcolor=#ffffff> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fwww.loginworks.com%2Fblog%2Findex.php%2F2009%2F11%2F01%2Fsaas-how-it-can-be-beneficial-and-how-to-pick-up-a-vendor%2F&amp;t=Saas+-+How+it+can+be+beneficial+and+how+to+pick+up+a+vendor%3F&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http%3A%2F%2Fwww.loginworks.com%2Fblog%2Findex.php%2F2009%2F11%2F01%2Fsaas-how-it-can-be-beneficial-and-how-to-pick-up-a-vendor%2F&amp;title=Saas+-+How+it+can+be+beneficial+and+how+to+pick+up+a+vendor%3F&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=Saas+-+How+it+can+be+beneficial+and+how+to+pick+up+a+vendor%3F;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=square></script></td> <td><script type="text/javascript"> var fbShare = {url: 'http://www.loginworks.com/blog/index.php/2009/11/01/saas-how-it-can-be-beneficial-and-how-to-pick-up-a-vendor/',size:'large'}</script><script type="text/javascript" src="http://widgets.fbshare.me/files/fbshare.js"></script></td></table></div><!-- Generated by Digg Digg plugin, 
    Author : Yong Mook Kim
    Website : http://www.mkyong.com/blog/digg-digg-wordpress-plugin/
	-->]]></content:encoded>
			<wfw:commentRss>http://www.loginworks.com/blog/index.php/2009/11/01/saas-how-it-can-be-beneficial-and-how-to-pick-up-a-vendor/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>LoginWorks  Vs  Great White Water</title>
		<link>http://www.loginworks.com/blog/index.php/2009/09/30/loginworks-vs-greatwhite-water/</link>
		<comments>http://www.loginworks.com/blog/index.php/2009/09/30/loginworks-vs-greatwhite-water/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 14:29:21 +0000</pubDate>
		<dc:creator>Neeraj</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.loginworks.com/blog/?p=103</guid>
		<description><![CDATA[Friday, October 2nd:

Freshens up, shaves (if required) and reaches LoginWorks. Sa re ke sa re ga ma ko le kar gaate chalein…
A gang of 7 people will board the scorpio at around 5.00 a.m. Everybody is expected to travel light, as everyone will be carrying their own luggage so please take back packs and NOT [...]]]></description>
			<content:encoded><![CDATA[<p><em><strong>F</strong><strong>riday, October 2</strong><sup><strong>nd</strong></sup><strong>:</strong></em></p>
<ol>
<li><em>Freshens up, shaves (if required) and reaches LoginWorks. Sa re ke sa re ga ma ko le kar gaate chalein…</em></li>
<li><strong><em>A gang of 7 people will board the scorpio at around 5.00 a.m</em></strong><em>. Everybody is expected to <strong>travel light</strong>, as everyone will be carrying their own luggage so please take <strong>back packs and NOT suitcases or hard top luggage</strong>… Koi coolie nahin hoga, toh baad mein mat kahna ke bataya nahin…</em></li>
<li><em>Ab luggage kee baat ho hee rahi hain toh, kuchh details abhe hee le lo…<strong>Checklist</strong> kinds</em></li>
<p><em> a. </em><em>As <strong>days are likely to be bright, shining, and pleasant</strong>, we need not worry much about the day times clothes…It cannot be more hotter than Dilli kee garmi…Kyun?</em><br />
<em> b. </em><strong><em>Toiletries</em></strong><em> such as soaps, tooth-brush/paste, shaving kits, Towel etc&#8230; I won’t go into details </em><em>K</em><br />
<em> c. </em><strong><em>Nights</em></strong><em>…Ahan… Woh bhee camp mein! Daring group, I must say. But, woh kya thha..darr kea age..kya thee…Jeet?  Yesss…</em><br />
<em> d. </em><em> Do carry<strong> sunscreen lotion</strong>; tanning ho gayee nahi toh photo mein Sri Lankan lagogey.</em><br />
<em> e. </em><em>Carry <strong>T-shirts and shorts (preferably synthetic) for rafting</strong>; non-synthetic clothes, when wet becomes  heavier.Helmets and life-jackets will be available at the camp itself.</em><br />
<em> f. </em><strong><em>Retainers for spectacles</em></strong><em>; the rapids in the ganges throw you up and down so le lena…Main seriously advise kar raha    hoon.</em><br />
<em> g. </em><strong><em>Camera and batteries</em></strong><em> to capture the Kodak moments </em><em>J Not sure about the electricity facilities over their so keep your mobile phones fully charged and use judiciously so that they last long. Carry additional mobile battery if you really want to stay connected with rest.</em><br />
<em> h. </em><strong><em>Flashlights </em></strong><em>(hand held), torches etc. Agar yeh nahin, toh Happy DentWhite <img src='http://www.loginworks.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </em><br />
<em> i. </em><strong><em>Personal medication</em></strong><em>;  carry generic first-aid box in any case. Adventure sport kar rahein hain toh first-aid toh  chahiye hee na.</em><br />
<em> j. </em><em>Last but not the least; feel free to experiment and <strong>carry whatever funky, jazzy, sporty outfits, caps, sunglasses,etc. you want to carry</strong>. After all, first, it’s an outing, second, it’s just our team, third, it’s an adventure  trip,  fourth, we are young, fifth, pictures fundu aayengee …</em></p>
<li> <em>The <strong>Car will be having a music system </strong>as we need </em><em>J</em></li>
<li> <em>Stop for <strong>breakfast at some highway dhaba</strong> to have some <strong>paranthas with loads of makhan</strong>, followed by a especial<strong>lassi/chai</strong>…uske bina kaise chalega yaar..hamara petrol hain na woh…</em></li>
<li><em>All through the journey, we can munch <strong>snacks</strong> if someone still has the appetite and/or needs more fuel to continue <strong>singing songs</strong> on popular demand….</em></li>
<li> <em>Reach the <strong>Jungle/Beach camp at around 11.00 a.m.</strong> in the morning…</em></li>
<li><strong><em>Take charge of your tents</em></strong><em> at the camp. Just to make you feel at ease in the middle of the night where animals can wander, each tent will be shared by 2 people.</em></li>
<li> <strong><em>Freshen up</em></strong><em> and get together …</em></li>
<li> <strong><em>Lunch Time: Indian vegetarian/Non- vegetarian </em></strong><em>meals; shaadi types – paneer,chicken varieties…</em></li>
<li><em>Khane peene key baad toh…neend…oye….nahin…koi sona-wona nahin hain…. Where is the time to sleep, when there is so little time to play..so back to <strong>another interesting games</strong>….Olympics… Shhhh… Just remember, these are a must to prove that we belong to the team that enjoy challenges…</em></li>
<li><em>Retire for <strong>brief</strong> beauty nap…I’m sure you would need it after a fun-filled day…</em></li>
<li><em>Yahan kuch clear nahihai kya karna hai but ye clear hai k masti karni hai&#8230;.</em></li>
<li> <em>Ab thoda kaam kar lein.?  Set up a <strong>bonfire</strong>, and grill some <strong>tandoori</strong> paneer and chicken tikkas..thoda <strong>peena-sheena </strong>bhee possible hain as long as it is within limits….we don’t want a hangover….have <strong>dinner (finally, non vegetarian stuff too), dance, masti</strong>,  till you crash in your respective beds…</em></li>
<li><em>The night will be dark and silent; sleep well. If you are lucky, you might have a wild animal giving you a wake up call at dusk…Relax. Bhul gaye, Kaun see team se ho.</em></li>
</ol>
<p><em><strong>Saturday, october 3rd:</strong></em></p>
<p><em> 1. </em><em>Freshen up. Ab kids nahin khelengey toh kaun khelega..toh phir ho jaye, ek <strong>Volley-ball ka match?</strong></em><br />
<em> 2. </em><strong><em>Breakfast lag gaya hain</em></strong><em>..Jaldee se aao….phir hamein <strong>rappelling karne hike par jaana hain</strong>..jaldee karo….jaldee… oh haan..no jaldee…ASAP!</em><br />
<em> 3. </em><em>Now, the big one…return and <strong>get dressed for the RAFTING ACTION</strong>!!!</em><br />
<em> 4. </em><strong><em>Briefing session by experts</em></strong><em> as to who, what, and how of rafting before we hit the stream….make sure to listen to each instruction seriously and make sure you follow what is said….</em><br />
<em> 5. </em><em>With mentally and physically all set, we <strong>board respective rafts in groups</strong>.. and set for the truly most memorable experience of our lives…<strong>Greatwhite water rafting in Ganges for about 22 Kms</strong>…Pheww!!!!!</em><br />
<em> 6. </em><em>While we are on rafts in water, we will be part of some <strong>water games</strong> and too…Majaa aayega!</em><br />
<em> 7. </em><em>The <strong>sail will start from the base camp and reach Rishikesh</strong>…</em><br />
<em> 8. </em><em>Ab thoda kaam kar lein.?  Set up a <strong>bonfire</strong>, and grill some <strong>tandoori</strong> paneer and chicken tikkas..thoda <strong>peena-sheena </strong>bhee possible hain as long as it is within limits….we don’t want a hangover….have <strong>dinner (finally, non vegetarian stuff too), dance, masti</strong>,  till you crash in your respective beds…</em><br />
<em> 9. </em><em>The night will be dark and silent; sleep well. If you are lucky, you might have a wild animal giving you a wake up call at  dusk…Relax. Bhul gaye, Kaun see team se ho.</em></p>
<p><em> </em></p>
<p><em> </em></p>
<p><em> </em></p>
<p><em> </em></p>
<p><em> </em></p>
<p><strong><em>Sunday, october 4rth:</em></strong></p>
<p><strong><em> </em></strong></p>
<p><em> 1. </em><em>Freshen up. Ab kids nahin khelengey toh kaun khelega..toh phir ho jaye, ek <strong>Volley-ball ka match?</strong></em></p>
<p><em> </em></p>
<p><strong><em>Monday, october 5th:</em></strong></p>
<p><strong><em> </em></strong></p>
<p><em> 1. </em><strong><em>Freshens up, shaves (if required) and reaches LoginWorks</em></strong><em>.</em><br />
<em> 2. </em><strong><em>Join work on Monday by 11.00 morning</em></strong><em>.</em><br />
<em> 3. </em><strong><em>Continue good work, share the moments, and look forward to setting standards in whatever you do, wherever, whenever</em></strong><em>…</em></p>
<p><em> </em></p>
<p><em> </em></p>
<div><table border=0 bgcolor=#ffffff> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fwww.loginworks.com%2Fblog%2Findex.php%2F2009%2F09%2F30%2Floginworks-vs-greatwhite-water%2F&amp;t=LoginWorks++Vs++Great+White+Water&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http%3A%2F%2Fwww.loginworks.com%2Fblog%2Findex.php%2F2009%2F09%2F30%2Floginworks-vs-greatwhite-water%2F&amp;title=LoginWorks++Vs++Great+White+Water&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=LoginWorks++Vs++Great+White+Water;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=square></script></td> <td><script type="text/javascript"> var fbShare = {url: 'http://www.loginworks.com/blog/index.php/2009/09/30/loginworks-vs-greatwhite-water/',size:'large'}</script><script type="text/javascript" src="http://widgets.fbshare.me/files/fbshare.js"></script></td></table></div><!-- Generated by Digg Digg plugin, 
    Author : Yong Mook Kim
    Website : http://www.mkyong.com/blog/digg-digg-wordpress-plugin/
	-->]]></content:encoded>
			<wfw:commentRss>http://www.loginworks.com/blog/index.php/2009/09/30/loginworks-vs-greatwhite-water/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Global Cooling: The Coming Ice Age(Expected)</title>
		<link>http://www.loginworks.com/blog/index.php/2009/09/29/global-cooling-the-coming-ice-ageexpected/</link>
		<comments>http://www.loginworks.com/blog/index.php/2009/09/29/global-cooling-the-coming-ice-ageexpected/#comments</comments>
		<pubDate>Tue, 29 Sep 2009 07:29:09 +0000</pubDate>
		<dc:creator>atul singh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.loginworks.com/blog/?p=88</guid>
		<description><![CDATA[Global cooling youtube video
     var fbShare = {url: 'http://www.loginworks.com/blog/index.php/2009/09/29/global-cooling-the-coming-ice-ageexpected/',size:'large'}]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.loginworks.com/blog/go.php?http://www.youtube.com/watch?v=ttLBqB0qDko" title="(No click)">Global cooling youtube video</a></p>
<div><table border=0 bgcolor=#ffffff> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fwww.loginworks.com%2Fblog%2Findex.php%2F2009%2F09%2F29%2Fglobal-cooling-the-coming-ice-ageexpected%2F&amp;t=Global+Cooling%3A+The+Coming+Ice+Age%28Expected%29+&amp;s=normal' height='80' width='52' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http%3A%2F%2Fwww.loginworks.com%2Fblog%2Findex.php%2F2009%2F09%2F29%2Fglobal-cooling-the-coming-ice-ageexpected%2F&amp;title=Global+Cooling%3A+The+Coming+Ice+Age%28Expected%29+&amp;t=2 ' height='80' width='52' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=Global+Cooling%3A+The+Coming+Ice+Age%28Expected%29+;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=square></script></td> <td><script type="text/javascript"> var fbShare = {url: 'http://www.loginworks.com/blog/index.php/2009/09/29/global-cooling-the-coming-ice-ageexpected/',size:'large'}</script><script type="text/javascript" src="http://widgets.fbshare.me/files/fbshare.js"></script></td></table></div><!-- Generated by Digg Digg plugin, 
    Author : Yong Mook Kim
    Website : http://www.mkyong.com/blog/digg-digg-wordpress-plugin/
	-->]]></content:encoded>
			<wfw:commentRss>http://www.loginworks.com/blog/index.php/2009/09/29/global-cooling-the-coming-ice-ageexpected/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
