<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description>Life as a voyage</description><title>Just in Chronicles</title><generator>Tumblr (3.0; @justinchronicles)</generator><link>http://tumblr.justinchronicles.net/</link><item><title>Difference between "|" and "||"</title><description>&lt;ul&gt;&lt;li&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/6373h346(v=VS.90).aspx" target="_blank"&gt;&lt;a href="http://msdn.microsoft.com/en-us/library/6373h346" target="_blank"&gt;http://msdn.microsoft.com/en-us/library/6373h346&lt;/a&gt;(v=VS.90).aspx&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;What a difference they have!!&lt;/p&gt;</description><link>http://tumblr.justinchronicles.net/post/709905187</link><guid>http://tumblr.justinchronicles.net/post/709905187</guid><pubDate>Fri, 18 Jun 2010 12:03:40 +1000</pubDate><category>ASP.NET</category><category>operators</category></item><item><title>Calling a method using its name as a string value</title><description>&lt;ul&gt;&lt;li&gt;&lt;a href="http://stackoverflow.com/questions/134214/create-a-method-call-in-net-based-on-a-string-value" target="_blank"&gt;&lt;a href="http://stackoverflow.com/questions/134214/create-a-method-call-in-net-based-on-a-string-value" target="_blank"&gt;http://stackoverflow.com/questions/134214/create-a-method-call-in-net-based-on-a-string-value&lt;/a&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;&lt;code&gt;System.Reflection.MethodInfo&lt;/code&gt; is the one that I can use the name of method as a string value to call the method.&lt;/p&gt;
&lt;p&gt;In order to get the method, the &lt;code&gt;typeof()&lt;/code&gt; keyword should be used, instead of the &lt;code&gt;Type.GetType()&lt;/code&gt; method.&lt;/p&gt;</description><link>http://tumblr.justinchronicles.net/post/709732472</link><guid>http://tumblr.justinchronicles.net/post/709732472</guid><pubDate>Fri, 18 Jun 2010 10:59:00 +1000</pubDate><category>ASP.NET</category></item><item><title>Possibility that Korea Advances to the Next Round</title><description>&lt;p&gt;Even though South Korea lost the match against Argentina, it still stands at thesecond of the Group B. Well, there is still hope to go to the next round depending on the last match with Nigeria.&lt;/p&gt;
&lt;pre&gt;switch (&lt;span&gt;GetResultMatch(Korea, Nigeria)&lt;/span&gt;)
{
  case &lt;span&gt;Result.Won&lt;/span&gt;:
    if (&lt;span&gt;GetResultMatch(Greece, Argentina)&lt;/span&gt; == &lt;span&gt;Result.Won&lt;/span&gt;)
      if (&lt;span&gt;GetGoalDifference(Greece, Korea)&lt;/span&gt; &gt;= 2)
        &lt;span&gt;SetNextRound(Greece)&lt;/span&gt;;
      else
        &lt;span&gt;SetNextRound(Korea)&lt;/span&gt;;
    else
      &lt;span&gt;SetNextRound(Korea)&lt;/span&gt;;
    break;
  case &lt;span&gt;Result.Draw&lt;/span&gt;:
    if (&lt;span&gt;GetResultMatch(Greece, Argentina)&lt;/span&gt; == &lt;span&gt;Result.Won&lt;/span&gt;)
      &lt;span&gt;SetNextRound(Greece)&lt;/span&gt;;
    else if (&lt;span&gt;GetResultMatch(Greece, Argentina)&lt;/span&gt; == &lt;span&gt;Result.Draw&lt;/span&gt;)
      if (&lt;span&gt;GetGoalDifference(Greece, Korea)&lt;/span&gt; &gt;= 2)
        &lt;span&gt;SetNextRound(Greece)&lt;/span&gt;;
      else
        &lt;span&gt;SetNextRound(Korea)&lt;/span&gt;;
    else
      &lt;span&gt;SetNextRound(Korea)&lt;/span&gt;;
    break;
  case &lt;span&gt;Result.Lost&lt;/span&gt;:
    if (&lt;span&gt;GetResultMatch(Argentina, Greece)&lt;/span&gt; == &lt;span&gt;Result.Won&lt;/span&gt;)
      &lt;span&gt;SetNextRound(Nigeria)&lt;/span&gt;;
    else
      &lt;span&gt;SetNextRound(Greece)&lt;/span&gt;;
    break;
}
&lt;/pre&gt;
&lt;p&gt;I don’t think it’s possible for Greece to put Argentina two more goals down. South Korea should take the last game from Nigeria. I bet South Korea goes to the Round 16. And yourself guys?&lt;/p&gt;</description><link>http://tumblr.justinchronicles.net/post/709719356</link><guid>http://tumblr.justinchronicles.net/post/709719356</guid><pubDate>Fri, 18 Jun 2010 10:55:00 +1000</pubDate></item><item><title>Test from Posterous</title><description>&lt;p&gt;&lt;div class="posterous_autopost"&gt;This is test posting.      &lt;p style="font-size: 10px;"&gt;  &lt;a href="http://posterous.com" target="_blank"&gt;Posted via email&lt;/a&gt;   from &lt;a href="http://posterous.justinchronicles.net/test-from-posterous-72" target="_blank"&gt;Just in Chronicles&lt;/a&gt;  &lt;/p&gt;  &lt;/div&gt;&lt;/p&gt;</description><link>http://tumblr.justinchronicles.net/post/709555071</link><guid>http://tumblr.justinchronicles.net/post/709555071</guid><pubDate>Fri, 18 Jun 2010 09:54:35 +1000</pubDate></item><item><title>How to manually attach debugging to ASP.NET process</title><description>&lt;ul&gt;&lt;li&gt;&lt;a target="_blank" href="http://msdn.microsoft.com/en-us/library/dwesw3ee(VS.90).aspx"&gt;Error: Unable to Start Debugging on the Web Server&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;This is the way to manually attach debugger to process when debugging mode is not properly running because of the account privilege, especially for PHP scripts in Visual Studio 2008.&lt;/p&gt;

