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

<channel>
	<title>He conquers who conquers himself</title>
	<atom:link href="http://vincitquisevincit.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://vincitquisevincit.wordpress.com</link>
	<description></description>
	<lastBuildDate>Wed, 15 Jun 2011 07:33:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='vincitquisevincit.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>He conquers who conquers himself</title>
		<link>http://vincitquisevincit.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://vincitquisevincit.wordpress.com/osd.xml" title="He conquers who conquers himself" />
	<atom:link rel='hub' href='http://vincitquisevincit.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How to build a Line Following Robot 3 &#8211; Program the pic using C programming.</title>
		<link>http://vincitquisevincit.wordpress.com/2011/06/13/how-to-build-a-line-following-robot-3-program-the-pic-by-c-programming/</link>
		<comments>http://vincitquisevincit.wordpress.com/2011/06/13/how-to-build-a-line-following-robot-3-program-the-pic-by-c-programming/#comments</comments>
		<pubDate>Mon, 13 Jun 2011 18:06:45 +0000</pubDate>
		<dc:creator>CeeVee</dc:creator>
				<category><![CDATA[Robotics]]></category>
		<category><![CDATA[16f877a]]></category>
		<category><![CDATA[4093]]></category>
		<category><![CDATA[assigning]]></category>
		<category><![CDATA[cd]]></category>
		<category><![CDATA[CeeVee]]></category>
		<category><![CDATA[clock rate]]></category>
		<category><![CDATA[following]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[IR]]></category>
		<category><![CDATA[line]]></category>
		<category><![CDATA[line follower]]></category>
		<category><![CDATA[make]]></category>
		<category><![CDATA[microchip]]></category>
		<category><![CDATA[mikroc]]></category>
		<category><![CDATA[own]]></category>
		<category><![CDATA[pic]]></category>
		<category><![CDATA[picstart plus]]></category>
		<category><![CDATA[port]]></category>
		<category><![CDATA[ports]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[robot]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://vincitquisevincit.wordpress.com/?p=171</guid>
		<description><![CDATA[In this post I am going to explain the major part of your robot building process. let&#8217;s moving to the coding part. In order to program your robot you will need to get inputs from your sensors and make decisions and give output signals to the motor controlling unit. Well for this project we will [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincitquisevincit.wordpress.com&amp;blog=5049261&amp;post=171&amp;subd=vincitquisevincit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In this post I am going to explain the major part of your robot building process. let&#8217;s moving to the coding part. In order to program your robot you will need to get inputs from your sensors and make decisions and give output signals to the motor controlling unit. Well for this project we will be using a <strong>pic micro controller</strong>. (<strong>16F877a</strong>)</p>
<p>When you give inputs to the pic make sure that you provide it as a pulse.(exact voltage as 5V) use CD4093 kind of IC  for this purpose.</p>
<p>To write the c program I have used the IDE<strong> mikroC</strong>. To insert the program to the pic I have used <strong>picstart plus</strong>.</p>
<p>Before start the coding please check the <strong>clock rate</strong> is correct according to the controller you use.</p>
<p>when assigning ports it can be done in this way,<br />
PORTA=0&#215;03;<br />
what happens there is port numbers will assigned values according to the bit pattern of the hex value.<br />
For example above 0&#215;03=00000011 so port number 6 and 7(ports started from 0 to 7.total 8 ports) will be assigned 1 and others will assigned 0.<br />
PORTA=0x0a;<br />
a means decimal 10 which means 0x0a=00001010 in binary. So in A ports 4 and 6 will be assigned to 1.</p>
<p>Or else you can do it in this way which will be easy to understand<br />
PORTA.F1=1;<br />
which will assign A&#8217;s port 1 to 1.<br />
PORTA.F6=1;<br />
which will assign A&#8217;s port 6 to 1.</p>
<p>Use either method and take inputs and make the outputs.</p>
<p>void main() {<br />
TRISD = 0&#215;00; //initiating port D for outputs<br />
TRISB = 0xFF; //initiating port B for inputs</p>
<p>Pwm1_Init(5000); //initiating pwm 1<br />
Pwm2_Init(5000); //initiating pwm 2<br />
Pwm1_Start();<br />
Pwm2_Start();</p>
<p>while(1){</p>
<p>if((PORTB.F1==0)&amp;&amp;(PORTB.F2==0)&amp;&amp;(PORTB.F3==0)){   // check the sensors like this and take relevant action.</p>
<p>Pwm1_Change_Duty(150);<br />
Pwm2_Change_Duty(150);<br />
}<br />
…&#8230;&#8230;<br />
// like that you can complete the algorithm</p>
<p>}<br />
}</p>
<p>See you soon with next post.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincitquisevincit.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincitquisevincit.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincitquisevincit.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincitquisevincit.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vincitquisevincit.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vincitquisevincit.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vincitquisevincit.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vincitquisevincit.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincitquisevincit.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincitquisevincit.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincitquisevincit.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincitquisevincit.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincitquisevincit.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincitquisevincit.wordpress.com/171/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincitquisevincit.wordpress.com&amp;blog=5049261&amp;post=171&amp;subd=vincitquisevincit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vincitquisevincit.wordpress.com/2011/06/13/how-to-build-a-line-following-robot-3-program-the-pic-by-c-programming/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b376307a89746af5a57d36866aad52aa?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CeeVee</media:title>
		</media:content>
	</item>
		<item>
		<title>How to build a Line Following Robot 2 – Motor controlling unit</title>
		<link>http://vincitquisevincit.wordpress.com/2011/05/23/how-to-build-a-line-following-robot-2-%e2%80%93-motor-controlling-unit/</link>
		<comments>http://vincitquisevincit.wordpress.com/2011/05/23/how-to-build-a-line-following-robot-2-%e2%80%93-motor-controlling-unit/#comments</comments>
		<pubDate>Mon, 23 May 2011 18:35:31 +0000</pubDate>
		<dc:creator>CeeVee</dc:creator>
				<category><![CDATA[Robotics]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[CeeVee]]></category>
		<category><![CDATA[circuit]]></category>
		<category><![CDATA[control]]></category>
		<category><![CDATA[diagram]]></category>
		<category><![CDATA[driver]]></category>
		<category><![CDATA[following]]></category>
		<category><![CDATA[H-Bridge]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[IC]]></category>
		<category><![CDATA[L293D]]></category>
		<category><![CDATA[line]]></category>
		<category><![CDATA[line follower]]></category>
		<category><![CDATA[make]]></category>
		<category><![CDATA[motor]]></category>
		<category><![CDATA[own]]></category>
		<category><![CDATA[robot]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[virajsrc]]></category>

		<guid isPermaLink="false">http://vincitquisevincit.wordpress.com/?p=162</guid>
		<description><![CDATA[Well, the motor controlling circuit with L293D is simple as follows. The line follower can turn left or right by changing wheel speeds. There for a simple control mechanism will be enough. Pin 4 and 5 controls left motor while pin 6 and 7 controls the right motor. H-Bridge IC High Left High Right Low [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincitquisevincit.wordpress.com&amp;blog=5049261&amp;post=162&amp;subd=vincitquisevincit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well, the motor controlling circuit with L293D is simple as follows. The line follower can turn left or right by changing wheel speeds. There for a simple control mechanism will be enough.</p>
<p>Pin 4 and 5 controls left motor while pin 6 and 7 controls the right motor.</p>
<p style="text-align:center;"><strong>H-Bridge IC</strong></p>
<p><a href="http://vincitquisevincit.files.wordpress.com/2011/05/motor-control.jpeg"><img class="aligncenter size-full wp-image-167" title="motor control" src="http://vincitquisevincit.files.wordpress.com/2011/05/motor-control.jpeg?w=510&#038;h=271" alt="" width="510" height="271" /></a><a href="http://vincitquisevincit.files.wordpress.com/2011/05/motor-driver.jpeg"><br />
</a></p>
<table width="657" border="1" cellspacing="0" cellpadding="7">
<col width="79" />
<col width="79" />
<col width="85" />
<col width="91" />
<col width="252" />
<tbody>
<tr valign="TOP">
<td width="79" height="38">
<p style="text-align:center;" align="CENTER"><span style="font-family:Times New Roman,serif;">High Left</span></p>
</td>
<td width="79">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">High Right</span></p>
</td>
<td width="85">
<p style="text-align:center;" align="CENTER"><span style="font-family:Times New Roman,serif;">Low Left</span></p>
</td>
<td width="91">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">Low Right</span></p>
</td>
<td width="252">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">Description</span></p>
</td>
</tr>
<tr valign="TOP">
<td width="79" height="39">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">On</span></p>
</td>
<td width="79">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">Off</span></p>
</td>
<td width="85">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">Off</span></p>
</td>
<td width="91">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">On</span></p>
</td>
<td width="252">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">Motor runs clockwise</span></p>
</td>
</tr>
<tr valign="TOP">
<td width="79" height="37">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">Off</span></p>
</td>
<td width="79">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">On</span></p>
</td>
<td width="85">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">On</span></p>
</td>
<td width="91">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">Off</span></p>
</td>
<td width="252">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">Motor runs anti -clockwise</span></p>
</td>
</tr>
<tr valign="TOP">
<td width="79" height="39">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">On</span></p>
</td>
<td width="79">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">On</span></p>
</td>
<td width="85">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">Off</span></p>
</td>
<td width="91">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">Off</span></p>
</td>
<td width="252">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">Motor stops or decelerates</span></p>
</td>
</tr>
<tr valign="TOP">
<td width="79" height="38">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">Off</span></p>
</td>
<td width="79">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">Off</span></p>
</td>
<td width="85">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">On</span></p>
</td>
<td width="91">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">On</span></p>
</td>
<td width="252">
<p align="CENTER"><span style="font-family:Times New Roman,serif;">Motor stops or decelerates</span></p>
</td>
</tr>
</tbody>
</table>
<p>If you need to give pwm(pulse wave modulation) signal separately to each motor , you can disconnect pin 1 and 9 from +2V and give pwm1 to pin 1 and pwm2 to pin 9.</p>
<p>In next post we will discuss how to program the pic to follow the line.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincitquisevincit.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincitquisevincit.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincitquisevincit.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincitquisevincit.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vincitquisevincit.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vincitquisevincit.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vincitquisevincit.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vincitquisevincit.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincitquisevincit.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincitquisevincit.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincitquisevincit.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincitquisevincit.wordpress.com/162/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincitquisevincit.wordpress.com/162/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincitquisevincit.wordpress.com/162/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincitquisevincit.wordpress.com&amp;blog=5049261&amp;post=162&amp;subd=vincitquisevincit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vincitquisevincit.wordpress.com/2011/05/23/how-to-build-a-line-following-robot-2-%e2%80%93-motor-controlling-unit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b376307a89746af5a57d36866aad52aa?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CeeVee</media:title>
		</media:content>

		<media:content url="http://vincitquisevincit.files.wordpress.com/2011/05/motor-control.jpeg" medium="image">
			<media:title type="html">motor control</media:title>
		</media:content>
	</item>
		<item>
		<title>How to build a Line Following Robot 1 &#8211; Identifying the line</title>
		<link>http://vincitquisevincit.wordpress.com/2011/05/06/making-a-line-following-robot-1-identifying-the-line/</link>
		<comments>http://vincitquisevincit.wordpress.com/2011/05/06/making-a-line-following-robot-1-identifying-the-line/#comments</comments>
		<pubDate>Fri, 06 May 2011 18:21:37 +0000</pubDate>
		<dc:creator>CeeVee</dc:creator>
				<category><![CDATA[Robotics]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[CeeVee]]></category>
		<category><![CDATA[circuit]]></category>
		<category><![CDATA[detecting]]></category>
		<category><![CDATA[diagram]]></category>
		<category><![CDATA[following]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[IR]]></category>
		<category><![CDATA[line]]></category>
		<category><![CDATA[line follower]]></category>
		<category><![CDATA[make]]></category>
		<category><![CDATA[own]]></category>
		<category><![CDATA[path]]></category>
		<category><![CDATA[robot]]></category>
		<category><![CDATA[sensing]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[virajsrc]]></category>

		<guid isPermaLink="false">http://vincitquisevincit.wordpress.com/?p=143</guid>
		<description><![CDATA[To follow the line robot need to identify the line first. Well there are few things you can do to identify a black line on white background or vice versa. One way is use LDR array and tracks the light reflection level. Black line will not reflect the light as white color. Or you can [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincitquisevincit.wordpress.com&amp;blog=5049261&amp;post=143&amp;subd=vincitquisevincit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To follow the line robot need to identify the line first. Well there are few things you can do to identify a black line on white background or vice versa. One way is use LDR array and tracks the light reflection level. Black line will not reflect the light as white color. Or you can use IR beam. In this post I am going to discuss how we can use IR beams to identify the line. Black color will reflect the IR beam but white will not. Setting up your sensors will depend on your design. To keep the things simple you can arrange them linear. To gain speed you can arrange them to an arrow shape. In this example we will use 3 IR sensors and locate them as an arrow. There are several IR types to make the following circuit work you will need 3mm IR receivers. For IR emitters we can use both 3mm and 5mm.</p>
<p><a href="http://vincitquisevincit.files.wordpress.com/2011/05/cropir-sensors.jpg"><img class="aligncenter size-medium wp-image-144" title="cropir-sensors" src="http://vincitquisevincit.files.wordpress.com/2011/05/cropir-sensors.jpg?w=300&#038;h=223" alt="" width="300" height="223" /></a></p>
<p>If the width of the line to be followed is 2cm, you can go for the following set up.</p>
<p><a href="http://vincitquisevincit.files.wordpress.com/2011/05/sensorsfinal.png"><img class="aligncenter size-full wp-image-145" title="sensorsfinal" src="http://vincitquisevincit.files.wordpress.com/2011/05/sensorsfinal.png?w=448&#038;h=197" alt="" width="448" height="197" /></a></p>
<p>Circuit diagram for the IR unit as follows.</p>
<p><a href="http://vincitquisevincit.files.wordpress.com/2011/05/ircircuit.gif"><img class="aligncenter size-full wp-image-146" title="IRcircuit" src="http://vincitquisevincit.files.wordpress.com/2011/05/ircircuit.gif?w=372&#038;h=795" alt="" width="372" height="795" /></a></p>
<p>The IC LM324 can handle 4 IR sensors. We need only 3 to track the line we will use the 4<sup>th</sup> sensor to identify obstacles.</p>
<p>We will see how to make the circuit to control the motors in next post.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincitquisevincit.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincitquisevincit.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincitquisevincit.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincitquisevincit.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vincitquisevincit.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vincitquisevincit.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vincitquisevincit.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vincitquisevincit.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincitquisevincit.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincitquisevincit.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincitquisevincit.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincitquisevincit.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincitquisevincit.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincitquisevincit.wordpress.com/143/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincitquisevincit.wordpress.com&amp;blog=5049261&amp;post=143&amp;subd=vincitquisevincit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vincitquisevincit.wordpress.com/2011/05/06/making-a-line-following-robot-1-identifying-the-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b376307a89746af5a57d36866aad52aa?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CeeVee</media:title>
		</media:content>

		<media:content url="http://vincitquisevincit.files.wordpress.com/2011/05/cropir-sensors.jpg?w=300" medium="image">
			<media:title type="html">cropir-sensors</media:title>
		</media:content>

		<media:content url="http://vincitquisevincit.files.wordpress.com/2011/05/sensorsfinal.png" medium="image">
			<media:title type="html">sensorsfinal</media:title>
		</media:content>

		<media:content url="http://vincitquisevincit.files.wordpress.com/2011/05/ircircuit.gif" medium="image">
			<media:title type="html">IRcircuit</media:title>
		</media:content>
	</item>
		<item>
		<title>In to the Robotics</title>
		<link>http://vincitquisevincit.wordpress.com/2011/05/04/in-to-the-robotics/</link>
		<comments>http://vincitquisevincit.wordpress.com/2011/05/04/in-to-the-robotics/#comments</comments>
		<pubDate>Wed, 04 May 2011 18:45:10 +0000</pubDate>
		<dc:creator>CeeVee</dc:creator>
				<category><![CDATA[Robotics]]></category>
		<category><![CDATA[build]]></category>
		<category><![CDATA[CeeVee]]></category>
		<category><![CDATA[following]]></category>
		<category><![CDATA[IR]]></category>
		<category><![CDATA[line]]></category>
		<category><![CDATA[make]]></category>
		<category><![CDATA[own]]></category>
		<category><![CDATA[robot]]></category>
		<category><![CDATA[simple]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[virajsrc]]></category>

		<guid isPermaLink="false">http://vincitquisevincit.wordpress.com/?p=131</guid>
		<description><![CDATA[As moving to the final year of my BSc reading I had the opportunity to take robotics as an elective subject. Even though I was an IT student I have choose this subject because I love electronic gadgets and robots very much. Actually the subject is fine than I thought it in the first hand. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincitquisevincit.wordpress.com&amp;blog=5049261&amp;post=131&amp;subd=vincitquisevincit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As moving to the final year of my BSc reading I had the opportunity to take robotics as an elective subject. Even though I was an IT student I have choose this subject because I love electronic gadgets and robots very much. Actually the subject is fine than I thought it in the first hand. Later on I was assigned to assignment .The objective is to build a line following robot using a pic. It was a group assignment and i was assigned to a group with some enthusiastic guys. As we work on the assignment we had few problems with pic programming. As usual we did google but strangely there was nothing on google .I said “nothing” because even there were content we could not understand it. More or less what I have felt is that the people who knew this subject are not willing to help much. So here I am going to explain how to build a simple line following robot. My next posts will be a step by step guide to build a solution to a line following robot. I will keep the content as simple as possible in both software and hardware. But if you don’t know how to identify the pins of a led and to program a simple hello world program in c this guide will not help you at all. First of all we need to identify, why we build this robot? What are the requirements? What are the technologies that going to use? By analyzing all those things, a design should be made.</p>
<p style="text-align:left;">Following videos shows few simple robots which we can get an idea how to build your own one.</p>
<p style="text-align:center;"><strong>A simple moving robot</strong></p>
<p style="text-align:center;"><span style="text-align:center; display: block;"><a href="http://vincitquisevincit.wordpress.com/2011/05/04/in-to-the-robotics/"><img src="http://img.youtube.com/vi/WWj-3dOpXME/2.jpg" alt="" /></a></span></p>
<p style="text-align:center;"><strong>A line following robot</strong></p>
<p style="text-align:center;"><span style="text-align:center; display: block;"><a href="http://vincitquisevincit.wordpress.com/2011/05/04/in-to-the-robotics/"><img src="http://img.youtube.com/vi/mkgc6_SjlxU/2.jpg" alt="" /></a></span></p>
<p style="text-align:center;"><strong>A balancing robot</strong></p>
<p style="text-align:center;"><span style="text-align:center; display: block;"><a href="http://vincitquisevincit.wordpress.com/2011/05/04/in-to-the-robotics/"><img src="http://img.youtube.com/vi/7-IdcJuJWLQ/2.jpg" alt="" /></a></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincitquisevincit.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincitquisevincit.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincitquisevincit.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincitquisevincit.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vincitquisevincit.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vincitquisevincit.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vincitquisevincit.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vincitquisevincit.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincitquisevincit.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincitquisevincit.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincitquisevincit.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincitquisevincit.wordpress.com/131/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincitquisevincit.wordpress.com/131/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincitquisevincit.wordpress.com/131/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincitquisevincit.wordpress.com&amp;blog=5049261&amp;post=131&amp;subd=vincitquisevincit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vincitquisevincit.wordpress.com/2011/05/04/in-to-the-robotics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b376307a89746af5a57d36866aad52aa?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CeeVee</media:title>
		</media:content>
	</item>
		<item>
		<title>Facebook Fake Friendships</title>
		<link>http://vincitquisevincit.wordpress.com/2011/03/30/facebook-fake-friendships/</link>
		<comments>http://vincitquisevincit.wordpress.com/2011/03/30/facebook-fake-friendships/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 19:08:17 +0000</pubDate>
		<dc:creator>CeeVee</dc:creator>
				<category><![CDATA[As I see]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[CeeVee]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[fake]]></category>
		<category><![CDATA[feelings]]></category>
		<category><![CDATA[friendship]]></category>
		<category><![CDATA[human]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[relationships]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[virajsrc]]></category>

		<guid isPermaLink="false">http://vincitquisevincit.wordpress.com/?p=120</guid>
		<description><![CDATA[Well, this post is about one of my experiment on facebook and the reasons why I am off from the facebook. Almost everyone have facebook accounts now. There are plenty of friends on everyone’s accounts. Some people adding friends blindly, some do concern the facts about friends when accepting requests. Same story for the privacy [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincitquisevincit.wordpress.com&amp;blog=5049261&amp;post=120&amp;subd=vincitquisevincit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well, this post is about one of my experiment on facebook and the reasons why I am off from the facebook. Almost everyone have facebook accounts now. There are plenty of friends on everyone’s accounts. Some people adding friends blindly, some do concern the facts about friends when accepting requests. Same story for the privacy policy as well. Some don’t give any attention at all. In my case, I was on facebook since 2008. I have about 360 friends, all are known by me personally. 99% of my friends on facebook are known to by meeting them and I don’t add strangers at all. So basically I can call all of them as my friends. With spread of the facebook, people get use to it in order to keep in touch with people. Yes it is quite useful. You can chat with friends, send messages, group collaborations, flirting, games, apps blah blah blah. It looks cool in feature wise.</p>
<p>Apart from all those features and apps, my concern is on the application that is appeared on your top right hand side when you log on to facebook. Yes, it is the birthday reminder. With this tool the way that people wishing a friend on a birthday has changed. Earlier we meet friends, give a call and wish on his/her birthday. But with facebook people began to wish on facebook. Write on wall “Happy birthday!!!” , sending a message or flowers , teddy bears, etc. as a response normally  the receiver put a comment “Thank you” and later some people used to just click the “like” button also. Now you may think, so what? Anyway they have wished. Isn’t it? Yes. But the thing is how many people actually wish you in their heart? People just don’t care whose birthday is that. They just click on the birthday list appeared on facebook and do type “happy birthday” and do some ctrl+C and ctrl+V for the rest .Why I am saying so is in 2009 I got 2 wishes from facebook which looked very odd. Odd in the sense those two have wished someone else. They did wish for some other guy who had same first name as me. On that day I have informed those two that you have dialed the wrong number but in 2010 also I got the same result. That’s why I am saying that these facebook wishes are so FAKE. Some people do care but many would not do so. They are just clicking it.</p>
<p><a href="http://vincitquisevincit.files.wordpress.com/2011/03/20070819-weblocartoons-facebook.gif"><img class="aligncenter size-full wp-image-121" title="20070819-weblocartoons-facebook" src="http://vincitquisevincit.files.wordpress.com/2011/03/20070819-weblocartoons-facebook.gif?w=412&#038;h=487" alt="" width="412" height="487" /></a></p>
<p>According to my knowledge your best friends don’t need facebook to remember your birthday. But some friends that really care you may also use it too. This year I have removed my birthday from the facebook.it was just to see whether anyone notice my birthday on facebook. As expected no one wished me on facebook. In 2010 there were 212 wishes on my wall and 2011 nothing. This idea was come to me after reading this <a href="http://galpotha.wordpress.com/2010/07/04/the-loser%E2%80%99s-script-how-to-wish-facebook-friends-on-their-birthdays-automatically-in-linux/" target="_blank">post</a> by one of my friend. A script to wish on facebook. Ya you don’t need to waste clicks. Just put a bot there. It will do. Actually I am not using facebook now. I just didn’t delete my account as few friends who went abroad still send messages to it. So, no more time wasting on fb things. I know that few real friends of mine forgot to wish me on my birthday because of the deletion the birthday on facebook but still I know they really caring so I don’t expect them to remember my birthday. Also I got handful amount of  wishes apart from family. So without facebook also people care for me. So I am really happy about myself. I must say that I really don’t expect that everyone should remember the friend’s birthdays but I really hate the fake wishes. At least now I don’t get any fake wishes <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The story was well explained on this blog post “<a href="http://galpotha.wordpress.com/2010/07/04/the-loser%E2%80%99s-script-how-to-wish-facebook-friends-on-their-birthdays-automatically-in-linux/" target="_blank">The Loser’s Script – How to wish facebook friends on their birthdays automagically in linux</a>” so I don’t explain it anymore. Now I am only using twitter as a social network. Twitter was completely a different experience for me. Because of twitter I made lot of caring friends. Firstly added as strangers but later become very close friends. Lot of my followers has helped me when I need help. No time waste as we do in facebook. Most importantly some friends on twitter have found my birthday even when I have hid is from the internet. In twitter I feel that relationships are much more genuine than facebook clicks. They are just clicks. So that’s about it. Leaving facebook  has helped me to save time , save mind from stupid comments  ,posts ,useless tags ,etc but unfortunately removing birthday has reduced the number of birthday gifts I receive normally <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />   but I know who are the people who needs me , who cares me even without the wishes or gifts.</p>
<p>What I believe is the human feelings do have a value you can’t just let it to be clicked blindly. If you really want to wish someone. Do it by your heart .spend some time for the people that you care. Don’t act as caring and keep click on the like button. So adios facebook. I am not an active user anymore: D</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincitquisevincit.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincitquisevincit.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincitquisevincit.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincitquisevincit.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vincitquisevincit.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vincitquisevincit.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vincitquisevincit.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vincitquisevincit.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincitquisevincit.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincitquisevincit.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincitquisevincit.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincitquisevincit.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincitquisevincit.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincitquisevincit.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincitquisevincit.wordpress.com&amp;blog=5049261&amp;post=120&amp;subd=vincitquisevincit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vincitquisevincit.wordpress.com/2011/03/30/facebook-fake-friendships/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b376307a89746af5a57d36866aad52aa?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CeeVee</media:title>
		</media:content>

		<media:content url="http://vincitquisevincit.files.wordpress.com/2011/03/20070819-weblocartoons-facebook.gif" medium="image">
			<media:title type="html">20070819-weblocartoons-facebook</media:title>
		</media:content>
	</item>
		<item>
		<title>Back on Track</title>
		<link>http://vincitquisevincit.wordpress.com/2011/03/30/back-on-track/</link>
		<comments>http://vincitquisevincit.wordpress.com/2011/03/30/back-on-track/#comments</comments>
		<pubDate>Wed, 30 Mar 2011 18:36:54 +0000</pubDate>
		<dc:creator>CeeVee</dc:creator>
				<category><![CDATA[Inspiration]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[back]]></category>
		<category><![CDATA[CeeVee]]></category>
		<category><![CDATA[encourage]]></category>
		<category><![CDATA[inspiration]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[motivation]]></category>
		<category><![CDATA[on]]></category>
		<category><![CDATA[track]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[virajsrc]]></category>

		<guid isPermaLink="false">http://vincitquisevincit.wordpress.com/?p=113</guid>
		<description><![CDATA[This small note is to apologize all the people who came to visit this blog for regular updates. I could not write anything for years now. I don’t make any excuses as there can’t be any fair reason not to write a blog post for such a long time. Therefore I don’t make excuses. But [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincitquisevincit.wordpress.com&amp;blog=5049261&amp;post=113&amp;subd=vincitquisevincit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This small note is to apologize all the people who came to visit this blog for regular updates. I could not write anything for years now. I don’t make any excuses as there can’t be any fair reason not to write a blog post for such a long time. Therefore I don’t make excuses. But I am trying to do one thing, post something regularly. Yes I will do that. This video has motivated me to start writing again. hope this will help you to change your attitudes <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<span style="text-align:center; display: block;"><a href="http://vincitquisevincit.wordpress.com/2011/03/30/back-on-track/"><img src="http://img.youtube.com/vi/EHCU0SjKIEU/2.jpg" alt="" /></a></span>
<div id="_mcePaste" class="mcePaste" style="position:absolute;left:-10000px;top:0;width:1px;height:1px;overflow:hidden;"><!--[if gte mso 9]&gt;  Normal 0     false false false  EN-US X-NONE X-NONE                           &lt;![endif]--><!--[if gte mso 9]&gt;                                                                                                                                            &lt;![endif]--><!--[if gte mso 10]&gt; &lt;!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:&quot;Table Normal&quot;; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:&quot;&quot;; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin-top:0in; 	mso-para-margin-right:0in; 	mso-para-margin-bottom:10.0pt; 	mso-para-margin-left:0in; 	line-height:115%; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:&quot;Times New Roman&quot;; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:&quot;Times New Roman&quot;; 	mso-bidi-theme-font:minor-bidi;} --> <!--[endif]-->&nbsp;</p>
<p class="MsoNormal"><span style="font-size:12pt;line-height:115%;font-family:&quot;">This small note is to apologize all the people who came to visit this blog for regular updates. I could not write anything for years now. I don’t make any excuses as there can’t be any fair reason not to write a blog post for such a long time. Therefore I don’t make excuses. But I am trying to do one thing, post something regularly. Yes I will do that. Keep in touch. </span></p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincitquisevincit.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincitquisevincit.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincitquisevincit.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincitquisevincit.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vincitquisevincit.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vincitquisevincit.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vincitquisevincit.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vincitquisevincit.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincitquisevincit.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincitquisevincit.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincitquisevincit.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincitquisevincit.wordpress.com/113/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincitquisevincit.wordpress.com/113/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincitquisevincit.wordpress.com/113/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincitquisevincit.wordpress.com&amp;blog=5049261&amp;post=113&amp;subd=vincitquisevincit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vincitquisevincit.wordpress.com/2011/03/30/back-on-track/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b376307a89746af5a57d36866aad52aa?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CeeVee</media:title>
		</media:content>
	</item>
		<item>
		<title>Airtel in to mobile broadband</title>
		<link>http://vincitquisevincit.wordpress.com/2009/05/23/airtel-in-to-mobile-broadband/</link>
		<comments>http://vincitquisevincit.wordpress.com/2009/05/23/airtel-in-to-mobile-broadband/#comments</comments>
		<pubDate>Sat, 23 May 2009 14:45:19 +0000</pubDate>
		<dc:creator>CeeVee</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Airtel]]></category>
		<category><![CDATA[CeeVee]]></category>
		<category><![CDATA[HSDPA]]></category>
		<category><![CDATA[Mobile broadband]]></category>
		<category><![CDATA[Sri Lanka]]></category>

		<guid isPermaLink="false">http://vincitquisevincit.wordpress.com/?p=108</guid>
		<description><![CDATA[I went to Airtel store at Galle road few weeks ago to find out what are the HSDPA packages they offer. I have used Mobitel and Dialog HSDPA packages early so I know both are not delivering what we expect. The problems within those providers I have already discussed in my early posts. Airtel staff [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincitquisevincit.wordpress.com&amp;blog=5049261&amp;post=108&amp;subd=vincitquisevincit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.airtel.lk/"><img class="alignnone size-full wp-image-109" title="Airtel" src="http://vincitquisevincit.files.wordpress.com/2009/05/airtel.png?w=450&#038;h=225" alt="Airtel" width="450" height="225" /></a></p>
<p>I went to <strong>Airtel</strong> store at Galle road few weeks ago to find out what are the <em>HSDPA</em> packages they offer. I have used <strong>Mobitel</strong> and <strong>Dialog</strong> <em>HSDPA</em> packages early so I know both are not delivering what we expect. The problems within those providers I have already discussed in my early posts. <strong>Airtel</strong> staff is seems very friendly <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   you don’t have to wait much, the system is efficient. The lady who talked with me about their <em>HSDPA</em> packages told me the details. As she said the speed is fine but I can’t believe that this speed is a possible one, 7.2Mbps? But it is ok if it is at least around 1Mbps. I found that <strong>Airtel</strong> is offering the best charges in Sri Lanka, looks very cheap comparing to others. But the thing is they are not so assure about the signal strength, means they haven’t got great coverage. That’s a big problem because we buy mobile broadband to use when we travel so it is a considerable fact. <strong>Airtel</strong> have full coverage only on Colombo <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  . Most importantly Airtel’s unlimited package is truly unlimited. No <em>FUP</em> (Fair User Policy) as Dialog. That’s looks very cool to me because I hate <strong>Dialog</strong> <em>FUP</em>. Dialog gave me a package called “Unlimited” but actually it is a 6GB package, I cant even brows when they cut the speed to GPRS <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  . My friend bought an <strong>Airtel</strong> <em>HSDP</em>A connection a month ago, according to him the only problem is the signal strength which is not look consistent. Also they are not sale <em>HSDPA</em> modems at a discount as <strong>Dialog</strong> but also they have locked the network in their modem also just like what <strong>Dialog</strong> did. But if you already have a modem bought form Dialog you can just unlock it thanks to <em>Seejay</em>.</p>
<p><a href="http://www.seejay.net/2009/02/how-to-unlock-huawei-e220-hsdpa-modem.html" target="_blank">How to Unlock the <strong>Huawei</strong> <em>E220</em> <em>HSDPA</em> modem</a></p>
<p>Here is the full details about the <strong>Airtel</strong> <em>HSDPA</em> packages , any users please do comment about the connection , signal strength of the area because we all need to know about the connection, to find out whether it is really useful to move to <strong>Airtel</strong> as they said <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<table style="height:201px;" width="474" border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="141">
<p align="center"><em><strong>Package name</strong></em></p>
</td>
<td width="141">
<p align="center"><strong>Celebration 300</strong></p>
</td>
<td width="141">
<p align="center"><strong>Celebration 600</strong></p>
</td>
<td width="141">
<p align="center"><strong>Celebration 600</strong></p>
</td>
</tr>
<tr>
<td width="141">
<p align="center"><strong><em>Activation fee</em></strong></p>
</td>
<td width="141">
<p align="center">Rs.500</p>
</td>
<td width="141">
<p align="center">Rs.500</p>
</td>
<td width="141">
<p align="center">Rs.500</p>
</td>
</tr>
<tr>
<td width="141">
<p align="center"><strong><em>Monthly commitment</em></strong></p>
</td>
<td width="141">
<p align="center">Rs.300</p>
</td>
<td width="141">
<p align="center">Rs.600</p>
</td>
<td width="141">
<p align="center">-</p>
</td>
</tr>
<tr>
<td width="141">
<p align="center"><em><strong>Monthly rental</strong></em></p>
</td>
<td width="141">
<p align="center">-</p>
</td>
<td width="141">
<p align="center">-</p>
</td>
<td width="141">
<p align="center">Rs.1499</p>
</td>
</tr>
<tr>
<td width="141">
<p align="center"><em><strong>Free data bundle</strong></em></p>
</td>
<td width="141">
<p align="center">1GB</p>
</td>
<td width="141">
<p align="center">3GB</p>
</td>
<td width="141">
<p align="center">Unlimited</p>
</td>
</tr>
<tr>
<td width="141">
<p align="center"><em><strong>Charges for usage above free bundle</strong></em></p>
</td>
<td width="141">
<p align="center">0.5cent per 1KB</p>
</td>
<td width="141">
<p align="center">0.5cent per 1KB</p>
</td>
<td width="141">
<p align="center">-</p>
</td>
</tr>
<tr>
<td width="141">
<p align="center"><em><strong>Downlink speed</strong></em></p>
</td>
<td width="141">
<p align="center">7.2Mbps</p>
</td>
<td width="141">
<p align="center">7.2Mbps</p>
</td>
<td width="141">
<p align="center">3.2Mbps</p>
</td>
</tr>
<tr>
<td width="141">
<p align="center"><em><strong>Upload Speed</strong></em></p>
</td>
<td width="141">
<p align="center">1Mbps</p>
</td>
<td width="141">
<p align="center">1Mbps</p>
</td>
<td width="141">
<p align="center">1Mbps</p>
</td>
</tr>
</tbody>
</table>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincitquisevincit.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincitquisevincit.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincitquisevincit.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincitquisevincit.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vincitquisevincit.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vincitquisevincit.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vincitquisevincit.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vincitquisevincit.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincitquisevincit.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincitquisevincit.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincitquisevincit.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincitquisevincit.wordpress.com/108/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincitquisevincit.wordpress.com/108/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincitquisevincit.wordpress.com/108/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincitquisevincit.wordpress.com&amp;blog=5049261&amp;post=108&amp;subd=vincitquisevincit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vincitquisevincit.wordpress.com/2009/05/23/airtel-in-to-mobile-broadband/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b376307a89746af5a57d36866aad52aa?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CeeVee</media:title>
		</media:content>

		<media:content url="http://vincitquisevincit.files.wordpress.com/2009/05/airtel.png" medium="image">
			<media:title type="html">Airtel</media:title>
		</media:content>
	</item>
		<item>
		<title>Puppy woof woof! (Portable Linux)</title>
		<link>http://vincitquisevincit.wordpress.com/2009/02/19/puppy-woof-woof-portable-linux/</link>
		<comments>http://vincitquisevincit.wordpress.com/2009/02/19/puppy-woof-woof-portable-linux/#comments</comments>
		<pubDate>Thu, 19 Feb 2009 17:44:36 +0000</pubDate>
		<dc:creator>CeeVee</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[CeeVee]]></category>
		<category><![CDATA[pendrive  linux]]></category>
		<category><![CDATA[portable]]></category>
		<category><![CDATA[Puppy Linux]]></category>
		<category><![CDATA[small]]></category>

		<guid isPermaLink="false">http://vincitquisevincit.wordpress.com/?p=91</guid>
		<description><![CDATA[Importance of a portable operating system (OS) was come in to my mind a long time ago. As I am not a Window$ user anymore, I was trying to find some Linux portable distribution. My friends give me links to OS such as Damn small Linux, Nimblex and so on. But finally I found the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincitquisevincit.wordpress.com&amp;blog=5049261&amp;post=91&amp;subd=vincitquisevincit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><!--[if gte mso 9]&gt;  Normal 0   false false false        MicrosoftInternetExplorer4  &lt;![endif]--><!--[if gte mso 9]&gt;   &lt;![endif]--></p>
<p class="MsoNormal" style="text-align:center;"><img class="size-full wp-image-92 aligncenter" title="puppy4" src="http://vincitquisevincit.files.wordpress.com/2009/02/puppy4.png?w=450&#038;h=160" alt="puppy4" width="450" height="160" /></p>
<p class="MsoNormal">Importance of a portable operating system (OS) was come in to my mind a long time ago. As I am not a Window$ user anymore, I was trying to find some Linux portable distribution. My friends give me links to OS such as <a title="Damn Small Linux" href="http://www.pendrivelinux.com/all-in-one-usb-dsl/" target="_blank">Damn small Linux</a>, <a title="Nimblex" href="http://www.pendrivelinux.com/usb-nimblex-install-tutorial/" target="_blank">Nimblex</a> and so on. But finally I found the best fit portable OS for me. It’s Puppy Linux.</p>
<p class="MsoNormal" style="text-align:center;"><img class="size-full wp-image-93 aligncenter" title="macpup_dingo" src="http://vincitquisevincit.files.wordpress.com/2009/02/macpup_dingo.jpg?w=450&#038;h=337" alt="macpup_dingo" width="450" height="337" /></p>
<p class="MsoNormal">Think how amazing if you could bring your own personalized OS to where ever you go with your pen drive, and boot it and work like root in every machine. If you need an OS like that Puppy is a best kind of it.</p>
<p class="MsoNormal">There are so many things to say about Puppy. Puppy has almost all the basic features we can expect from an OS. Browsing internet, graphics, spread sheet, multimedia and everything works perfectly in it. Most of the time puppy automatically detects your hardware tools. Like sound cards and graphic cards. Even latest HSDPA modems you can easily configure any thing plus great online support. You can just download and double click install apps on puppy. There are special software editions for puppy. Like FirePup (for firefox). So it’s so easy and so fast. Most important thing is it uses very less resources. Just around 90MB from your flash drive and very less memory from RAM. Puppy will run well on any old pc or a laptop finely.</p>
<p class="MsoNormal"><img class="alignnone size-full wp-image-94" title="mipup2612png" src="http://vincitquisevincit.files.wordpress.com/2009/02/mipup2612png.jpeg?w=450&#038;h=337" alt="mipup2612png" width="450" height="337" /></p>
<p class="MsoNormal">There are so many customized puppy versions called Puplets .you can choose a Puplet exactly matching your requirements. (In apps and the outlook). I would say there is a Puplet for every one. Now I am using Boxpup. It is the most suitable puppy version for me. You can find the best puppy version for you in a huge collection of Puplets. So it’s always worth to try it. If you are new to Linux its good for do experiments because what ever you do is in your pen drive so you will loose nothing. You will just need a memory stick .there are so small Puplets even 60MB small. So don’t forget to give a try and explore the beauty of Linux.</p>
<p class="MsoNormal"><img class="alignnone size-full wp-image-95" title="icepuppreview" src="http://vincitquisevincit.files.wordpress.com/2009/02/icepuppreview.jpg?w=450&#038;h=337" alt="icepuppreview" width="450" height="337" /></p>
<p class="MsoNormal"><span> </span></p>
<p class="MsoNormal">Here is the links you will need</p>
<p class="MsoNormal"><a title="Puppy Linux" href="http://www.puppylinux.org/" target="_blank">Puppy Linux</a></p>
<p class="MsoNormal"><a title="Puppy Linux official" href="http://www.puppylinux.org/downloads" target="_blank">Download official version</a></p>
<p class="MsoNormal"><a title="make Pen drive bootable" href="http://www.pendrivelinux.com/testing-your-system-for-usb-boot-compatibility/" target="_blank">Make your pen drive bootable</a></p>
<p class="MsoNormal"><a title="Install" href="http://www.pendrivelinux.com/puppy-linux-on-usb/" target="_blank">How to install</a></p>
<p class="MsoNormal"><a title="Puplets" href="http://www.puppylinux.org/downloads/puplets" target="_blank">Puplets</a></p>
<p class="MsoNormal"><a title="PenDriveLinux" href="http://www.pendrivelinux.com/" target="_blank">Pendrive Linux</a></p>
<p class="MsoNormal"><img class="alignnone size-full wp-image-96" title="boxpup410" src="http://vincitquisevincit.files.wordpress.com/2009/02/boxpup410.jpg?w=427&#038;h=342" alt="boxpup410" width="427" height="342" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincitquisevincit.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincitquisevincit.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincitquisevincit.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincitquisevincit.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vincitquisevincit.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vincitquisevincit.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vincitquisevincit.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vincitquisevincit.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincitquisevincit.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincitquisevincit.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincitquisevincit.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincitquisevincit.wordpress.com/91/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincitquisevincit.wordpress.com/91/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincitquisevincit.wordpress.com/91/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincitquisevincit.wordpress.com&amp;blog=5049261&amp;post=91&amp;subd=vincitquisevincit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vincitquisevincit.wordpress.com/2009/02/19/puppy-woof-woof-portable-linux/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b376307a89746af5a57d36866aad52aa?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CeeVee</media:title>
		</media:content>

		<media:content url="http://vincitquisevincit.files.wordpress.com/2009/02/puppy4.png" medium="image">
			<media:title type="html">puppy4</media:title>
		</media:content>

		<media:content url="http://vincitquisevincit.files.wordpress.com/2009/02/macpup_dingo.jpg" medium="image">
			<media:title type="html">macpup_dingo</media:title>
		</media:content>

		<media:content url="http://vincitquisevincit.files.wordpress.com/2009/02/mipup2612png.jpeg" medium="image">
			<media:title type="html">mipup2612png</media:title>
		</media:content>

		<media:content url="http://vincitquisevincit.files.wordpress.com/2009/02/icepuppreview.jpg" medium="image">
			<media:title type="html">icepuppreview</media:title>
		</media:content>

		<media:content url="http://vincitquisevincit.files.wordpress.com/2009/02/boxpup410.jpg" medium="image">
			<media:title type="html">boxpup410</media:title>
		</media:content>
	</item>
		<item>
		<title>Before “Hello World!”</title>
		<link>http://vincitquisevincit.wordpress.com/2009/02/01/before-%e2%80%9chello-world%e2%80%9d/</link>
		<comments>http://vincitquisevincit.wordpress.com/2009/02/01/before-%e2%80%9chello-world%e2%80%9d/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 17:52:44 +0000</pubDate>
		<dc:creator>CeeVee</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[CeeVee]]></category>
		<category><![CDATA[class path]]></category>
		<category><![CDATA[compile errors]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[setting path]]></category>
		<category><![CDATA[virajsrc]]></category>

		<guid isPermaLink="false">http://vincitquisevincit.wordpress.com/?p=79</guid>
		<description><![CDATA[Are you having problems with java path when compiling java programs and you hate when you have to set path again and again? You should give the path to the bin for recognizing the jdk to the system. There is a simple thing you can do without typing the path in command prompt everyday. This [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincitquisevincit.wordpress.com&amp;blog=5049261&amp;post=79&amp;subd=vincitquisevincit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Are you having problems with java path when compiling java programs and you hate when you have to set path again and again? You should give the path to the bin for recognizing the jdk to the system. There is a simple thing you can do without typing the path in command prompt everyday. This is how you can do it in windows environment.Just six steps to follow</p>
<p>1)    Right click on my computer and select properties(or Open the Control Panel and double-click the System icon)<br />
2)    Select the “Advanced” tab in system properties<br />
<img class="alignnone size-full wp-image-80" title="001" src="http://vincitquisevincit.files.wordpress.com/2009/02/001.jpg?w=416&#038;h=483" alt="001" width="416" height="483" /></p>
<p>3)    Select “Environment Variables” button<br />
4)    Select “Path” in system variables box and click edit</p>
<p><img class="alignnone size-full wp-image-81" title="002" src="http://vincitquisevincit.files.wordpress.com/2009/02/002.jpg?w=383&#038;h=427" alt="002" width="383" height="427" /></p>
<p>5)    Now edit the variable value to the path of your java bin folder in jdk. Normally it is  C:\Program Files\Java\jdk1.6.0_11\bin</p>
<p><img class="alignnone size-full wp-image-82" title="003" src="http://vincitquisevincit.files.wordpress.com/2009/02/003.jpg?w=344&#038;h=143" alt="003" width="344" height="143" /></p>
<p>6)    Now press ok(3times to exit from whole process)</p>
<p>You are ready to go. Now type javac in command prompt and see the result<br />
This will appear if you done it correctly</p>
<p><img class="alignnone size-full wp-image-86" title="0041" src="http://vincitquisevincit.files.wordpress.com/2009/02/0041.jpg?w=450&#038;h=223" alt="0041" width="450" height="223" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincitquisevincit.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincitquisevincit.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincitquisevincit.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincitquisevincit.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vincitquisevincit.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vincitquisevincit.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vincitquisevincit.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vincitquisevincit.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincitquisevincit.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincitquisevincit.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincitquisevincit.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincitquisevincit.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincitquisevincit.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincitquisevincit.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincitquisevincit.wordpress.com&amp;blog=5049261&amp;post=79&amp;subd=vincitquisevincit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vincitquisevincit.wordpress.com/2009/02/01/before-%e2%80%9chello-world%e2%80%9d/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b376307a89746af5a57d36866aad52aa?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CeeVee</media:title>
		</media:content>

		<media:content url="http://vincitquisevincit.files.wordpress.com/2009/02/001.jpg" medium="image">
			<media:title type="html">001</media:title>
		</media:content>

		<media:content url="http://vincitquisevincit.files.wordpress.com/2009/02/002.jpg" medium="image">
			<media:title type="html">002</media:title>
		</media:content>

		<media:content url="http://vincitquisevincit.files.wordpress.com/2009/02/003.jpg" medium="image">
			<media:title type="html">003</media:title>
		</media:content>

		<media:content url="http://vincitquisevincit.files.wordpress.com/2009/02/0041.jpg" medium="image">
			<media:title type="html">0041</media:title>
		</media:content>
	</item>
		<item>
		<title>Is Dialog HSDPA here to stay?</title>
		<link>http://vincitquisevincit.wordpress.com/2008/12/20/is-dialog-hsdpa-here-to-stay/</link>
		<comments>http://vincitquisevincit.wordpress.com/2008/12/20/is-dialog-hsdpa-here-to-stay/#comments</comments>
		<pubDate>Sat, 20 Dec 2008 18:25:12 +0000</pubDate>
		<dc:creator>CeeVee</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[CeeVee]]></category>
		<category><![CDATA[Dialog]]></category>
		<category><![CDATA[HSDPA]]></category>
		<category><![CDATA[Sri Lanka]]></category>
		<category><![CDATA[virajsrc]]></category>

		<guid isPermaLink="false">http://vincitquisevincit.wordpress.com/?p=67</guid>
		<description><![CDATA[Things are not going well. Dialog HSDPA users having plenty of difficulties.While keeping almost all the old troubles, new ones are also coming. No one is really getting so called 3.6mbps speed, instead we get 8KBps in the day time (peak hours) and 1mbps at night (off peak). Especially in this month all the Dialog [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincitquisevincit.wordpress.com&amp;blog=5049261&amp;post=67&amp;subd=vincitquisevincit&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Things are not going well. Dialog HSDPA users having plenty of difficulties.While keeping almost all the old troubles, new ones are also coming.<br />
No one is really getting so called 3.6mbps speed, instead we get 8KBps in the day time (peak hours) and 1mbps at night (off peak). Especially in this month all the Dialog users I know (HSDPA and Wimax) are in a hard times with IM and browsing. Some of my friends having this problem from the very beginning but I have this issue from this month. Same story from every where. All the users dropping from IM and go offline time to time. while my N70 displaying 100% 3G signal strength E220 modem keep changing signal levels to EDGE -&gt; WCDMA -&gt; HSDPA. If we didn&#8217;t use <a href="http://www.opendns.com/" target="_blank">openDNS</a> and accelerators we might not get anything. Now I use <a href="http://www.nimbuzz.com/" target="_blank">Nibuzz</a> to chat, otherwise I&#8217;ll be always offline.</p>
<p>Apart from these technical issues, we have problems with billing information + usage counters. Considerable numbers of my friends are having problems with their broadband bill even with zero usage. One of my friends got an almost double valued bill for last month. Dialog telling that it was a mistake but now I have noticed that they do the same mistake again and again for considerable number of users. Added to that, they add your first 2 bills together and make you confused for the first month. I called their customer care unit and asked how to check usage online, they said me to register and check the detail bill. I did that but I didn&#8217;t find units I consumed on that detailed bill(actually their online method is not working). Because of all these, they better start new hotlines for these issues in their customer care unit and this is the time to change their motto too. Here is a <a href="http://chanux.wordpress.com/2008/12/11/a-new-idea-for-a-commercial-for-dialog/" target="_blank">suggestion</a>. <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> </p>
<p>While Dialog manages to stay with their faults, Mobitel comes back in game with amazing packages. Now they have reduced their rates to half and doubled the usage (bandwidth). In their survey I mentioned this since I was using M3 at the time and I&#8217;m really happy that they have actually listened to users.</p>
<p>Downlink              Uplink                     Rental                     Usage</p>
<p>1mbps                    1mbps                    Rs.490                    750MB</p>
<p>1mbps                    1mbps                    Rs.890                    2GB</p>
<p>3.6mbps                 1.96mbps               Rs.2490                  7GB</p>
<p>RS.5 for excess 10MB</p>
<p>In terms of speed Mobitel is in the lead since 3.6mbps they talk about is really 3.6 unlike Dialogs speeds. So now Dialog should listen to their customers or otherwise they will end up with the same<a href="http://www.lankanewspapers.com/news/2008/11/35057_space.html"> result</a> what they archived in GSM market base. Customers are your main asset. If you loose them, you will loose your company.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/vincitquisevincit.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/vincitquisevincit.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/vincitquisevincit.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/vincitquisevincit.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/vincitquisevincit.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/vincitquisevincit.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/vincitquisevincit.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/vincitquisevincit.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/vincitquisevincit.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/vincitquisevincit.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/vincitquisevincit.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/vincitquisevincit.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/vincitquisevincit.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/vincitquisevincit.wordpress.com/67/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=vincitquisevincit.wordpress.com&amp;blog=5049261&amp;post=67&amp;subd=vincitquisevincit&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://vincitquisevincit.wordpress.com/2008/12/20/is-dialog-hsdpa-here-to-stay/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b376307a89746af5a57d36866aad52aa?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">CeeVee</media:title>
		</media:content>
	</item>
	</channel>
</rss>
