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

<channel>
	<title>[ mkhairul.com ]</title>
	<atom:link href="http://mkhairul.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://mkhairul.com</link>
	<description>Musings of a web ninja</description>
	<pubDate>Thu, 27 Nov 2008 00:05:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
	<language>en</language>
			<item>
		<title>November&#8217;s Cloud</title>
		<link>http://mkhairul.com/2008/11/27/novembers-cloud/</link>
		<comments>http://mkhairul.com/2008/11/27/novembers-cloud/#comments</comments>
		<pubDate>Thu, 27 Nov 2008 00:05:46 +0000</pubDate>
		<dc:creator>mkhairul</dc:creator>
		
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://mkhairul.com/?p=807</guid>
		<description><![CDATA[I missed the deadline for this month&#8217;s cloud. I was too deep inside some code for a new application, the Master Plan, that I forgot all about the cloud.

]]></description>
			<content:encoded><![CDATA[<p>I missed the deadline for this month&#8217;s cloud. I was too deep inside some code for a new application, the Master Plan, that I forgot all about the cloud.<br />
<a href="http://mkhairul.com/wp-content/uploads/2008/11/20081127_november_cloud.png"><img src="http://mkhairul.com/wp-content/uploads/2008/11/20081127_november_cloud.png" alt="" title="20081127_november_cloud" width="500" height="236" class="alignnone size-full wp-image-808" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://mkhairul.com/2008/11/27/novembers-cloud/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Making jQuery selector/contains case insensitive</title>
		<link>http://mkhairul.com/2008/11/26/making-jquery-selectorcontains-case-insensitive/</link>
		<comments>http://mkhairul.com/2008/11/26/making-jquery-selectorcontains-case-insensitive/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 07:10:49 +0000</pubDate>
		<dc:creator>mkhairul</dc:creator>
		
		<category><![CDATA[Troubleshoot]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://mkhairul.com/?p=804</guid>
		<description><![CDATA[Just another stuff from work. There&#8217;s huge list to select people to be put into groups in the LMS. I added a javascript function for the user to type in a name and it will search and select a user in the list box.

I use Selector/contains for this but the problem is, it is case [...]]]></description>
			<content:encoded><![CDATA[<p>Just another stuff from work. There&#8217;s huge list to select people to be put into groups in the LMS. I added a javascript function for the user to type in a name and it will search and select a user in the list box.</p>
<p>
I use <a href="http://docs.jquery.com/Selectors/contains">Selector/contains</a> for this but the problem is, it is case sensitive. That&#8217;s gonna be a problem to type in the exact case from the list. Here&#8217;s a snippet to extend the selector.
</p>
<pre name="code" class="javascript">
jQuery.extend(
        jQuery.expr[':'], {
                contains : "jQuery(a).text().toUpperCase().indexOf(m[3].toUpperCase())>=0"
});
</pre>
<p>Took the snippet from <a href="http://stackoverflow.com/questions/187537/is-there-a-case-insensitive-jquery-contains-selector">StackOverflow</a>, but it has a typo.</p>
]]></content:encoded>
			<wfw:commentRss>http://mkhairul.com/2008/11/26/making-jquery-selectorcontains-case-insensitive/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CodeIgniter 1.7 DBForge Error (Array to string conversion error)</title>
		<link>http://mkhairul.com/2008/11/20/codeigniter-17-dbforge-error-array-to-string-conversion-error/</link>
		<comments>http://mkhairul.com/2008/11/20/codeigniter-17-dbforge-error-array-to-string-conversion-error/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 03:57:13 +0000</pubDate>
		<dc:creator>mkhairul</dc:creator>
		
		<category><![CDATA[Troubleshoot]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[code]]></category>

		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://mkhairul.com/?p=799</guid>
		<description><![CDATA[I think the ellislab team is swamped with bug reports and stuffs. But I&#8217;m sure the next release will solve this problem.
I found this solution at the forum, CI 1.7 Forge Problems.  Basically what you need to do is find DB_driver.php inside the database folder. Go to function _protect_identifiers (most probably on line 1193).
Add [...]]]></description>
			<content:encoded><![CDATA[<p>I think the ellislab team is swamped with bug reports and stuffs. But I&#8217;m sure the next release will solve this problem.</p>
<p>I found this solution at the forum, <a href="http://codeigniter.com/forums/viewthread/94829/#479981">CI 1.7 Forge Problems</a>.  Basically what you need to do is find <strong>DB_driver.php</strong> inside the <strong>database folder</strong>. Go to <strong>function _protect_identifiers</strong> (most probably on <strong>line 1193</strong>).</p>
<p>Add in this code (inside the function).</p>
<pre name="code" class="php">
if (is_array($item))
{
	$array = array();

	foreach($item as $one)
	{
		$array[] = $this->_protect_identifiers($one, $prefix_single, $protect_identifiers, $field_exists);
	}

	return $array;
}
</pre>
<p>Alright, that should fix it up.</p>
]]></content:encoded>
			<wfw:commentRss>http://mkhairul.com/2008/11/20/codeigniter-17-dbforge-error-array-to-string-conversion-error/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Master Plan</title>
		<link>http://mkhairul.com/2008/11/19/master-plan/</link>
		<comments>http://mkhairul.com/2008/11/19/master-plan/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 06:08:13 +0000</pubDate>
		<dc:creator>mkhairul</dc:creator>
		
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://mkhairul.com/?p=780</guid>
		<description><![CDATA[There is a new assignment. I am being assigned to create a system for the Master Plan! Woah! Sounds like a notorious scheme by the Masters of Evil. But alas it is not.

It is a collection of forms that creates a timeline for specific types of stuffs. Its a form generator something like Wufoo. But [...]]]></description>
			<content:encoded><![CDATA[<p><strong>There is a new assignment.</strong> I am being assigned to create a system for the Master Plan! Woah! Sounds like a notorious scheme by the <a href="http://www.marvel.com/universe/Masters_of_Evil">Masters of Evil</a>. But alas it is not.</p>
<div style="float: right; margin-left: 5px; margin-bottom: 3px;"><a href="http://mkhairul.com/wp-content/uploads/2008/11/mastersofevil.gif"><img src="http://mkhairul.com/wp-content/uploads/2008/11/mastersofevil-300x246.gif" alt="" title="mastersofevil" width="300" height="246" class="alignnone size-medium wp-image-782" /></a></div>
<p>It is a collection of forms that creates a timeline for specific types of stuffs. Its a form generator something like Wufoo. But with specific custom needs, like a <a href="http://developer.yahoo.com/yui/datatable/">DataTable</a>. I went through all the examples and some other examples from other developers but none to my liking.</p>
<p>There&#8217;s a datagrid plugin called <a href="http://www.webplicity.net/flexigrid/">Flexigrid</a> for jQuery but then again, there&#8217;s all this hurdles that I have to go through to make it perform certain stuffs and I don&#8217;t like to constraint myself inside that type of UI. </p>
<p>After browsing through Smashing Magazine&#8217;s <a href="http://www.smashingmagazine.com/2008/10/13/pricing-tables-showcase-examples-and-best-practices/">Pricing Table Examples and Best Practices</a>. I&#8217;ve decided to use <a href="http://www.appelsiini.net/projects/jeditable/custom.html">jEditable</a> to accomodate a normal table with the function that I need by just putting in an inline editable feature to it.</p>
<p>The deadline is in 10 days. The system must be functional on 1st December. Let the <strong><a href="http://books.google.com.my/books?id=FdAZUX9H_gAC&#038;dq=death+march&#038;pg=PP1&#038;ots=5DUn2AaPbk&#038;source=bn&#038;sig=6lSHKeiLGzIh278n1xJOEnfpK9Q&#038;hl=en&#038;sa=X&#038;oi=book_result&#038;resnum=4&#038;ct=result">death march</a></strong> begins!</p>
]]></content:encoded>
			<wfw:commentRss>http://mkhairul.com/2008/11/19/master-plan/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adding confirm dialogue box for delete links with jQuery</title>
		<link>http://mkhairul.com/2008/11/15/adding-confirm-dialogue-box-for-delete-links-with-jquery/</link>
		<comments>http://mkhairul.com/2008/11/15/adding-confirm-dialogue-box-for-delete-links-with-jquery/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 17:15:33 +0000</pubDate>
		<dc:creator>mkhairul</dc:creator>
		
		<category><![CDATA[Tips]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://mkhairul.com/?p=776</guid>
		<description><![CDATA[I use this all the time. Its simple, clean and gracefully degrades. Even though its simple some people might miss it. So I post it here.

$('.delete').click(function(){
    if(!confirm('Are you sure you want to delete?'))
    {
        return false;
    }
})

By returning false [...]]]></description>
			<content:encoded><![CDATA[<p>I use this all the time. Its simple, clean and <a href="http://www.digital-web.com/articles/fluid_thinking/">gracefully degrades</a>. Even though its simple some people might miss it. So I post it here.</p>
<pre class="javascript" name="code">
$('.delete').click(function(){
    if(!confirm('Are you sure you want to delete?'))
    {
        return false;
    }
})
</pre>
<p>By returning false you stop any action from the link (redirecting you to the url)</p>
<p>You can see the demo <a href="http://mkhairul.com/experiments/delete_demo.html">here</a>. </p>
]]></content:encoded>
			<wfw:commentRss>http://mkhairul.com/2008/11/15/adding-confirm-dialogue-box-for-delete-links-with-jquery/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Form Snippets for CodeIgniter in Komodo Edit</title>
		<link>http://mkhairul.com/2008/11/13/form-snippets-for-codeigniter-in-komodo-edit/</link>
		<comments>http://mkhairul.com/2008/11/13/form-snippets-for-codeigniter-in-komodo-edit/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 04:01:03 +0000</pubDate>
		<dc:creator>mkhairul</dc:creator>
		
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://mkhairul.com/?p=772</guid>
		<description><![CDATA[Here&#8217;s a code snippet(in CodeIgniter) for creating a submit function inside a controller. I use this all the time.
$rules[''] = '';

$fields[''] = '';

$this->load->library('validation');
$this->validation->set_rules($rules);
$this->validation->set_fields($fields);

if($this->validation->run() === FALSE)
{
	$this->
}
else
{
	$timestamp = strtotime('now');
	$data = array(
		'' => ''
	);
	$this->load->model('', '');

	$this->session->set_flashdata('misc_success', '');
	redirect();
}

I intentionally left some stuffs inside there, which is supposed to be filled anyway.

This is usable but it can be better. I&#8217;ll try [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a <strong>code snippet</strong>(in CodeIgniter) for creating a submit function inside a controller. I use this all the time.</p>
<pre class="php" name="code">$rules[''] = '';

$fields[''] = '';

$this->load->library('validation');
$this->validation->set_rules($rules);
$this->validation->set_fields($fields);

if($this->validation->run() === FALSE)
{
	$this->
}
else
{
	$timestamp = strtotime('now');
	$data = array(
		'' => ''
	);
	$this->load->model('', '');

	$this->session->set_flashdata('misc_success', '');
	redirect();
}
</pre>
<p>I intentionally left some stuffs inside there, which is supposed to be filled anyway.</p>
<p>
This is usable but it can be better. I&#8217;ll try to elaborate in the next post, or the post after the next. As soon as I finish up an example.</p>
]]></content:encoded>
			<wfw:commentRss>http://mkhairul.com/2008/11/13/form-snippets-for-codeigniter-in-komodo-edit/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Debugging an SQL Query</title>
		<link>http://mkhairul.com/2008/11/12/debugging-sql-query/</link>
		<comments>http://mkhairul.com/2008/11/12/debugging-sql-query/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 15:57:26 +0000</pubDate>
		<dc:creator>mkhairul</dc:creator>
		
		<category><![CDATA[Tips]]></category>

		<category><![CDATA[Troubleshoot]]></category>

		<category><![CDATA[blog]]></category>

		<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://mkhairul.com/?p=765</guid>
		<description><![CDATA[So, I debugged an error for a good friend recently. Only certain kind of item would be displayed, everything else was not found in the search. The first thing I suspect is the SQL Query. I printed out the SQL Query and tried to debug it.
The first thing I did is to arrange the SQL [...]]]></description>
			<content:encoded><![CDATA[<p>So, I debugged an error for a good friend recently. Only certain kind of item would be displayed, everything else was not found in the search. The first thing I suspect is the SQL Query. I printed out the SQL Query and tried to debug it.</p>
<p>The first thing I did is to arrange the SQL Query in a readable manner.</p>
<div align="center"><a href="http://mkhairul.com/wp-content/uploads/2008/11/debug1.jpg"><img height="288" width="300" class="aligncenter size-medium wp-image-766" title="debug1" src="http://mkhairul.com/wp-content/uploads/2008/11/debug1-300x288.jpg" /></a></div>
<p>Since I do not have the time to follow the trail from the SQL Query manually, I just comment out 3 conditions at a time, and add a condition each time until the item was found. In the above picture, I&#8217;ve found the culprit its the one below the commented out line.</p>
<p>When I commented out the line, the results for the keyword appeared as follow. </p>
<div align="center"><a href="http://mkhairul.com/wp-content/uploads/2008/11/debug2.jpg"><img height="80" width="300" src="http://mkhairul.com/wp-content/uploads/2008/11/debug2-300x80.jpg" title="debug2" class="alignnone size-medium wp-image-767" /></a></div>
<p>So thats the divide and conquer part. So now I know the problem is with the commented out criteria and the one below it. I traced it back to its table (products_to_categories) and found out that the category_id value is empty. Thats why it can&#8217;t join in with the categories table and thus there&#8217;s no result.</p>
<div align="center"><a href="http://mkhairul.com/wp-content/uploads/2008/11/debug3.jpg"><img height="260" width="267" class="alignnone size-medium wp-image-769" title="debug3" src="http://mkhairul.com/wp-content/uploads/2008/11/debug3.jpg" /></a></div>
<p>So what did I do? I told my friend about the problem, explained it to him (I gave him a couple of screenshots to explain the problem) and gives him a solution. <em>UPDATE products_to_categories SET categories_id = xx</em>. So that all the item have a category and will be displayed when it is searched by the application.</p>
<p>Erm, yeah. Thats about it.</p>
]]></content:encoded>
			<wfw:commentRss>http://mkhairul.com/2008/11/12/debugging-sql-query/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Disappointing and frustrating</title>
		<link>http://mkhairul.com/2008/11/11/disappointing-and-frustrating/</link>
		<comments>http://mkhairul.com/2008/11/11/disappointing-and-frustrating/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 07:25:47 +0000</pubDate>
		<dc:creator>mkhairul</dc:creator>
		
		<category><![CDATA[blog]]></category>

		<category><![CDATA[rants]]></category>

		<guid isPermaLink="false">http://mkhairul.com/?p=757</guid>
		<description><![CDATA[Right now I can&#8217;t think of anything. There&#8217;s too much stuff in my mind and my train of thought just wanders aimlessly to one subject to the other and my attention span is the size of a gnat.




Between that and my frustration from lack of communication within the team, it just felt like taking a [...]]]></description>
			<content:encoded><![CDATA[<p>Right now I can&#8217;t think of anything. There&#8217;s too much stuff in my mind and my train of thought just wanders aimlessly to one subject to the other and my attention span is the size of a gnat.<br />
</p>
<div style="float: right; margin-left: 2px;">
<a href="http://mkhairul.com/wp-content/uploads/2008/11/disappointed.jpg"><img height="205" width="300" src="http://mkhairul.com/wp-content/uploads/2008/11/disappointed-300x205.jpg" title="disappointed" class="alignnone size-medium wp-image-760" /></a>
</div>
<p>Between that and my frustration from lack of communication within the team, it just felt like taking a blow with a sledgehammer in the chest. It brings you down, lying on the floor, barely alive in the pool of your own blood with every bit of hope crushed out of your lungs. Its the feeling of helplessness that is too much to bare. After 5 months of relentless effort to nurture communication between team members, I felt as though I have accomplished nothing. There is still very little communication.</p>
<p><strong>A typical day would be like this.</strong></p>
<p>*comes over to teammate cubicle*</p>
<p><strong>Me:</strong> &quot;Whats up? What are you guys people doing?&quot; (&quot;Korang tengah buat ape?&quot;)</p>
<p>*long explanation of the tasks at hand which they can solve*</p>
<p><strong>Me:</strong> &quot;Ok, cool. Just don&#8217;t forget to log it into the Issue tracker and update the wiki&quot;</p>
<p><strong>Teammate:</strong> &quot;But I don&#8217;t have time. I&#8217;m very busy, you know&quot;<br />
</p>
<p><strong>Me:</strong> &quot;So you&#8217;d rather answer phone calls over in the weekend when something happens than write about it? We are a team we need to know how to solve problems that the team members have already solved. We must not think as many but as one!&quot; (My ramblings continues.. )</p>
</p>
<p><span id="more-757"></span></p>
<p>The thing that just burns me out and frustrates me happened a few weeks ago.</p>
<p>I was doing something and exchange a task with a teammate since she can&#8217;t do it. The task that I gave to her is fairly easy. Reset user&#8217;s password. The task that I took from her is fairly easy to me, just need good ol&#8217; debugging skills. So I was doing my work then my cubicle neighbour the CRM manager told me that my other teammate (teammate B) reassign the task that I exchange with my teammate (teammate A) back to me. So I was fucking pissed-off thinking &quot;What the fuck? Why can&#8217;t she do this easy thing?&quot;.</p>
<p>So I asked teammate B, why did she reassign the task to me. She said that teammate A have an &quot;URGENT&quot; task that needs to be done now. So I instant messaged teammate A asking why the hell is the task been assigned back to me. I was told that there is a VERY URGENT tasks that the CTO wants it to be done by the end of the day. What task? Searching for student&#8217;s username and password from a list of student. It has 400 RECORDS! Pfft, 400 records? Thats it?</p>
<div style="border: 1px solid rgb(159, 159, 159); padding: 2px; float: right; margin-left: 3px;">
<a href="http://mkhairul.com/wp-content/uploads/2008/11/programmaa.jpg"><img height="300" width="236" class="alignnone size-medium wp-image-759" title="programmaa" src="http://mkhairul.com/wp-content/uploads/2008/11/programmaa-236x300.jpg" /></a></div>
<p>I marched down to their cubicle and watched what the fuck is going on. I stood around for 5 minutes. They were searching the student&#8217;s ID through the web interface one-by-one. This is insane. This kind of thing should be automated and let the computer do the heavy lifting. Of course they don&#8217;t know how to do scripts. But the thing that really frustrates me is that they did not tell/share about the task. I have to go there and find out about it myself. If I didn&#8217;t, they would proceed with comparing it manually like a clerk. WE ARE PROGRAMMERS! WE MUST THINK LIKE A PROGRAMMER!</p>
<p>I called teammate B and told her I&#8217;ll take the stupid &quot;URGENT&quot; task, give the reset password task back to teammate B. Its settled. I did it in 70 minutes (I was quite rusty in Python and with the help of a good .NET programmer extracting the data from MSSQL). They know that I am more capable developer than them but I think they thought, &quot;Oh, we can do this, we don&#8217;t need to ask Khairul how to do this&quot; and proceed on doing it. I was so frustrated that I have trouble falling to sleep that night. I had to take a long walk to let all this pent-up frustration seep into the ground with every heavy steps.</p>
<p>The next day teammate B emailed me to do the same task but for a different list. I did it in 20 minutes, by modifying a little bit here and there. I was burned-out by that frustration that I don&#8217;t care and don&#8217;t want to know what the other teammates are doing. I just do my job, no more coming over to cubicle and preach on sharing is caring, no more telling them to log issues into Mantis and contribute to the wiki. After <a href="http://foss.my">FOSS.my 2008</a>, the burned-out feeling slowly subsides. But its still there.</p>
<p>Whew, have to get that out of my chest. Letting the frustration festers is not a good thing. Hopefully my frustration will be gone, my enthusiasm returns and I&#8217;ll continue to preach on logging issues into the Issue Tracker and accumulate knowledge into the Wiki so it will benefit everyone.<br /></p>
]]></content:encoded>
			<wfw:commentRss>http://mkhairul.com/2008/11/11/disappointing-and-frustrating/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adding a new feature to a project</title>
		<link>http://mkhairul.com/2008/11/06/adding-a-new-feature-to-a-project/</link>
		<comments>http://mkhairul.com/2008/11/06/adding-a-new-feature-to-a-project/#comments</comments>
		<pubDate>Thu, 06 Nov 2008 07:45:27 +0000</pubDate>
		<dc:creator>mkhairul</dc:creator>
		
		<category><![CDATA[blog]]></category>

		<guid isPermaLink="false">http://mkhairul.com/?p=739</guid>
		<description><![CDATA[
I thought of this process after a meeting with our Counselor and Solution Architect. The discussion was brief, the counselor discusses some stuffs up-front with the solution architect, and then the SA called me up and explained it to me, since I also think the feature is suppose to be in the system, there was [...]]]></description>
			<content:encoded><![CDATA[<p>
I thought of this process after a meeting with our Counselor and Solution Architect. The discussion was brief, the counselor discusses some stuffs up-front with the solution architect, and then the SA called me up and explained it to me, since I also think the feature is suppose to be in the system, there was no objection, I agreed and proceed with the implementation (its a very small system, we didn&#8217;t need to do any of the review and approval kind of stuffs).
</p>
<div style="border: 1px solid rgb(159, 159, 159); padding: 2px; float: right; margin-left: 4px; margin-top: 10px;">
<a href="http://mkhairul.com/wp-content/uploads/2008/11/first_branch.png"><img height="207" width="200" src="http://mkhairul.com/wp-content/uploads/2008/11/first_branch.png" title="first_branch" class="alignnone size-medium wp-image-752" /></a></div>
<p>
Since I want to track all this stuff up, and make it available for other people (in the company) to see the activity inside the project, I log the issue inside <a href="http://www.mantisbt.org/">Mantis the Issue Tracking System</a>. I put in as much detailed information as I can to avoid any vague description of the problem. But wait! The version information for the project is missing, I didn&#8217;t write up any docs for version 0.1 (because there wasn&#8217;t a need for it at that time, its a small insignificant system after all), so I went into the manage project settings and add in a few version (0.1, 0.2, 0.3). Report the issue and went ahead and branch the trunk into 0.1. (for any of you unfamiliar with <strong>Branch</strong> and <strong>Trunk</strong>, its a term we use in <strong><a href="http://en.wikipedia.org/wiki/Revision_control">Version Control</a></strong> , for more information head to <a href="http://betterexplained.com/articles/a-visual-guide-to-version-control/">A Visual Guide to Version Control</a> ).
</p>
<p>
After branching for 0.1, I branched the trunk again for 0.2 to implement the new feature. I know there&#8217;s more procedure to it than this but for this kind of small project, I&#8217;d rather skip it and get something done.
</p>
<p>
As soon as I&#8217;m done implementing this feature, I&#8217;d better write up some docs to help people modify the stuff up (if they want to, but I highly doubt anyone would want to), just in case. Now, I have to put this stuff up into the wiki in bullet points so the team would/might read it.</p>
]]></content:encoded>
			<wfw:commentRss>http://mkhairul.com/2008/11/06/adding-a-new-feature-to-a-project/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Steam Problem</title>
		<link>http://mkhairul.com/2008/11/04/steam-problem/</link>
		<comments>http://mkhairul.com/2008/11/04/steam-problem/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 14:04:34 +0000</pubDate>
		<dc:creator>mkhairul</dc:creator>
		
		<category><![CDATA[Troubleshoot]]></category>

		<category><![CDATA[rants]]></category>

		<guid isPermaLink="false">http://mkhairul.com/?p=735</guid>
		<description><![CDATA[I bought fallout 3 using steam (digital distribution service from Valve), the first problem that I had was updating steam. I downloaded steam through their site and installed it normally. When I run steam, it updates something and then it can&#8217;t find a DLL (steam.dll). Searched through the forum on the net, found some answers, [...]]]></description>
			<content:encoded><![CDATA[<p>I bought fallout 3 using steam (digital distribution service from Valve), the first problem that I had was updating steam. I downloaded steam through their <a href="http://store.steampowered.com/about/">site</a> and installed it normally. When I run steam, it updates something and then it can&#8217;t find a DLL (steam.dll). Searched through the forum on the net, found some answers, try it out, still the problem persists.</p>
<p>I went ahead and <strong>find steam.dll</strong>, downloaded it, and it says can&#8217;t find steamui.dll. I downloaded that too and continued, it updates just fine.</p>
<p> Few hours ago, when I arrived home from work, ran steam and it doesn&#8217;t load. It says there&#8217;s no connection to steam. I deleted cleanregistry.blob and still no luck (but this time all the login info is lost). Restored the blob file and <strong>restarted the router</strong>. Finally it runs smoothly. This is some crappy software that valve have. Time to shoot some mutants!</p>
]]></content:encoded>
			<wfw:commentRss>http://mkhairul.com/2008/11/04/steam-problem/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
