<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>kusno.mudiarto &#187; idea / rant</title>
	<atom:link href="http://kusno.mudiarto.com/category/idea-rant/feed/" rel="self" type="application/rss+xml" />
	<link>http://kusno.mudiarto.com</link>
	<description>A journey of a thousand miles begin with opening your door.</description>
	<lastBuildDate>Wed, 25 Aug 2010 23:47:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Redirect IP address to localhost in os x</title>
		<link>http://kusno.mudiarto.com/2009/07/redirect-ip-address-to-localhost-in-os-x/</link>
		<comments>http://kusno.mudiarto.com/2009/07/redirect-ip-address-to-localhost-in-os-x/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 20:09:02 +0000</pubDate>
		<dc:creator>kusno mudiarto</dc:creator>
				<category><![CDATA[idea / rant]]></category>

		<guid isPermaLink="false">http://kusno.mudiarto.com/2009/07/redirect-ip-address-to-localhost-in-os-x/</guid>
		<description><![CDATA[Use this command to redirect ip address to localhost in os x. Not sure if it will work in other os. ifconfig lo0 alias 10.0.0.1 will redirect 10.0.0.1 to the localhost / loopback adapter ifconfig lo0 -alias 10.0.0.1 will remove it]]></description>
			<content:encoded><![CDATA[<p>Use this command to redirect ip address to localhost in os x. Not sure if it will work in other os.</p>
<p><strong>ifconfig lo0 alias 10.0.0.1</strong> will redirect 10.0.0.1 to the localhost / loopback adapter</p>
<p><strong>ifconfig lo0 -alias 10.0.0.1</strong> will remove it</p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=658faeff-5cde-81b9-b17c-9c9fd6794b6f" /></div>]]></content:encoded>
			<wfw:commentRss>http://kusno.mudiarto.com/2009/07/redirect-ip-address-to-localhost-in-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NSLog replacement</title>
		<link>http://kusno.mudiarto.com/2009/06/nslog-replacement/</link>
		<comments>http://kusno.mudiarto.com/2009/06/nslog-replacement/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 21:33:57 +0000</pubDate>
		<dc:creator>kusno mudiarto</dc:creator>
				<category><![CDATA[idea / rant]]></category>

		<guid isPermaLink="false">http://kusno.mudiarto.com/?p=47</guid>
		<description><![CDATA[copied from http://iphoneincubator.com/blog/debugging/the-evolution-of-a-replacement-for-nslog basically just put these code into your precompiled header file: // DLog is almost a drop-in replacement for NSLog // DLog(); // DLog(@&#38;quot;here&#38;quot;); // DLog(@&#38;quot;value: %d&#38;quot;, x); // Unfortunately this doesn't work DLog(aStringVariable); you have to do this instead DLog(@&#38;quot;%@&#38;quot;, aStringVariable); #ifdef DEBUG # define DLog(fmt, ...) NSLog((@&#38;quot;%s [Line %d] &#38;quot; fmt), __PRETTY_FUNCTION__, [...]]]></description>
			<content:encoded><![CDATA[<p>copied from <a href="http://iphoneincubator.com/blog/debugging/the-evolution-of-a-replacement-for-nslog">http://iphoneincubator.com/blog/debugging/the-evolution-of-a-replacement-for-nslog</a></p>
<p>basically just put these code into your precompiled header file:</p>
<pre class="brush: cpp;">
// DLog is almost a drop-in replacement for NSLog
// DLog();
// DLog(@&amp;quot;here&amp;quot;);
// DLog(@&amp;quot;value: %d&amp;quot;, x);
// Unfortunately this doesn't work DLog(aStringVariable); you have to do this instead DLog(@&amp;quot;%@&amp;quot;, aStringVariable);
#ifdef DEBUG
#	define DLog(fmt, ...) NSLog((@&amp;quot;%s [Line %d] &amp;quot; fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
#else
#	define DLog(...)
#endif

// ALog always displays output regardless of the DEBUG setting
#define ALog(fmt, ...) NSLog((@&amp;quot;%s [Line %d] &amp;quot; fmt), __PRETTY_FUNCTION__, __LINE__, ##__VA_ARGS__);
</pre>
<p>you might need to add this flags to the project:<br />
OTHER_CFLAGS = -DDEBUG<br />
GCC_PREFIX_HEADER = YourProject_Prefix.pch # this is needed especially for static library</p>]]></content:encoded>
			<wfw:commentRss>http://kusno.mudiarto.com/2009/06/nslog-replacement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OS X Leopard DNS performance problem &#8211; enabling local name server</title>
		<link>http://kusno.mudiarto.com/2008/10/os-x-leopard-dns-performance-problem-enabling-local-name-server/</link>
		<comments>http://kusno.mudiarto.com/2008/10/os-x-leopard-dns-performance-problem-enabling-local-name-server/#comments</comments>
		<pubDate>Sun, 12 Oct 2008 18:33:05 +0000</pubDate>
		<dc:creator>kusno mudiarto</dc:creator>
				<category><![CDATA[idea / rant]]></category>

		<guid isPermaLink="false">http://kusno.mudiarto.com/2008/10/os-x-leopard-dns-performance-problem-enabling-local-name-server/</guid>
		<description><![CDATA[Lately I have been having problem with slow DNS lookup while browsing. You can see it when I browse, it took some time in the &#8220;looking up for youtube.com &#8230;&#8221; for example. I googled around and tried several solutions as suggested by others. Using Open DNS (208.67.222.222, 208.67.220.220) and verizon? (4.2.2.1, 4.2.2.2, 4.2.2.3) as my [...]]]></description>
			<content:encoded><![CDATA[<p>Lately I have been having problem with slow DNS lookup while browsing. You can see it when I browse, it took some time in the &#8220;looking up for youtube.com &#8230;&#8221; for example.</p>
<p>I googled around and tried several solutions as suggested by others.</p>
<ol>
<li>Using Open DNS (208.67.222.222, 208.67.220.220) and verizon? (4.2.2.1, 4.2.2.2, 4.2.2.3) as my dns server.
</li>
<li>Disable Apple IPv6 in System Preference -&gt; Network -&gt; Advanced -&gt; Configure IPv6</li>
<li>Change firefox dns preference in about:config -&gt; network.dns.disableIPv6</li>
</ol>
<p>All of those doesn&#8217;t seem to fix my problem. I tried the <a href="http://swmirror.org/drupal/?q=node/91">DNS Performance Test </a>and it looks like it is ok, not too fast, but not too slow either; but even though DPT is running correctly, I still see that annoying problem.</p>
<p>I saw there was a suggestion on <a href="http://www.macosxhints.com/article.php?story=20050420025219402">turning on local DNS server from macosxhints.</a></p>
<p>I followed it, and it works very good in my case, it fixes all my problems, and now I can browse very fast. There are several things that tripped me when I was installing this, so this is my notes for other brave enough to follow the direction.</p>
<p>Notes :</p>
<ul>
<li>on step 2 (Set up your machine to run BIND server), y<span style="font-weight: bold;">ou have to put forwarders inside the options section. </span>At first I thought I should put it in the end of file, but it didn&#8217;t work, I just found it out after careful examination</li>
<li>You have to do step 3 (Create StartupItem for DNS). There are 2 files that have to be created there.
</li>
<li>on step 6, you can start the DNS right away, or you can also try to start the dns server manually first by using this command (without quote): &#8220;/usr/sbin/named -f -g&#8221; . -f &amp; -g is to&nbsp; run the server in the foreground, not as a daemon. It is useful if you want to test your configuration</li>
<li>There is also a software &#8220;named-checkconf&#8221; that can check if your named configuration is correct or not.</li>
<li>Before switching your network settings to use the local dns, you can test it up by using nslookup like this (without quote): &#8220;nslookup yoursite.com &#8211; 127.0.0.1&#8243;. If your server is set up correctly, nslookup should return the ip address for yoursite.com
</li>
</ul>
<p>I hope this helps other who have the same problem like me.<!-- technorati tags begin -->
<p style="font-size:10px;text-align:right;">Tags: <a href="http://technorati.com/tag/dnsleopard%20osx%20named%20performance%20problem" rel="tag">dnsleopard osx named performance problem</a></p>
<p><!-- technorati tags end --></p>]]></content:encoded>
			<wfw:commentRss>http://kusno.mudiarto.com/2008/10/os-x-leopard-dns-performance-problem-enabling-local-name-server/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Mercurial tips &amp; tricks for mac</title>
		<link>http://kusno.mudiarto.com/2008/07/mercurial-tips-tricks-for-mac/</link>
		<comments>http://kusno.mudiarto.com/2008/07/mercurial-tips-tricks-for-mac/#comments</comments>
		<pubDate>Tue, 29 Jul 2008 05:09:11 +0000</pubDate>
		<dc:creator>kusno mudiarto</dc:creator>
				<category><![CDATA[idea / rant]]></category>

		<guid isPermaLink="false">http://kusno.mudiarto.com/2008/07/mercurial-tips-tricks-for-mac/</guid>
		<description><![CDATA[I am collecting several useful mercurial tricks for me : - See diffs when committing in vim see : http://www.selenic.com/mercurial/wiki/index.cgi/DiffsInCommitMessageInVIM but instead of using the instruction as is, I have to modify the string a little bit to work in my mac: what I did is replacing : $EDITOR "$HGTMP/msg" "$HGTMP/diff" &#124;&#124; exit $? with [...]]]></description>
			<content:encoded><![CDATA[<p>I am collecting several useful mercurial tricks for me :</p>
<p>- See diffs when committing in vim<br />
see : <a href="http://www.selenic.com/mercurial/wiki/index.cgi/DiffsInCommitMessageInVIM">http://www.selenic.com/mercurial/wiki/index.cgi/DiffsInCommitMessageInVIM</a><br />
but instead of using the instruction as is, I have to modify the string a little bit to work in my mac:<br />
what I did is replacing :</p>
<pre>
 $EDITOR "$HGTMP/msg" "$HGTMP/diff" || exit $?
</pre>
<p>with </p>
<pre>
 vim "+e $HGTMP/diff" '+set nobl buftype=help filetype=diff' "+vsplit $HGTMP/msg"
 </pre>
<p>I&#8217;ll add more tricks later if I find any</p>
<p>   <!-- technorati tags begin -->
<p style="font-size:10px;text-align:right;">Tags: <a href="http://technorati.com/tag/mercurialhg%20vim%20tricks%20tips" rel="tag">mercurialhg vim tricks tips</a></p>
<p><!-- technorati tags end --></p>]]></content:encoded>
			<wfw:commentRss>http://kusno.mudiarto.com/2008/07/mercurial-tips-tricks-for-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reminder to self. Never set the permission of the /</title>
		<link>http://kusno.mudiarto.com/2008/07/reminder-to-self-never-set-the-permission-of-the/</link>
		<comments>http://kusno.mudiarto.com/2008/07/reminder-to-self-never-set-the-permission-of-the/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 16:04:56 +0000</pubDate>
		<dc:creator>kusno mudiarto</dc:creator>
				<category><![CDATA[idea / rant]]></category>

		<guid isPermaLink="false">http://kusno.mudiarto.com/2008/07/reminder-to-self-never-set-the-permission-of-the/</guid>
		<description><![CDATA[In a lapse of judgment, I set my hard drive permission to disable readonly for all user, except myself &#38; admin (Using hard drive get info &#8211; sharing &#38; permission ). The reasoning was because I can see my root when I enable wireless sharing. It turned out to be a very bad decision though, [...]]]></description>
			<content:encoded><![CDATA[<p>In a lapse of judgment, I set my hard drive permission to disable readonly for all user, except myself &amp; admin (Using hard drive get info &#8211; sharing &amp; permission ). The reasoning was because I can see my root when I enable wireless sharing.</p>
<p>It turned out to be a very bad decision though, my computer won&#8217;t boot up anymore. Luckily, I found some helps in the internet.</p>
<p>* first go into single user mode (by pressing command-s during bootup<br />
* mount -a<br />
* mount -uw<br />
* chmod 755 /<br />
* halt</p>
<p>and then restart your computer.</p>
<p>I hope it will fix your problem.<br />
   <!-- technorati tags begin -->
<p style="font-size:10px;text-align:right;">Tags: <a href="http://technorati.com/tag/macpermission%20problem" rel="tag">macpermission problem</a></p>
<p><!-- technorati tags end --></p>]]></content:encoded>
			<wfw:commentRss>http://kusno.mudiarto.com/2008/07/reminder-to-self-never-set-the-permission-of-the/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>batch file rename in mac</title>
		<link>http://kusno.mudiarto.com/2008/07/batch-file-rename-in-mac/</link>
		<comments>http://kusno.mudiarto.com/2008/07/batch-file-rename-in-mac/#comments</comments>
		<pubDate>Wed, 23 Jul 2008 22:25:14 +0000</pubDate>
		<dc:creator>kusno mudiarto</dc:creator>
				<category><![CDATA[idea / rant]]></category>

		<guid isPermaLink="false">http://kusno.mudiarto.com/2008/07/batch-file-rename-in-mac/</guid>
		<description><![CDATA[I am missing batch renaming functionality that I used to have in windows -&#62; &#8220;ren *.xxx *.xxx.orig&#8221; in my macbook. But using utility &#8220;mmv&#8221;, I finally can do the same in mac &#38; windows. You can download the utility from here : http://www.joel.lopes-da-silva.com/articles/computer-science-technology/62-tips-tricks/79-mmv-under-mac-os-x-leopard-for-mac-intel.html some example usage : http://debaday.debian.net/2007/06/13/mmv-mass-moving-and-renaming-files/ Tags: macmmv linux batch rename]]></description>
			<content:encoded><![CDATA[<p>I am missing batch renaming functionality that I used to have in windows -&gt; &#8220;ren *.xxx *.xxx.orig&#8221; in my macbook. But using utility &#8220;mmv&#8221;, I finally can do the same in mac &amp; windows.</p>
<p>You can download the utility from here : </p>
<p><a href="http://www.joel.lopes-da-silva.com/articles/computer-science-technology/62-tips-tricks/79-mmv-under-mac-os-x-leopard-for-mac-intel.html"><a href="http://www.joel.lopes-da-silva.com/articles/computer-science-technology/62-tips-tricks/79-mmv-under-mac-os-x-leopard-for-mac-intel.html" rel="nofollow">http://www.joel.lopes-da-silva.com/articles/computer-science-technology/62-tips-tricks/79-mmv-under-mac-os-x-leopard-for-mac-intel.html</a><br />
</a></p>
<p>   some example usage :</p>
<p><a href="http://debaday.debian.net/2007/06/13/mmv-mass-moving-and-renaming-files/"><a href="http://debaday.debian.net/2007/06/13/mmv-mass-moving-and-renaming-files/" rel="nofollow">http://debaday.debian.net/2007/06/13/mmv-mass-moving-and-renaming-files/</a><br />
</a><!-- technorati tags begin -->
<p style="font-size:10px;text-align:right;">Tags: <a href="http://technorati.com/tag/macmmv%20linux%20batch%20rename%20" rel="tag">macmmv linux batch rename </a></p>
<p><!-- technorati tags end --></p>]]></content:encoded>
			<wfw:commentRss>http://kusno.mudiarto.com/2008/07/batch-file-rename-in-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPhone simulator breakpoints problem</title>
		<link>http://kusno.mudiarto.com/2008/06/iphone-simulator-breakpoints-problem/</link>
		<comments>http://kusno.mudiarto.com/2008/06/iphone-simulator-breakpoints-problem/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 22:47:43 +0000</pubDate>
		<dc:creator>kusno mudiarto</dc:creator>
				<category><![CDATA[idea / rant]]></category>

		<guid isPermaLink="false">http://kusno.mudiarto.com/2008/06/iphone-simulator-breakpoints-problem/</guid>
		<description><![CDATA[Sometimes I got problem settings breakpoints. I found this solution in apple discussions: x As saggymac said: &#8220;The default setting for debugging libraries and frameworks is Load Symbols Lazily. On occasion this causes breakpoints to not be hit. Turning off this setting makes it take longer to start debugging, but hits breakpoints more reliably.&#8221; may [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes I got problem settings breakpoints. I found this solution in apple <a href="http://discussions.apple.com/thread.jspa?messageID=7364665">discussions</a>:<br />
x<br />
As saggymac said:<br />
&#8220;The default setting for debugging libraries and frameworks is Load Symbols Lazily. On occasion this causes breakpoints to not be hit. Turning off this setting makes it take longer to start debugging, but hits breakpoints more reliably.&#8221;<br />
may be you should set this option OFF&#8230; (XCode-Preferences-Debugging) </p>
<p>   <!-- technorati tags begin -->
<p style="font-size:10px;text-align:right;">Tags: <a href="http://technorati.com/tag/xcodedebug%20breakpoints" rel="tag">xcodedebug breakpoints</a></p>
<p><!-- technorati tags end --></p>]]></content:encoded>
			<wfw:commentRss>http://kusno.mudiarto.com/2008/06/iphone-simulator-breakpoints-problem/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Objective-C simple command line program and compilation</title>
		<link>http://kusno.mudiarto.com/2008/06/objective-c-simple-command-line-program-and-compilation-2/</link>
		<comments>http://kusno.mudiarto.com/2008/06/objective-c-simple-command-line-program-and-compilation-2/#comments</comments>
		<pubDate>Thu, 05 Jun 2008 00:20:11 +0000</pubDate>
		<dc:creator>kusno mudiarto</dc:creator>
				<category><![CDATA[idea / rant]]></category>

		<guid isPermaLink="false">http://kusno.mudiarto.com/2008/06/objective-c-simple-command-line-program-and-compilation-2/</guid>
		<description><![CDATA[I am trying to compile a simple command line for experiment, and it is somehow not as obvious as I thought. Here is a the very simple program I copied somewhere from internet #import &#38;lt;Foundation/foundation.h&#38;gt; int main( int argc, const char* argv[]) { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; NSObject *object = [[NSObject alloc] init]; [...]]]></description>
			<content:encoded><![CDATA[<p>I am trying to compile a simple command line for experiment, and it is somehow not as obvious as I thought.</p>
<p>Here is a the very simple program I copied somewhere from internet</p>
<pre class="brush: cpp;">
#import &amp;lt;Foundation/foundation.h&amp;gt;

int main( int argc, const char* argv[])
{
  NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];

  NSObject *object = [[NSObject alloc] init];
  NSLog(@&quot;Created Object: %@&quot;, object);

  [pool release];
  return 0;
}
</pre>
<p>and here is how to compile it :</p>
<pre class="brush: bash;">
gcc main.m -o main -ObjC -framework Foundation
</pre>
<p>setting &#8220;-framework Foundation&#8221; is the one that threw me off. I couldn&#8217;t find it anywhere ! <!-- technorati tags begin -->
<p style="font-size:10px;text-align:right;">Tags: <a href="http://technorati.com/tag/objective-cgcc%20command%20line" rel="tag">objective-cgcc command line</a></p>
<p><!-- technorati tags end --></p>]]></content:encoded>
			<wfw:commentRss>http://kusno.mudiarto.com/2008/06/objective-c-simple-command-line-program-and-compilation-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My os x nginx configuration</title>
		<link>http://kusno.mudiarto.com/2008/06/my-os-x-nginx-configuration/</link>
		<comments>http://kusno.mudiarto.com/2008/06/my-os-x-nginx-configuration/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 23:07:29 +0000</pubDate>
		<dc:creator>kusno mudiarto</dc:creator>
				<category><![CDATA[idea / rant]]></category>

		<guid isPermaLink="false">http://kusno.mudiarto.com/2008/06/my-os-x-nginx-configuration/</guid>
		<description><![CDATA[First, to install nginx do this : sudo port install nginx then use this configuration &#8211; this is only for testing, with setting for my os x (for access log / pids). It also use proxy to merb # nginx using macports installation # for my local testing user kusno staff; worker_processes 1; pid /opt/local/var/run/nginx.pid; [...]]]></description>
			<content:encoded><![CDATA[<p>First, to install nginx do this :</p>
<pre>
sudo port install nginx
</pre>
<p>then use this configuration &#8211; this is only for testing, with setting for my os x (for access log / pids). It also use proxy to merb</p>
<pre>
# nginx using macports installation
# for my local testing
user kusno staff;
worker_processes  1;

pid /opt/local/var/run/nginx.pid;
error_log  /opt/local/var/log/nginx/error.log  info;

events {
    worker_connections  16;
}

http {
  include        etc/nginx/mime.types;
  default_type   application/octet-stream;
  access_log /opt/local/var/log/nginx/access.log;
  sendfile        on;
  #tcp_nopush     on;
  keepalive_timeout  65;
  tcp_nodelay        on;
  gzip  on;
  gzip_min_length  1100;
  gzip_buffers     4 8k;
  gzip_types       text/plain;
  client_max_body_size 100m;

  upstream merb {
    server 127.0.0.1:4000;
  }

  server {
    listen       80;
    server_name  localhost;

    root /Users/kusno/ezify/public;

    index  index.html index.htm;

    location / {
      proxy_set_header  X-Real-IP  $remote_addr;
      proxy_set_header  X-Forwarded-For $proxy_add_x_forwarded_for;
      proxy_set_header Host $http_host;
      proxy_redirect false;
      #if (-f $request_filename/index.html) {
      #  rewrite (.*) $1/index.html break;
      #}
      #if (-f $request_filename.html) {
      #  rewrite (.*) $1.html break;
      #}
      if (-f $request_filename) {
        rewrite (.*) $1 break;
      }
      if (!-f $request_filename) {
        proxy_pass <a href="http://merb" rel="nofollow">http://merb</a>;
        break;
      }
    }
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   html;
    }
  }
}
</pre>
<p>use this to restart nginx :</p>
<pre>
sudo launchctl stop org.macports.nginx
sudo launchctl start org.macports.nginx
</pre>
<p><!-- technorati tags begin -->
<p style="font-size:10px;text-align:right;">Tags: <a href="http://technorati.com/tag/nginx" rel="tag">nginx</a></p>
<p><!-- technorati tags end --></p>]]></content:encoded>
			<wfw:commentRss>http://kusno.mudiarto.com/2008/06/my-os-x-nginx-configuration/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Perl breakpoint</title>
		<link>http://kusno.mudiarto.com/2008/05/perl-breakpoint/</link>
		<comments>http://kusno.mudiarto.com/2008/05/perl-breakpoint/#comments</comments>
		<pubDate>Thu, 08 May 2008 20:20:15 +0000</pubDate>
		<dc:creator>kusno mudiarto</dc:creator>
				<category><![CDATA[idea / rant]]></category>

		<guid isPermaLink="false">http://kusno.mudiarto.com/2008/05/perl-breakpoint/</guid>
		<description><![CDATA[Put : $DB::single=2; to enable breakpoint in the code. Don&#8217;t forget to run with -d Tags: perldebug]]></description>
			<content:encoded><![CDATA[<p>Put :</p>
<pre>$DB::single=2;
</pre>
<p>to enable breakpoint in the code. Don&#8217;t forget to run with -d </p>
<p>  <!-- technorati tags begin -->
<p style="font-size:10px;text-align:right;">Tags: <a href="http://technorati.com/tag/perldebug" rel="tag">perldebug</a></p>
<p><!-- technorati tags end --></p>]]></content:encoded>
			<wfw:commentRss>http://kusno.mudiarto.com/2008/05/perl-breakpoint/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
