<?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>Robert Rolfe</title>
	<atom:link href="http://www.robertrolfe.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.robertrolfe.com</link>
	<description>Linux, Technology, The Internet &#38; Other Random Musing...</description>
	<lastBuildDate>Fri, 18 Nov 2011 17:11:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to use Logical Volume Manager on Linux</title>
		<link>http://www.robertrolfe.com/blog/linux/logical-volume-manager-linux/</link>
		<comments>http://www.robertrolfe.com/blog/linux/logical-volume-manager-linux/#comments</comments>
		<pubDate>Thu, 15 Sep 2011 15:43:48 +0000</pubDate>
		<dc:creator>Robert Rolfe</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.robertrolfe.com/?p=464</guid>
		<description><![CDATA[The Logical Volume Manager, LVM, on Linux is a powerful and useful tool for creating and managing volumes for a variety of uses. LVM comes installed as part of the base installation on Centos, Red Hat, and Ubuntu and can be setup during the install process or after your install is complete. Some of the [...]]]></description>
			<content:encoded><![CDATA[<p>The Logical Volume Manager, LVM, on Linux is a powerful and useful tool for creating and managing volumes for a variety of uses. LVM comes installed as part of the base installation on Centos, Red Hat, and Ubuntu and can be setup during the install process or after your install is complete. Some of the more popular uses for LVM include:</p>
<ul>
<li>Creating large volumes that span multiple physical drives</li>
<li>Creating smaller volumes from a large physical drives</li>
<li>Creating volumes that can be dynamically resized</li>
</ul>
<p>LVM can also be used to simulate striping and mirroring raid volumes however this is best done using the Linux Multiple Device Administrator, mdadm.</p>
<p>The basic principals for using LVM are the same regardless of how you are going to use it. The easiest way to remember it is to think of LVM as the following 3 level structure:</p>
<ul>
<li><strong>Physical Volumes:</strong> These are your actual storage drives. The physical volume can either be a whole physical drive such as /dev/sda or it can be a partition on the physical drive such as /dev/sda1. All of the commands for this level start with the letters &#8220;pv&#8221;.</li>
<li><strong>Volume Groups:</strong> Your Physical Volumes are taken and stored together as part of a volume group. Groups can be named anything you like and you can have multiple groups of PV&#8217;s on a system. All of the commands for this level start with the letters &#8220;vg&#8221;.</li>
<li><strong>Logical Volumes:</strong> The usable devices you create from your Volume Groups. You specify the size of each device when you create it and you can re-size it later if needed. All of the commands for this level start with the letters&#8230; &#8220;lv&#8221;. (really, who would have guessed?)</li>
</ul>
<p>So&#8230; Let&#8217;s get started on using the LVM. I&#8217;ll be using a Red Hat 6 clone for all of the examples below.</p>
<p><strong>Partitioning Your Drives</strong><br />
If you&#8217;re going to use full empty drives for your physical volumes then you can skip this setup and jump right to &#8220;Setting Up Physical Volumes&#8221;. If your drives are not empty or you simply want to use a portion of them then your going to need to create a LVM partition. If your performing a fresh install of Linux using Centos or Red Hat then you can simply create a partition using the file system type &#8220;Physical Volume (LVM)&#8221;.</p>
<p>On a already installed system, this becomes slightly more difficult. We will use the &#8220;fdisk&#8221; utility to partition the drive and change the partition type to &#8220;8e&#8221; which is labeled &#8220;Linux LVM&#8221;. In the example below I will use /dev/sda as my physical disk, this may be a different drive for you so be sure to specify the correct one.</p>
<blockquote><p><span class="Apple-style-span" style="font-family: Consolas, Monaco, monospace; font-size: 12px; line-height: 18px; white-space: pre;">[root@storage ~]# fdisk /dev/sda<br />
Command (m for help): <strong>p</strong></span></p>
<pre>Disk /dev/sda: 1000.0 GB, 999989182464 bytes
255 heads, 63 sectors/track, 121575 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x673a61fd

  Device Boot   Start     End   Blocks  Id System

Command (m for help): <strong>n</strong>
Command action
  e  extended
  p  primary partition (1-4)
<strong>p</strong>
Partition number (1-4): <strong>1</strong>
First cylinder (1-121575, default 1):
Using default value 1
Last cylinder, +cylinders or +size{K,M,G} (1-121575, default 121575): <strong>+100GB</strong>

Command (m for help): <strong>p</strong>

Disk /dev/sda: 1000.0 GB, 999989182464 bytes
255 heads, 63 sectors/track, 121575 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x673a61fd

  Device Boot   Start     End   Blocks  Id System
/dev/sda1        1    12159  97667136  83 Linux

Command (m for help): <strong>t</strong>
Selected partition 1
Hex code (type L to list codes): <strong>8e</strong>
Changed system type of partition 1 to 8e (Linux LVM)

Command (m for help): <strong>w</strong>
The partition table has been altered!

Calling ioctl() to re-read partition table.
Syncing disks.</pre>
</blockquote>
<p>As you can see we ran fdisk on /dev/sda and checked the partition table with the &#8220;p&#8221; command. There were no partitions so I created a new partition using the &#8220;n&#8221; command, specified a primary partition and a size of 100GB. Once the partition was created I printed the partition table again using the &#8220;p&#8221; command and we can see that the new partition has a ID of 83 which is the type &#8220;Linux&#8221;. I used the &#8220;t&#8221; command to change the partition type to &#8220;8e&#8221; which is the type &#8220;Linux LVM&#8221;. After writing the partition table to the disk using the &#8220;w&#8221; command the system re-read the partition table to loaded the new partitions using the kernel.</p>
<p>Our new Linux LVM partition is ready to be used as a physical volume.</p>
<p><strong>Setting Up Physical Volumes<br />
</strong>Setting up your physical volumes is one of the easiest steps in the entire setup. A single command &#8220;pvcreate&#8221; needs to be run on each drive or partition you want to use with LVM. Simply change the /dev/ reference below and repeat for as many drives or partitions as you will be using with LVM.</p>
<blockquote>
<pre>[root@storage ~]# pvcreate /dev/sda1
 Physical volume "/dev/sda1" successfully created</pre>
</blockquote>
<p><strong>Creating A Volume Group</strong><br />
The volume group takes multiple physical volumes and groups them together to be used when creating the logical volumes. To create a volume group use the &#8220;vgcreate&#8221; command and specify the name and physical volumes you want to include in the group. Don&#8217;t worry if you forget some of your physical volumes as you can add more PV&#8217;s to the group after it has been created. Here we will create a new volume group called &#8220;vg_test&#8221; and include our /dev/sda1 physical volume.</p>
<blockquote>
<pre>[root@storage ~]# vgcreate vg_test /dev/sda1
 Volume group "vg_test" successfully created</pre>
</blockquote>
<p><strong>Creating a Logical Volume</strong><br />
The logical volume is the actual virtual device you are going to use for storage in your system. Each LV is created in a volume group and the group decides how to place them on the physical volumes. For basic volumes all that needs to be specified is the size and name of the logical volume and which volume group you want to place it in. Here I created a simple 20GB logical volume in the volume group &#8220;vg_test&#8221; that we created about. The logical volume group size is specified using the &#8220;-L&#8221; flag and the name 0f the new volume is specified using the &#8220;-n&#8221; flag.</p>
<blockquote>
<pre>[root@storage ~]# lvcreate -n lv_testing -L 20G vg_test
 Logical volume "lv_testing" created</pre>
</blockquote>
<p>This logical volume is now setup and can be used if we formatted and mounted it. The block device can be found at /dev/vg_test/lv_testing on the file system for use with mkfs and mount.</p>
<p><strong>Checking Logical Volume Information</strong><br />
We can check on the logical volumes information by running the &#8220;lvdisplay&#8221; command with the volume group and logical volume names. This gives you the volumes UUID and other status information.</p>
<blockquote>
<pre>[root@storage ~]# lvdisplay vg_test/lv_testing
 --- Logical volume ---
 LV Name        /dev/vg_test/lv_testing
 VG Name        vg_test
 LV UUID        FrW4Qr-p9S2-u2zx-UDmx-c5VD-wvzN-KsTVOb
 LV Write Access    read/write
 LV Status       available
 # open         0
 LV Size        20.00 GiB
 Current LE       5120
 Segments        1
 Allocation       inherit
 Read ahead sectors   auto
 - currently set to   256
 Block device      253:0</pre>
</blockquote>
<p><strong>Checking the Volume Group Information</strong><br />
We can check on our volume group by running the &#8220;vgdisplay&#8221; command. This displays the number of logical volumes in the group, total amount of space used, the amount of space available in the group, and the number of physical volumes in the group.</p>
<blockquote>
<pre>[root@storage ~]# vgdisplay vg_test
 --- Volume group ---
 VG Name        vg_test
 System ID
 Format        lvm2
 Metadata Areas    1
 Metadata Sequence No 2
 VG Access       read/write
 VG Status       resizable
 MAX LV        0
 Cur LV        1
 Open LV        0
 Max PV        0
 Cur PV        1
 Act PV        1
 VG Size        93.14 GiB
 PE Size        4.00 MiB
 Total PE       23844
 Alloc PE / Size    5120 / 20.00 GiB
 Free PE / Size    18724 / 73.14 GiB
 VG UUID        qBTRtr-18qN-M2rg-ZjPN-YHyN-aydj-QMRc2M</pre>
</blockquote>
<p><strong>Adding More Physical Volumes</strong><br />
Using the &#8220;vgextend&#8221; command we can more physical volumes to our volume group making more space available for LV&#8217;s. Here I added a 2nd physical volume to the volume group and expanded the size by another 200GB.</p>
<blockquote>
<pre>[root@storage ~]# vgextend vg_test /dev/sda2
 Volume group "vg_test" successfully extended
[root@storage ~]# vgdisplay vg_test
 --- Volume group ---
 VG Name        vg_test
 System ID
 Format        lvm2
 Metadata Areas    2
 Metadata Sequence No 3
 VG Access       read/write
 VG Status       resizable
 MAX LV        0
 Cur LV        1
 Open LV        0
 Max PV        0
 Cur PV        2
 Act PV        2
 VG Size        293.14 GiB
 PE Size        4.00 MiB
 Total PE       75045
 Alloc PE / Size    5120 / 20.00 GiB
 Free PE / Size    69925 / 273.14 GiB
 VG UUID        qBTRtr-18qN-M2rg-ZjPN-YHyN-aydj-QMRc2M</pre>
</blockquote>
<p><strong>Removing Physical Volumes</strong><br />
Before removing a physical volume from a volume group you should check to see if the physical volume has been used by the group using the &#8220;pvdisplay&#8221; command. If it has been used then you will want to migrate the data off the drive using the &#8220;pvmove&#8221; command before removing the physical volume. Once you are sure the physical volume is no longer used by the group you can remove it using the &#8220;vgreduce&#8221; command.</p>
<blockquote>
<pre>[root@storage ~]# vgreduce vg_test /dev/sda2
 Removed "/dev/sda2" from volume group "vg_test"</pre>
</blockquote>
<p><strong>Expanding and Reducing Logical Volume Sizes</strong><br />
Expanding a logical volume is very straight forward. Using the &#8220;lvextend&#8221; command we can can add space to the logical volume is there is space available in the volume group. This is done by specifying the new size of the logical volume and the logical volume name.</p>
<blockquote>
<pre>[root@storage ~]# lvextend -L 40G vg_test/lv_testing
 Extending logical volume lv_testing to 40.00 GiB
 Logical volume lv_testing successfully resized</pre>
</blockquote>
<p>Reducing the size of the logical volume can be a bit more tricky. Before reducing the size of the logical volume you will want to be sure that the partitions created on the LV have also been reduced before removing the space from the logical volume virtual block device. This can be done using tools like gParted and is outside the scope of this how to. Once the LV has enough free space to remove you can reduce the space using the &#8220;lvreduce&#8221; command.</p>
<blockquote>
<pre>[root@storage ~]# lvreduce -L 10G vg_test/lv_testing
 WARNING: Reducing active logical volume to 10.00 GiB
 THIS MAY DESTROY YOUR DATA (filesystem etc.)
Do you really want to reduce lv_testing? [y/n]: Y
 Reducing logical volume lv_testing to 10.00 GiB
 Logical volume lv_testing successfully resized</pre>
</blockquote>
<p><strong>Removing Logical Volumes</strong><br />
Once you are done using your logical volume you can remove it using the &#8220;lvremove&#8221; command. This is done by specifying the path to the block device for the logical volume. Removing our &#8220;lv_testing&#8221; logical volume would look like the following:</p>
<blockquote>
<pre>[root@storage ~]# lvremove /dev/vg_test/lv_testing
Do you really want to remove active logical volume lv_testing? [y/n]: y
 Logical volume "lv_testing" successfully removed</pre>
</blockquote>
<p><strong>Removing Volume Groups</strong><br />
Once all of the logical volumes in a group have been removed, you can also remove the volume group using the &#8220;vgremove&#8221; command. Simply specifying the name of the volume group is all that is needed to remove the group from existence.</p>
<blockquote>
<pre>[root@storage ~]# vgremove vg_test
 Volume group "vg_test" successfully removed</pre>
</blockquote>
<p>Hopefully this will give you a basic understanding of how to use the logical volume manager, LVM, on Linux and what you can use it for. The LVM system was originally created and used because disk sizes were much smaller than they are now and combining disks was necessary to provide enough space for storage. Today&#8217;s disk drives are much more affordable in larger sizes and so LVM is not used as often. A excellent use for LVM in today&#8217;s computing world would be exporting logical volumes as iSCSI targets for use on other machines. Thus making LVM a great storage management solution for a dedicated storage server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robertrolfe.com/blog/linux/logical-volume-manager-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OMG! The new Breaking Dawn trailer is out!</title>
		<link>http://www.robertrolfe.com/blog/videos/omg-breaking-dawn-trailer/</link>
		<comments>http://www.robertrolfe.com/blog/videos/omg-breaking-dawn-trailer/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 21:54:37 +0000</pubDate>
		<dc:creator>Robert Rolfe</dc:creator>
				<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://www.robertrolfe.com/?p=458</guid>
		<description><![CDATA[This is a Twilight super fan! She gets really excited about the new Breaking Dawn trailer that is released and her reaction is simply priceless.  I don&#8217;t think I have ever been as excited about something as she is about the release of Breaking Dawn. If nothing else.. her reaction and commentary is good for [...]]]></description>
			<content:encoded><![CDATA[<p>This is a Twilight super fan! She gets really excited about the new Breaking Dawn trailer that is released and her reaction is simply priceless.  I don&#8217;t think I have ever been as excited about something as she is about the release of Breaking Dawn. If nothing else.. her reaction and commentary is good for a quick laugh.</p>
<p><strong><span style="color: #ff0000;">Warning:</span> Before watching this video check your sound levels.  She gets a little bit excited about the new trailer.</strong></p>
<p style="text-align: center;"><p><a href="http://www.robertrolfe.com/blog/videos/omg-breaking-dawn-trailer/"><em>Click here to view the embedded video.</em></a></p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.robertrolfe.com/blog/videos/omg-breaking-dawn-trailer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What I have been doing for the last year&#8230;</title>
		<link>http://www.robertrolfe.com/blog/general/the-last-year/</link>
		<comments>http://www.robertrolfe.com/blog/general/the-last-year/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 18:10:47 +0000</pubDate>
		<dc:creator>Robert Rolfe</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.robertrolfe.com/?p=444</guid>
		<description><![CDATA[As I was browsing around on the net this morning I realized that I haven&#8217;t updated this site in well over a year.  The last year has managed to keep me very busy and left me no time to be able to practice writing on the blog.  Here&#8217;s a look at what I have been [...]]]></description>
			<content:encoded><![CDATA[<p>As I was browsing around on the net this morning I realized that I haven&#8217;t updated this site in well over a year.  The last year has managed to keep me very busy and left me no time to be able to practice writing on the blog.  Here&#8217;s a look at what I have been up to over the last year both at work and in my personal life.</p>
<p><span id="more-444"></span><strong></strong></p>
<h3>Work Related Happenings</h3>
<p><span class="Apple-style-span" style="font-size: 13px; font-weight: normal;"><strong>General Pacific Conservation<br />
</strong></span>G.P. has kept me very busy at work dealing with all kinds of wonderful new things.  In May(ish) of last year G.P. launched their new conservation department that focuses on water and energy conservation products for utility and contractor customers. I worked on building this department a new e-commerce site at <a title="Water &amp; Energy Conservation Products" href="http://www.gpconservation.com/" target="_blank">www.gpconservation.com</a> that allows individuals to purchase our conservation products using a credit card online. Due to the SEO and code I put into place on the site, this quickly become the highest traffic site that G.P. owns. If you need any CFL light bulbs or a new water heater , then you should go check it out.</p>
<p>The conservation department also started doing a fair bit of business putting together energy savings kits for utilities and mailing them to utility customers. To make this affordable for the utilities I spent a great deal of time learning the ins and outs of the United States Postal Service and how to get the best deals when shipping boxes. Over the last year it feels like I have become an expert in this particular field, however the time and effort has really paid off for the company. Now a year later we have been able to mail out thousands of packages to residents all over the northwest and it only cost us a fraction of what UPS or FedEX would have charged.</p>
<p>Just a little over a year later our conservation department has expanded twice in terms of individuals and good opportunities help the department continue to grow.</p>
<p><strong>Weberz Hosting</strong><br />
Weberz has been awesome. We have so many things going on around Weberz that it&#8217;s very hard for me to put them together where someone else would actually understand it. We have been working on adding IPv6 to our network, server virtualization, and a new hosting control panel. I would go into more details about these things but many of them depend on another project that hasn&#8217;t yet been released. More news will come on this&#8230;</p>
<p>We have also been focusing a lot of energy on marketing Weberz to get some more customers. Lately we have giving away some free hosting to good companies and sites that can help us build our search engine rankings to obtain more customers. Keep an eye on the <a title="Weberz Hosting Blog" href="http://www.weberz.com/blog/" target="_blank">Weberz blog</a> for more information about our hosting company and it&#8217;s network.</p>
<h3> Personal Life Happenings</h3>
<p>The last year has been very big as far as the home life is concerned. First we took a couple of trips..</p>
<p><strong>The So-Cal Tour</strong><br />
My Wife and I took a trip from our Portland lives and drove down to southern California to visit San Diego, Anaheim, and my sisters family in Modesto. In San Diego we got to visit Sea World, the San Diego Zoo, and the San Diego Animal Park. Sea World was awesome and we participated in one of their &#8220;special experiences&#8221; where we got to interact with the dolphins. It was pretty neat but I am not sure it was worth the money.</p>
<p><img class="alignleft size-full wp-image-454" title="San Diego Wild Animal Park" src="http://www.robertrolfe.com/wp-content/uploads/wild-animal-park.jpg" alt="San Diego Wild Animal Park" width="320" height="180" />The San Diego Zoo was pretty neat as my Wife and I are big Oregon Zoo go&#8217;ers. It was nice to see some of the animals we dont have here locally, however I don&#8217;t recommend trying to do the entire zoo in one day. There are a lot of hills to walk up and down and the zoo is massive. It certainly can be done in a day but you&#8217;re definitely going to be tired.</p>
<p>The San Diego Animal Park was pretty great. If you&#8217;re going to go here definitely use one of their &#8221;special experiences&#8221; such as the photo caravan tour. The park is larger than the zoo and a large majority of the animals are kept in large habitats that are acres in size. You can view these habitats by going to overlook areas they have setup, however the photo caravan was a much better way to go. The photo caravan drove us into the habitats where we can to see the animals come right up to the back of the truck where you can take some pretty amazing pictures. On the photo caravan we also we able to feed a giraffe and a rhino.</p>
<p>Once we were done messing around in San Diego we met my Wife&#8217;s parents in Anaheim and spent a week goofing off at Disneyland and California Adventure.  Always a good time!</p>
<p><strong><img class="alignright size-full wp-image-453" title="Pike Place Market" src="http://www.robertrolfe.com/wp-content/uploads/pike-place-market.jpg" alt="Pike Place Market Sign" width="320" height="180" />The Seattle Tour</strong><br />
I have lived in Portland for 30+ years and never took the time to go see Seattle when it&#8217;s only 3 hours away by car. In Nov my Wife and I drove up to Seattle to visit her cousins and her sister. We had a great time and visited some of the tourist attractions that Seattle has to offer. We spent some time walking around the Pike Place Market, of course my wife had to visit the first Starbucks, and we also went over to visit the Space Needle. All this was fun and we will have to go back soon so we can see some of the other great things that Seattle has to offer. In general we just had a great time hanging out with Sam, Knud, Elise, Shawn, and Dana.</p>
<p><strong>Puppy Crisis</strong><br />
Besides our trips we also had to deal with a puppy crisis which just sucked. Anyone who has heard me talk about my dog Diasy knows that she isn&#8217;t the brightest crayon in the box. For a basic run down, Daisy is a AKC registered black lab who is small, can&#8217;t swim, and doesn&#8217;t like water. Yes, we are sure she is a lab.. Thanks for asking.</p>
<p>Well Daisy decided she didn&#8217;t want to go to obedience class one morning so she decided to jump out the window of the car while we were driving down the road. Yeah, I know. I&#8217;ll continue when you quit laughing&#8230; Done? OK. So when she hit the pavement she shattered her Patella, knee cap. After an emergency surgery, and thousands of dollars later, she had a rod bolted through her leg for 12 weeks and had to be helped when walking around. Do you have any idea how hard it is to keep a 2 year old black lab from walking? Now after all the surgeries and exercises she is back to around 95% of where she was and the doctors couldn&#8217;t be happier. The only time she has a problem now is when she tries to run for too long of a time period. This is just something we will have to keep an eye on for as long as she is around, which better be a long time.</p>
<p><strong>Paul Richard</strong><br />
The last thing that has happened over the last year is that my Wife has given birth to a beautiful baby boy. Paul Richard Rolfe was born just over a month ago and weighted in at 8lbs 3 ounces. Currently he is at the unique age where all he does is eat, sleep and scream. Here&#8217;s a picture for those that haven&#8217;t seen him yet..</p>
<p><img class="aligncenter size-full wp-image-455" title="Paul Richard" src="http://www.robertrolfe.com/wp-content/uploads/paul-richard.jpg" alt="Paul Richard" width="320" height="180" /></p>
<p><strong>Moving Forward</strong><br />
I think going forward here for a bit we are going to have some technical how to articles being posted to this site.  I am doing some very exciting things with Weberz at the moment and have noticed there&#8217;s a distinct lack of articles on the net to help. As I figure some of the things out, I will be adding documentation here so it will help others in the future.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robertrolfe.com/blog/general/the-last-year/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic Tips to Safe Web Browsing</title>
		<link>http://www.robertrolfe.com/blog/internet/basic-tips-safe-web-browsing/</link>
		<comments>http://www.robertrolfe.com/blog/internet/basic-tips-safe-web-browsing/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 01:03:02 +0000</pubDate>
		<dc:creator>Robert Rolfe</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Web Safety]]></category>

		<guid isPermaLink="false">http://www.robertrolfe.com/?p=409</guid>
		<description><![CDATA[It seems as if almost daily I speak to a user who has some sort of spyware, malware, or virus problem on their computer.  Almost every instance of these malicious programs got installed on the user&#8217;s computer while they were simply browsing sites on the net.  What&#8217;s even more amazing is that all of these instances were [...]]]></description>
			<content:encoded><![CDATA[<p>It seems as if almost daily I speak to a user who has some sort of spyware, malware, or virus problem on their computer.  Almost every instance of these malicious programs got installed on the user&#8217;s computer while they were simply browsing sites on the net.  What&#8217;s even more amazing is that all of these instances were avoidable by the user.  <span id="more-409"></span></p>
<p>Contrary to the belief of most computer users you don&#8217;t have to be a computer genius, or be involved in voodoo, to be safe on the internet.  By following some of these basic tips you can be infinitively more secure on the internet.</p>
<p><strong>Keep Windows Up to Date:</strong><br />
This is probably the most important tip you can get and it applies to all operating systems, not just Windows.  Almost all major desktop operating systems have built in methods for keeping the O.S. and other major software systems up to date.  In Windows this is called &#8220;Windows Update&#8221; and it is located on your start menu under all programs.  Windows Update will keep Windows, Internet Explorer, and Microsoft Office all up to date with the latest security and bug fixes.  In the Windows Update settings area there is also an option for turning on automatic installations of updates for those of us too lazy to do it manually on a regular basis.</p>
<blockquote><p><strong>Quick Note:</strong> Most major Windows viruses featured on the news in the last five years all had security updates posted to Windows Update.  These updates were made available months before the virus was released.  The only reason the viruses were successful was due to users not keeping Windows up to date.</p></blockquote>
<p><strong>Use a Firewall:<br />
<span style="font-weight: normal;"><img class="alignright size-full wp-image-422" style="margin: 2px;" title="Firewall" src="http://www.robertrolfe.com/wp-content/uploads/firewall.jpg" alt="" width="320" height="240" />Most households these days have a internet connection that is constantly connected.  While we all might have hated the screeching sounds of a modem and equally despised the downloads speeds we got when connecting through them, they were actually much safer than todays internet connections.  The fact is that most computers connected to the net these days have excess ports open on them that are not known to the users of the system.  Whether they were opened for File and Printer Sharing or opened by a spyware program, these open ports can be very dangerous.  9 times out of 10 they can be used to copy files from your computer or to install new new programs on your PC.  Either way it&#8217;s really not a good idea to leave these ports open to the world, especially not when we have a internet connection that is always connected.</span></strong></p>
<p><strong><span style="font-weight: normal;">Physical firewalls, mostly built into routers for home users, are by far the best way to go.  They will not only protect these open ports on your computer from potential internet problems, but they will also allow you to do all of the following:</span></strong></p>
<ul>
<li>Connect multiple computers to a single internet connection</li>
<li>Allow you to continue to use file and print sharing between the computers in your home with no additional configuration</li>
<li>Broadcast a wireless signal in your home for wireless based devices to be able to access the net. (Wireless Model Required)</li>
</ul>
<p>The downside to a physical firewall built into a router is that they typically cost from $60 to $100 at BestBuy.  If thats something your unable to do you can always use a software firewall that will also protect your computer.  Performing the additional tasks listed above will be more difficult with a software firewall, however simple PC protection is not.  Windows, since Windows XP, has had a firewall built into the core of the system and it simply needs to be turned on.  To do so go to the control panel from the Start menu and choose Windows Firewall.  Once the Windows firewall loads click the ON button and hit OK at the bottom.</p>
<blockquote><p><strong>Quick Note:</strong> The Windows firewall can be manipulated by malicious software programs if they were designed to do so.  Windows firewall has a exceptions area in the control panel that allows ports to be opened through the firewall when necessary.  If you&#8217;re going to use Windows firewall for protection, make sure you check the exceptions list in the control panel regularly to ensure no malicious programs have opened ports that you are unaware of.</p></blockquote>
<p><strong>Use Anti-Virus Software</strong><br />
<img class="alignleft size-full wp-image-423" style="margin: 2px;" title="Virus Alert" src="http://www.robertrolfe.com/wp-content/uploads/virus-alert.jpg" alt="" width="320" height="212" />While this isn&#8217;t as big of a concern for Mac or Linux users, viruses are still a major problem on the net for everyone who is connected to it.   Installing some basic anti-virus software can make sure that these problems are kept to a minimum with your computer.  While there are commercial packages such as McAfee and Norton available, I do not prefer to use them.  Over the years I have found these programs to be bloated and severe memory hogs when installed on personal computers.  Instead there are many lightweight and free anti-virus software programs available for you to take advantage of:</p>
<ul>
<li><a title="Clam Anti-Virus" href="http://www.clamwin.com" target="_blank">Clam Anti-Virus</a> &#8211; Very light weight anti-virus package.  Free but does not include real time scanner.</li>
<li><a title="AVG Anti Virus" href="http://free.avg.com/us-en/homepage" target="_blank">AVG</a> &#8211; Slightly larger than clam anti-virus, but does include real time scanner and link scanner.</li>
<li><a title="Avast! Anti Virus Software" href="http://www.avast.com/free-antivirus-download" target="_blank">Avast!</a> &#8211; Another free anti-virus software package with real time scanner.</li>
</ul>
<p><strong>Use A Different Browser:</strong><br />
Let me first start off by saying that Internet Explorer has gotten significantly better over the years in terms of security, however there are other browser software packages that have not had nearly the amount of security problems that IE has had over the years.  If your going to continue using Internet Explorer, upgrade it!  Use Windows Update and make sure you have at least version 8 of IE installed on your computer.  Anything less than version 8 is simply being irresponsible.</p>
<p>With that being said there are other major web browsing software packages available that work just as well if not better then IE.  Personally I have not had any problems, other then visiting Microsoft Websites, where I can not use an alternative browser.  <a title="Mozilla FireFox Web Browser" href="http://www.mozilla.com/en-US/firefox/firefox.html" target="_blank">Mozilla Firefox</a> and <a title="Google Chrome Web Browser" href="http://www.google.com/chrome/intl/en/landing_chrome.html?hl=en" target="_blank">Google Chrome</a> are excellent alternatives to Internet Explorer.   Chrome specifically uses much less memory then IE does and seems to out perform IE in terms of speed without much effort.</p>
<p><strong>Keep Your Computer Spyware Free!</strong><br />
Spyware and Malware is one of the worst things to ever be made on the internet, possibly even worse then email spam.  The largest problem with spyware is that it tends to multiply on your computer at an alarming rate, most of the time without your knowledge or consent.  Once you have spyware installed on your machine there typically isn&#8217;t much that can be done about it.   You can try scanning your machine and using a removal tool to get rid of it, however that doesn&#8217;t always work.  The best practice is to try and stop it before it gets installed.  Safer Networking makes an excellent free utility called <a title="Spybot Search &amp; Destroy" href="http://www.safer-networking.org/en/index.html" target="_blank">SpyBot Search &amp; Destroy</a> that scans your PC and removes installed spyware programs.</p>
<p>SpyBot also comes with a great little utility program called TeaTimer to help eliminate spyware from being installed on your computer.  TeaTimer will prompt the user when a program, or website, is trying to modify system files or windows registry settings.  This is a great form of protection if you actually pay attention to it.  The general idea is that you will deny the program access to modifying the registry if you&#8217;re not purposely installing a software program.  This will stop a program in the background of your computer from installing itself without your knowledge.</p>
<p><strong>Use Windows 7:</strong><br />
<img class="alignright size-full wp-image-424" style="margin: 2px;" title="User Account Control" src="http://www.robertrolfe.com/wp-content/uploads/user-account-control.jpg" alt="" width="320" height="170" />As much as I might personally dislike it, Microsoft Windows is the dominate operating system for personal computers.  In Windows Vista, Microsoft decided to catch up with other operating systems and start requiring &#8220;Elevated&#8221; administrator permissions to install and remove software from the machine.  They called this new feature UAC, User Account Control, and it was horribly annoying and poorly implemented in Windows Vista.  The reason this feature was added was so users would be prompted when major changes were being made to the system and its settings, much like the TeaTimer program mentioned above.  In Windows 7 the UAC feature was vastly improved and is now an extremely useful tool for the less educated user.  If you can afford it and your PC is powerful enough to handle Windows 7, I would very much encourage you to upgrade to it.  If you are unable to do so then Tea Timer is a excellent alternative.</p>
<blockquote><p><strong>Quick Note:</strong> Recently I had a number of friends all get infected with a spyware program from a website that stole all of thier website passwords and emailed them back to the program creator.  This gave the spyware creator access to all of their personal information.  I was the only one not infected because Windows 7&#8242;s UAC blocked the installation on my computer.  The other users were all using Windows XP and Vista and were all up to date on their Windows Updates.</p></blockquote>
<p><strong>Conclusion:<br />
<span style="font-weight: normal;">As you can see it doesn&#8217;t take a lot of extra effort of knowledge to be safe while browsing the internet, however it can be extremely costly if you refuse to take precautions against potential internet dangers.  By taking the time to implement the tips mentioned above,  you can almost eliminate the bulk of the threats on the internet.</span></strong></p>
<p><strong><span style="font-weight: normal;"><strong>Spread the knowledge and Browse Safely!</strong><br />
After a previous article I wrote got so much attention, I created a new <a title="Facebook Page on Web Safety" href="http://www.facebook.com/pages/Web-Safety/114272368605503" target="_blank">Facebook page on Web Safety</a> to notify users when I write about internet safety issues.  If you would like to be notified about new internet safety articles as they are made available, then become a fan of the <a title="Web Safety Facebook Page" href="http://www.facebook.com/pages/Web-Safety/114272368605503" target="_blank">Web Safety Facebook page</a>.  Twitter users can also <a title="Rob's Twitter Page" href="http://www.twitter.com/rrolfe" target="_blank">follow me on twitter</a> to receive notifications about new articles and blog postings. </span></strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.robertrolfe.com/blog/internet/basic-tips-safe-web-browsing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creature Feature &#8211; A Gorey Demise</title>
		<link>http://www.robertrolfe.com/blog/videos/creature-feature-gorey-demise/</link>
		<comments>http://www.robertrolfe.com/blog/videos/creature-feature-gorey-demise/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 21:03:31 +0000</pubDate>
		<dc:creator>Robert Rolfe</dc:creator>
				<category><![CDATA[Videos]]></category>
		<category><![CDATA[Funny]]></category>

		<guid isPermaLink="false">http://www.robertrolfe.com/?p=404</guid>
		<description><![CDATA[I was listening some podcasts today on my iPod and the following starting playing as bumper music on one of the shows I listen too.  It was great!  This song has a nice beat to it and the lyrics are very funny, even if a little morbid.  The song?  &#8221;A Gorey Demise&#8221; by Creature Feature. [...]]]></description>
			<content:encoded><![CDATA[<p>I was listening some podcasts today on my iPod and the following starting playing as bumper music on one of the shows I listen too.  It was great!  This song has a nice beat to it and the lyrics are very funny, even if a little morbid.  The song?  &#8221;A Gorey Demise&#8221; by <a title="Creature Feature" href="http://www.creaturefeaturemusic.com/" target="_blank">Creature Feature</a>.  Here&#8217;s a youtube video so you can have a listen.<span id="more-404"></span><p><a href="http://www.robertrolfe.com/blog/videos/creature-feature-gorey-demise/"><em>Click here to view the embedded video.</em></a></p></p>
<p>If you are interested, you can pick up the <a title="Creature Feature - Greatest Show on Earth" href="http://www.amazon.com/Greatest-Show-Unearthed-Creature-Feature/dp/B000W04RZW/ref=sr_1_1?ie=UTF8&amp;s=music&amp;qid=1279227691&amp;sr=8-1" target="_blank">album at Amazon.com.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.robertrolfe.com/blog/videos/creature-feature-gorey-demise/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wax On, F*ck Off &#8211; The Ralph Macchio Story</title>
		<link>http://www.robertrolfe.com/blog/videos/wax-fck-ralph-macchio-story/</link>
		<comments>http://www.robertrolfe.com/blog/videos/wax-fck-ralph-macchio-story/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 01:50:09 +0000</pubDate>
		<dc:creator>Robert Rolfe</dc:creator>
				<category><![CDATA[Videos]]></category>
		<category><![CDATA[Funny]]></category>

		<guid isPermaLink="false">http://www.robertrolfe.com/?p=395</guid>
		<description><![CDATA[This is certainly one of the best videos I have seen on the net in a while.  If this was a real movie, I would definitely go watch it!  Wax On, Fuck Off is the story of Ralph Macchio dealing with the hardships of being too nice in the acting business. Videos like this one are why [...]]]></description>
			<content:encoded><![CDATA[<p>This is certainly one of the best videos I have seen on the net in a while.  If this was a real movie, I would definitely go watch it!  Wax On, Fuck Off is the story of Ralph Macchio dealing with the hardships of being too nice in the acting business.</p>
<p style="text-align: center;"><span id="more-395"></span><br />
<object id="ordie_player_c8ad4aa802" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="512" height="328" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="key=c8ad4aa802" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://player.ordienetworks.com/flash/fodplayer.swf" /><param name="name" value="ordie_player_c8ad4aa802" /><param name="quality" value="high" /><embed id="ordie_player_c8ad4aa802" type="application/x-shockwave-flash" width="512" height="328" src="http://player.ordienetworks.com/flash/fodplayer.swf" quality="high" name="ordie_player_c8ad4aa802" allowscriptaccess="always" allowfullscreen="true" flashvars="key=c8ad4aa802"></embed></object></p>
<p>Videos like this one are why we love the internet.  This really is Internet Gold!  Ralph, please go sign a movie deal for this because it really does look great!  A big thanks goes to the people over at <a title="Funny or Die!" href="http://www.funnyordie.com/" target="_blank">FunnyorDie</a> for making this.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robertrolfe.com/blog/videos/wax-fck-ralph-macchio-story/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Avoid joining or using Facebook groups about lost cell phones</title>
		<link>http://www.robertrolfe.com/blog/social-media/avoid-joining-facebook-groups-lost-cell-phones/</link>
		<comments>http://www.robertrolfe.com/blog/social-media/avoid-joining-facebook-groups-lost-cell-phones/#comments</comments>
		<pubDate>Wed, 26 May 2010 03:29:04 +0000</pubDate>
		<dc:creator>Robert Rolfe</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Web Safety]]></category>

		<guid isPermaLink="false">http://www.robertrolfe.com/?p=358</guid>
		<description><![CDATA[While doing my regular browsing and research today, I came across an extremely stupid use of Facebook groups.  Due to todays need to always be connected, most cell phone users keep an extensive list of contacts in their mobile address books.  Well, what I found today was that many Facebook users are loosing their cell [...]]]></description>
			<content:encoded><![CDATA[<p>While doing my regular browsing and research today, I came across an extremely stupid use of <a title="Facebook - Online Social Community" href="http://www.facebook.com" target="_blank">Facebook</a> groups.  Due to todays need to always be connected, most cell phone users keep an extensive list of contacts in their mobile address books.  Well, what I found today was that many Facebook users are loosing their cell phones and are utilizing Facebook groups to desperately repopulate those address books once they obtain a new cell phone.</p>
<p><span id="more-358"></span><img class="alignright size-full wp-image-367" title="Lost Cell Phone in Mud" src="http://www.robertrolfe.com/wp-content/uploads/lost-cell-phone-mud.jpg" alt="Lost Cell Phone in Mud" width="320" height="213" />What seems to be happening with these groups is that the user who lost their phone creates a new Facebook group entitled &#8220;User&#8217;s Lost Phone&#8221;.  Once the group is created the user then sends a notice to all of their Facebook friends letting them know about the lost phone and subsequent data loss.  In this message the user also asks them to join the new group and post their phone number so the address book data can be rebuilt.  All the Facebook friends then try to help the user out by accommodating the users request.  At this point all of the Facebook friends are all simply happy that they aren&#8217;t the poor sap who lost their cell phone.  All of the parties involved then live happily ever after?  right?</p>
<p>Well if they did.. Then I wouldn&#8217;t have anything to write about today.</p>
<p>Herein lies the problem with the above situation.  Many times the user who lost their cell phone ends up not setting up the group to be private and inadvertently broadcasts all of their friends phone numbers to the world.  This can easily be seen by doing the following <a title="Google Search to Find Public Facebook Lost Phone Groups" href="http://www.google.com/search?hl=en&amp;q=lost+phone+site:facebook.com+inurl:group" target="_blank">Google search</a>&#8230;</p>
<p><img class="aligncenter size-full wp-image-372" title="Google Search for Lost Phone Facebook Groups" src="http://www.robertrolfe.com/wp-content/uploads/google-lost-phone-group-search.png" alt="Google Search for Lost Phone Facebook Groups" width="717" height="64" /></p>
<p>As you can see, that simple Google search returned 653,000 public Facebook groups that are about user&#8217;s lost phones.  On <a href="http://www.facebook.com/group.php?gid=10138243574#!/group.php?gid=10138243574&amp;v=wall" target="_blank">each</a> <a href="http://www.facebook.com/group.php?gid=21386877425&amp;v=wall" target="_blank">and</a> <a href="http://www.facebook.com/group.php?gid=2537351573#!/group.php?gid=2537351573&amp;v=wall" target="_blank">every</a> <a href="http://www.facebook.com/group.php?gid=50395382410&amp;v=wall" target="_blank">one</a> <a href="http://www.facebook.com/group.php?v=wall&amp;gid=9953046222" target="_blank">of</a><a href="http://www.facebook.com/group.php?gid=13046292089#!/group.php?gid=13046292089&amp;v=wall" target="_blank"> these</a> <a href="http://www.facebook.com/group.php?v=wall&amp;viewas=0&amp;gid=20319410905" target="_blank">groups</a>, you can find phone numbers posted by any number of users.  Talk about a stalkers dream eh?  Maybe a bored teenager looking for someone to prank call?  Even worse yet, this could be used by malicious users to get cell numbers to TXT message and run up unsuspecting user&#8217;s cell phone bills.  After all many users still do not have TXT messaging plans and pay per message.</p>
<p>Even if the user does mark the group as private you still should not participate by sharing your information.  If a Facebook group is marked as private, that simply means that only the group members can see the information that is posted to the group.  Marking a Facebook group as private does not restrict who can join the group.  So at the very least you are still sending your phone number to everyone who is currently, and who could be in the future, a member of the group.</p>
<p><strong>What to do in this situation</strong><br />
This particular threat is very easy to spot and avoid.  If you happen to see one of your friends create a group  like the ones mentioned here, do not post your contact information to the group.  Instead simply use email or the Facebook &#8220;Messages&#8221; system to send a private message to the user with your phone number and contact information.  You should also be sure to send them a link to this post to help educate them about their misguided and potentially harmful ways.</p>
<p>If for some unfortunate reason you happen to be the poor soul who has to rebuild your address book, do not use a Facebook group to accomplish this task.  Instead post a message to your wall informing your friends about the situation and ask them to send you the information using a private message.  When doing so also be sure to remind your friends NOT to post their phone number or other contact information in the comments section on your wall.</p>
<p><strong>Spread the knowledge and Browse Safely!</strong><br />
After <a title="Avoid joining groups about Facebook charging users" href="http://www.robertrolfe.com/blog/2010/avoid-joining-groups-facebook-charging-users" target="_blank">my last article about a Facebook safety issue</a> got so much attention, I created a new <a title="Facebook Page on Web Safety" href="http://www.facebook.com/pages/Web-Safety/114272368605503" target="_blank">Facebook page on Web Safety</a> to notify users when I write about internet safety issues.  If you would like to be notified about new internet safety articles as they are made available, then become a fan of the <a title="Web Safety Facebook Page" href="http://www.facebook.com/pages/Web-Safety/114272368605503" target="_blank">Web Safety Facebook page</a>.  Twitter users can also <a title="Rob's Twitter Page" href="http://www.twitter.com/rrolfe" target="_blank">follow me on twitter</a> to receive notifications about new articles and blog postings.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robertrolfe.com/blog/social-media/avoid-joining-facebook-groups-lost-cell-phones/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Avoid joining groups about Facebook charging its users</title>
		<link>http://www.robertrolfe.com/blog/social-media/avoid-joining-groups-facebook-charging-users/</link>
		<comments>http://www.robertrolfe.com/blog/social-media/avoid-joining-groups-facebook-charging-users/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 04:40:06 +0000</pubDate>
		<dc:creator>Robert Rolfe</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Web Safety]]></category>

		<guid isPermaLink="false">http://www.robertrolfe.com/?p=347</guid>
		<description><![CDATA[Earlier today while playing around on Facebook I had a notification show up in my news feed that showed two of my friends joining a new group.  This group was titled NO I WILL NOT PAY $3.98 A MONTH TO USE FACEBOOK AS OF JULY 10TH 2010! Surprised that I had not yet heard the news [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier today while playing around on Facebook I had a notification show up in my news feed that showed two of my friends joining a new group.  This group was titled <a title="Bogus Facebook Group" href="http://www.facebook.com/group.php?gid=262393989617&amp;v=wall" target="_blank">NO I WILL NOT PAY $3.98 A MONTH TO USE FACEBOOK AS OF JULY 10TH 2010!</a> Surprised that I had not yet heard the news of Facebook charging I decided to jump over to Google and find out what was going on. <span id="more-347"></span>What I found were <a title="Facebook Charging it's users" href="http://www.myfoxhouston.com/dpp/morning_news/my_tech_guy/100125-facebook-to-charge-users" target="_blank">many</a> <a title="Facebook Charging It's Users" href="http://www.net-security.org/secworld.php?id=9110" target="_blank">news</a> <a title="Facebook Charging It's Users" href="http://www.snopes.com/computer/internet/fbcharge.asp" target="_blank">articles</a> <a title="Facebook Charging It's Users" href="http://www.allfacebook.com/2010/01/again-facebook-will-not-charge-users-to-access-the-site/" target="_blank">and</a> <a title="Facebook Charging Users" href="http://www.telegraph.co.uk/technology/facebook/6973757/Facebook-dismisses-rumours-of-charging-plans.html" target="_blank">blog</a> <a title="Facebook Charging It's Users" href="http://urbanlegends.about.com/od/business/a/facebook_charge.htm" target="_blank">postings</a> about these scams that were going on using Facebook groups.  Apparently users are creating Facebook groups claiming that Facebook will be charging its users sometime in the near future and using those groups to infect large amounts of computers with malware.</p>
<p>The general idea is to come up with an idea that many unsuspecting users will get behind, like the idea of Facebook charging its users, and then letting the number of group members rack up.  Once the number of members gets to an acceptable level for these groups, the founder will then send out messages to all the users that contain links to outside websites offering more information about the &#8220;issue&#8221;.   Finally when the members go to visit the site, their computers get infected with malicious software programs designed to cause the user grief and to use thier computer as a conduit for sending spam.</p>
<p>Facebook has already stated that they have shut down some of these groups in the past for implementing these practices and will continue to do so in the future.</p>
<p>The best thing to do if you are already a member of this group would be to go remove your affiliation with this group as soon as possible.  You can do this by logging in to Facebook and then going to the groups page.  There you will find a link that says &#8220;Leave Group&#8221; under the group&#8217;s logo.  By doing so you will no longer be a member of the group and will not see the malicious links when the group decides to send them out.</p>
<p><strong>About Facebook Charging Users</strong><br />
<img class="alignright size-full wp-image-348" title="Facebook Advertisement Example" src="http://www.robertrolfe.com/wp-content/uploads/Facebook-Ad.png" alt="" width="248" height="148" />As far as the topic of Facebook Charging its users in the future goes, it&#8217;s not likely to happen.  Facebook has already stated that they have no intention of charging the users to use their service.  What they are not telling you is that they make more money per month from you being a free user then they would if they charged you.  Facebook makes its money from the ads, such as the one to the right, that get displayed in the interface while your browsing around their site. Since they have 400+ million users to display those ads too they have many marketing firms willing to purchase them.  If Facebook was to charge its users to access the site, they would have less users to market the ads too and would lose more users &amp; money then they would make from the access fees.</p>
<p>If you see any of your friends or family joining a group that mentions Facebook charging users, send them a link to this article and educate them.  For that matter use the Facebook &#8220;Share&#8221; button at the top of the article now and preemptively educate all of your friends and family!</p>
<p>** Update 4-27-2010 ** - There has been a huge response to this article.  At this point the article has been shared on Facebook over 500 times and continues to grow.  This has shown me that more articles on web safety are definitely needed in the future.  I have started a new <a title="Web Safety Facebook Group" href="http://www.facebook.com/pages/Web-Safety/114272368605503" target="_blank">Facebook page about web safety</a> and will be posting more articles like this in the future.  Become a fan today and get automatically notified via Facebook of the new articles when posted.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robertrolfe.com/blog/social-media/avoid-joining-groups-facebook-charging-users/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Facebook violates user privacy with new web design tools.  Here&#8217;s what Facebook users need to know.</title>
		<link>http://www.robertrolfe.com/blog/social-media/facebook-violates-user-privacy-web-design-tools-facebook-users/</link>
		<comments>http://www.robertrolfe.com/blog/social-media/facebook-violates-user-privacy-web-design-tools-facebook-users/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 04:04:54 +0000</pubDate>
		<dc:creator>Robert Rolfe</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Web Safety]]></category>

		<guid isPermaLink="false">http://www.robertrolfe.com/?p=310</guid>
		<description><![CDATA[Earlier this week Facebook held its annual F8 conference for web designers and application developers.  At this conference they announced many new tools that web designers and application developers can use to expand a user&#8217;s Facebook experience.  Normally that wouldn&#8217;t be such a bad thing, except when those tools can be configured to violate a [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier this week <a title="Facebook Online Community" href="http://www.facebook.com" target="_blank">Facebook</a> held its annual F8 conference for web designers and application developers.  At this conference they announced many new tools that web designers and application developers can use to expand a user&#8217;s Facebook experience.  Normally that wouldn&#8217;t be such a bad thing, except when those tools can be configured to violate a Facebook user&#8217;s privacy.  Mainly I am talking about the Facebook&#8217;s new social plugins &amp; open graph API.<span id="more-310"></span>These new tools are specifically designed to bring the information you post on Facebook and make it available on other websites.  Unfortunately, they are also designed to bring what you do on other websites and bring that information back to Facebook as well.  Below I will explain each of these new tools and exactly what you can do help protect your information.  In some cases you will also be helping to protect your friends information as well.</p>
<p><strong>Social Plugins<br />
<span style="font-weight: normal;">Social plugins are the new Facebook tool that web designers can use to integrate your Facebook account into their websites.  As a web designer I can see some of these tools being very handy to use on a website.  Facebook made it very easy for web designers to implement these tools and in most cases a simple copy/paste is all that is needed.  This helps ensure even the most novice of designers will be able to use them.  Unfortunately, it also means that they can also easily configure them to share too much of your information.  Since these tools were only released this week, it may be some time before you start seeing some of them online.  Here&#8217;s the rundown on each one:</span></strong></p>
<p><strong><span style="font-weight: normal;"><em><strong>Like Button</strong><br />
</em><img class="size-full wp-image-318 alignright" title="Example Facebook Like Button" src="http://www.robertrolfe.com/wp-content/uploads/Example-Facebook-Like-Button.png" alt="" width="377" height="38" />The &#8220;Like Button&#8221;  is a very simple social plugin.  According to Facebook it &#8220;enables users to make connections to your pages and share content back to their friends on Facebook with one click&#8221;.  I tested a couple of these out myself today and sure enough, that&#8217;s exactly what it does.  The only problem is that it didn&#8217;t confirm with me that I actually wanted to click the button, it also didn&#8217;t prompt me to login to Facebook when I clicked it.  Yet later I found the following on my Facebook wall and on a friends news feed:</span></strong></p>
<p style="text-align: center;"><strong><span style="font-weight: normal;"><img class="size-full wp-image-314  aligncenter" title="Facebook News Feed - Likes" src="http://www.robertrolfe.com/wp-content/uploads/wall-likes.png" alt="" width="527" height="65" /><br />
</span></strong></p>
<p><strong><span style="font-weight: normal;">While on that particular instance I don&#8217;t mind&#8230; What if I accidentally clicked that button?  Since I didn&#8217;t get a confirmation or login box, all my friends might have gotten a message that I liked something that maybe I didn&#8217;t want them knowing I was looking at.  Who knows what that might be.. but you get the drift.  Now to take this a step further, the Like button on the <a title="Conversion Marketing" href="http://www.conversationmarketing.com/" target="_blank">Conversion Marketing</a> website now says the following:</span></strong></p>
<p style="text-align: center;"><strong><span style="font-weight: normal;"><img class="size-full wp-image-315  aligncenter" title="Conversion Marketing Like Button" src="http://www.robertrolfe.com/wp-content/uploads/Conversion-Marketing-Like-button.png" alt="" width="275" height="72" /><br />
</span></strong></p>
<p><strong><span style="font-weight: normal;">Great!  Not only do all my friends get notified of this, but now my picture and name are on this site!  Fantastic!  Here&#8217;s the good news on this one.  Upon further investigation, your picture and name only show up when one of your friends also visits the same page.  If a random stranger visits the page, they aren&#8217;t actually there, it would simply say that &#8220;85 other people like this&#8221;.</span></strong></p>
<p><strong><span style="font-weight: normal;">So you might be asking yourself how you can protect yourself from this?  This one is simple, when your done playing on Facebook.. click the logout button.  If you do not click the logout button then you are still considered logged in to Facebook until you close all of your browser windows.  Also make sure that when you are logging in to Facebook that you don&#8217;t check the box that says &#8220;Keep me logged in&#8221;.  If you are not logged in to Facebook, this button doesn&#8217;t work and would prompt you to login before posting to your wall thus providing us with the &#8220;confirmation&#8221; step we want.</span></strong></p>
<p><strong><span style="font-weight: normal;"><em>** Note: </em> Don&#8217;t confuse this button with the Facebook &#8220;Share&#8221; buttons that you typically find on blogs.  An example share button can be found at the top and bottom of every one of my posts.  These share buttons prompt you to confirm that you want to share the content with friends and provide you with a chance to add a message when doing so.  The share buttons are safe and you should feel free to use them.  Especially on my site! </span></strong></p>
<p><strong><span style="font-weight: normal;"><em><strong>Like Box</strong></em><br />
<img class="alignright size-full wp-image-326" title="Facebook's New Like Box" src="http://www.robertrolfe.com/wp-content/uploads/Facebook-Like-Box.png" alt="" width="304" height="596" />The Like box social plugin can be used by designers to link their Facebook page to their normal website.  This shouldn&#8217;t be confused with the Like button I just mentioned above. </span></strong></p>
<p><strong><span style="font-weight: normal;">Facebook allows users to create &#8220;Pages&#8221; on their site the represent real life objects such as companies, artists, and products.  Users could then find these on Facebook and &#8220;Become a Fan&#8221; of the object.  This created a relationship between the user and the page, allowing the page&#8217;s updates and news to be displayed to the user in their news stream.  As a designer I thought this was great because it allowed me to announce new products or services for my company and get that information to the users who we already had a relationship with. As a user you were able to keep up with all the need to know information that the company or artist was releasing, which was also great because you were a &#8220;Fan&#8221;.  Now Facebook has changed these &#8220;Become a Fan&#8221; buttons to &#8220;Like&#8221; buttons to make it feel like a more light weight relationship between the user and the fan.  Apparently Facebook thinks we are all stupid.  I know I can&#8217;t count the number of times I was staring at the &#8220;Become a Fan&#8221; button and thinking to myself.. &#8220;Well, I like the company.. but I am not sure I would call myself a fan.  What to do, What to do.&#8221;  Hopefully your getting the sarcasm.. because I am laying it on pretty thick.  Back to that &#8220;Like&#8221; box..</span></strong></p>
<p><strong><span style="font-weight: normal;">So the Like box allows designers to link those pages from their normal websites with more functionality and a little more ease.  Since, you know, all those &#8220;Become a Fan&#8221; and &#8220;Follow us on Facebook&#8221; buttons spread across the web simply were not good enough and apparently not getting the job done.  The like box looks similar to the &#8220;Like&#8221; button but instead of creating a one time link in your feed about a piece of content you liked on the web, it creates a relationship between you and the company, artist or product you happen to be looking at.  That&#8217;s not a big deal except again there is no confirmation and no login box. </span></strong></p>
<p><strong><span style="font-weight: normal;">Now imagine the damage that this could cause if web designers decide to try and fool you..  Lets say I am browsing around on the web and get sent a link to a video about cute puppies.  This video might just happen to be hosted on the Aryan Nation web site.  Not really paying attention to the site I am on.. I watch the video and think its funny.. after all it is about cute puppies!  I go to click the &#8220;Like Button&#8221; to share the videos with others and get confused because there is a &#8220;Like Box&#8221;.  I click the wrong button and all my friends and family get a message saying I am now a fan of the Aryan Nation and White Power movement.  That&#8217;s not good.</span></strong></p>
<p><strong><span style="font-weight: normal;">They simply could have left the wording alone as now they will simply be confusing users.  To make matters worse, this new little plugin also has options to allow the site to display the profile images of it&#8217;s fans on the external site.  Now before the changes these pictures would show up on the Facebook pages where you had become a fan.  That wasn&#8217;t a big deal because it&#8217;s still on Facebook&#8217;s site and by uploading the picture, and by becoming a fan on the company, I basically gave permission for them to display it there.  However, that was only on Facebook&#8217;s own site.  Now, based on the example above, my picture could end up on the Aryan Nation website for all to see.  I didn&#8217;t sign up for that! </span></strong></p>
<p><strong><span style="font-weight: normal;">So what do you do about this one?  That&#8217;s easy.  Just like the &#8220;Like Button&#8221; make sure you are logged out of Facebook when your done using it.  Also make sure you know who&#8217;s is doing what with your information.  If your going to become a fan of a company or artists.. go check their site and make sure they aren&#8217;t displaying fan pictures on their site.  If they are, go back to Facebook and remove that fan relationship.  Show these companies and artists that it&#8217;s not ok with you that they are displaying your picture, and linking to your profile, on their sites.  To take it a step further you might even want to send them an email telling them you would want to become a fan but don&#8217;t want your picture displayed on their site.  Maybe they will get the hint and turn that feature off.</span></strong></p>
<p><strong><span style="font-weight: normal;"><strong><em>Activity Box</em></strong><br />
<img class="alignright size-full wp-image-328" title="Facebook Activity Box" src="http://www.robertrolfe.com/wp-content/uploads/FB-Activity-Box.png" alt="" width="311" height="315" />Here&#8217;s another little gem that Facebook added for web designers to use.  It&#8217;s an widget box that allows the website to display all the the social activity that has happened on their site from the other Facebook plugins.   This could be anything such as liking a piece of content, becoming a fan, or simply commenting on a page.  The box then displays your name, picture, and links to your profile to let everyone know that you are being active on the site. </span></strong></p>
<p><strong><span style="font-weight: normal;">According to the documentation for this plugin, the box will automatically personalize itself for the user who is viewing the site by placing action&#8217;s by their friends at the top of the list.  The remainder of this list is simply random strangers.</span></strong></p>
<p>So once again we have a plugin that displays my name, shows my picture, and links directly to my profile for random strangers simply because I liked a piece of content on the site.  I can just see a stalker type using this to find new prey to harass online.  Granted that&#8217;s not going to happen to me personally as I am not cute enough to be stalked.. but it could happen to someone who is.</p>
<p>The best way to block yourself from this one is to be careful about which buttons and plugins you&#8217;re clicking on websites.  Also change your privacy settings on the Facebook website to only show your comments, likes and other items to only be shown to friends.  This will help protect you from being chosen as one of the random strangers.  If you don&#8217;t want your picture and profile being linked from any external sites, then don&#8217;t engage in any of the social media actions, likes and comments, on the sites that use these new activity boxes.</p>
<p><strong><em>Other Social Plugins</em></strong><br />
All of the other social plugins that Facebook announced actually look fine.  The other ones all require the websites to specifically require your permission to use or they are obvious enough that you can tell what you are doing.  These are things like comment boxes, login boxes and other general nonsense.  Some of the other plugins also have options for linking to your profile and displaying your pictures on external websites, which I also see as an invasion of privacy, however you do have to perform an action on the website and &#8220;Allow Access&#8221; to the application before it happens.</p>
<p><strong>Instant Personalization</strong><br />
This is where Facebook definitely crossed a line.  The Instant Personalization program is a new partnership program with Facebook where select websites can instantly personalize their content based on your public Facebook information.  As of right now there are only 3 websites that can offer instant personalization, they are <a title="Yelp Review Site" href="http://www.yelp.com/" target="_blank">Yelp</a>, <a title="Pandora Online Radio" href="http://www.pandora.com" target="_blank">Pandora Radio</a>, and <a title="Microsoft's Docs.com" href="http://www.docs.com" target="_blank">Docs.com</a>.</p>
<p>Here&#8217;s an example of what I mean by personalizing the content online based on Facebook information.  Lets assume you went to Pandora to listen to some online radio.  Pandora will now, in the background, go back and check with Facebook to see what music you listed on your Facebook profile and customize a radio station to your preferences.  As if that isn&#8217;t bad enough, it will also check the music that your Facebook friends listed on their profiles as well and use that information to further customize your playlists and offer you suggestions of other types of music you may like.</p>
<p><img class="alignright size-full wp-image-332" title="Facebook Block Application Example" src="http://www.robertrolfe.com/wp-content/uploads/Pandora-Block-Application1.png" alt="" width="214" height="198" />Now for the worst part, as a Facebook user you were automatically signed up for this service.  That&#8217;s right.  They didn&#8217;t even bother to ask you if that&#8217;s what you wanted to do, they just signed you up for it.  To protect yourself and to opt-out of this wonderful new feature, simply login to Facebook and go to &#8220;Account&#8221; &#8211; &gt; &#8220;Privacy Settings&#8221; -&gt; &#8220;Instant Personalization&#8221; where you will fine a setting to turn this off.  Unfortunately that doesn&#8217;t fully do the job.  The setting will only turn off the feature if you access one of the instant personalization websites, not if your friends do.</p>
<p>To make sure your information isn&#8217;t used when your friends visit these sites, you have to login and specifically block these applications from being able to access your information.  To do this you have to go to the Facebook page for each application and click the &#8220;Block Application&#8221; link on each one.  After all Facebook didn&#8217;t want to make it too easy for you to do.  I do want to make it easy for you however, so here are the links to each application:</p>
<ul>
<li><a title="Yelp Facebook Application" href="http://www.facebook.com/apps/application.php?id=97534753161" target="_blank">Yelp Application</a></li>
<li><a title="Microsoft's Docs.com Application" href="http://www.facebook.com/docs" target="_blank">Docs.com Application</a></li>
<li><a title="Pandora Radio Facebook Application" href="http://www.facebook.com/apps/application.php?id=139475280761" target="_blank">Pandora Application</a></li>
</ul>
<p>Each of those links will take you directly to the Facebook page where you can block the application.  If Facebook adds any more of these personalized websites in the future, you will also have to go specifically block those as well.  Hopefully Facebook will not be adding too many sites as &#8220;Instant Personalization Partners&#8221; in the future.</p>
<p><strong>Open Graph API</strong><br />
Facebook also announced this week that they setup a new website for web designers to simply the interface for them to access Facebook user information.  This can be used by Facebook applications or by external websites to further customize your browsing experience for you.  The nice thing about this API is that each application must specifically request your permission to access your profile information.  The bad thing is the amount of information that&#8217;s actually available through this API.</p>
<p>Here&#8217;s something to think about.  If you have ever played any games or taken a quiz on Facebook then you have likely authorized an application to access some, if not all, of your profile data.  These applications now have simplified access to even more of your data via this new API.  All of the following is available through this new API:</p>
<ul>
<li>Profile Information</li>
<li>Friends List</li>
<li>Your Wall</li>
<li>News Feed</li>
<li>Photo Albums (With links to the actual pictures &amp; tags information)</li>
<li>Books List</li>
<li>Movies List</li>
<li>Notes</li>
<li>Videos</li>
<li>Groups</li>
<li>Events</li>
</ul>
<p>Those are just some of the information that is available via the API.  For example here is a link to the API call for <a title="Robert Rolfe's Facebook Info" href="https://graph.facebook.com/robertrolfecom?metadata=1&amp;fields=picture,email" target="_blank">some of my information</a>.  As you can see some of the information is available to the public and there&#8217;s an entire list of things that are available to developers.  If a developer happens to get your permission to access your API information, they can get some very detailed information in a very easy to use format.</p>
<p>To make matters worse on this one the information is presented in a way where it could be exported to an external database once someone has access.  So If I was a malicious website developer and wanted to gather information about my website users, I could deceive them into giving me Facebook API access and then transfer that information into a private database away from Facebook.  This way if the user ever decided to revoke my application&#8217;s privileges to their information, I still have historical data in my own database copy to use for whatever I wanted.  You starting to see how this could be a bad idea?</p>
<p>So to protect your information from this API, you need to go double check your privacy settings on Facebook and make sure you know exactly what information is being shared with &#8220;Everyone&#8221;.  Also go through your list of authorized applications and remove any of those that you don&#8217;t want to have access to the information listed above.  In the future also make sure you know exactly what applications you are authorizing to access your information.  On each access request the application must tell you specifically which types of information they need access too, read those and make sure you understand them before clicking approve.</p>
<p><strong>Conclusion</strong><br />
Personally I think we could have done without many of the new tools and changes.  Facebook is trying to become the social center of the web and is compromising user privacy while doing it.  I think that Facebook information should have been left on Facebook&#8217;s website where it belongs and where the users have the most control over it.  There have been reports of users, <a title="Google Engineers Close Facebook Accounts" href="http://searchengineland.com/matt-cutts-deactivates-facebook-account-40543" target="_blank">including Google Engineers</a>, closing their Facebook accounts because of these changes.</p>
<p>If you&#8217;re concerned about the changes that Facebook has made and you want to warn your friends about it, then use the Facebook Share button at the top of this article to post a link to all of your friends.  The button will prompt you to confirm before posting a link on your wall.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robertrolfe.com/blog/social-media/facebook-violates-user-privacy-web-design-tools-facebook-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I am weak.. I bought an Apple iPad.  Here&#8217;s the review on how it stacks up.</title>
		<link>http://www.robertrolfe.com/blog/gadgets/weak-bought-apple-ipad-review/</link>
		<comments>http://www.robertrolfe.com/blog/gadgets/weak-bought-apple-ipad-review/#comments</comments>
		<pubDate>Thu, 22 Apr 2010 14:18:35 +0000</pubDate>
		<dc:creator>Robert Rolfe</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPad]]></category>

		<guid isPermaLink="false">http://www.robertrolfe.com/?p=281</guid>
		<description><![CDATA[In the last 17 days that the iPad has been available from Apple, I have had a countless number of conversations about it with others.  All of these conversations ended in exactly the same way&#8230;  No one wanted one and no one could find a good use for one.  It just seemed like a big [...]]]></description>
			<content:encoded><![CDATA[<p>In the last 17 days that the <a title="Apple iPad" href="http://www.apple.com/ipad/" target="_blank">iPad</a> has been available from <a title="Apple, Inc." href="http://www.apple.com" target="_blank">Apple</a>, I have had a countless number of conversations about it with others.  All of these conversations ended in exactly the same way&#8230;  No one wanted one and no one could find a good use for one.  It just seemed like a big waste of money.  The general consensus was that the iPad was a bloated, over sized, and over priced <a title="Apple iPod Touch" href="http://www.apple.com/ipodtouch/" target="_blank">iPod Touch</a> or <a title="Apple iPhone" href="http://www.apple.com/iphone/" target="_blank">iPhone</a>.  Well, as always, I wanted to give the new technology a fair shake.. So on Saturday I went to the local BestBuy to check one out.</p>
<p><span id="more-281"></span><a href="http://www.robertrolfe.com/wp-content/uploads/ipadhome.jpg"><img class="alignleft size-full wp-image-293" style="margin: 3px;" title="iPad Home Screen" src="http://www.robertrolfe.com/wp-content/uploads/ipadhome.jpg" alt="" width="290" height="402" /></a>That was a huge mistake.  After getting 10 minutes of time in front of the new device, it was very clear to me&#8230; I had to have one of these!  Yes folks.. I am weak!  Put something shiny in front of me to play with and I must have one!  Funny thing was that one of the other employee&#8217;s I had previously had a conversation about the iPad with was also at BestBuy, playing with an iPad.  She agreed that after getting a few minutes with the device, she wanted one too.  Immediately we checked with one of the sales reps working in the store and of course.. they are out of stock.</p>
<p>After spending a couple of days trying to source one from multiple retail outlets and CraigsList, I gave up and ordered one online direct from Apple.  Then last night, I stumbled across a &#8220;In Stock&#8221; notification on Best Buy&#8217;s website.  I made some calls to verify stock and drove across town only to have them sold out when I got there 20 minutes later.  I had that location check the stock at some other locations and was able to secure one over the phone at another location, which they weren&#8217;t supposed to do.  This is one of those times when you are thankful that not all employee&#8217;s follow &#8220;company policy&#8221; all of the time.</p>
<p>So now I have one.  A shiny new iPad wifi edition with 64GB of storage.  After getting a chance to use it off and on for the last 24 hours, here is how it actually breaks down in all the categories that actually matter:</p>
<p><strong>Look and Feel</strong><br />
The device is no different then a iPod touch or a iPhone in this regard.  The operating systems are almost exactly the same and all of the buttons are located in the same spots.  The screen on the iPad certainly is larger and there is no way your going to fit it into your pocket.  With that in mind, looking at the online specs you might get the impression that the screen is too large.  That is not the case.  Once the iPad is in your hands, it&#8217;s easy to hold on to and seems as if it&#8217;s just the perfect size.</p>
<p><strong>Weight</strong><br />
The iPad weighs in at a minor 1.5 pounds.   This is great when compared to a laptop or a net book.  It&#8217;s not too heavy but certainly has enough weight to it that you don&#8217;t feel like you are going to snap the device in half.  The 17&#8243; laptop I normally carry around is about 7.5 pounds, so this is a huge improvement over that.</p>
<p><strong><a href="http://www.robertrolfe.com/wp-content/uploads/ipadvideo.jpg"><img class="alignright size-full wp-image-290" style="margin: 3px;" title="iPad Video Player" src="http://www.robertrolfe.com/wp-content/uploads/ipadvideo.jpg" alt="" width="350" height="300" /></a>Screen</strong><br />
The screen resolution on the iPad is nothing short of amazing.  When reading a book or watching a movie the picture is just incredible.  I could easily see using the iPad to watch a movie  or read a book during a flight or a commute (when you&#8217;re not the one driving).  The picture while watching Disney/Pixar&#8217;s Cars looks just as good as it does on Blu-Ray on my Sony Bravia 52&#8243; Television.</p>
<p><strong>Applications</strong><br />
When looking online at Apple&#8217;s site, I got the impression that the iWorks applications were going to be included with the iPad.  This is not the case, they are available for you to purchase in the <a title="iTunes" href="http://www.apple.com/itunes/" target="_blank">iTunes Application Store</a>, but they didn&#8217;t come loaded on the device.  The applications that do come default on the device are Safari (a web browser), Email, Contacts, Calendar, iPod, Videos, Pictures, Notes, and YouTube.  These are exactly the same applications that come loaded on the iPod touch when I purchased that.  In the iTunes store there are many applications available for the iPad, many of which are free.  The paid applications mainly cost between 5.99 and 9.99 for good quality programs.  There are some applications that have not yet made a iPad compatible version, however the iPod/iPhone versions do seem to run on the newer device.  The only problem with these programs is that they open in a iPod sized window and don&#8217;t make use of the nice large screen you just paid for.  There is an option to blow them up to nearly full screen but typically they don&#8217;t look good when this is done.  With that in mind every one of the apps I really wanted to use today had an iPad version except <a title="Facebook - Stay connected with friends and family" href="http://www.facebook.com" target="_blank">FaceBook</a>, hopefully they will get that fixed sooner then later.</p>
<p><strong><a href="http://www.robertrolfe.com/wp-content/uploads/ibooks.jpg"><img class="alignright size-full wp-image-291" style="margin: 3px;" title="iPad iBooks Reader" src="http://www.robertrolfe.com/wp-content/uploads/ibooks.jpg" alt="" width="290" height="402" /></a>Book Reading</strong><br />
This deserves its own section as this will be a major use for this device.  Apple has come up with it&#8217;s own <a title="iBooks - E-Books for the iPad" href="http://www.apple.com/ipad/features/ibooks.html" target="_blank">iBooks app</a> (free to download) that you can use to purchase books from the iBooks store at reduced rates.  <a title="Amazon - A Great Online Marketplace" href="http://www.amazon.com" target="_blank">Amazon</a>, the largest book dealer on the planet, also has a <a title="Kindle - Amazons E-Book Reader" href="http://www.amazon.com/Kindle-Wireless-Reading-Display-Generation/dp/B0015T963C/ref=amb_link_86425631_2" target="_blank">Kindle</a> application for the iPad to use with their <a title="Amazon Kindle Book Store" href="http://www.amazon.com/Kindle-Books/b/ref=amb_link_352873202_2?ie=UTF8&amp;node=1286228011&amp;pf_rd_m=ATVPDKIKX0DER&amp;pf_rd_s=center-1&amp;pf_rd_r=1KJBSDW12DW8QE09A3SP&amp;pf_rd_t=101&amp;pf_rd_p=1260996782&amp;pf_rd_i=507846" target="_blank">Kindle book store</a>.  After using both of these applications for a minor period of time, I like the iBooks app more.  The main reason I like it more because it has more eye candy built into the app.  The Kindle application by comparison seems very plain, however Amazon&#8217;s ebooks are cheaper and they have a much larger selection of books available.  These are the things that really matter.  I just wish Amazon would add a bit more eye candy to the app so there won&#8217;t be any way that Apple can gain any ground on them in this category.  There is also a <a title="Marvel Comic Books" href="http://marvel.com/" target="_blank">Marvel</a> comic book application available for those of us that aren&#8217;t into novels&#8230;  these also look amazing on the string.</p>
<p><strong>Ease of Use</strong><br />
The iPad interface is extremely easy to get comfortable with and use.  I could easily see the most novice of users, or even my mother, being able to use it with ease after just a few minutes of playing with it.  (Side Note:  isn&#8217;t it amazing how quick us tech/geek guys are to throw our mothers under the bus when it comes to technology?  My mother has a Droid and a data plan and plays on FB while at the tire store.  There&#8217;s something wrong with that picture too.)  While each application may be a little different, they all pretty much share a similar look.  Also since the entire system is controlled by the full touch screen..  moving around on the iPad is a breeze.</p>
<p><strong>Pitfalls</strong><br />
Well.. it can&#8217;t all be great can it?  There are a few downfalls that I have found while using the iPad.  Here is a little combined list of the pitfalls of the iPad, some of which I have found and some which others have complained about.</p>
<ul>
<li><em> No Flash</em>: Not really a problem for me personally yet, but no.. there is no flash support on the browser.  Most people will probably not run into a problem with this but almost everyone needs to bring it up as a pitfall.  Apple has pretty much made it clear that they won&#8217;t be fixing flash on the device.</li>
<li><em>No Back side Camera</em>:  Thats right, there is no camera on the back of the iPad.  This means you are not going to be taking pictures of your friends using the device.  This isn&#8217;t really a problem for me as I can&#8217;t realistically see holding up the iPad to take a picture.  It&#8217;s a little large for that.</li>
<li><em>No Front side Camera</em>:  This one does actually kinda suck.  Apple it would have been nice to have a webcam type camera on the front of the iPad to use for video conferencing over the web.  This is really the only use I could see of a front side camera, but video conferencing on the iPad would have been fun to play with.</li>
<li><em>No Multi-Tasking</em>:  This ones a little tricky.  It works.. and Doesn&#8217;t.  The iPad wont let you run two apps at once.  You can run one app and then close it and open another.  That&#8217;s it.  Many people complain about this because they want to listen to the <a title="Pandora Online Radio" href="http://www.pandora.com/" target="_blank">Pandora</a> (online radio) app and browse the web at the same time, or something similar.  Well you can listen to music (via the iPOD app) and browse the web at the same time.  So it seems as if your using two Apple apps you can multi-task but you can&#8217;t if the apps come from a third party.  This is said to be getting fixed in the next operating system upgrade due out later in the year.</li>
<li><em>Weird Wifi</em>:  Many users, including myself, have had some problems with slower wifi connections or some quirky wifi issues while using the device.  I was able to fix my issues by changing the channel my wifi router used to broadcast it&#8217;s signal.  Many users however are complaining that a device at this price level (that was specifically built to use wifi) shouldn&#8217;t have ANY problems with wifi.  While I kind of agree with them, Apple has already acknowledged the problem with the wifi and has stated they will be releasing a fix for it.</li>
</ul>
<p><strong>Bottom Line</strong><br />
In the end.. after one day I give the iPad a big thumbs up.  It&#8217;s fun to play with and extremely easy to use.  There certainly is a place in the market for such a device.  I can also see it having some very practical uses.  If your going to pick one up, I would suggest you also invest in some screen covers and a carrying case for it.  After shelling out that kind of cash the last thing you want to do is scratch the screen or drop it and crack the casing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.robertrolfe.com/blog/gadgets/weak-bought-apple-ipad-review/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

