<?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>Naru's</title>
	<atom:link href="http://n2canada.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://n2canada.com/blog</link>
	<description>Family, Technology, Life in general</description>
	<lastBuildDate>Sat, 02 Jan 2010 11:13:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Gecko</title>
		<link>http://n2canada.com/blog/archives/gecko</link>
		<comments>http://n2canada.com/blog/archives/gecko#comments</comments>
		<pubDate>Sat, 02 Jan 2010 11:10:50 +0000</pubDate>
		<dc:creator>Navket</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[gecko]]></category>
		<category><![CDATA[jalandhar]]></category>
		<category><![CDATA[winter]]></category>

		<guid isPermaLink="false">http://n2canada.com/blog/?p=270</guid>
		<description><![CDATA[Most people would freak out at the sight of a gecko crawling around their house but actually a gecko is your friend. Geckos survive in your house by eating up other creepy crawlies like spiders and crickets. Having geckos in the house is an eco friendly way of ridding your house from pests.
This particular gecko [...]]]></description>
			<content:encoded><![CDATA[<p>Most people would freak out at the sight of a gecko crawling around their house but actually a gecko is your friend. Geckos survive in your house by eating up other creepy crawlies like spiders and crickets. Having geckos in the house is an eco friendly way of ridding your house from pests.</p>
<p>This particular gecko I clicked while it was warming up in the winter sun.</p>
<p style="text-align: center;"><a href="http://n2canada.com/blog/wp-content/uploads/2010/01/gecko.png" rel="lightbox[270]"><img class="aligncenter size-full wp-image-280" title="gecko" src="http://n2canada.com/blog/wp-content/uploads/2010/01/gecko-thumb.png" alt="gecko" width="100" height="318" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://n2canada.com/blog/archives/gecko/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Storm Clouds</title>
		<link>http://n2canada.com/blog/archives/storm-clouds</link>
		<comments>http://n2canada.com/blog/archives/storm-clouds#comments</comments>
		<pubDate>Tue, 25 Aug 2009 04:33:09 +0000</pubDate>
		<dc:creator>Navket</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[mississauga]]></category>
		<category><![CDATA[nokia-e71]]></category>

		<guid isPermaLink="false">http://n2canada.com/blog/?p=262</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-263" title="Storm Cloud" src="http://n2canada.com/blog/wp-content/uploads/2009/08/08112009066.jpg" alt="Storm Cloud" width="577" height="431" /></p>
]]></content:encoded>
			<wfw:commentRss>http://n2canada.com/blog/archives/storm-clouds/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get blocking processes chain using CTE</title>
		<link>http://n2canada.com/blog/archives/get-blocking-processes-chain-using-cte</link>
		<comments>http://n2canada.com/blog/archives/get-blocking-processes-chain-using-cte#comments</comments>
		<pubDate>Fri, 10 Apr 2009 14:00:42 +0000</pubDate>
		<dc:creator>Navket</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://n2canada.com/blog/?p=189</guid>
		<description><![CDATA[SQL Server 2005 introduced common type expressions. I find it really useful in writing recursive queries. Getting a blocking chain of spids is one way I use CTEs to check for the lead blocker.

&#160;
WITH Blocking_chain&#40; ROW, DEPTH, dbname, spid, hostname, program, 
		waittime, blocked, sql_handle, stmt_start, stmt_end &#41; AS 
	&#40; 
		SELECT 
			row_number&#40;&#41; OVER&#40;ORDER BY a.spid&#41; &#91;ROW&#93;,
			0 [...]]]></description>
			<content:encoded><![CDATA[<p>SQL Server 2005 introduced common type expressions. I find it really useful in writing recursive queries. Getting a blocking chain of spids is one way I use CTEs to check for the lead blocker.</p>

<div class="wp_syntax"><div class="code"><pre class="tsql" style="font-family:monospace;">&nbsp;
<span style="color: #0000FF;">WITH</span> Blocking_chain<span style="color: #808080;">&#40;</span> <span style="color: #0000FF;">ROW</span>, <span style="color: #0000FF;">DEPTH</span>, dbname, spid, hostname, program, 
		waittime, blocked, sql_handle, stmt_start, stmt_end <span style="color: #808080;">&#41;</span> <span style="color: #0000FF;">AS</span> 
	<span style="color: #808080;">&#40;</span> 
		<span style="color: #0000FF;">SELECT</span> 
			row_number<span style="color: #808080;">&#40;</span><span style="color: #808080;">&#41;</span> <span style="color: #0000FF;">OVER</span><span style="color: #808080;">&#40;</span><span style="color: #0000FF;">ORDER</span> <span style="color: #0000FF;">BY</span> a.<span style="color: #202020;">spid</span><span style="color: #808080;">&#41;</span> <span style="color: #808080;">&#91;</span><span style="color: #0000FF;">ROW</span><span style="color: #808080;">&#93;</span>,
			<span style="color: #000;">0</span> <span style="color: #808080;">&#91;</span><span style="color: #0000FF;">DEPTH</span><span style="color: #808080;">&#93;</span> ,
			<span style="color: #FF00FF;">DB_NAME</span><span style="color: #808080;">&#40;</span>a.<span style="color: #202020;">dbid</span><span style="color: #808080;">&#41;</span> <span style="color: #808080;">&#91;</span>dbname<span style="color: #808080;">&#93;</span>, 
			a.<span style="color: #202020;">spid</span>, 
			a.<span style="color: #202020;">hostname</span>, 
			a.<span style="color: #202020;">program_name</span>, 
			a.<span style="color: #202020;">waittime</span>,
			a.<span style="color: #202020;">blocked</span>,
			a.<span style="color: #202020;">sql_handle</span>,
			a.<span style="color: #202020;">stmt_start</span>,
			a.<span style="color: #202020;">stmt_end</span>
		<span style="color: #0000FF;">FROM</span> 
			master.<span style="color: #202020;">dbo</span>.<span style="color: #202020;">sysprocesses</span> a 
			<span style="color: #0000FF;">INNER</span> join master.<span style="color: #202020;">dbo</span>.<span style="color: #202020;">sysprocesses</span> b <span style="color: #0000FF;">ON</span> b.<span style="color: #202020;">blocked</span> <span style="color: #808080;">=</span> a.<span style="color: #202020;">spid</span>
		<span style="color: #0000FF;">WHERE</span> 
			a.<span style="color: #202020;">blocked</span> <span style="color: #808080;">=</span> <span style="color: #000;">0</span> and a.<span style="color: #202020;">ecid</span> <span style="color: #808080;">=</span> <span style="color: #000;">0</span>
		<span style="color: #0000FF;">UNION</span> all
		<span style="color: #0000FF;">SELECT</span> 
			b.<span style="color: #0000FF;">ROW</span>, 
			b.<span style="color: #0000FF;">DEPTH</span> <span style="color: #808080;">+</span> <span style="color: #000;">1</span> , 
			<span style="color: #FF00FF;">DB_NAME</span><span style="color: #808080;">&#40;</span>a.<span style="color: #202020;">dbid</span><span style="color: #808080;">&#41;</span>, 
			a.<span style="color: #202020;">spid</span>, 
			a.<span style="color: #202020;">hostname</span>, 
			a.<span style="color: #202020;">program_name</span>, 
			a.<span style="color: #202020;">waittime</span>,
			a.<span style="color: #202020;">blocked</span>,
			a.<span style="color: #202020;">sql_handle</span>,
			a.<span style="color: #202020;">stmt_start</span>,
			a.<span style="color: #202020;">stmt_end</span>
		<span style="color: #0000FF;">FROM</span> 
			master.<span style="color: #202020;">dbo</span>.<span style="color: #202020;">sysProcesses</span> a 
			<span style="color: #0000FF;">INNER</span> join Blocking_chain b <span style="color: #0000FF;">ON</span> a.<span style="color: #202020;">blocked</span> <span style="color: #808080;">=</span> b.<span style="color: #202020;">spid</span>
		<span style="color: #0000FF;">WHERE</span> 
			a.<span style="color: #202020;">blocked</span> <span style="color: #808080;">&gt;</span> <span style="color: #000;">0</span> and a.<span style="color: #202020;">ecid</span> <span style="color: #808080;">=</span> <span style="color: #000;">0</span> 
	<span style="color: #808080;">&#41;</span>
&nbsp;
<span style="color: #0000FF;">SELECT</span> p.<span style="color: #808080;">*</span>, 
<span style="color: #0000FF;">CASE</span> 
	<span style="color: #0000FF;">WHEN</span> p.<span style="color: #202020;">stmt_start</span><span style="color: #808080;">=</span><span style="color: #000;">0</span> <span style="color: #0000FF;">THEN</span> t.<span style="color: #0000FF;">TEXT</span> 
	<span style="color: #0000FF;">WHEN</span> p.<span style="color: #202020;">stmt_end</span> <span style="color: #808080;">&lt;</span> <span style="color: #000;">0</span> <span style="color: #0000FF;">THEN</span> <span style="color: #FF00FF;">SUBSTRING</span><span style="color: #808080;">&#40;</span>t.<span style="color: #0000FF;">TEXT</span>, p.<span style="color: #202020;">stmt_start</span><span style="color: #808080;">/</span><span style="color: #000;">2</span>, <span style="color: #FF00FF;">LEN</span><span style="color: #808080;">&#40;</span>t.<span style="color: #0000FF;">TEXT</span><span style="color: #808080;">&#41;</span><span style="color: #808080;">/</span><span style="color: #000;">2</span> <span style="color: #808080;">&#41;</span> 
	<span style="color: #0000FF;">ELSE</span> <span style="color: #FF00FF;">SUBSTRING</span><span style="color: #808080;">&#40;</span>t.<span style="color: #0000FF;">TEXT</span>, p.<span style="color: #202020;">stmt_start</span><span style="color: #808080;">/</span><span style="color: #000;">2</span>, <span style="color: #808080;">&#40;</span>p.<span style="color: #202020;">stmt_end</span><span style="color: #808080;">-</span>p.<span style="color: #202020;">stmt_start</span><span style="color: #808080;">&#41;</span><span style="color: #808080;">/</span><span style="color: #000;">2</span> <span style="color: #808080;">&#41;</span> 
<span style="color: #0000FF;">END</span> <span style="color: #808080;">&#91;</span><span style="color: #0000FF;">STATEMENT</span><span style="color: #808080;">&#93;</span> 
<span style="color: #0000FF;">FROM</span> 
	Blocking_chain p 
	cross apply sys.<span style="color: #202020;">dm_exec_sql_text</span><span style="color: #808080;">&#40;</span>p.<span style="color: #202020;">sql_handle</span><span style="color: #808080;">&#41;</span> t</pre></div></div>

</pre>
]]></content:encoded>
			<wfw:commentRss>http://n2canada.com/blog/archives/get-blocking-processes-chain-using-cte/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Send email from windows command line using vbscript</title>
		<link>http://n2canada.com/blog/archives/send-email-from-windows-command-line-using-vbscript</link>
		<comments>http://n2canada.com/blog/archives/send-email-from-windows-command-line-using-vbscript#comments</comments>
		<pubDate>Thu, 02 Apr 2009 03:00:11 +0000</pubDate>
		<dc:creator>Navket</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[vbscript]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://n2canada.com/blog/?p=179</guid>
		<description><![CDATA[Working as a DBA I do a lot of command line scripting. Unfortunately the windows CLI is not that advanced as Linux. One thing I missed out was sending email from the shell prompt. After a little bit of googling around I found this nice little vb script which now I use for regular server [...]]]></description>
			<content:encoded><![CDATA[<p>Working as a DBA I do a lot of command line scripting. Unfortunately the windows CLI is not that advanced as Linux. One thing I missed out was sending email from the shell prompt. After a little bit of googling around I found this nice little vb script which now I use for regular server monitoring.</p>
<p>Its using CDO objects to send email and can include the content of a log file or an HTML page in the body.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
</pre></td><td class="code"><pre class="vb" style="font-family:monospace;">&nbsp;
<span style="color: #000080;">option</span> <span style="color: #000080;">explicit</span>
&nbsp;
<span style="color: #008000;">'Parameters: 
</span><span style="color: #008000;">'  /to:  to address
</span><span style="color: #008000;">'  /from:  from address
</span><span style="color: #008000;">'  /text:  mail format=text
</span><span style="color: #008000;">'  /html:  mail format=html
</span><span style="color: #008000;">'  /body:  file
</span><span style="color: #008000;">'  /sub:  subject
</span><span style="color: #008000;">'
</span>
<span style="color: #000080;">dim</span> NamedArgs,oEmail, sTo,sFrom,sText,sHtml,sBody,sSub, objfso, objfile, sMessage
&nbsp;
<span style="color: #000080;">if</span> wscript.arguments.count &lt; 4 <span style="color: #000080;">then</span> 
	<span style="color: #008000;">'show usage options
</span>	usage
<span style="color: #000080;">else</span>
 <span style="color: #000080;">Set</span> NamedArgs = WScript.Arguments.Named
 sText=<span style="color: #000080;">false</span>
 sHtml=<span style="color: #000080;">false</span>
&nbsp;
 <span style="color: #008000;">'get parameters
</span> sTo = NamedArgs.Item(<span style="color: #800000;">&quot;to&quot;</span>)
 sFrom = NamedArgs.Item(<span style="color: #800000;">&quot;from&quot;</span>)
 sText = NamedArgs.Item(<span style="color: #800000;">&quot;text&quot;</span>)
 <span style="color: #000080;">if</span>(NamedArgs.Exists(<span style="color: #800000;">&quot;text&quot;</span>)) <span style="color: #000080;">then</span> sText=<span style="color: #000080;">true</span> <span style="color: #000080;">end</span> <span style="color: #000080;">if</span>
 <span style="color: #000080;">if</span>(NamedArgs.Exists(<span style="color: #800000;">&quot;html&quot;</span>)) <span style="color: #000080;">then</span> sHtml=<span style="color: #000080;">true</span> <span style="color: #000080;">end</span> <span style="color: #000080;">if</span>
 sBody = NamedArgs.Item(<span style="color: #800000;">&quot;body&quot;</span>)
 sSub = NamedArgs.Item(<span style="color: #800000;">&quot;sub&quot;</span>)
&nbsp;
 <span style="color: #008000;">'create file system object
</span> <span style="color: #000080;">set</span> objfso = CreateObject(<span style="color: #800000;">&quot;Scripting.FileSystemObject&quot;</span>)
&nbsp;
 <span style="color: #000080;">if</span> ((sText=<span style="color: #800000;">&quot;true&quot;</span> <span style="color: #000080;">and</span> sHtml=<span style="color: #800000;">&quot;true&quot;</span>) <span style="color: #000080;">or</span> ( sText=<span style="color: #800000;">&quot;false&quot;</span> <span style="color: #000080;">and</span> sHtml=<span style="color: #800000;">&quot;false&quot;</span> ))  <span style="color: #000080;">then</span> 
  wscript.echo <span style="color: #800000;">&quot;/text and /html are mutually exclusive options&quot;</span>
  usage
 <span style="color: #000080;">elseif</span> (objfso.FileExists(sBody)= <span style="color: #000080;">false</span>) <span style="color: #000080;">then</span> 
  wscript.echo <span style="color: #800000;">&quot;file : [&quot;</span> &amp; sBody &amp; <span style="color: #800000;">&quot;] does not exist or there is some access issue.&quot;</span>
  usage()
 <span style="color: #000080;">else</span>
  <span style="color: #000080;">Set</span> objfile = objfso.OpenTextFile(sBody, 1)
&nbsp;
 <span style="color: #000080;">if</span> (objFile.AtEndOfStream = <span style="color: #000080;">false</span>) <span style="color: #000080;">then</span>
  <span style="color: #008000;">'read file content
</span>  sMessage=objFile.ReadAll()
 <span style="color: #000080;">end</span> <span style="color: #000080;">if</span>
 objFile.<span style="color: #000080;">close</span>
&nbsp;
 <span style="color: #008000;">'create mail object
</span> <span style="color: #000080;">set</span> oEmail = CreateObject(<span style="color: #800000;">&quot;CDO.Message&quot;</span>)
 oEmail.From = sFrom
 oEmail.<span style="color: #000080;">To</span> = sTo
 oEmail.Subject = sSub
 <span style="color: #000080;">if</span>(sHtml=<span style="color: #000080;">true</span>) <span style="color: #000080;">then</span> 	
  oEmail.HTMLbody = sMessage
 <span style="color: #000080;">else</span> 
  oEmail.Textbody = sMessage
 <span style="color: #000080;">end</span> <span style="color: #000080;">if</span>
&nbsp;
 oEmail.Configuration.Fields.Item(<span style="color: #800000;">&quot;http://schemas.microsoft.com/cdo/configuration/sendusing&quot;</span>) = 2
 oEmail.Configuration.Fields.Item(<span style="color: #800000;">&quot;http://schemas.microsoft.com/cdo/configuration/smtpserver&quot;</span>) = <span style="color: #800000;">&quot;your-smtp-server-name&quot;</span>
 oEmail.Configuration.Fields.Update
 oEmail.Send
 <span style="color: #000080;">end</span> <span style="color: #000080;">if</span>
<span style="color: #000080;">end</span> <span style="color: #000080;">if</span>
&nbsp;
&nbsp;
<span style="color: #000080;">function</span> usage
 wscript.echo <span style="color: #800000;">&quot;&quot;</span>
 wscript.echo <span style="color: #800000;">&quot; ------ vbs sendmail ------ &quot;</span>
 wscript.echo <span style="color: #800000;">&quot;/to:      to address&quot;</span>
 wscript.echo <span style="color: #800000;">&quot;/from:    from address&quot;</span>
 wscript.echo <span style="color: #800000;">&quot;/text:    mail format=text&quot;</span>
 wscript.echo <span style="color: #800000;">&quot;/html:    mail format=html&quot;</span>
 wscript.echo <span style="color: #800000;">&quot;/body:    file&quot;</span>
 wscript.echo <span style="color: #800000;">&quot;/sub:     subject&quot;</span>
 wscript.echo <span style="color: #800000;">&quot;&quot;</span>
 wscript.echo <span style="color: #800000;">&quot;- Example :&quot;</span>
 wscript.echo <span style="color: #800000;">&quot;&quot;</span>
 wscript.echo <span style="color: #800000;">&quot; &gt;sendmail /to:navket@my-domain.com /from:my-server@my-domain.com.com /text /body:c:\some\log-file.txt /sub:&quot;</span><span style="color: #800000;">&quot;JOB Results&quot;</span><span style="color: #800000;">&quot; ! &quot;</span>
 wscript.echo <span style="color: #800000;">&quot;&quot;</span>
<span style="color: #000080;">end</span> <span style="color: #000080;">function</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://n2canada.com/blog/archives/send-email-from-windows-command-line-using-vbscript/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to make chivda</title>
		<link>http://n2canada.com/blog/archives/how-to-make-chivda</link>
		<comments>http://n2canada.com/blog/archives/how-to-make-chivda#comments</comments>
		<pubDate>Mon, 15 Dec 2008 02:59:23 +0000</pubDate>
		<dc:creator>Navket</dc:creator>
				<category><![CDATA[Cooking]]></category>

		<guid isPermaLink="false">http://n2canada.com/blog/?p=168</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><object width="425" height="350" data="http://www.youtube.com/v/mwRBPZc4Yoc" type="application/x-shockwave-flash"><param name="src" value="http://www.youtube.com/v/mwRBPZc4Yoc" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://n2canada.com/blog/archives/how-to-make-chivda/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clouds</title>
		<link>http://n2canada.com/blog/archives/clouds</link>
		<comments>http://n2canada.com/blog/archives/clouds#comments</comments>
		<pubDate>Sat, 24 May 2008 01:43:27 +0000</pubDate>
		<dc:creator>Navket</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[evening]]></category>
		<category><![CDATA[random]]></category>
		<category><![CDATA[sunset]]></category>

		<guid isPermaLink="false">http://n2canada.com/blog/?p=122</guid>
		<description><![CDATA[A random shot.

]]></description>
			<content:encoded><![CDATA[<p>A random shot.</p>
<p style="text-align: center;"><a href="http://n2canada.com/blog/wp-content/uploads/2008/05/clouds-random.jpg" rel="lightbox[122]"><img class="alignnone size-full wp-image-123" title="clouds-random" src="http://n2canada.com/blog/wp-content/uploads/2008/05/clouds-random.jpg" alt="clouds-random" width="477" height="636" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://n2canada.com/blog/archives/clouds/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tom and Jerry &#8211; Altaf connection</title>
		<link>http://n2canada.com/blog/archives/tom-and-jerry-altaf-connection</link>
		<comments>http://n2canada.com/blog/archives/tom-and-jerry-altaf-connection#comments</comments>
		<pubDate>Wed, 30 Apr 2008 02:57:44 +0000</pubDate>
		<dc:creator>Navket</dc:creator>
				<category><![CDATA[Music Videos]]></category>
		<category><![CDATA[Altaf]]></category>
		<category><![CDATA[cartoon]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[Hindi]]></category>
		<category><![CDATA[Tom and Jerry]]></category>

		<guid isPermaLink="false">http://n2canada.com/blog/?p=121</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/eUfyzSMnlsc&#038;hl=en&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/eUfyzSMnlsc&#038;hl=en&#038;rel=0&#038;color1=0x3a3a3a&#038;color2=0x999999" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://n2canada.com/blog/archives/tom-and-jerry-altaf-connection/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Babbu Mann : Early Days</title>
		<link>http://n2canada.com/blog/archives/babbu_mann_early_days</link>
		<comments>http://n2canada.com/blog/archives/babbu_mann_early_days#comments</comments>
		<pubDate>Tue, 22 Apr 2008 02:24:08 +0000</pubDate>
		<dc:creator>Navket</dc:creator>
				<category><![CDATA[Music Videos]]></category>
		<category><![CDATA[Babbu Mann]]></category>
		<category><![CDATA[Punjabi Folk Music]]></category>
		<category><![CDATA[Punjabi Music]]></category>

		<guid isPermaLink="false">http://n2canada.com/blog/?p=120</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="373" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="src" value="http://www.youtube.com/v/CMMdNqJAAhE&amp;hl=en&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" /><embed type="application/x-shockwave-flash" width="425" height="373" src="http://www.youtube.com/v/CMMdNqJAAhE&amp;hl=en&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;border=1" wmode="transparent"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://n2canada.com/blog/archives/babbu_mann_early_days/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I hate the &#8220;System Access Fee&#8221;</title>
		<link>http://n2canada.com/blog/archives/i-hate-the-system-access-fee</link>
		<comments>http://n2canada.com/blog/archives/i-hate-the-system-access-fee#comments</comments>
		<pubDate>Fri, 04 Jan 2008 03:22:14 +0000</pubDate>
		<dc:creator>Navket</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bell]]></category>
		<category><![CDATA[Cell phone]]></category>
		<category><![CDATA[rogers]]></category>
		<category><![CDATA[telus]]></category>

		<guid isPermaLink="false">http://n2canada.com/blog/archives/i-hate-the-system-access-fee</guid>
		<description><![CDATA[All Canadian cell phone service providers are charging their customers a so called &#8220;system access fee&#8221; as a separate bill item to make it look as if its some genuine fee and is not for their profit. However this is a guise they use so that they can advertise lower rates. You see a plan [...]]]></description>
			<content:encoded><![CDATA[<p>All Canadian cell phone service providers are charging their customers a so called &#8220;system access fee&#8221; as a separate bill item to make it look as if its some genuine fee and is not for their profit. However this is a guise they use so that they can advertise lower rates. You see a plan for $25 , the moment you enter into a contract, you end up paying more than $45 when all the fees and services add up. Lets see how the major providers are justifying the system access fee..</p>
<p>&#8212;- <strong>Telus</strong> &#8212;-<br />
The System Access Fee covers a number of costs, including: spectrum acquisition and licensing charges, contribution charges to help subsidize residential telephone service in rural and remote areas, costs associated with area code changes, invoicing requirements for special needs clients, relay services (TDD) and related costs. The remainder, if any, goes towards the costs of operating TELUS Mobilityâ€™s national wireless networks, including new equipment and installations, ongoing maintenance and technology upgrades.<br />
&#8212;- <strong>Rogers</strong> &#8212;-<br />
The System Access Fee is charged by all wireless carriers to help cover the costs associated with the ongoing expansion and upgrading of the wireless network. The fee is not required by nor collected for the federal government or any of its agencies. It is billed in advance each month, and will appear twice on your first invoice. One is for the month in advance and the second is a prorated fee from your activation date to the end of your first bill period.</p>
<p>&#8212;- <strong>Bell</strong> &#8212;-<br />
The system access fee helps recover costs for ongoing maintenance, new equipment installations and technology upgrades. This service fee ensures that we are able to continuously provide customers with improved network quality and extensive coverage, as well as leading-edge next generation products and services.</p>
<p>&#8212;-</p>
<p>The bottomline is that the system access fee is just to mislead the consumer and if the fee is to access anything, it&#8217;s your wallet.</p>
]]></content:encoded>
			<wfw:commentRss>http://n2canada.com/blog/archives/i-hate-the-system-access-fee/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Winter</title>
		<link>http://n2canada.com/blog/archives/winter-tree</link>
		<comments>http://n2canada.com/blog/archives/winter-tree#comments</comments>
		<pubDate>Wed, 02 Jan 2008 13:39:52 +0000</pubDate>
		<dc:creator>Navket</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[branches]]></category>
		<category><![CDATA[colors]]></category>
		<category><![CDATA[nature]]></category>
		<category><![CDATA[snow]]></category>
		<category><![CDATA[tree]]></category>
		<category><![CDATA[winter]]></category>

		<guid isPermaLink="false">http://n2canada.com/blog/archives/winter-tree</guid>
		<description><![CDATA[This tree looked amazing after a fresh snow fall.

check out the same tree in fall.. Also check the larger image file (size: 4231KB).

]]></description>
			<content:encoded><![CDATA[<p>This tree looked amazing after a fresh snow fall.</p>
<p><img class="aligncenter size-full wp-image-117" title="winter-tree" src="http://n2canada.com/blog/wp-content/uploads/2008/01/winter-tree-small.jpg" alt="Tree" width="430" height="540" /><br />
check out the <a title="same tree in fall" href="http://n2canada.com/blog/archives/fall">same tree in fall</a>.. Also check the <a title="winter-tree-large-4231kb" href="http://n2canada.com/blog/wp-content/uploads/2008/01/winter-tree-large.jpg" rel="lightbox[118]">larger image file</a> (<em>size: 4231KB</em>).</p>
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://n2canada.com/blog/archives/winter-tree/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
