<?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>Through a Broken Glass</title>
	<atom:link href="http://tukhrejul.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tukhrejul.wordpress.com</link>
	<description>Attempts of Manifestation</description>
	<lastBuildDate>Mon, 25 Jul 2011 14:08:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='tukhrejul.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/be6fc9900518621948cf89ee5352c6ae?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Through a Broken Glass</title>
		<link>http://tukhrejul.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://tukhrejul.wordpress.com/osd.xml" title="Through a Broken Glass" />
	<atom:link rel='hub' href='http://tukhrejul.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Delete Particular Rows in Excel</title>
		<link>http://tukhrejul.wordpress.com/2011/07/25/delete-particular-rows-in-excel/</link>
		<comments>http://tukhrejul.wordpress.com/2011/07/25/delete-particular-rows-in-excel/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 14:08:17 +0000</pubDate>
		<dc:creator>tukhrejul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://tukhrejul.wordpress.com/?p=140</guid>
		<description><![CDATA[I have found an interesting macro to format excel.  Suppose, I have an excel file just like this: SL Roll Name GPA Year 1 33001 Tukhrejul Inam 3.27 2008 2 33002 Ali Hossain 3.87 2007 4 33003 Jahangir Hossain 3.54 2006 5 33004 Moyen Hossain 3.29 2009 I want to delete all rows which contain [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tukhrejul.wordpress.com&amp;blog=2933555&amp;post=140&amp;subd=tukhrejul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I have found an interesting macro to format excel.  Suppose, I have an excel file just like this:</p>
<table width="348" border="0" cellspacing="0" cellpadding="0">
<col span="2" width="64" />
<col width="92" />
<col span="2" width="64" />
<tbody>
<tr>
<td width="64" height="17"></td>
<td width="64"></td>
<td width="92"></td>
<td width="64"></td>
<td width="64"></td>
</tr>
<tr>
<td height="17">SL</td>
<td>Roll</td>
<td>Name</td>
<td>GPA</td>
<td>Year</td>
</tr>
<tr>
<td align="right" height="17">1</td>
<td align="right">33001</td>
<td>Tukhrejul Inam</td>
<td align="right">3.27</td>
<td align="right">2008</td>
</tr>
<tr>
<td align="right" height="17">2</td>
<td align="right">33002</td>
<td>Ali Hossain</td>
<td align="right">3.87</td>
<td align="right">2007</td>
</tr>
<tr>
<td align="right" height="17">4</td>
<td align="right">33003</td>
<td>Jahangir Hossain</td>
<td align="right">3.54</td>
<td align="right">2006</td>
</tr>
<tr>
<td align="right" height="17">5</td>
<td align="right">33004</td>
<td>Moyen Hossain</td>
<td align="right">3.29</td>
<td align="right">2009</td>
</tr>
</tbody>
</table>
<p>I want to delete all rows which contain name like &#8216;Hossain&#8217;. Then I hae to run a macro just like this:</p>
<p>Sub Test()<br />
Dim Rng As Range<br />
Dim x As Long<br />
Set Rng = Range(&#8220;<strong>C1:C</strong>&#8221; &amp; Range(&#8220;A65536&#8243;).End(xlUp).Row)<br />
For x = Rng.Rows.Count To 1 Step -1<br />
If InStr(1, Rng.Cells(x, 1).Value, &#8220;<strong>Hossain</strong>&#8220;) = <strong>1</strong> Then<br />
Rng.Cells(x, 1).EntireRow.Delete<br />
End If<br />
Next x<br />
End Sub</p>
<p>Here, C1:C will be column which contains the particular text. =1 means all rows which have the match, will be deleted. If I use &#8217;0&#8242;, then all rows which don&#8217;t have the match, will be deleted.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tukhrejul.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tukhrejul.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tukhrejul.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tukhrejul.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tukhrejul.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tukhrejul.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tukhrejul.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tukhrejul.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tukhrejul.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tukhrejul.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tukhrejul.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tukhrejul.wordpress.com/140/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tukhrejul.wordpress.com/140/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tukhrejul.wordpress.com/140/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tukhrejul.wordpress.com&amp;blog=2933555&amp;post=140&amp;subd=tukhrejul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tukhrejul.wordpress.com/2011/07/25/delete-particular-rows-in-excel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/150ee97898be9111dbb97585847035d5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Shamim</media:title>
		</media:content>
	</item>
		<item>
		<title>Picking up rate for all dates from few day&#8217;s rate</title>
		<link>http://tukhrejul.wordpress.com/2011/05/18/picking-up-rate-for-all-dates-from-few-days-rate/</link>
		<comments>http://tukhrejul.wordpress.com/2011/05/18/picking-up-rate-for-all-dates-from-few-days-rate/#comments</comments>
		<pubDate>Wed, 18 May 2011 13:16:19 +0000</pubDate>
		<dc:creator>tukhrejul</dc:creator>
				<category><![CDATA[Professional]]></category>

		<guid isPermaLink="false">http://tukhrejul.wordpress.com/?p=134</guid>
		<description><![CDATA[I want to discuss an important query just now. I have done today it. Suppose, I have a rate_info table like this dt rate 01/01/2011 24.50 5/01/2011 23.45 15/01/2011 20.34 25/01/2011 28.22 10/02/2011 15.25 Now I have to calculate rate for all dates. The rate will be same until the rate has been changed. Then [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tukhrejul.wordpress.com&amp;blog=2933555&amp;post=134&amp;subd=tukhrejul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I want to discuss an important query just now. I have done today it. Suppose, I have a rate_info table like this</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="118">dt</td>
<td valign="top" width="118">rate</td>
</tr>
<tr>
<td valign="top" width="118">01/01/2011</td>
<td valign="top" width="118">24.50</td>
</tr>
<tr>
<td valign="top" width="118">5/01/2011</td>
<td valign="top" width="118">23.45</td>
</tr>
<tr>
<td valign="top" width="118">15/01/2011</td>
<td valign="top" width="118">20.34</td>
</tr>
<tr>
<td valign="top" width="118">25/01/2011</td>
<td valign="top" width="118">28.22</td>
</tr>
<tr>
<td valign="top" width="118">10/02/2011</td>
<td valign="top" width="118">15.25</td>
</tr>
</tbody>
</table>
<p>Now I have to calculate rate for all dates. The rate will be same until the rate has been changed. Then the query will be like this:</p>
<p><strong>select a.*,(select rate from rate_info where dt=(select max(dt) from rate_info where dt &lt;=a.dt_new))rate_new from</strong><br />
<strong>(select to_char((select min(dt) from rate_info)+(level &#8211; 1),&#8217;DD-MON-RRRR&#8217;)dt_new from dual </strong><br />
<strong>    connect by level &lt;= ((select max(dt) from rate_info) &#8211; (select min(dt) from rate_info)+1))a</strong></p>
<p>If  a single day contain multiple rate with different version like this:</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="118">dt</td>
<td valign="top" width="118">rate</td>
<td valign="top" width="118">Version</td>
</tr>
<tr>
<td valign="top" width="118">01/01/2011</td>
<td valign="top" width="118">24.50</td>
<td valign="top" width="118">1</td>
</tr>
<tr>
<td valign="top" width="118">5/01/2011</td>
<td valign="top" width="118">23.45</td>
<td valign="top" width="118">1</td>
</tr>
<tr>
<td valign="top" width="118">15/01/2011</td>
<td valign="top" width="118">20.34</td>
<td valign="top" width="118">1</td>
</tr>
<tr>
<td valign="top" width="118">25/01/2011</td>
<td valign="top" width="118">28.22</td>
<td valign="top" width="118">1</td>
</tr>
<tr>
<td valign="top" width="118">10/02/2011</td>
<td valign="top" width="118">15.25</td>
<td valign="top" width="118">1</td>
</tr>
<tr>
<td valign="top" width="118">10/02/2011</td>
<td valign="top" width="118">13.24</td>
<td valign="top" width="118">2</td>
</tr>
</tbody>
</table>
<p>Then the rate with maximum version will be picked up and query will be like this:<br />
<strong>select a.*,(select rate from rate_info where dt=(select max(dt) from rate_info where dt &lt;=a.dt_new)<br />
and version =(select max(version) from rate_info where dt=(select max(dt) from rate_info where dt&lt;=a.dt_new )<br />
))rate_new from<br />
(select to_char((select min(dt) from rate_info)+(level &#8211; 1),&#8217;DD-MON-RRRR&#8217;)dt_new from dual<br />
connect by level &lt;= ((select max(dt) from rate_info) &#8211; (select min(dt) from rate_info)+1))a<br />
</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tukhrejul.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tukhrejul.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tukhrejul.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tukhrejul.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tukhrejul.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tukhrejul.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tukhrejul.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tukhrejul.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tukhrejul.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tukhrejul.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tukhrejul.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tukhrejul.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tukhrejul.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tukhrejul.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tukhrejul.wordpress.com&amp;blog=2933555&amp;post=134&amp;subd=tukhrejul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tukhrejul.wordpress.com/2011/05/18/picking-up-rate-for-all-dates-from-few-days-rate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/150ee97898be9111dbb97585847035d5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Shamim</media:title>
		</media:content>
	</item>
		<item>
		<title>Filling blank field with previous row value in PL/SQL</title>
		<link>http://tukhrejul.wordpress.com/2011/05/14/filling-blank-field-with-previous-row-value-in-plsql/</link>
		<comments>http://tukhrejul.wordpress.com/2011/05/14/filling-blank-field-with-previous-row-value-in-plsql/#comments</comments>
		<pubDate>Sat, 14 May 2011 08:55:18 +0000</pubDate>
		<dc:creator>tukhrejul</dc:creator>
				<category><![CDATA[Professional]]></category>

		<guid isPermaLink="false">http://tukhrejul.wordpress.com/?p=126</guid>
		<description><![CDATA[Suppose I have Table named emp like this empno comm 033001 RUET 033002 033003 033004 KUET 033004 033005 CUET Now I want to fill the blank cells with the previous value. Such as comm of 033002, 033003  will be RUET. comm of 033004 will be KUET. How can I do this? I had googled and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tukhrejul.wordpress.com&amp;blog=2933555&amp;post=126&amp;subd=tukhrejul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Suppose I have Table named emp like this</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="130">empno</td>
<td valign="top" width="214">comm</td>
</tr>
<tr>
<td valign="top" width="130">033001</td>
<td valign="top" width="214">RUET</td>
</tr>
<tr>
<td valign="top" width="130">033002</td>
<td valign="top" width="214"></td>
</tr>
<tr>
<td valign="top" width="130">033003</td>
<td valign="top" width="214"></td>
</tr>
<tr>
<td valign="top" width="130">033004</td>
<td valign="top" width="214">KUET</td>
</tr>
<tr>
<td valign="top" width="130">033004</td>
<td valign="top" width="214"></td>
</tr>
<tr>
<td valign="top" width="130">033005</td>
<td valign="top" width="214">CUET</td>
</tr>
</tbody>
</table>
<p>Now I want to fill the blank cells with the previous value. Such as comm of 033002, 033003  will be RUET. comm of 033004 will be KUET. How can I do this? I had googled and found an interesting query.</p>
<p>1. I have to execute following query:</p>
<p>select empno,comm, lag(comm ignore nulls) over (order by empno)prev_comm from emp order by empno.</p>
<p>Then I get a view like this :</p>
<table width="403" border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="130">empno</td>
<td valign="top" width="214">comm</td>
<td valign="top" width="214">prev_comm</td>
</tr>
<tr>
<td valign="top" width="130">033001</td>
<td valign="top" width="214">RUET</td>
<td valign="top" width="214"></td>
</tr>
<tr>
<td valign="top" width="130">033002</td>
<td valign="top" width="214"></td>
<td valign="top" width="214">RUET</td>
</tr>
<tr>
<td valign="top" width="130">033003</td>
<td valign="top" width="214"></td>
<td valign="top" width="214">RUET</td>
</tr>
<tr>
<td valign="top" width="130">033004</td>
<td valign="top" width="214">KUET</td>
<td valign="top" width="214">RUET</td>
</tr>
<tr>
<td valign="top" width="130">033004</td>
<td valign="top" width="214"></td>
<td valign="top" width="214">KUET</td>
</tr>
<tr>
<td valign="top" width="130">033005</td>
<td valign="top" width="214">CUET</td>
<td valign="top" width="214">KUET</td>
</tr>
<tr>
<td valign="top" width="130"></td>
<td valign="top" width="214"></td>
<td valign="top" width="214">CUET</td>
</tr>
</tbody>
</table>
<p>2. Suppose the previous view is represented by mm.<br />
Then I have to write the following query on mm view.</p>
<p>select empno, case when comm is null then prev_comm else comm end as comm from mm.</p>
<p>Then we will get the desired view :</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="130">empno</td>
<td valign="top" width="214">comm</td>
</tr>
<tr>
<td valign="top" width="130">033001</td>
<td valign="top" width="214">RUET</td>
</tr>
<tr>
<td valign="top" width="130">033002</td>
<td valign="top" width="214">RUET</td>
</tr>
<tr>
<td valign="top" width="130">033003</td>
<td valign="top" width="214">RUET</td>
</tr>
<tr>
<td valign="top" width="130">033004</td>
<td valign="top" width="214">KUET</td>
</tr>
<tr>
<td valign="top" width="130">033004</td>
<td valign="top" width="214">KUET</td>
</tr>
<tr>
<td valign="top" width="130">033005</td>
<td valign="top" width="214">CUET</td>
</tr>
</tbody>
</table>
<p>So, the final query will be:</p>
<p><strong>select empno, case when comm is null then prev_comm else comm end as comm from (select empno,comm, lag(comm ignore nulls) over (order by empno)prev_comm from emp order by empno)</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tukhrejul.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tukhrejul.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tukhrejul.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tukhrejul.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tukhrejul.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tukhrejul.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tukhrejul.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tukhrejul.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tukhrejul.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tukhrejul.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tukhrejul.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tukhrejul.wordpress.com/126/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tukhrejul.wordpress.com/126/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tukhrejul.wordpress.com/126/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tukhrejul.wordpress.com&amp;blog=2933555&amp;post=126&amp;subd=tukhrejul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tukhrejul.wordpress.com/2011/05/14/filling-blank-field-with-previous-row-value-in-plsql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/150ee97898be9111dbb97585847035d5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Shamim</media:title>
		</media:content>
	</item>
		<item>
		<title>I Miss C++ Programming</title>
		<link>http://tukhrejul.wordpress.com/2010/07/26/i-miss-c-programming/</link>
		<comments>http://tukhrejul.wordpress.com/2010/07/26/i-miss-c-programming/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 09:12:52 +0000</pubDate>
		<dc:creator>tukhrejul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://tukhrejul.wordpress.com/?p=93</guid>
		<description><![CDATA[Really, I am missing the C++ programming very much. When I was the programmer at Kento Studios, I was directly involved with c++ programming. Really, I miss the pleasure of innovation. When I have passed whole day to solve even a single problem and found it was solved at evening, I couldn&#8217;t express in words [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tukhrejul.wordpress.com&amp;blog=2933555&amp;post=93&amp;subd=tukhrejul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://tukhrejul.files.wordpress.com/2010/07/c2.jpg"><img class="size-thumbnail wp-image-96 alignleft" title="c++" src="http://tukhrejul.files.wordpress.com/2010/07/c2.jpg?w=150&#038;h=107" alt="" width="150" height="107" /></a>Really, I am missing the C++ programming very much. When I was the programmer at Kento Studios, I was directly involved with c++ programming. Really, I miss the pleasure of innovation. When I have passed whole day to solve even a single problem and found it was solved at evening, I couldn&#8217;t express in words the pleasure of that moment. I have left Kento Studios about ten months ago. Later on, I have programed with C#, PHP, Java and Oracle successfully. But, I found, working with C++ is much more interesting. I also miss the team with which I have worked. We were eight programmers working together for application development for Nintendo DS. Writing technical specification, resource estimation(such as: sound, graphics requirement analysis), time estimation, task scheduling and solving our own tasks were regular works of ours. Everyone worked with deep attention, then we used to discuss each other with everyone’s task and if we found any error or exception something, then we tried to solve it together. Really, those moments were much very interesting; I really miss now. I cannot but mentioning the name of one programmer-Mr. Suruz. He could solve any problem any how, but he did not keep in mind the feasibility. Generally he wrote  code of long length though it would be solved with few lines of code. Sometimes he used huge memory for solving a problem. I used to collect all the works from programmers as team leader. I tried to make him understand that you couldn’t use such a huge memory or code, you had to use optimum memory, because the device memory is limited. But it was so hard to make him agree to rewrite the code. Sometimes he became angry. We smiled seeing his angry face. At last he rewrote the code and felt a heaven pleasure when I accepted his code.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tukhrejul.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tukhrejul.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tukhrejul.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tukhrejul.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tukhrejul.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tukhrejul.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tukhrejul.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tukhrejul.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tukhrejul.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tukhrejul.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tukhrejul.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tukhrejul.wordpress.com/93/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tukhrejul.wordpress.com/93/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tukhrejul.wordpress.com/93/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tukhrejul.wordpress.com&amp;blog=2933555&amp;post=93&amp;subd=tukhrejul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tukhrejul.wordpress.com/2010/07/26/i-miss-c-programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/150ee97898be9111dbb97585847035d5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Shamim</media:title>
		</media:content>

		<media:content url="http://tukhrejul.files.wordpress.com/2010/07/c2.jpg?w=150" medium="image">
			<media:title type="html">c++</media:title>
		</media:content>
	</item>
		<item>
		<title>One Year of DS Programming</title>
		<link>http://tukhrejul.wordpress.com/2009/07/22/one-year-of-ds-programming/</link>
		<comments>http://tukhrejul.wordpress.com/2009/07/22/one-year-of-ds-programming/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 14:20:39 +0000</pubDate>
		<dc:creator>tukhrejul</dc:creator>
				<category><![CDATA[Professional]]></category>

		<guid isPermaLink="false">http://tukhrejul.wordpress.com/?p=72</guid>
		<description><![CDATA[At 1st June 2009, I have completed my one year of DS programming. Just one year ago when I have joined at Kento Studios, my project manager told me that I had to work with ‘Nintendo DS’. Then I had asked him, “What?” He said again, “Nintendo DS” and stared at me. Perhaps my appearance [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tukhrejul.wordpress.com&amp;blog=2933555&amp;post=72&amp;subd=tukhrejul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-70 alignleft" title="NintendoDS" src="http://tukhrejul.files.wordpress.com/2009/07/nintendods.jpeg?w=149&#038;h=149" alt="NintendoDS" width="149" height="149" />At 1st June 2009, I have completed my one year of DS programming. Just one year ago when I have joined at Kento Studios, my project manager told me that I had to work with ‘Nintendo DS’. Then I had asked him, “What?” He said again, “Nintendo DS” and stared at me. Perhaps my appearance expressed that I had not understood the word. Then he had written the word ‘Nintendo DS’ on a paper. He also said, this platform is completely new in Bangladesh and no one had worked with it still then in Bangladesh.</p>
<p>I, with my colleague, started to learn about the Nintendo DS, its features, what it was, how we could develop applications for it etc. searching at Google. We used to work hard so much, as we both are fresh graduates, our company was completely new with game development and the platform was also new in Bangladesh. All the new made troublesome for ours to work. Anyway, after studying hard, we found that the development resources are highly restricted and there was also a open source library named Palib for homebrew development. We had started to work with palib and said the authority to apply for license at warioworld for Nintendo DS game development.  We had made an environment with devkitPro and palib and started to work. We studied various game logic, graphics, game development methodology and various terms related to game. We also implemented them at palib. We developed five demo games with palib. They are<br />
* Abby Mathematicas<br />
* Aymun &amp; the Machon Pirates.<br />
* 20.000 Leguas de Viaje Submarino<br />
* Don Quijote.<br />
* Olimpiadas del Sabar.<br />
These were PC games and we made first level of these games for Nintendo and proposed the publisher to make all these games for Nintendo. It’s really pleasure to say that publisher was satisfied with our works though we were at very initial position of game development and gave the order to us for final production with original NitroSDK.</p>
<p>Meanwhile, we got the license from Nintendo as a developer and again started to study the new SDK and programming manuals. But we found that we had to work at very core level with assembly &amp; C code. We worked hard continuously one month but we found that it would take longer time if we would go this way. We realized that we had to develop a development framework to speed up the development. We discussed it with authority. Company also realized it and managed a framework from Annino Games Inc. It also was not complete framework. We had started to work with it and filled up the lickings of it.</p>
<p>Anyway, the framework helped us more and we developed two games with it AbbyMathDS and OtijocsDS. Working at Kento Studios with Nitro makes us very confident that we can learn any new technology quickly and can work at any environment successfully.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tukhrejul.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tukhrejul.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tukhrejul.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tukhrejul.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tukhrejul.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tukhrejul.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tukhrejul.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tukhrejul.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tukhrejul.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tukhrejul.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tukhrejul.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tukhrejul.wordpress.com/72/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tukhrejul.wordpress.com/72/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tukhrejul.wordpress.com/72/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tukhrejul.wordpress.com&amp;blog=2933555&amp;post=72&amp;subd=tukhrejul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tukhrejul.wordpress.com/2009/07/22/one-year-of-ds-programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/150ee97898be9111dbb97585847035d5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Shamim</media:title>
		</media:content>

		<media:content url="http://tukhrejul.files.wordpress.com/2009/07/nintendods.jpeg" medium="image">
			<media:title type="html">NintendoDS</media:title>
		</media:content>
	</item>
		<item>
		<title>Thanks to Chipmunk Family</title>
		<link>http://tukhrejul.wordpress.com/2009/07/14/thanks-to-chipmunk-family/</link>
		<comments>http://tukhrejul.wordpress.com/2009/07/14/thanks-to-chipmunk-family/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 05:00:05 +0000</pubDate>
		<dc:creator>tukhrejul</dc:creator>
				<category><![CDATA[Professional]]></category>

		<guid isPermaLink="false">http://tukhrejul.wordpress.com/?p=57</guid>
		<description><![CDATA[First of all, I would like to convey thanks to chipmunk famaliy, specially to Scott Lembcke, who is the author of the chipmunk physics engine. It is a 2D physics engine &#38; open source. I have studied about it for one week deeply and found it very interesting. I can emplement any actions related to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tukhrejul.wordpress.com&amp;blog=2933555&amp;post=57&amp;subd=tukhrejul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>First of all, I would like to convey thanks to chipmunk famaliy, specially to Scott Lembcke, who is the author of the chipmunk physics engine. It is a 2D physics engine &amp; open source. I have studied about it for one week deeply and found it very interesting. I can emplement any actions related to physics rules to  2D games. I have studied the codes of  the engine and all demos. They are very easy to emplement. As I am working with Nitro environment for nintendo DS, I have tried to use the engine in that environment. I have done some examples easily related with collition path, bounce, gravity, speed etc. The 7 demos reflects most of the physics rules. If anybody can understand all these demos clearly, he can emplement any action easily, I think. More over the engine has a forum. I have found lots of help from this forum and answers of my questions within very short time.</p>
<p>We can learn more about chipmunk here:</p>
<p><a href="http://code.google.com/p/chipmunk-physics/wiki/Documentation"> http://code.google.com/p/chipmunk-physics/wiki/Documentation</a></p>
<p>The forum of chipmunk:</p>
<p><a href="http://www.slembcke.net/forums/index.php">http://www.slembcke.net/forums/index.php </a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tukhrejul.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tukhrejul.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tukhrejul.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tukhrejul.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tukhrejul.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tukhrejul.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tukhrejul.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tukhrejul.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tukhrejul.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tukhrejul.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tukhrejul.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tukhrejul.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tukhrejul.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tukhrejul.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tukhrejul.wordpress.com&amp;blog=2933555&amp;post=57&amp;subd=tukhrejul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tukhrejul.wordpress.com/2009/07/14/thanks-to-chipmunk-family/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/150ee97898be9111dbb97585847035d5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Shamim</media:title>
		</media:content>
	</item>
		<item>
		<title>Profile</title>
		<link>http://tukhrejul.wordpress.com/2008/02/21/hello-world/</link>
		<comments>http://tukhrejul.wordpress.com/2008/02/21/hello-world/#comments</comments>
		<pubDate>Thu, 21 Feb 2008 08:45:26 +0000</pubDate>
		<dc:creator>tukhrejul</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I am Md. Tukhrejul Inam Shamim. I have completed my BSc Engineering in CSE from RUET,            Rajshahi. Now I am working as a software engineer at Kento Studios Ltd. since June 01&#8242; 08. It is a spain based multinational company. I am working with C++ to develop Nintendo DS  applications. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tukhrejul.wordpress.com&amp;blog=2933555&amp;post=1&amp;subd=tukhrejul&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><em> I am Md. Tukhrejul Inam Shamim. I have completed my BSc Engineering in CSE from RUET,            Rajshahi. Now I am working as a software engineer at Kento Studios Ltd. since June 01&#8242; 08. </em><em> It is a spain based multinational company. I am working with C++ to develop Nintendo DS  applications. Our company is a lisenced developer of Nintendo Inc. America. I have taken an  exclusive training on Object Oriented programming with Dot net Framework at BASIS,  Bangladesh. I, with my team members, have also taken training on Lot Check for DS application  at Oxygen Studios, UK and DS programming with ADSE at Annino Games Inc. Phillipines. I am  also doing my MSc Engineering at IICT, BUET. </em></p>
<p style="text-align:right;">
<p style="text-align:right;">
<p style="text-align:right;"><em>Md. Tukhrejul Inam</em></p>
<p style="text-align:right;"><em> Cell: +8801717450748</em><em> </em><em> </em></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tukhrejul.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tukhrejul.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tukhrejul.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tukhrejul.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tukhrejul.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tukhrejul.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tukhrejul.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tukhrejul.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tukhrejul.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tukhrejul.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tukhrejul.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tukhrejul.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tukhrejul.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tukhrejul.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tukhrejul.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tukhrejul.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tukhrejul.wordpress.com&amp;blog=2933555&amp;post=1&amp;subd=tukhrejul&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tukhrejul.wordpress.com/2008/02/21/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/150ee97898be9111dbb97585847035d5?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Shamim</media:title>
		</media:content>
	</item>
	</channel>
</rss>