&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_l2wgy96XvD1qzhmhx.jpg"/&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_l2wgynd5Jr1qzhmhx.jpg"/&gt;&lt;/p&gt;

&lt;p&gt;PS. It’s been for age since the last post!&lt;/p&gt;</description><link>http://tumblr.justinchronicles.net/post/626644840</link><guid>http://tumblr.justinchronicles.net/post/626644840</guid><pubDate>Mon, 24 May 2010 11:23:03 +1000</pubDate><category>PHP</category><category>Visual Studio 2008</category><category>ASP.NET Debugger</category></item><item><title>To Encrypt/Decrypt web.config</title><description>&lt;p&gt;&lt;span&gt;
&lt;ul&gt;&lt;li&gt;&lt;span&gt;&lt;a target="_blank" href="http://www.codedigest.com/CodeDigest/107-Encrypting-Decrypting-Connection-String-in-ASP-Net.aspx"&gt;Encrypting/Decrypting Connection String in ASP.Net&lt;/a&gt;&lt;/span&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;It’s really complicating, though.&lt;/p&gt;
&lt;p&gt;It’s really annoying, though.&lt;/p&gt;</description><link>http://tumblr.justinchronicles.net/post/431287277</link><guid>http://tumblr.justinchronicles.net/post/431287277</guid><pubDate>Sun, 07 Mar 2010 12:29:41 +1100</pubDate><category>web.config</category><category>Encryption</category><category>Decryption</category></item><item><title>Installing PHP on IIS 7</title><description>&lt;ul&gt;&lt;li&gt;&lt;a target="_blank" href="http://www.php.net/releases/"&gt;PHP 5.2.5&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a target="_blank" href="http://learn.iis.net/page.aspx/246/using-fastcgi-to-host-php-applications-on-iis-70/"&gt;Using FastCGI to Host PHP Applications on IIS 7.0&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a target="_blank" href="http://learn.iis.net/page.aspx/531/url-rewrite-for-hosters/"&gt;URL Rewrite for Hosters&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a target="_blank" href="http://learn.iis.net/page.aspx/460/using-url-rewrite-module/"&gt;Using URL Rewrite Module&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;Unlike IIS 5.1 running on WindowsXP, IIS 7.0 on Windows Vista and IIS 7.5 on Windows 7 are a lot different, in terms of setting up. Well, even though Windows Web Platform Installer can automate all the set up process, manual set-up needs be learned for troubleshooting.&lt;/p&gt;</description><link>http://tumblr.justinchronicles.net/post/390854012</link><guid>http://tumblr.justinchronicles.net/post/390854012</guid><pubDate>Tue, 16 Feb 2010 01:55:00 +1100</pubDate><category>Windows 7</category><category>IIS 7</category><category>PHP</category><category>URL Rewriting</category><category>FastCGI</category></item><item><title>IIS 7.0 + FTP 7.0 : 530 Error</title><description>&lt;p&gt;When setting up user accounts on FTP 7.0 running onto IIS 7.0, the username of it must be the same as its root directory. Otherwise, the error message below will come up.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;&lt;i&gt;530 User cannot log in, home directory inaccessible.&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;</description><link>http://tumblr.justinchronicles.net/post/381841545</link><guid>http://tumblr.justinchronicles.net/post/381841545</guid><pubDate>Thu, 11 Feb 2010 01:19:02 +1100</pubDate><category>IIS 7.0</category><category>FTP 7.0</category><category>530 Error</category></item><item><title>GoDaddy IIS7 URL Rewrite</title><description>&lt;ul&gt;&lt;li&gt;&lt;a target="_blank" href="http://www.managedfusion.com/products/url-rewriter/"&gt;&lt;a href="http://www.managedfusion.com/products/url-rewriter/" target="_blank"&gt;http://www.managedfusion.com/products/url-rewriter/&lt;/a&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a target="_blank" href="http://robboek.com/2009/01/03/using-wordpress-on-iis7/"&gt;&lt;a href="http://robboek.com/2009/01/03/using-wordpress-on-iis7/" target="_blank"&gt;http://robboek.com/2009/01/03/using-wordpress-on-iis7/&lt;/a&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a target="_blank" href="http://help.godaddy.com/topic/623/article/5443"&gt;&lt;a href="http://help.godaddy.com/topic/623/article/5443" target="_blank"&gt;http://help.godaddy.com/topic/623/article/5443&lt;/a&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a target="_blank" href="http://learn.iis.net/page.aspx/465/url-rewrite-module-configuration-reference"&gt;&lt;a href="http://learn.iis.net/page.aspx/465/url-rewrite-module-configuration-reference" target="_blank"&gt;http://learn.iis.net/page.aspx/465/url-rewrite-module-configuration-reference&lt;/a&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a target="_blank" href="http://learn.iis.net/page.aspx/470/import-apache-modrewrite-rules/"&gt;&lt;a href="http://learn.iis.net/page.aspx/470/import-apache-modrewrite-rules/" target="_blank"&gt;http://learn.iis.net/page.aspx/470/import-apache-modrewrite-rules/&lt;/a&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a target="_blank" href="http://learn.iis.net/page.aspx/761/provide-url-rewriting-functionality/"&gt;&lt;a href="http://learn.iis.net/page.aspx/761/provide-url-rewriting-functionality/" target="_blank"&gt;http://learn.iis.net/page.aspx/761/provide-url-rewriting-functionality/&lt;/a&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a target="_blank" href="http://learn.iis.net/page.aspx/531/url-rewrite-for-hosters/"&gt;&lt;a href="http://learn.iis.net/page.aspx/531/url-rewrite-for-hosters/" target="_blank"&gt;http://learn.iis.net/page.aspx/531/url-rewrite-for-hosters/&lt;/a&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a target="_blank" href="http://learn.iis.net/page.aspx/518/rule-templates-overview/"&gt;&lt;a href="http://learn.iis.net/page.aspx/518/rule-templates-overview/" target="_blank"&gt;http://learn.iis.net/page.aspx/518/rule-templates-overview/&lt;/a&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;In order to get both web sites - dev and live - working and search engines optimised, URL rewriting must be done.&lt;/p&gt;</description><link>http://tumblr.justinchronicles.net/post/379918499</link><guid>http://tumblr.justinchronicles.net/post/379918499</guid><pubDate>Wed, 10 Feb 2010 00:01:20 +1100</pubDate><category>GoDaddy</category><category>IIS7</category><category>URL Rewriting</category></item><item><title>GymLog/ 08/02/2010</title><description>&lt;ul&gt;&lt;li&gt;0600 0700 BodyAttack&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;Can’t get myself into the rhythm. T.T Used be a “Pump-it-up” expert, though!&lt;/p&gt;</description><link>http://tumblr.justinchronicles.net/post/377522357</link><guid>http://tumblr.justinchronicles.net/post/377522357</guid><pubDate>Mon, 08 Feb 2010 16:19:00 +1100</pubDate><category>GymLog</category></item><item><title>GymLog/ 04/02/2010</title><description>&lt;p&gt;&lt;ul&gt;&lt;li&gt;0600 0700 BodyPump&lt;/li&gt;
&lt;/ul&gt;&lt;/p&gt;</description><link>http://tumblr.justinchronicles.net/post/377514308</link><guid>http://tumblr.justinchronicles.net/post/377514308</guid><pubDate>Mon, 08 Feb 2010 16:15:07 +1100</pubDate><category>GymLog</category></item><item><title>GymLog/ 30/01/2010</title><description>&lt;p&gt;&lt;ul&gt;&lt;li&gt;1230 1330 Weight training&lt;/li&gt;
&lt;li&gt;1330 1400 Cardio - Treadmill&lt;/li&gt;
&lt;/ul&gt;&lt;/p&gt;</description><link>http://tumblr.justinchronicles.net/post/360760212</link><guid>http://tumblr.justinchronicles.net/post/360760212</guid><pubDate>Sat, 30 Jan 2010 15:29:55 +1100</pubDate><category>GymLog</category></item><item><title>GymLog/ 28/01/2010</title><description>&lt;ul&gt;&lt;li&gt;1730 1830 BodyStep&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;Depending on a trainer, the exercise class becomes fun or not.&lt;/p&gt;</description><link>http://tumblr.justinchronicles.net/post/358880588</link><guid>http://tumblr.justinchronicles.net/post/358880588</guid><pubDate>Fri, 29 Jan 2010 13:37:53 +1100</pubDate><category>GymLog</category></item><item><title>GymLog/ 26/01/2010</title><description>&lt;ul&gt;&lt;li&gt;1230 1330 Weight Training&lt;/li&gt;
&lt;li&gt;1330 1400 Cardio - Treadmills&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;Need to keep regular exercise. I know it’s hard to keep up but should do!&lt;/p&gt;</description><link>http://tumblr.justinchronicles.net/post/355370321</link><guid>http://tumblr.justinchronicles.net/post/355370321</guid><pubDate>Wed, 27 Jan 2010 13:46:54 +1100</pubDate><category>GymLog</category></item><item><title>GymLog/ 24/01/2010</title><description>&lt;ul&gt;&lt;li&gt;1030 1130 BodyPump&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;It is pretty much similar to the exercise when I ran rollerblading. Squart, Dead lift, and so on… Also, I thing it might be able to cover my weight training. Well, let’s give it a go!&lt;/p&gt;</description><link>http://tumblr.justinchronicles.net/post/350035610</link><guid>http://tumblr.justinchronicles.net/post/350035610</guid><pubDate>Sun, 24 Jan 2010 14:32:56 +1100</pubDate><category>GymLog</category></item><item><title>Sequence numbers</title><description>&lt;a href="http://www.askoxford.com/asktheexperts/faq/aboutwords/primary"&gt;Sequence numbers&lt;/a&gt;: &lt;p&gt;There are many ways to count numbers in English. This is the numbering method for sequences.&lt;/p&gt;</description><link>http://tumblr.justinchronicles.net/post/344978737</link><guid>http://tumblr.justinchronicles.net/post/344978737</guid><pubDate>Thu, 21 Jan 2010 10:40:00 +1100</pubDate><category>Sequences</category></item><item><title>GymLog/ 16/01/2010</title><description>&lt;p&gt;1030 1130 BodyAttack&lt;/p&gt;
&lt;p&gt;People never stopped running for an hour, even they were drinking water!&lt;/p&gt;</description><link>http://tumblr.justinchronicles.net/post/338604832</link><guid>http://tumblr.justinchronicles.net/post/338604832</guid><pubDate>Sun, 17 Jan 2010 16:36:21 +1100</pubDate><category>GymLog</category></item><item><title>GymLog/ 15/01/2010</title><description>&lt;ul&gt;&lt;li&gt;0645 0800 Weight training&lt;/li&gt;
&lt;li&gt;0800 0840 Cardio - Tread mill&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;Got up too late this morning to attend BodyAttack class. T.T Instead, did weight training for more than an hour.&lt;/p&gt;</description><link>http://tumblr.justinchronicles.net/post/335646061</link><guid>http://tumblr.justinchronicles.net/post/335646061</guid><pubDate>Fri, 15 Jan 2010 22:00:33 +1100</pubDate><category>GymLog</category></item><item><title>GymLog/ 12/01/2010</title><description>&lt;ul&gt;&lt;li&gt;0600 0700 BodyStep&lt;/li&gt;
&lt;li&gt;0700 0730 Cardio - Tread mill&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;I didn’t think that stepping workout was so hard. Oh, my, goodness. Such my prejudice! It tried to kill me this morning!&lt;/p&gt;</description><link>http://tumblr.justinchronicles.net/post/332316556</link><guid>http://tumblr.justinchronicles.net/post/332316556</guid><pubDate>Wed, 13 Jan 2010 23:51:22 +1100</pubDate></item><item><title>GymLog/ 12/01/2010</title><description>&lt;ul&gt;&lt;li&gt;0800 0900 Weight Training&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;Well, getting lazier. Should keep up myself!&lt;/p&gt;</description><link>http://tumblr.justinchronicles.net/post/329606707</link><guid>http://tumblr.justinchronicles.net/post/329606707</guid><pubDate>Tue, 12 Jan 2010 12:13:09 +1100</pubDate><category>GymLog</category></item></channel></rss>

