<?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>LAMP How To - Open Source At Work &#187; Think Technology</title>
	<atom:link href="http://www.azhowto.com/category/new-technologies/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.azhowto.com</link>
	<description>Only Passion Matters</description>
	<lastBuildDate>Wed, 01 Sep 2010 01:49:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Preserving HTML in XML</title>
		<link>http://www.azhowto.com/2010/05/06/preserving-html-in-xml/</link>
		<comments>http://www.azhowto.com/2010/05/06/preserving-html-in-xml/#comments</comments>
		<pubDate>Thu, 06 May 2010 22:41:49 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Software]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=669</guid>
		<description><![CDATA[Characters like &#8220;&#60;&#8221; and &#8220;&#38;&#8221; are illegal in XML elements. &#8220;&#60;&#8221; will generate an error because the parser interprets it as the start of a new element. &#8220;&#38;&#8221; will generate an error because the parser interprets it as the start of an character entity. Some text, like JavaScript code, contains a lot of &#8220;&#60;&#8221; or [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2010/05/06/preserving-html-in-xml/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVN over HTTP</title>
		<link>http://www.azhowto.com/2010/03/29/svn-over-http/</link>
		<comments>http://www.azhowto.com/2010/03/29/svn-over-http/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 05:46:31 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Linux]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=657</guid>
		<description><![CDATA[Objective
I want to be able to browse the svn dir from a website like http://zeus.dev/svn.php and at the same time, be able to checkout from the repository via http://zeus.dev/svn/projectname
How

First of all, install mod_dav_svn
Then in the apache config, I am using vhost for example
&#60;VirtualHost *:80&#62;
  DocumentRoot /home/data/zeus.dev/apps/
  ServerName zeus.dev
  # this is for [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2010/03/29/svn-over-http/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick SVN Tutorial</title>
		<link>http://www.azhowto.com/2010/03/29/quick-svn-tutorial/</link>
		<comments>http://www.azhowto.com/2010/03/29/quick-svn-tutorial/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 02:43:13 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think PHP]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=652</guid>
		<description><![CDATA[Create New Repo
svnadmin create /home/data/svn/[dir-name]
chown apache:developer -R /home/data/svn/[dir-name]
chown 2770 /home/data/svn/[dir-name]

Import New Site

 ssh into server
 to import new site to the trunk,

svn import [your-site] file:///home/data/svn/[your-site-name] -m "[import comments]"

View Available Sites In Trunk
svn ls file:///home/svn/trunk/

Checking Out a Site

 Create a directory to checkout and use &#8217;svn co&#8217;

 cd ~
 mkdir [my-site]
 svn co file:///home/svn/trunk/[site-name] [my-site]

Updating a [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2010/03/29/quick-svn-tutorial/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Implementing SSL Certificates in Apache</title>
		<link>http://www.azhowto.com/2010/03/29/implementing-ssl-certificates-in-apache/</link>
		<comments>http://www.azhowto.com/2010/03/29/implementing-ssl-certificates-in-apache/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 02:36:22 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Linux]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=650</guid>
		<description><![CDATA[Creating a Private Key
To create a private key without triple des encryption, use the following command:
openssl genrsa -out ssl.key 1024

Creating a Certificate Signing Request
To obtain a certificate signed by a certificate authority, you will need to create a Certificate Signing Request (CSR). The purpose is to send the certificate authority enough information to create the [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2010/03/29/implementing-ssl-certificates-in-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Highly available load Balancer + web server in centos</title>
		<link>http://www.azhowto.com/2010/02/10/highly-available-load-balancer-web-server-in-centos/</link>
		<comments>http://www.azhowto.com/2010/02/10/highly-available-load-balancer-web-server-in-centos/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 10:38:57 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Linux]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[xen]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=629</guid>
		<description><![CDATA[This tutorial is about creating a highly available HTTP load balancer using HAProxy. The setup can be slightly complicated but you will appreciate the result &#8211; you will get a load-balanced + highly available web service in your network. Basic linux skill is assumed.
Scenario:
Imagine we have 2 physical machines. In each machine, I have 2 [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2010/02/10/highly-available-load-balancer-web-server-in-centos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing KVM in Centos, Redhat or Fedora</title>
		<link>http://www.azhowto.com/2009/12/23/installing-kvm-in-centos-redhat-or-fedora/</link>
		<comments>http://www.azhowto.com/2009/12/23/installing-kvm-in-centos-redhat-or-fedora/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 12:37:27 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Linux]]></category>
		<category><![CDATA[Think Networking]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[kvm]]></category>
		<category><![CDATA[virtualisation]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=600</guid>
		<description><![CDATA[KVM is available in RHEL 5.4. I finally managed to find the time to play around it over the weekend. I don&#8217;t think it is as matured as xen but having said that, I do agree with the approach &#8211; Kernel virtualisation. Redhat is promoting kvm very hard and you can see it from their [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/12/23/installing-kvm-in-centos-redhat-or-fedora/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting Up A Secure Linux Authentication Server Quickly (LDAP + TLS + SAMBA)</title>
		<link>http://www.azhowto.com/2009/09/18/setting-up-a-secure-linux-authentication-server-quickly-ldap-tls-samba/</link>
		<comments>http://www.azhowto.com/2009/09/18/setting-up-a-secure-linux-authentication-server-quickly-ldap-tls-samba/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 05:40:22 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Think Linux]]></category>
		<category><![CDATA[Think Networking]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[ldap]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[tls]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=552</guid>
		<description><![CDATA[Just like microsoft active directory, having a centralised authentication server in linux is important especially when you have more than one server or service to manage. Just imagine each service (ssh, samba, httpd&#8230;etc) has its own user database&#8230; Sooner or later, you will find managing users very difficult. A simple task like deleting a user [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/09/18/setting-up-a-secure-linux-authentication-server-quickly-ldap-tls-samba/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>mounting samba share and finding samba ip in linux</title>
		<link>http://www.azhowto.com/2009/08/27/mounting-samba-share-and-finding-samba-ip-in-linux/</link>
		<comments>http://www.azhowto.com/2009/08/27/mounting-samba-share-and-finding-samba-ip-in-linux/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 04:44:40 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Linux]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[samba]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=534</guid>
		<description><![CDATA[following the samba/nfs post &#8211; http://www.azhowto.com/2009/08/07/mounting-file-systems-and-autofs-tips/ earlier, what if we do not know the ip address of the samba server?
if you just have the samba server name say ri-fnp, smbclient can find it easily for you, just do

smbclient //ri-fnp/backup -U user -W MYDOMAIN

If you want to mount it, you will need to know the ip [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/08/27/mounting-samba-share-and-finding-samba-ip-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Intel CPU that supports hardware assisted virtualisation</title>
		<link>http://www.azhowto.com/2009/08/10/intel-cpu-that-supports-hardware-assisted-virtualisation/</link>
		<comments>http://www.azhowto.com/2009/08/10/intel-cpu-that-supports-hardware-assisted-virtualisation/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 07:02:47 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Technology]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=503</guid>
		<description><![CDATA[I found this link today:
http://ark.intel.com/VTList.aspx

This is magical. Now we know what cpu to get right away.
and we can check the hardware compatibility here:
http://processormatch.intel.com/CompDB/
]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/08/10/intel-cpu-that-supports-hardware-assisted-virtualisation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Attaching cdrom to xen guest</title>
		<link>http://www.azhowto.com/2009/07/30/attaching-cdrom-to-xen-guest/</link>
		<comments>http://www.azhowto.com/2009/07/30/attaching-cdrom-to-xen-guest/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 23:28:09 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Think Linux]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[xen]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=467</guid>
		<description><![CDATA[If your guest is running

xm block-attach server_name /dev/cdrom r

to add cdrom in the config file

disk = [ "phy:/dev/vg/hermes,xvda,w", "phy:/dev/cdrom,xvdb:/dev/cdrom,r" ]

]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/07/30/attaching-cdrom-to-xen-guest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enchance the security of your data by using GNUPG</title>
		<link>http://www.azhowto.com/2009/06/12/enchance-the-security-of-your-data-by-using-gnupg/</link>
		<comments>http://www.azhowto.com/2009/06/12/enchance-the-security-of-your-data-by-using-gnupg/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 07:27:40 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Software]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[gnupg]]></category>
		<category><![CDATA[gpg]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=453</guid>
		<description><![CDATA[Cyber crime is prevalent today and will be more so in the future. It is very common for sensitive data to be leaked to unauthorised people. This can be done via electronically with or without the user knowing it. One such common practice is to send plain password or important documents via email.
A good solution [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/06/12/enchance-the-security-of-your-data-by-using-gnupg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2009 CA Melbourne Expo After Thoughts</title>
		<link>http://www.azhowto.com/2009/06/12/2009-ca-melbourne-expo-after-thoughts/</link>
		<comments>http://www.azhowto.com/2009/06/12/2009-ca-melbourne-expo-after-thoughts/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 06:04:37 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Technology]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=450</guid>
		<description><![CDATA[CA Expo is a one day event that provides a unique opportunity to hear the latest about CA solutions from leading Australian organisations, CA executives, and industry experts.
The agenda features case studies from leading organisations in Financial Services, Telecommunications, Government and more.
With a flexible framework of concurrent steams, delegates can attend the presentations of greatest [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/06/12/2009-ca-melbourne-expo-after-thoughts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Xen: Booting into run level 1</title>
		<link>http://www.azhowto.com/2009/05/15/xen-booting-into-run-level-1/</link>
		<comments>http://www.azhowto.com/2009/05/15/xen-booting-into-run-level-1/#comments</comments>
		<pubDate>Fri, 15 May 2009 08:09:56 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Linux]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[virtualisation]]></category>
		<category><![CDATA[xen]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=445</guid>
		<description><![CDATA[Booting into run level 1 from grub is useful in times of troubleshooting. I am using centos and my problem is when I am using xen, everything is automated by the pygrub bootloader.
I tried to google for a solution for a long time and couldn&#8217;t find anything. Someone suggested changing the inittab. Yes, I know [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/05/15/xen-booting-into-run-level-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Linux Partitioning Setup?</title>
		<link>http://www.azhowto.com/2009/04/10/best-linux-partitioning-setup/</link>
		<comments>http://www.azhowto.com/2009/04/10/best-linux-partitioning-setup/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 00:48:28 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Linux]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[lvm]]></category>
		<category><![CDATA[partitioning]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=436</guid>
		<description><![CDATA[Over the years, there were many attempts to find the best way to partition the hard disk or even the virtual machine. Do you need to have /var, /tmp, /usr&#8230;etc as separate partitions? Some people say it depends on what applications your server is running. If it is a mail server, maybe the /var might [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/04/10/best-linux-partitioning-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Xen Redundant Virtual Machines with Backup Procedures</title>
		<link>http://www.azhowto.com/2009/04/02/creating-xen-redundant-virtual-machines-with-backup-procedures/</link>
		<comments>http://www.azhowto.com/2009/04/02/creating-xen-redundant-virtual-machines-with-backup-procedures/#comments</comments>
		<pubDate>Thu, 02 Apr 2009 05:56:55 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Linux]]></category>
		<category><![CDATA[Think Networking]]></category>
		<category><![CDATA[Think Software]]></category>
		<category><![CDATA[Think Technology]]></category>
		<category><![CDATA[lvm]]></category>
		<category><![CDATA[xen]]></category>

		<guid isPermaLink="false">http://www.azhowto.com/?p=425</guid>
		<description><![CDATA[It is a good idea to backup the whole virtual machine to a separate machine to achieve redundancy. 99% uptime and full redundancy can be achieved using on-the-fly mirroring, ie network raid 1. Hardware and network performance will determine if this method will work or not. There are a few software that can achieve this. [...]]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/04/02/creating-xen-redundant-virtual-machines-with-backup-procedures/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some TV stations to end analog signal on Feb. 17 
    (AP)</title>
		<link>http://www.azhowto.com/2009/02/06/some-tv-stations-to-end-analog-signal-on-feb-17-ap/</link>
		<comments>http://www.azhowto.com/2009/02/06/some-tv-stations-to-end-analog-signal-on-feb-17-ap/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 06:44:12 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Technology]]></category>

		<guid isPermaLink="false">http://web-developer.sitecritic.net/2009/02/06/some-tv-stations-to-end-analog-signal-on-feb-17-ap/</guid>
		<description><![CDATA[AP &#8211; Television viewers who use antennas and were expecting a few more months to prepare for digital TV may not have much time left before their sets go dark: Many stations still plan to drop analog broadcasts in less than two weeks.

]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/02/06/some-tv-stations-to-end-analog-signal-on-feb-17-ap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Do you know where your kid is? Check Google&#8217;s maps 
    (AP)</title>
		<link>http://www.azhowto.com/2009/02/04/do-you-know-where-your-kid-is-check-googles-maps-ap/</link>
		<comments>http://www.azhowto.com/2009/02/04/do-you-know-where-your-kid-is-check-googles-maps-ap/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 18:43:52 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Technology]]></category>

		<guid isPermaLink="false">http://web-developer.sitecritic.net/2009/02/04/do-you-know-where-your-kid-is-check-googles-maps-ap/</guid>
		<description><![CDATA[AP &#8211; With an upgrade to its mobile maps, Google Inc. hopes to prove it can track people on the go as effectively as it searches for information on the Internet.

]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/02/04/do-you-know-where-your-kid-is-check-googles-maps-ap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac OS X Nears 10 Percent of Market as Windows Slips 
    (NewsFactor)</title>
		<link>http://www.azhowto.com/2009/02/03/mac-os-x-nears-10-percent-of-market-as-windows-slips-newsfactor/</link>
		<comments>http://www.azhowto.com/2009/02/03/mac-os-x-nears-10-percent-of-market-as-windows-slips-newsfactor/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 06:42:51 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Technology]]></category>

		<guid isPermaLink="false">http://web-developer.sitecritic.net/2009/02/03/mac-os-x-nears-10-percent-of-market-as-windows-slips-newsfactor/</guid>
		<description><![CDATA[NewsFactor &#8211; While Microsoft&#8217;s Windows 7 has been making tech news, Apple&#8217;s Mac OS X has moved up the market-share ladder. Apple&#8217;s operating system continued climbing for the third consecutive month, closing in on 10 percent of the operating-system market, according to Net Applications. Apple now claims 9.9 percent of the market.
]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/02/03/mac-os-x-nears-10-percent-of-market-as-windows-slips-newsfactor/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IE&#8217;s Loss is Firefox, Safari, Chrome&#8217;s Gain 
    (PC Magazine)</title>
		<link>http://www.azhowto.com/2009/02/03/ies-loss-is-firefox-safari-chromes-gain-pc-magazine/</link>
		<comments>http://www.azhowto.com/2009/02/03/ies-loss-is-firefox-safari-chromes-gain-pc-magazine/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 06:42:51 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Technology]]></category>

		<guid isPermaLink="false">http://web-developer.sitecritic.net/2009/02/03/ies-loss-is-firefox-safari-chromes-gain-pc-magazine/</guid>
		<description><![CDATA[PC Magazine &#8211; Internet Explorer&#8217;s market share continued to drop last month as Mozilla&#8217;s Firefox, Google&#8217;s Chrome, and Apple&#8217;s Safari saw small gains, according to data released Monday by Net Applications.
]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/02/03/ies-loss-is-firefox-safari-chromes-gain-pc-magazine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wi-Fi Provider Signs Deal With BART 
    (PC World)</title>
		<link>http://www.azhowto.com/2009/02/03/wi-fi-provider-signs-deal-with-bart-pc-world/</link>
		<comments>http://www.azhowto.com/2009/02/03/wi-fi-provider-signs-deal-with-bart-pc-world/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 06:42:51 +0000</pubDate>
		<dc:creator>bpeh</dc:creator>
				<category><![CDATA[Think Technology]]></category>

		<guid isPermaLink="false">http://web-developer.sitecritic.net/2009/02/03/wi-fi-provider-signs-deal-with-bart-pc-world/</guid>
		<description><![CDATA[PC World &#8211; Riders on the San Francisco Bay Area Rapid Transit District&#8217;s trains will be able to buy Wi-Fi Internet access on a network scheduled to cover all 104 miles (167 kilometers) of the rail system by 2011.
]]></description>
		<wfw:commentRss>http://www.azhowto.com/2009/02/03/wi-fi-provider-signs-deal-with-bart-pc-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
