<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for My Web Information Blog Site</title>
	<link>http://blog.myweb-info.com</link>
	<description>My Web Information Blog</description>
	<pubDate>Wed, 10 Mar 2010 18:20:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>

	<item>
		<title>Comment on Connect your smartphone to your laptop using Bluetooth and turn your Windows Mobile phone into a wireless modem by Tons</title>
		<link>http://blog.myweb-info.com/2009/05/10/connect-your-smartphone-to-your-laptop-using-bluetooth-and-turn-your-windows-mobile-phone-into-a-wireless-modem/#comment-8</link>
		<author>Tons</author>
		<pubDate>Sun, 10 May 2009 01:12:35 +0000</pubDate>
		<guid>http://blog.myweb-info.com/2009/05/10/connect-your-smartphone-to-your-laptop-using-bluetooth-and-turn-your-windows-mobile-phone-into-a-wireless-modem/#comment-8</guid>
		<description>Connect to your laptop using Bluetooth
The initial pairing is the hard part, and thankfully it only has to be done once. Now you're ready to connect your laptop to your smartphone:

    *
      Ensure that Bluetooth is activated on both your smartphone and your laptop. On your smartphone, find the Internet Sharing program and open it. Change the PC Connection setting to Bluetooth PAN. The default connection setting should be fine for the Network Connection (it will be the same connection your phone uses to check e-mail). Click Connect, and the Status will change to Device setup finished. On the PC, connect Bluetooth PAN. Your smartphone is now ready to accept a Bluetooth connection from your laptop.
      Configuring Internet Sharing for Bluetooth
    *
      On your laptop, right-click the Bluetooth icon, and look for a menu option called Join a Personal Network or Join a PAN. Click that menu option.
    *
      You'll probably only see one device (your phone) listed there. Select the device, and click the Connect button in the lower-right corner.
      Selecting the Personal Area Network Device

      Everything should proceed automatically from this point. You'll see the software make a connection with the smartphone, and within a few seconds, you should have a live Internet connection. Open your web browser for a quick test, and you're good to go.

      The laptop software lets you know when the Bluetooth connection is successful.
    *
      When you're finished with the Internet connection, on your phone go to Internet Sharing, and click Disconnect. That puts your phone back to its normal state and terminates the active Bluetooth connection between your laptop and your smartphone.</description>
		<content:encoded><![CDATA[<p>Connect to your laptop using Bluetooth<br />
The initial pairing is the hard part, and thankfully it only has to be done once. Now you&#8217;re ready to connect your laptop to your smartphone:</p>
<p>    *<br />
      Ensure that Bluetooth is activated on both your smartphone and your laptop. On your smartphone, find the Internet Sharing program and open it. Change the PC Connection setting to Bluetooth PAN. The default connection setting should be fine for the Network Connection (it will be the same connection your phone uses to check e-mail). Click Connect, and the Status will change to Device setup finished. On the PC, connect Bluetooth PAN. Your smartphone is now ready to accept a Bluetooth connection from your laptop.<br />
      Configuring Internet Sharing for Bluetooth<br />
    *<br />
      On your laptop, right-click the Bluetooth icon, and look for a menu option called Join a Personal Network or Join a PAN. Click that menu option.<br />
    *<br />
      You&#8217;ll probably only see one device (your phone) listed there. Select the device, and click the Connect button in the lower-right corner.<br />
      Selecting the Personal Area Network Device</p>
<p>      Everything should proceed automatically from this point. You&#8217;ll see the software make a connection with the smartphone, and within a few seconds, you should have a live Internet connection. Open your web browser for a quick test, and you&#8217;re good to go.</p>
<p>      The laptop software lets you know when the Bluetooth connection is successful.<br />
    *<br />
      When you&#8217;re finished with the Internet connection, on your phone go to Internet Sharing, and click Disconnect. That puts your phone back to its normal state and terminates the active Bluetooth connection between your laptop and your smartphone.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Learning Java by Tons</title>
		<link>http://blog.myweb-info.com/2008/08/14/learning-java/#comment-7</link>
		<author>Tons</author>
		<pubDate>Fri, 15 Aug 2008 05:58:33 +0000</pubDate>
		<guid>http://blog.myweb-info.com/2008/08/14/learning-java/#comment-7</guid>
		<description>1.  Class JOptionPane - defined in a package called javax.swing. It contains methods that display a dialog box containing information.

2.  import - statement to locate classes required  to compile a java program.

3.  showMessageDialog - part of class JOptionPane. It shows the messages in a dialogue box with the result of an arguments.

4.  Integer.parseInt - converts its String argument to an integer. Supposing you enter in a dialogue box a number then you can you this tag to convert it to integer.</description>
		<content:encoded><![CDATA[<p>1.  Class JOptionPane - defined in a package called javax.swing. It contains methods that display a dialog box containing information.</p>
<p>2.  import - statement to locate classes required  to compile a java program.</p>
<p>3.  showMessageDialog - part of class JOptionPane. It shows the messages in a dialogue box with the result of an arguments.</p>
<p>4.  Integer.parseInt - converts its String argument to an integer. Supposing you enter in a dialogue box a number then you can you this tag to convert it to integer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Learning Java by Tons</title>
		<link>http://blog.myweb-info.com/2008/08/14/learning-java/#comment-6</link>
		<author>Tons</author>
		<pubDate>Fri, 15 Aug 2008 05:47:24 +0000</pubDate>
		<guid>http://blog.myweb-info.com/2008/08/14/learning-java/#comment-6</guid>
		<description>1.  System.out - known as the standard output object. It allows java applications to display strings and other types of information in the command window from which the java application is executed.

2.  println - of the System.out displays a line of information in the command window.

3.  System.out.print - does not position to the beginning of the next line in the command window when it finishes displaying its argument.  The next character that is displayed in the command window will appear immediately after the last character displayed with System.out.print.</description>
		<content:encoded><![CDATA[<p>1.  System.out - known as the standard output object. It allows java applications to display strings and other types of information in the command window from which the java application is executed.</p>
<p>2.  println - of the System.out displays a line of information in the command window.</p>
<p>3.  System.out.print - does not position to the beginning of the next line in the command window when it finishes displaying its argument.  The next character that is displayed in the command window will appear immediately after the last character displayed with System.out.print.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Learning Java by Tons</title>
		<link>http://blog.myweb-info.com/2008/08/14/learning-java/#comment-5</link>
		<author>Tons</author>
		<pubDate>Fri, 15 Aug 2008 05:24:59 +0000</pubDate>
		<guid>http://blog.myweb-info.com/2008/08/14/learning-java/#comment-5</guid>
		<description>Day 2

1. Access Modifier - specifies the circumstances in which the class can be accessed. Example is public which indicates that this code can be accessed by all objects or can be extended, or used as a basis for another class. If public is omitted then you limit it only for this class. Access Modifier is followed by the word  class.

2.  Class Name - Example is public class XXX.  The class name here is XXX which is a name assigned by you.  It should be user-friendly word that is not on the list of reserved words, contain no spaces and must not begin with number. 
Example: 
          Record123 (good)     Record 123 (bad with space)
          Employ               123data    (bad begin with numbers)

3.  public static void main ( String args[] )  -  is a part of every Java application.
    A.  Paranthesis after main - indicate that main is a program building block called a method.
    B.  void - indicate that this method will perform a task but will not return any information when it completes its task.</description>
		<content:encoded><![CDATA[<p>Day 2</p>
<p>1. Access Modifier - specifies the circumstances in which the class can be accessed. Example is public which indicates that this code can be accessed by all objects or can be extended, or used as a basis for another class. If public is omitted then you limit it only for this class. Access Modifier is followed by the word  class.</p>
<p>2.  Class Name - Example is public class XXX.  The class name here is XXX which is a name assigned by you.  It should be user-friendly word that is not on the list of reserved words, contain no spaces and must not begin with number.<br />
Example:<br />
          Record123 (good)     Record 123 (bad with space)<br />
          Employ               123data    (bad begin with numbers)</p>
<p>3.  public static void main ( String args[] )  -  is a part of every Java application.<br />
    A.  Paranthesis after main - indicate that main is a program building block called a method.<br />
    B.  void - indicate that this method will perform a task but will not return any information when it completes its task.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What is a Credit Score? by Tons</title>
		<link>http://blog.myweb-info.com/2008/07/21/what-is-a-credit-score/#comment-4</link>
		<author>Tons</author>
		<pubDate>Thu, 24 Jul 2008 22:13:57 +0000</pubDate>
		<guid>http://blog.myweb-info.com/2008/07/21/what-is-a-credit-score/#comment-4</guid>
		<description>&lt;p&gt;Credit scores are designed to measure the risk of default by taking into account various factors in a person's financial history. Although the exact formulas for calculating credit scores are closely guarded secrets, the  following components and the approximate weighted contribution of each:&lt;/p&gt;
&lt;p&gt;    
    * 35% — punctuality of payment in the past (only includes payments later than 30 days past due)&lt;br /&gt;
    * 30% — the amount of debt, expressed as the ratio of current revolving debt (credit card balances, etc.) to total available revolving credit (credit limits)&lt;br /&gt;
    * 15% — length of credit history&lt;br /&gt;
    * 10% — types of credit used (installment, revolving, consumer finance)&lt;br /&gt;
    * 10% — recent search for credit and/or amount of credit obtained recently&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Credit scores are designed to measure the risk of default by taking into account various factors in a person&#8217;s financial history. Although the exact formulas for calculating credit scores are closely guarded secrets, the  following components and the approximate weighted contribution of each:</p>
<p>
    * 35% — punctuality of payment in the past (only includes payments later than 30 days past due)<br />
    * 30% — the amount of debt, expressed as the ratio of current revolving debt (credit card balances, etc.) to total available revolving credit (credit limits)<br />
    * 15% — length of credit history<br />
    * 10% — types of credit used (installment, revolving, consumer finance)<br />
    * 10% — recent search for credit and/or amount of credit obtained recently</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What is a Credit Score? by Tons</title>
		<link>http://blog.myweb-info.com/2008/07/21/what-is-a-credit-score/#comment-3</link>
		<author>Tons</author>
		<pubDate>Mon, 21 Jul 2008 20:43:07 +0000</pubDate>
		<guid>http://blog.myweb-info.com/2008/07/21/what-is-a-credit-score/#comment-3</guid>
		<description>4 major credit bureaus collect information about credit card and give you your score namely:  Equifax, Experian, TransUnion and Fair Isaac Corporation (FICO).</description>
		<content:encoded><![CDATA[<p>4 major credit bureaus collect information about credit card and give you your score namely:  Equifax, Experian, TransUnion and Fair Isaac Corporation (FICO).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What is a Credit Score? by Tons</title>
		<link>http://blog.myweb-info.com/2008/07/21/what-is-a-credit-score/#comment-2</link>
		<author>Tons</author>
		<pubDate>Mon, 21 Jul 2008 20:40:38 +0000</pubDate>
		<guid>http://blog.myweb-info.com/2008/07/21/what-is-a-credit-score/#comment-2</guid>
		<description>If your score is already high, you will want to maintain it to ensure you're getting the best rates around.  Make all your payments on time and keep balances low on revolving credit.</description>
		<content:encoded><![CDATA[<p>If your score is already high, you will want to maintain it to ensure you&#8217;re getting the best rates around.  Make all your payments on time and keep balances low on revolving credit.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
