<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.1.2" -->
<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/"
	>

<channel>
	<title>Taehoon's Blog</title>
	<link>http://blog.binarystars.com</link>
	<description>A blog full of ideas, experence and references.</description>
	<pubDate>Fri, 19 Oct 2007 00:09:37 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.1.2</generator>
	<language>en</language>
			<item>
		<title>Samba - Error writing 75 bytes to client. -1. (Broken pipe)</title>
		<link>http://blog.binarystars.com/2007/08/25/samba-error-writing-75-bytes-to-client-1-broken-pipe/</link>
		<comments>http://blog.binarystars.com/2007/08/25/samba-error-writing-75-bytes-to-client-1-broken-pipe/#comments</comments>
		<pubDate>Sat, 25 Aug 2007 16:51:08 +0000</pubDate>
		<dc:creator>alan</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[Troubleshooting]]></category>

		<category><![CDATA[Networking]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Samba]]></category>

		<category><![CDATA[Errors]]></category>

		<guid isPermaLink="false">http://blog.binarystars.com/2007/08/25/samba-error-writing-75-bytes-to-client-1-broken-pipe/</guid>
		<description><![CDATA[Error Message:
Aug 24 17:00:02 Viking smbd[31939]: [2007/08/24 17:00:02, 0] lib/util_sock.c:write_data(562)
Aug 24 17:00:02 Viking smbd[31939]:   write_data: write failure in writing to client 10.10.10.100. Error Broken pipe
Aug 24 17:00:02 Viking smbd[31939]: [2007/08/24 17:00:02, 0] lib/util_sock.c:send_smb(769)
Aug 24 17:00:02 Viking smbd[31939]:   Error writing 75 bytes to client. -1. (Broken pipe)
From the best of my knowledge [...]]]></description>
			<content:encoded><![CDATA[<p>Error Message:</p>
<blockquote><p>Aug 24 17:00:02 Viking smbd[31939]: [2007/08/24 17:00:02, 0] lib/util_sock.c:write_data(562)<br />
Aug 24 17:00:02 Viking smbd[31939]:   write_data: write failure in writing to client 10.10.10.100. Error Broken pipe<br />
Aug 24 17:00:02 Viking smbd[31939]: [2007/08/24 17:00:02, 0] lib/util_sock.c:send_smb(769)<br />
Aug 24 17:00:02 Viking smbd[31939]:   Error writing 75 bytes to client. -1. (Broken pipe)</p></blockquote>
<p>From the best of my knowledge this particular error message is related to &#8216;file descriptors&#8217; which caused the broken pipes. You can fix this issue by setting &#8216;ulimit&#8217; on the startup script of smb (i.e. /etc/rc.d/init.d/smb)- by increasing the amount of file limits.</p>
<p>For example:</p>
<p>ulimit -Hn 16384<br />
ulimit -Sn 16384<br />
Or in my instance since I am experimenting:<br />
ulimit -HSd unlimited</p>
<p>UPDATE:        After        further        experiment        found        &#8216;ulimit&#8217;        has        no        affect. The only other conclusion at this point in time that I can think of is a device driver issue, or hardware related issue.</p>
<p>ifconfig       output</p>
<blockquote><p>eth1      Link encap:Ethernet  HWaddr 00:09:5B:8D:9A:C3<br />
inet addr:10.10.10.200  Bcast:10.10.10.255  Mask:255.255.255.0<br />
inet6 addr: fe80::209:5bff:fe8d:9ac3/64 Scope:Link<br />
UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1<br />
RX packets:54070745 errors:0 dropped:0 overruns:0 frame:0<br />
TX packets:68109524 errors:0 dropped:0 overruns:0 carrier:0<br />
collisions:0 txqueuelen:1000<br />
RX bytes:3885232471 (3.6 GiB)  TX bytes:2458736338 (2.2 GiB)<br />
Interrupt:5 Base address:0&#215;4000</p></blockquote>
<p>cat /proc/interrupts output</p>
<blockquote><p>          CPU0<br />
0:  641874455    XT-PIC-XT        timer<br />
1:          2    XT-PIC-XT        i8042<br />
2:          0    XT-PIC-XT        cascade<br />
5:  121165062    XT-PIC-XT        eth1<br />
7:          0    XT-PIC-XT        ohci_hcd:usb1, ohci_hcd:usb2<br />
8:          8    XT-PIC-XT        rtc<br />
9:          1    XT-PIC-XT        acpi<br />
10:          0    XT-PIC-XT        MPU401 UART<br />
11:   30757233    XT-PIC-XT        libata, eth0<br />
12:          4    XT-PIC-XT        i8042<br />
14:     643621    XT-PIC-XT        ide0<br />
15:     643443    XT-PIC-XT        ide1<br />
NMI:          0<br />
LOC:          0<br />
ERR:          0<br />
MIS:          0</p></blockquote>
<p>Reference:<br />
<a HREF="http://certcities.com/editorial/columns/story.asp?EditorialsID=214">How to use ulimit</a></p>
<p>Update again:<br />
&gt;ethtool -k eth1<br />
Offload parameters for eth1:<br />
rx-checksumming: off<br />
tx-checksumming: off<br />
scatter-gather: off<br />
tcp segmentation offload: off</p>
<p>Original error<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
:45:37 Viking smbd[12175]: [2007/08/27 13:45:37, 0] lib/util_sock.c:write_data(562)<br />
Aug 27 13:45:37 Viking smbd[12175]:   write_data: write failure in writing to client 10.10.10.100. Error Connection reset by<br />
peer<br />
Aug 27 13:45:37 Viking smbd[12175]: [2007/08/27 13:45:37, 0] lib/util_sock.c:send_smb(769)<br />
Aug 27 13:45:37 Viking smbd[12175]:   Error writing 51 bytes to client. -1. (Connection reset by peer)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
After Disable offloading support<br />
http://support.microsoft.com/kb/936594<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
14:28:16 Viking smbd[12571]: [2007/08/27 14:28:16, 0] lib/util_sock.c:write_data(562)<br />
Aug 27 14:28:16 Viking smbd[12571]:   write_data: write failure in writing to client 10.10.10.100. Error Connection reset by<br />
peer<br />
Aug 27 14:28:16 Viking smbd[12571]: [2007/08/27 14:28:16, 0] lib/util_sock.c:send_smb(769)<br />
Aug 27 14:28:16 Viking smbd[12571]:   Error writing 208 bytes to client. -1. (Connection reset by peer)<br />
Aug 27 14:28:16 Viking smbd[12571]: [2007/08/27 14:28:16, 0] lib/util_sock.c:write_data(562)<br />
Aug 27 14:28:16 Viking smbd[12571]:   write_data: write failure in writing to client 10.10.10.100. Error Broken pipe<br />
Aug 27 14:28:16 Viking smbd[12571]: [2007/08/27 14:28:16, 0] lib/util_sock.c:send_smb(769)<br />
Aug 27 14:28:16 Viking smbd[12571]:   Error writing 75 bytes to client. -1. (Broken pipe)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
After increasing IRPStackSize - common with certain types of anti-virus software (especially with symantec)<br />
http://support.microsoft.com/kb/177078<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Aug 27 14:44:24 Viking smbd[12719]: [2007/08/27 14:44:24, 0] smbd/nttrans.c:call_nt_transact_ioctl(2481)<br />
Aug 27 14:44:24 Viking smbd[12719]:   call_nt_transact_ioctl(0&#215;90060): Currently not implemented.<br />
Aug 27 14:44:39 Viking smbd[12719]: [2007/08/27 14:44:39, 0] lib/util_sock.c:read_data(534)<br />
Aug 27 14:44:39 Viking smbd[12719]:   read_data: read failure for 4 bytes to client 10.10.10.100. Error = Connection reset by<br />
peer<br />
Aug 27 14:44:39 Viking smbd[12719]: [2007/08/27 14:44:39, 0] lib/util_sock.c:write_data(562)<br />
Aug 27 14:44:39 Viking smbd[12719]:   write_data: write failure in writing to client 10.10.10.100. Error Broken pipe<br />
Aug 27 14:44:39 Viking smbd[12719]: [2007/08/27 14:44:39, 0] lib/util_sock.c:send_smb(769)<br />
Aug 27 14:44:39 Viking smbd[12719]:   Error writing 75 bytes to client. -1. (Broken pipe)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
After increasing connection limit with Windows XP SP2<br />
http://www.mydigitallife.info/2005/11/15/windows-xp-sp2-tcp-connection-limit-event-id-4226/<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Aug 27 15:03:36 Viking smbd[12839]: [2007/08/27 15:03:36, 0] smbd/nttrans.c:call_nt_transact_ioctl(2481)<br />
Aug 27 15:03:36 Viking smbd[12839]:   call_nt_transact_ioctl(0&#215;90060): Currently not implemented.<br />
Aug 27 15:03:37 Viking smbd[12839]: [2007/08/27 15:03:37, 0] lib/util_sock.c:read_data(534)<br />
Aug 27 15:03:37 Viking smbd[12839]:   read_data: read failure for 4 bytes to client 10.10.10.100. Error = Connection reset by<br />
peer<br />
Aug 27 15:03:37 Viking smbd[12839]: [2007/08/27 15:03:37, 0] lib/util_sock.c:write_data(562)<br />
Aug 27 15:03:37 Viking smbd[12839]:   write_data: write failure in writing to client 10.10.10.100. Error Broken pipe<br />
Aug 27 15:03:37 Viking smbd[12839]: [2007/08/27 15:03:37, 0] lib/util_sock.c:send_smb(769)<br />
Aug 27 15:03:37 Viking smbd[12839]:   Error writing 75 bytes to client. -1. (Broken pipe)<br />
Aug 27 15:04:28 Viking smbd[12064]: [2007/08/27 15:04:28, 0] lib/util_sock.c:get_peer_addr(1232)<br />
Aug 27 15:04:28 Viking smbd[12064]:   getpeername failed. Error was Transport endpoint is not connected<br />
Aug 27 15:04:28 Viking smbd[12892]: [2007/08/27 15:04:28, 0] lib/util_sock.c:get_peer_addr(1232)<br />
Aug 27 15:04:28 Viking smbd[12892]:   getpeername failed. Error was Transport endpoint is not connected<br />
Aug 27 15:04:28 Viking smbd[12892]: [2007/08/27 15:04:28, 0] lib/util_sock.c:read_data(534)<br />
Aug 27 15:04:28 Viking smbd[12892]:   read_data: read failure for 4 bytes to client 0.0.0.0. Error = Connection reset by peer<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Updated NVidia system drivers<br />
NVidia NIC version 50.2.5.0 Date 04.14.2007<br />
No update available.<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Windows XP Machine - NVidia NIC<br />
IRQ 17	OHCI Compliant IEEE 1394 Host Controller	OK<br />
IRQ 17	Marvell Yukon 88E8001/8003/8010 PCI Gigabit Ethernet Controller	OK<br />
IRQ 23	NVIDIA nForce4 Serial ATA RAID Controller	OK<br />
IRQ 23	NVIDIA Network Bus Enumerator	OK</p>
<p>Since I dont use FireWire will attempt to try communication through the Marvell NIC.<br />
My Static IP:<br />
10.10.10.100/24</p>
<p>Windows Error Message Again:<br />
Error Copying File or Folder<br />
Cannot copy {filename}: The specified network name is no longer available.</p>
<p>Aug 27 15:36:45 Viking smbd[13015]: [2007/08/27 15:36:45, 0] smbd/nttrans.c:call_nt_transact_ioctl(2481)<br />
Aug 27 15:36:45 Viking smbd[13015]:   call_nt_transact_ioctl(0&#215;90060): Currently not implemented.<br />
Aug 27 15:36:46 Viking smbd[13015]: [2007/08/27 15:36:46, 0] lib/util_sock.c:write_data(562)<br />
Aug 27 15:36:46 Viking smbd[13015]:   write_data: write failure in writing to client 10.10.10.100. Error Connection reset by<br />
peer<br />
Aug 27 15:36:46 Viking smbd[13015]: [2007/08/27 15:36:46, 0] lib/util_sock.c:send_smb(769)<br />
Aug 27 15:36:46 Viking smbd[13015]:   Error writing 51 bytes to client. -1. (Connection reset by peer)<br />
Aug 27 15:36:48 Viking smbd[12064]: [2007/08/27 15:36:48, 0] lib/util_sock.c:get_peer_addr(1232)<br />
Aug 27 15:36:48 Viking smbd[12064]:   getpeername failed. Error was Transport endpoint is not connected<br />
Aug 27 15:36:48 Viking smbd[13060]: [2007/08/27 15:36:48, 0] lib/util_sock.c:get_peer_addr(1232)<br />
Aug 27 15:36:48 Viking smbd[13060]:   getpeername failed. Error was Transport endpoint is not connected<br />
Aug 27 15:36:48 Viking smbd[13060]: [2007/08/27 15:36:48, 0] lib/util_sock.c:write_data(562)<br />
Aug 27 15:36:48 Viking smbd[13060]:   write_data: write failure in writing to client 0.0.0.0. Error Connection reset by peer<br />
Aug 27 15:36:48 Viking smbd[13060]: [2007/08/27 15:36:48, 0] lib/util_sock.c:send_smb(769)<br />
Aug 27 15:36:48 Viking smbd[13060]:   Error writing 4 bytes to client. -1. (Connection reset by peer)<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Problem resolved I believe. The problem was I was having a network loop.</p>
<pre>Computer - Win XP + SP2 (UNC: Raven)
	NIC 1a - 1000Mbit Uplink (Cross-Over) -&gt; NIC 1b 10.10.10.100/24
	NIC 2a - Network Switch 100Mbit 192.168.30.179/24 

Computer - Samba Linux (UNC: Viking)
	NIC 1b - 1000Mbit Uplink (Cross-Over) -&gt; NIC 1a 10.10.10.200/24
	NIC 2b - Network Switch 100Mbit 192.168.30.16/24</pre>
<p>Even though I programmed the host (C:\windows\system32\drivers\etc\hosts) file in Windows the problem still existed, where computer Raven will try to communicate through both network cards to establish communication.<br />
10.10.10.200	viking<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
My Resolution:<br />
&#8220;Block all source traffic from NIC 2a IP address - eth0 represents the NIC card on the Viking server&#8221;<br />
#!/bin/sh</p>
<p>iptables=&#8221;/sbin/iptables&#8221;<br />
ipstop=&#8221;192.168.30.179&#8243;</p>
<p>$iptables &#8211;flush INPUT<br />
$iptables &#8211;flush FORWARD<br />
$iptables &#8211;flush OUTPUT</p>
<p>$iptables &#8211;policy INPUT ACCEPT<br />
$iptables &#8211;policy FORWARD ACCEPT<br />
$iptables &#8211;policy OUTPUT ACCEPT</p>
<p># $iptables -A OUTPUT -o eth0 -p tcp -d $ipstop -j REJECT<br />
# Don&#8217;t use TCP IPTABLES REJECT windoze will just drop the connection by default and thus &#8220;Error Connect reset by peer&#8221;<br />
# Since windoze has a personality of it&#8217;s own it will try and use both NIC&#8217;s.<br />
$iptables -A OUTPUT -o eth0 -p tcp -d $ipstop -j DROP<br />
$iptables -A OUTPUT -o eth0 -p udp -d $ipstop -j DROP</p>
<p>$iptables -A INPUT -i eth0 -p tcp -s $ipstop -j DROP<br />
$iptables -A INPUT -i eth0 -p udp -s $ipstop -j DROP<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binarystars.com/2007/08/25/samba-error-writing-75-bytes-to-client-1-broken-pipe/feed/</wfw:commentRss>
		</item>
		<item>
		<title>LogMeIn Hamachi VPN&#8217;s</title>
		<link>http://blog.binarystars.com/2007/08/23/logmein-hamachi-vpns/</link>
		<comments>http://blog.binarystars.com/2007/08/23/logmein-hamachi-vpns/#comments</comments>
		<pubDate>Fri, 24 Aug 2007 00:27:38 +0000</pubDate>
		<dc:creator>alan</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[Networking]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Security]]></category>

		<category><![CDATA[VPN]]></category>

		<guid isPermaLink="false">http://blog.binarystars.com/2007/08/23/logmein-hamachi-vpns/</guid>
		<description><![CDATA[LogMeIn Hamachi VPN&#8217;s   
I finally had a chance to evaluate this software and am very satisfied with it. The only potential risks in using this software are the remote host(s) you connect to - I hightly recommend if you use this software you *trust* the computer you are connecting to.
I tested this software with [...]]]></description>
			<content:encoded><![CDATA[<p><a TARGET="_blank" HREF="https://secure.logmein.com/products/hamachi/vpn.asp">LogMeIn Hamachi VPN&#8217;s   </a></p>
<p>I finally had a chance to evaluate this software and am very satisfied with it. The only potential risks in using this software are the remote host(s) you connect to - I hightly recommend if you use this software you *trust* the computer you are connecting to.</p>
<p>I tested this software with two Internet Connections - Cable 16Mbit/1.5Mbit and DSL 1.5Mbit/384Kbit and two computers. Both computers were behind a firewall and connected flawlessly to each other. With both computer&#8217;s on both Internet&#8217;s I was able to broswe each other&#8217;s files and transfer files as fast as the Internet connection would allow. At the same time while transfering files through the VPN I noticed legancy - which is normal, considering they share the same virtual connection. Other than that, say for example when I was not transfering any files and there was nothing else going through both Internet&#8217;s surprisingly my legancy was near exactly the same as a direct Internet connect (about 30ms-50ms).</p>
<p>In the end, I highly recommend this software for anyone to use in purposes of connecting two or more computers through the Internet. Example: Games, Easy File Transfers, Secure Chatting, etc.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binarystars.com/2007/08/23/logmein-hamachi-vpns/feed/</wfw:commentRss>
		</item>
		<item>
		<title>System Requirements</title>
		<link>http://blog.binarystars.com/2007/05/18/system-requirements/</link>
		<comments>http://blog.binarystars.com/2007/05/18/system-requirements/#comments</comments>
		<pubDate>Fri, 18 May 2007 22:06:24 +0000</pubDate>
		<dc:creator>alan</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[References &amp; Documentation]]></category>

		<guid isPermaLink="false">http://blog.binarystars.com/2007/05/18/system-requirements/</guid>
		<description><![CDATA[System Requirements web site to determine if an application can theoretically run on your computer.
http://www.systemrequirementslab.com    
Although this tool is great as a guideline, it does not however determine if the program you check will work with mutiple programs running in the background.
]]></description>
			<content:encoded><![CDATA[<p>System Requirements web site to determine if an application can theoretically run on your computer.</p>
<p><a HREF="http://www.systemrequirementslab.com ">http://www.systemrequirementslab.com    </a></p>
<p>Although this tool is great as a guideline, it does not however determine if the program you check will work with mutiple programs running in the background.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binarystars.com/2007/05/18/system-requirements/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Compile instructions for lighttpd.</title>
		<link>http://blog.binarystars.com/2007/04/25/compile-instructions-for-lighttpd/</link>
		<comments>http://blog.binarystars.com/2007/04/25/compile-instructions-for-lighttpd/#comments</comments>
		<pubDate>Wed, 25 Apr 2007 08:15:44 +0000</pubDate>
		<dc:creator>alan</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[References &amp; Documentation]]></category>

		<category><![CDATA[lighttpd]]></category>

		<guid isPermaLink="false">http://blog.binarystars.com/2007/04/25/compile-instructions-for-lighttpd/</guid>
		<description><![CDATA[Build instructions for lighttpd. In sequence with compilation instructions here.
./configure \
--with-pspell --with-mysql=/usr/local/mysql \
--with-mysqli=/usr/local/mysql/bin/mysql_config \
--with-mysql-sock=/tmp/mysql.sock \
--enable-magic-quotes --enable-soap \
--enable-calendar --enable-exif \
--with-zlib --with-zlib-dir=/root/_bin/zlib-1.2.3 \
--with-zip --enable-mbstring=all --with-mhash \
--with-mycrypt --enable-wddx --with-gettext \
--enable-ftp \
--with-cgi --enable-fastcgi \
--with-gd \
--with-jpeg --with-jpeg-dir=/root/_bin/jpeg-6b \
--enable-gd-native-ttf --with-dom \
--with-png --with-png-dir=/root/_bin/libpng-1.2.16 \
--with-xpm --with-xpm-dir=/root/_bin/XawXpm \
--with-freetype --with-freetype-dir=/root/_bin/freetype-2.3.4 \
--enable-memory-limit --with-curl \
--enable-discard-path \
--enable-force-redirect
Reference:
http://trac.lighttpd.net/trac/wiki/TutorialLighttpdAndPHP
]]></description>
			<content:encoded><![CDATA[<p>Build instructions for lighttpd. In sequence with compilation instructions <a HREF="http://blog.binarystars.com/2007/03/04/compiling-apache-mysql-modperl-source/">here</a>.<br />
<code>./configure \<br />
--with-pspell --with-mysql=/usr/local/mysql \<br />
--with-mysqli=/usr/local/mysql/bin/mysql_config \<br />
--with-mysql-sock=/tmp/mysql.sock \<br />
--enable-magic-quotes --enable-soap \<br />
--enable-calendar --enable-exif \<br />
--with-zlib --with-zlib-dir=/root/_bin/zlib-1.2.3 \<br />
--with-zip --enable-mbstring=all --with-mhash \<br />
--with-mycrypt --enable-wddx --with-gettext \<br />
--enable-ftp \<br />
--with-cgi --enable-fastcgi \<br />
--with-gd \<br />
--with-jpeg --with-jpeg-dir=/root/_bin/jpeg-6b \<br />
--enable-gd-native-ttf --with-dom \<br />
--with-png --with-png-dir=/root/_bin/libpng-1.2.16 \<br />
--with-xpm --with-xpm-dir=/root/_bin/XawXpm \<br />
--with-freetype --with-freetype-dir=/root/_bin/freetype-2.3.4 \<br />
--enable-memory-limit --with-curl \<br />
--enable-discard-path \<br />
--enable-force-redirect</code></p>
<p>Reference:<br />
<a HREF="http://trac.lighttpd.net/trac/wiki/TutorialLighttpdAndPHP">http://trac.lighttpd.net/trac/wiki/TutorialLighttpdAndPHP</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binarystars.com/2007/04/25/compile-instructions-for-lighttpd/feed/</wfw:commentRss>
		</item>
		<item>
		<title>QoS Devices and Software</title>
		<link>http://blog.binarystars.com/2007/04/19/qos-devices-and-software/</link>
		<comments>http://blog.binarystars.com/2007/04/19/qos-devices-and-software/#comments</comments>
		<pubDate>Fri, 20 Apr 2007 00:51:24 +0000</pubDate>
		<dc:creator>alan</dc:creator>
		
		<category><![CDATA[QoS+VoIP]]></category>

		<guid isPermaLink="false">http://blog.binarystars.com/2007/04/19/qos-devices-and-software/</guid>
		<description><![CDATA[To    be    continued&#8230;
Software
cFosSpeed
Hardware
Linksys Network Optimizer (OGV200)    
Tools
voip-info.org QoS
]]></description>
			<content:encoded><![CDATA[<p>To    be    continued&#8230;</p>
<p>Software<br />
<a HREF="http://www.cfos.de/speed/cfosspeed_e.htm" TARGET="_blank">cFosSpeed</a></p>
<p>Hardware<br />
<a HREF="http://shopper.cnet.com/networking-accessories/linksys-ogv200-network-optimizer/4014-6461_9-31879025.html?localShoppingView=1" TARGET="_blank">Linksys Network Optimizer (OGV200)    </a></p>
<p>Tools<br />
<a HREF="http://www.voip-info.org/wiki/view/QoS" TARGET="_blank">voip-info.org QoS</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binarystars.com/2007/04/19/qos-devices-and-software/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Part 20: Windows XP vs. Vista: Printers &#038; Problem Reports and Solutions</title>
		<link>http://blog.binarystars.com/2007/03/31/part-20-windows-xp-vs-vista-printers-problem-reports-and-solutions/</link>
		<comments>http://blog.binarystars.com/2007/03/31/part-20-windows-xp-vs-vista-printers-problem-reports-and-solutions/#comments</comments>
		<pubDate>Sun, 01 Apr 2007 00:47:48 +0000</pubDate>
		<dc:creator>alan</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[Discussion]]></category>

		<category><![CDATA[Research Summaries]]></category>

		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://blog.binarystars.com/2007/03/31/part-20-windows-xp-vs-vista-printers-problem-reports-and-solutions/</guid>
		<description><![CDATA[030: Printers
It&#8217;s kind of funny that I actually was curious to know what the difference was in XP vs. Vista&#8217;s Printer Control Panel. . . Anyways, I ended up finding out Vista now includes the Fax and the Microsoft XPS Document by default. If I recall correctly both items are installed on XP machines once [...]]]></description>
			<content:encoded><![CDATA[<p><strong>030: Printers</strong><br />
It&#8217;s kind of funny that I actually was curious to know what the difference was in XP vs. Vista&#8217;s Printer Control Panel. . . Anyways, I ended up finding out Vista now includes the Fax and the <a HREF="http://www.microsoft.com/whdc/xps/default.mspx" TARGET="_blank">Microsoft XPS Document</a> by default. If I recall correctly both items are installed on XP machines once you either do the most recent updates of Windows or by installing Microsoft Office products.</p>
<p>XPS is simply the Microsoft version of Adobe&#8217;s <a TARGET="_blank" HREF="http://www.adobe.com/products/acrobat/adobepdf.html">PDF</a> format.</p>
<p ALIGN="center"><a HREF="http://www.cpututorials.com/_blog.binarystars.com/vista-images/030-WinXP-Printers.jpg"><img STYLE="width: 258px; height: 200px" HEIGHT="200" WIDTH="258" BORDER="1" TITLE="Windows XP - Printers" ALT="Windows XP - Printers" SRC="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/030-WinXP-Printers.jpg" /><br />
Windows XP - Printers</a></p>
<p ALIGN="center"><a HREF="http://www.cpututorials.com/_blog.binarystars.com/vista-images/030-WinV-Printers.jpg"><img SRC="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/030-WinV-Printers.jpg" ALT="Windows Vista - Printers" TITLE="Windows Vista - Printers" BORDER="1" WIDTH="258" HEIGHT="200" STYLE="width: 258px; height: 200px" /><br />
Windows Vista - Printers</a></p>
<p><strong>031: Problem Reports and Solutions</strong><br />
Unlike XP&#8217;s Error Reporting services (located from your System Properties Control Panel Applet), Vista includes all this junk in a separate Control Panel named Problem Reports and Solutions. The Problem Reports and Solutions I assume also sends error reports of all related Microsoft products (i.e. Office suite) installed on your computer if you encounter an error. Of course if you look at the screenshots below you can notice it failed to install certain system drivers and the Problem Reports and Solutions indicates no solutions.</p>
<p>What Microsoft fails to tell you is that this problem-to-solution error reporting junk-crap-o-la only provides information related to Microsoft products. In other words, this service does not provide solutions for third party hardware or software (i.e. Your <a HREF="http://www.logitech.com/index.cfm/products/details/US/EN,CRID=2166,CONTENTID=10717" TARGET="_blank">G15 Keyboard</a>, or why your 7.1 HD speakers are not working).</p>
<p ALIGN="center"><a HREF="http://www.cpututorials.com/_blog.binarystars.com/vista-images/031-WinXP-Error-Reporting.jpg"><img STYLE="width: 258px; height: 200px" HEIGHT="200" WIDTH="258" BORDER="1" TITLE="Windows XP - Error Reporting" ALT="Windows XP - Error Reporting" SRC="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/031-WinXP-Error-Reporting.jpg" /><br />
Windows XP - Error Reporting</a></p>
<p ALIGN="center"><a HREF="http://www.cpututorials.com/_blog.binarystars.com/vista-images/031-WinV-Problems-Reports-And-Solutions-1.jpg"><img SRC="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/031-WinV-Problems-Reports-And-Solutions-1.jpg" ALT="Windows Vista - Problem Reports and Solutions" TITLE="Windows Vista - Problem Reports and Solutions" BORDER="1" WIDTH="258" HEIGHT="200" STYLE="width: 258px; height: 200px" /><br />
Windows Vista - Problem Reports and Solutions</a></p>
<p ALIGN="center"><a HREF="http://www.cpututorials.com/_blog.binarystars.com/vista-images/031-WinV-Problems-Reports-And-Solutions-3.jpg"><img SRC="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/031-WinV-Problems-Reports-And-Solutions-3.jpg" ALT="Windows Vista - Problem Reports and Solutions - Problems" TITLE="Windows Vista - Problem Reports and Solutions - Problems" BORDER="1" WIDTH="258" HEIGHT="200" STYLE="width: 258px; height: 200px" /><br />
Windows Vista - Problem Reports and Solutions - Problems</a></p>
<p ALIGN="center"><a HREF="http://www.cpututorials.com/_blog.binarystars.com/vista-images/031-WinV-Problems-Reports-And-Solutions-2.jpg"><img STYLE="width: 258px; height: 200px" HEIGHT="200" WIDTH="258" BORDER="1" TITLE="Windows Vista - Problem Reports and Solutions - Check For Solutions" ALT="Windows Vista - Problem Reports and Solutions - Check For Solutions" SRC="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/031-WinV-Problems-Reports-And-Solutions-2.jpg" /><br />
Windows Vista - Problem Reports and Solutions - Check For Solutions</a></p>
<p>References:<br />
<a HREF="http://www.microsoft.com/whdc/xps/default.mspx" TARGET="_blank">XML Paper Specification: Overview</a><br />
<a HREF="http://en.wikipedia.org/wiki/XML_Paper_Specification" TARGET="_blank">Wikipedia – XML Paper Specification</a><br />
<a TARGET="_blank" HREF="http://www.adobe.com/products/acrobat/adobepdf.html">Adobe Portable Document Format</a><br />
<a HREF="http://www.logitech.com/index.cfm/products/details/US/EN,CRID=2166,CONTENTID=10717" TARGET="_blank">Logitech G15 Gaming Keyboard</a></p>
<p>&gt;&gt; Go  to  <a HREF="http://blog.binarystars.com/windows-xp-vs-vista-index/">Windows  XP  vs.  Vista  Index</a> &lt;&lt;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binarystars.com/2007/03/31/part-20-windows-xp-vs-vista-printers-problem-reports-and-solutions/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Application Error - Floating point!</title>
		<link>http://blog.binarystars.com/2007/03/31/explorerexe-application-error-floating-point/</link>
		<comments>http://blog.binarystars.com/2007/03/31/explorerexe-application-error-floating-point/#comments</comments>
		<pubDate>Sat, 31 Mar 2007 21:16:39 +0000</pubDate>
		<dc:creator>alan</dc:creator>
		
		<category><![CDATA[Software Bugs]]></category>

		<guid isPermaLink="false">http://blog.binarystars.com/2007/03/31/explorerexe-application-error-floating-point/</guid>
		<description><![CDATA[System:
Windows XP + SP2
Cause:
Unknown
Re-occuring:
No
Resolution:
Unknown
Symptom:
After using explorer to copy, and move files I recently encountered this error message:
Window    Name:    explorer.exe    -    Application    Error
The    exception    Floating-point    inexact    result.
(0xc000008f)    occurred    in    the    [...]]]></description>
			<content:encoded><![CDATA[<p>System:<br />
Windows XP + SP2</p>
<p>Cause:<br />
Unknown</p>
<p>Re-occuring:<br />
No</p>
<p>Resolution:<br />
Unknown</p>
<p>Symptom:<br />
After using explorer to copy, and move files I recently encountered this error message:</p>
<p>Window    Name:    explorer.exe    -    Application    Error<br />
The    exception    Floating-point    inexact    result.<br />
(0xc000008f)    occurred    in    the    application    at    location    0&#215;7c812a5b.</p>
<p>Click on   OK   to terminate    the    program</p>
<p><a HREF="http://blog.binarystars.com/wp-content/uploads/2007/03/explorer-exe-floating-point-error.jpg" TITLE="Explorer.exe Application Error"><img SRC="http://blog.binarystars.com/wp-content/uploads/2007/03/explorer-exe-floating-point-error.jpg" ALT="Explorer.exe Application Error" /></a></p>
<p>Update:<br />
It seems explorer.exe isn&#8217;t the only application experiencing the same problem. I receive the same error message in Cool Edit Pro 1.2 this time the error code is 0&#215;0000090 at location 0&#215;0052ce21.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binarystars.com/2007/03/31/explorerexe-application-error-floating-point/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Part 19: Windows XP vs. Vista: Phone and Modem Options and Power Options</title>
		<link>http://blog.binarystars.com/2007/03/30/part-19-windows-xp-vs-vista-phone-and-modem-options-and-power-options/</link>
		<comments>http://blog.binarystars.com/2007/03/30/part-19-windows-xp-vs-vista-phone-and-modem-options-and-power-options/#comments</comments>
		<pubDate>Fri, 30 Mar 2007 18:54:47 +0000</pubDate>
		<dc:creator>alan</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[Discussion]]></category>

		<category><![CDATA[Research Summaries]]></category>

		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://blog.binarystars.com/2007/03/30/part-19-windows-xp-vs-vista-phone-and-modem-options-and-power-options/</guid>
		<description><![CDATA[028: Phone and Modem Options
No real differences between XP and Vista although it seems Vista by default has only 4 Providers a user can use when connecting to PBX devices or related vs. XP&#8217;s 6 Providers.

Windows XP - Phone And Modem Options

Windows Vista - Phone And Modem Options
029: Power Options
Before I start I want to [...]]]></description>
			<content:encoded><![CDATA[<p><strong>028: Phone and Modem Options</strong><br />
No real differences between XP and Vista although it seems Vista by default has only 4 Providers a user can use when connecting to PBX devices or related vs. XP&#8217;s 6 Providers.</p>
<p ALIGN="center"><a HREF="http://www.cpututorials.com/_blog.binarystars.com/vista-images/028-WinXP-Phone-And-Modem-Options.jpg"><img SRC="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/028-WinXP-Phone-And-Modem-Options.jpg" ALT="Windows XP - Phone And Modem Options" TITLE="Windows XP - Phone And Modem Options" BORDER="1" WIDTH="258" HEIGHT="291" STYLE="width: 258px; height: 291px" /><br />
Windows XP - Phone And Modem Options</a></p>
<p ALIGN="center"><a HREF="http://www.cpututorials.com/_blog.binarystars.com/vista-images/028-WinV-Phone-And-Modem-Options.jpg"><img STYLE="width: 258px; height: 285px" HEIGHT="285" WIDTH="258" BORDER="1" TITLE="Windows Vista - Phone And Modem Options" ALT="Windows Vista - Phone And Modem Options" SRC="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/028-WinV-Phone-And-Modem-Options.jpg" /><br />
Windows Vista - Phone And Modem Options</a></p>
<p><strong>029: Power Options</strong><br />
Before I start I want to mention that Vista really really is annoying about this user account permission window. For example, say I want to change the Advanced Power Management (APM) settings for a computer with Vista – Vista ends up complaining 3-4 times about changes (see <a HREF="http://www.cpututorials.com/_blog.binarystars.com/vista-images/029-User-Account-Control-Permissions.jpg">screenshot</a>).</p>
<p ALIGN="center"><a HREF="http://www.cpututorials.com/_blog.binarystars.com/vista-images/029-User-Account-Control-Permissions.jpg"><img STYLE="width: 258px; height: 186px" HEIGHT="186" WIDTH="258" BORDER="1" TITLE="Windows Vista - User Account Control Permissions" ALT="Windows Vista - User Account Control Permissions" SRC="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/029-User-Account-Control-Permissions.jpg" /><br />
Windows Vista - User Account Control Permissions</a></p>
<p>By default the Power Options in Vista the settings are completely locked (annoying) – to change anything you have to click another option on the page to allow changes and then click Continue from the User Account Permissions pop-up window, and then make your “one” change. Again if you want to make further changes to the Power Options you have to repeat the process and click click more to Continue. In XP, however these pop-up, more clicky thingy&#8217;s are non-existent (I prefer it this way- who cares!). Then again I understand, Microsoft is trying to make their point about “security” - but still too much of a good thing is a bad thing.</p>
<p>Other than the annoying annoying pop-up prompts and clicking several times Vista renamed the Power Schemes (from XP) to “power plan”. Power plans like Balanced, Power Saver, and High Performance. . .</p>
<p ALIGN="center"><a HREF="http://www.cpututorials.com/_blog.binarystars.com/vista-images/029-WinXP-Power-Options.jpg"><img SRC="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/029-WinXP-Power-Options.jpg" ALT="Windows XP - Power Options - Power Schemes" TITLE="Windows XP - Power Options - Power Schemes" BORDER="1" WIDTH="258" HEIGHT="290" STYLE="width: 258px; height: 290px" /><br />
Windows XP - Power Options - Power Schemes</a></p>
<p ALIGN="center"><a HREF="http://www.cpututorials.com/_blog.binarystars.com/vista-images/029-WinV-Power-Options-1.jpg"><img SRC="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/029-WinV-Power-Options-1.jpg" ALT="Windows Vista - Power Options - Power Plans" TITLE="Windows Vista - Power Options - Power Plans" BORDER="1" WIDTH="258" HEIGHT="200" STYLE="width: 258px; height: 200px" /><br />
Windows Vista - Power Options - Power Plans</a></p>
<p ALIGN="center"><a HREF="http://www.cpututorials.com/_blog.binarystars.com/vista-images/029-WinV-Power-Options-2.jpg"><img STYLE="width: 258px; height: 275px" HEIGHT="275" WIDTH="258" BORDER="1" TITLE="Windows Vista - Power Options - Advanced Settings" ALT="Windows Vista - Power Options - Advanced Settings" SRC="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/029-WinV-Power-Options-2.jpg" /><br />
Windows Vista - Power Options - Advanced Settings</a></p>
<p ALIGN="center"><a HREF="http://www.cpututorials.com/_blog.binarystars.com/vista-images/029-WinV-Power-Options-3.jpg"><img SRC="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/029-WinV-Power-Options-3.jpg" ALT="Windows Vista - Power Options - Create a Power Plan" TITLE="Windows Vista - Power Options - Create a Power Plan" BORDER="1" WIDTH="258" HEIGHT="200" STYLE="width: 258px; height: 200px" /><br />
Windows Vista - Power Options - Create a Power Plan</a></p>
<p ALIGN="center"><a HREF="http://www.cpututorials.com/_blog.binarystars.com/vista-images/029-WinV-Power-Options-4.jpg"><img STYLE="width: 258px; height: 200px" HEIGHT="200" WIDTH="258" BORDER="1" TITLE="Windows Vista - Power Options - Power Buttons" ALT="Windows Vista - Power Options - Power Buttons" SRC="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/029-WinV-Power-Options-4.jpg" /><br />
Windows Vista - Power Options - Power Buttons</a></p>
<p>&gt;&gt; Go  to  <a HREF="http://blog.binarystars.com/windows-xp-vs-vista-index/">Windows  XP  vs.  Vista  Index</a> &lt;&lt;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binarystars.com/2007/03/30/part-19-windows-xp-vs-vista-phone-and-modem-options-and-power-options/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Part 18: Windows XP vs. Vista: Personalization (Display Control Panel)</title>
		<link>http://blog.binarystars.com/2007/03/29/part-18-windows-xp-vs-vista-personalization-display-control-panel/</link>
		<comments>http://blog.binarystars.com/2007/03/29/part-18-windows-xp-vs-vista-personalization-display-control-panel/#comments</comments>
		<pubDate>Thu, 29 Mar 2007 06:20:35 +0000</pubDate>
		<dc:creator>alan</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[Discussion]]></category>

		<category><![CDATA[Research Summaries]]></category>

		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://blog.binarystars.com/2007/03/29/part-18-windows-xp-vs-vista-personalization-display-control-panel/</guid>
		<description><![CDATA[027: Personalization (Display Control Panel)
Vista&#8217;s new look with Aero Graphical User Interface (GUI) you should know right off the bat it all consumes more memory, more space, and more processing power to work than XP. And the worse thing of all - is Vista&#8217;s limited theme selection (i.e. Standard and Classic theme) compared to XP [...]]]></description>
			<content:encoded><![CDATA[<p><strong>027: Personalization (Display Control Panel)</strong><br />
Vista&#8217;s new look with Aero Graphical User Interface (GUI) you should know right off the bat it all consumes more memory, more space, and more processing power to work than XP. And the worse thing of all - is Vista&#8217;s limited theme selection (i.e. Standard and Classic theme) compared to XP (see XP Display Properties <a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/027-WinXP-Display-Properties.jpg">screenshot</a>).</p>
<p>According to<a target="_blank" href="http://www.answers.com/topic/windows-aero"> Answers.com</a> the requirements for running Aero:</p>
<blockquote>
<ul>
<li>a 1 GHz 32-bit (x86) or 64-bit (x64) processor</li>
<li>1 gigabyte of system memory</li>
<li>a DirectX 9 compatible graphics processor, with a Windows Display Driver Model (WDDM) driver, and a minimum of 128 MB of Video RAM</li>
<li>40 GB hard drive with 15 GB free space</li>
<li>DVD-ROM Drive</li>
<li>audio output and Internet access</li>
</ul>
</blockquote>
<p>Of course by default Vista will use basic GUI Standard or Classic if the computer does not met the above system requirements for Aero. This in-turn makes your operating system look like a tin can, even worse than Windows XP and 98 operating systems.</p>
<p>So what&#8217;s the big deal about this new GUI besides it&#8217;s look and feel? Well, for starters it has a ton of other attachments like for example the <a target="_blank" href="http://www.answers.com/topic/vista-flip-3d-png">Flip 3D</a>, search-as-you-type search field, Virtual Folders, better file management and a ton more – all very similar to Mac OS X&#8217;s <a target="_blank" href="http://www.answers.com/topic/aqua-user-interface">Aqua theme</a>.</p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/027-WinV-Personalization-1.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/027-WinV-Personalization-1.jpg" alt="Windows Vista - Personalization" title="Windows Vista - Personalization" /><br />
Windows Vista - Personalization</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/027-WinV-Personalization-2.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/027-WinV-Personalization-2.jpg" alt="Windows Vista - Personalization - Appearance Settings" title="Windows Vista - Personalization - Appearance Settings" /><br />
Windows Vista - Personalization - Appearance Settings</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/027-WinV-Personalization-3.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/027-WinV-Personalization-3.jpg" alt="Windows Vista - Classic Theme" title="Windows Vista - Classic Theme" /><br />
Windows Vista - Classic Theme</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/027-WinXP-Display-Properties.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/027-WinXP-Display-Properties.jpg" alt="Windows XP - Display Properties" title="Windows XP - Display Properties" /><br />
Windows XP - Display Properties</a></p>
<p>References:<br />
<a target="_blank" href="http://www.eweek.com/article2/0,1895,1842175,00.asp">Apple&#8217;s Tiger vs. Windows Vista: Who Comes Out Ahead?</a><br />
<a target="_blank" href="http://www.answers.com/topic/windows-aero">Windows Aero</a><br />
<a target="_blank" href="http://www.answers.com/topic/aqua-user-interface">Mac OS X Aqua</a></p>
<p>&gt;&gt; Go  to  <a href="http://blog.binarystars.com/windows-xp-vs-vista-index/">Windows  XP  vs.  Vista  Index</a> &lt;&lt;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binarystars.com/2007/03/29/part-18-windows-xp-vs-vista-personalization-display-control-panel/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Part 17: Windows XP vs. Vista: Performance Information and Tools</title>
		<link>http://blog.binarystars.com/2007/03/28/part-17-windows-xp-vs-vista-performance-information-and-tools/</link>
		<comments>http://blog.binarystars.com/2007/03/28/part-17-windows-xp-vs-vista-performance-information-and-tools/#comments</comments>
		<pubDate>Thu, 29 Mar 2007 04:49:46 +0000</pubDate>
		<dc:creator>alan</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[Discussion]]></category>

		<category><![CDATA[Research Summaries]]></category>

		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://blog.binarystars.com/2007/03/28/part-17-windows-xp-vs-vista-performance-information-and-tools/</guid>
		<description><![CDATA[026: Performance Information and Tools
I suppose this feature of Vista (not part of XP) is partly a good thing. The Control Panel Applet named Performance Information and Tools (Windows Experience Index) according to Microsoft&#8217;s Help and Support:
The Windows Experience Index measures the capability of your computer&#8217;s hardware and software configuration and expresses this measurement as [...]]]></description>
			<content:encoded><![CDATA[<p><strong>026: Performance Information and Tools</strong><br />
I suppose this feature of Vista (not part of XP) is partly a good thing. The Control Panel Applet named Performance Information and Tools (Windows Experience Index) according to Microsoft&#8217;s Help and Support:</p>
<blockquote><p>The Windows Experience Index measures the capability of your computer&#8217;s hardware and software configuration and expresses this measurement as a number called a base score. A higher base score generally means that your computer will perform better and faster than a computer with a lower base score, especially when performing more advanced and resource-intensive tasks. . . You can use the base score to confidently buy programs and other software that are matched to your computer&#8217;s base score. . .</p></blockquote>
<p>What this tool fails to inform users (you) about – for example if your hard drive is severely fragmented and you run this tool, what then? Or for example, say you have multiple programs running at the same time and run this tool will your score be the same?</p>
<blockquote><p>Test 1:<br />
2.8 Processor<br />
3.7 Memory<br />
1.0 Graphics<br />
1.0 Gaming graphics<br />
4.1 Primary hard disk</p>
<p>Test 2:<br />
2.8 Processor<br />
3.7 Memory<br />
1.0 Graphics<br />
1.0 Gaming graphics<br />
4.0 Primary hard disk</p></blockquote>
<p>As you can see in the above tests the Primary hard disk subscore does not have the same value – therefore proves my point. So what does all this mean? It means that this tool simply does not accurately prove meaningful information when purchasing or determining if particular application will run on your system. The only thing it really provides is a <a TARGET="_blank" HREF="http://www.answers.com/topic/pc-magazine-benchmarks">benchmark</a> of your system (i.e. Clean install of Windows Vista vs. having Vista for a month and checking the difference in results).</p>
<p>Simply this tool is crap! Go back to using your conventional methods of understanding what the <a TARGET="_blank" HREF="http://www.answers.com/topic/system-requirements">System Requirements</a> are for a particular application and determine if your computer can run the application successfully or not.</p>
<p>At the screenshot below, I have a base score of 1 because Vista failed to install my video drivers (base scores are determined by your lowest rank in the Subscore).</p>
<p ALIGN="center"><a HREF="http://www.cpututorials.com/_blog.binarystars.com/vista-images/026-WinV-Performance-Information-And-Tools.jpg"><img SRC="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/026-WinV-Performance-Information-And-Tools.jpg" ALT="Windows Vista - Performance Information And Tools" TITLE="Windows Vista - Performance Information And Tools" BORDER="1" WIDTH="257" HEIGHT="200" STYLE="width: 257px; height: 200px" /><br />
Windows Vista - Performance Information And Tools</a></p>
<p>References:<br />
<a TARGET="_blank" HREF="http://www.answers.com/topic/system-requirements">System Requirements</a><br />
<a TARGET="_blank" HREF="http://www.answers.com/topic/pc-magazine-benchmarks">Computer Benchmark definition</a></p>
<p>&gt;&gt; Go   to   <a HREF="http://blog.binarystars.com/windows-xp-vs-vista-index/">Windows   XP   vs.   Vista   Index</a> &lt;&lt;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binarystars.com/2007/03/28/part-17-windows-xp-vs-vista-performance-information-and-tools/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Part 16: Windows XP vs. Vista: NetMeeting vs. Meeting Space</title>
		<link>http://blog.binarystars.com/2007/03/28/part-16-windows-xp-vs-vista-netmeeting-vs-meeting-space/</link>
		<comments>http://blog.binarystars.com/2007/03/28/part-16-windows-xp-vs-vista-netmeeting-vs-meeting-space/#comments</comments>
		<pubDate>Thu, 29 Mar 2007 02:16:46 +0000</pubDate>
		<dc:creator>alan</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[Discussion]]></category>

		<category><![CDATA[Research Summaries]]></category>

		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://blog.binarystars.com/2007/03/28/part-16-windows-xp-vs-vista-netmeeting-vs-meeting-space/</guid>
		<description><![CDATA[025: NetMeeting vs. Meeting Space
The features within Vista incorporate two Control Panel Applets – People Near Me and Windows Meeting Space which is the replacement application for Windows NetMeeting in XP. Now-a-days you (an average user) would typically use AIM or MSN for text messaging, video and audio streaming video conferencing needs. Going back with [...]]]></description>
			<content:encoded><![CDATA[<p><strong>025: NetMeeting vs. Meeting Space</strong><br />
The features within Vista incorporate two Control Panel Applets – People Near Me and Windows Meeting Space which is the replacement application for Windows NetMeeting in XP. Now-a-days you (an average user) would typically use <a target="_blank" href="http://www.aim.com">AIM</a> or <a target="_blank" href="http://www.msn.com">MSN</a> for text messaging, video and audio streaming video conferencing needs. Going back with XP, NetMeeting was always there but no icon would notify the user of it&#8217;s existence – you&#8217;ll end up trying to search your hard drive and finding it&#8217;s &#8216;conf.exe&#8217; application file under your Program Files/NetMeeting folder to get it to work. The only advantage in using NetMeeting or Meeting Space in Vista over AIM and MSN is the Remote Access and White Board features built-in.</p>
<p>I personally never really used NetMeeting as I never had a need for it&#8217;s use. Of course back in the days when instant messaging was in it&#8217;s infancy NetMeeting was more than just a communication tool for me – it was a learning tool. I would commonly talk to friends or technical advisors about difficult homework questions from hundreds of miles away. The one disadvantage I found about Vista&#8217;s Meeting Space was the annoying pop-up window about People Near Me – prompting me to login or sign onto the service.</p>
<p>For average use, NetMeeting or Meeting Space is typically used in closed and safe environments where Remote Access and White Board capabilities are needed more so than a simple chat message.</p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/025-People-Near-Me-1.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/025-People-Near-Me-1.jpg" alt="Windows Vista - People Near Me - Settings" title="Windows Vista - People Near Me - Settings" /><br />
Windows Vista - People Near Me - Settings</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/025-People-Near-Me-2.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/025-People-Near-Me-2.jpg" alt="Windows Vista - People Near Me - Sign In" title="Windows Vista - People Near Me - Sign In" /><br />
Windows Vista - People Near Me - Sign In</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/025-WinXP-NetMeeting-1.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/025-WinXP-NetMeeting-1.jpg" alt="Windows XP - Windows NetMeeting" title="Windows XP - Windows NetMeeting" /><br />
Windows XP - Windows NetMeeting</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/025-WinXP-NetMeeting-2.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/025-WinXP-NetMeeting-2.jpg" alt="Windows XP - NetMeeting" title="Windows XP - NetMeeting" /><br />
Windows XP - NetMeeting</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/025-WinV-Windows-Meeting-Space.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/025-WinV-Windows-Meeting-Space.jpg" alt="Windows Vista - Meeting Space" title="Windows Vista - Meeting Space" /><br />
Windows Vista - Meeting Space</a></p>
<p align="left">&gt;&gt; Go  to  <a href="http://blog.binarystars.com/windows-xp-vs-vista-index/">Windows  XP  vs.  Vista  Index</a> &lt;&lt;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binarystars.com/2007/03/28/part-16-windows-xp-vs-vista-netmeeting-vs-meeting-space/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Part 15: Windows XP vs. Vista: Pen and Input Devices – Tablet PC Settings</title>
		<link>http://blog.binarystars.com/2007/03/28/part-15-windows-xp-vs-vista-pen-and-input-devices-%e2%80%93-tablet-pc-settings/</link>
		<comments>http://blog.binarystars.com/2007/03/28/part-15-windows-xp-vs-vista-pen-and-input-devices-%e2%80%93-tablet-pc-settings/#comments</comments>
		<pubDate>Thu, 29 Mar 2007 01:32:21 +0000</pubDate>
		<dc:creator>alan</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[Discussion]]></category>

		<category><![CDATA[Research Summaries]]></category>

		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://blog.binarystars.com/2007/03/28/part-15-windows-xp-vs-vista-pen-and-input-devices-%e2%80%93-tablet-pc-settings/</guid>
		<description><![CDATA[Pen and Input Devices along with Tablet PC Settings go hand-and-hand for touch-screen, touch-pads and tablet-screen monitors (typically used for portable laptop devices). Both features are natively supported by Windows Vista and are not installed by default in Windows XP (usually a third-party driver).
023: Pen and Input Devices
This Control Panel Applet configures the details whenever [...]]]></description>
			<content:encoded><![CDATA[<p>Pen and Input Devices along with Tablet PC Settings go hand-and-hand for touch-screen, touch-pads and tablet-screen monitors (typically used for portable laptop devices). Both features are natively supported by Windows Vista and are not installed by default in Windows XP (usually a third-party driver).</p>
<p><strong>023: Pen and Input Devices</strong><br />
This Control Panel Applet configures the details whenever you tap your finger, or pen tool on-screen (i.e. Single-Tap does an action to Single-Click, Double-Tap does Double-Click actions, etc.). I really don&#8217;t see why this feature is installed by default – if a user is operating on a computer without a Pen tool, or touch-screen input devices all I see is this adds more clutter to the Control Panel.</p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/023-WinV-Pen-And-Input-Devices-1.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/023-WinV-Pen-And-Input-Devices-1.jpg" alt="Windows Vista - Pen and Input Devices - Pen Options" title="Windows Vista - Pen and Input Devices - Pen Options" /><br />
Windows Vista - Pen and Input Devices - Pen Options</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/023-WinV-Pen-And-Input-Devices-2.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/023-WinV-Pen-And-Input-Devices-2.jpg" alt="Windows Vista - Pen and Input Devices - Pointer Options" title="Windows Vista - Pen and Input Devices - Pointer Options" /><br />
Windows Vista - Pen and Input Devices - Pointer Options</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/023-WinV-Pen-And-Input-Devices-3.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/023-WinV-Pen-And-Input-Devices-3.jpg" alt="Windows Vista - Pen and Input Devices - Flicks" title="Windows Vista - Pen and Input Devices - Flicks" /><br />
Windows Vista - Pen and Input Devices - Flicks</a></p>
<p><strong>024: Tablet PC Settings </strong><br />
These settings are only used in Tablet PC&#8217;s and are a complete waste of memory for ordinary users on desktop or tower-based computers. The Tablet PC Settings Control Panel Applet simply allows further tweaking for use with a typical Pen Tool when Handwriting information on the screen or change the orientation of the screen from landscape (horizontal) to portrait (vertical).</p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/024-WinV-Tablet-PC-Settings-1.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/024-WinV-Tablet-PC-Settings-1.jpg" alt="Windows Vista - Tablet PC Settings - General" title="Windows Vista - Tablet PC Settings - General" /><br />
Windows Vista - Tablet PC Settings - General</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/024-WinV-Tablet-PC-Settings-2.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/024-WinV-Tablet-PC-Settings-2.jpg" alt="Windows Vista - Tablet PC Settings - General" title="Windows Vista - Tablet PC Settings - Handwriting Recognition" /><br />
Windows Vista - Tablet PC Settings - Handwriting Recognition</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/024-WinV-Tablet-PC-Settings-3.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/024-WinV-Tablet-PC-Settings-3.jpg" alt="Windows Vista - Tablet PC Settings - General" title="Windows Vista - Tablet PC Settings - Display" /><br />
Windows Vista - Tablet PC Settings - Display</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/024-WinV-Tablet-PC-Settings-4.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/024-WinV-Tablet-PC-Settings-4.jpg" alt="Windows Vista - Tablet PC Settings - General" title="Windows Vista - Tablet PC Settings - Other" /><br />
Windows Vista - Tablet PC Settings - Other</a></p>
<p align="left">&gt;&gt; Go to <a href="http://blog.binarystars.com/windows-xp-vs-vista-index/">Windows XP vs. Vista Index</a> &lt;&lt;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binarystars.com/2007/03/28/part-15-windows-xp-vs-vista-pen-and-input-devices-%e2%80%93-tablet-pc-settings/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Windows Vista Requirements</title>
		<link>http://blog.binarystars.com/2007/03/28/windows-vista-requirements/</link>
		<comments>http://blog.binarystars.com/2007/03/28/windows-vista-requirements/#comments</comments>
		<pubDate>Wed, 28 Mar 2007 06:47:02 +0000</pubDate>
		<dc:creator>alan</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://blog.binarystars.com/2007/03/28/windows-vista-requirements/</guid>
		<description><![CDATA[Andrew K: Windows Vista has modest minimum system requirements that everyone with a system from within the last 5 years should have no problem meeting. Simply adding more system memory (RAM) is the most anyone with a less than 5 year old system should have to do to meet them. The most noticeable change with [...]]]></description>
			<content:encoded><![CDATA[<p><a HREF="http://mywebpages.comcast.net/SupportCD/VistaRequirements.html">Andrew K</a>: Windows Vista has modest minimum system requirements that everyone with a system from within the last 5 years should have no problem meeting. Simply adding more system memory (RAM) is the most anyone with a less than 5 year old system should have to do to meet them. The most noticeable change with Windows Vista will be the new Aero interface and for that you will need an Aero-capable DirectX 9-class graphics card. This is what the majority of older systems will need upgrades for. Since this is one of the main reasons to get Windows Vista just about everyone should avoid the Vista Home Basic and Vista Standard Editions since neither supports the new Aero interface. The various editions of Windows Vista can make a purchasing decision rather confusing. Advanced users can look at The Windows Vista Secret Decoder Ring and Understanding the Vista Product Editions to get an overview of the main features in each edition. Most users will fall into one of the following categories:</p>
<ul>
<li>Basic Home User (Internet + Email) - <a TARGET="_blank" HREF="http://mywebpages.comcast.net/SupportCD/VistaRequirements.html#Basic">Vista Home Basic</a></li>
<li>General Home User - <a TARGET="_blank" HREF="http://mywebpages.comcast.net/SupportCD/VistaRequirements.html#Premium">Vista Home Premium</a></li>
<li>Gamer - <a TARGET="_blank" HREF="http://mywebpages.comcast.net/SupportCD/VistaRequirements.html#Premium">Vista Home Premium</a> or <a TARGET="_blank" HREF="http://mywebpages.comcast.net/SupportCD/VistaRequirements.html#Ultimate">Vista Ultimate</a></li>
<li>Small Business User - <a HREF="http://mywebpages.comcast.net/SupportCD/VistaRequirements.html#Business" TARGET="_blank">Vista Business</a> or <a HREF="http://mywebpages.comcast.net/SupportCD/VistaRequirements.html#Ultimate">Vista Ultimate</a></li>
<li>Corporate IT - <a HREF="http://mywebpages.comcast.net/SupportCD/VistaRequirements.html#Enterprise" TARGET="_blank">Vista Enterprise</a></li>
</ul>
<p>Read the whole requirements from Andrew K&#8217;s Vista&#8217;s Requirements <a TARGET="_blank" HREF="http://mywebpages.comcast.net/SupportCD/VistaRequirements.html">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binarystars.com/2007/03/28/windows-vista-requirements/feed/</wfw:commentRss>
		</item>
		<item>
		<title>LOL Vista != Mac X</title>
		<link>http://blog.binarystars.com/2007/03/28/lol-vista-mac-x/</link>
		<comments>http://blog.binarystars.com/2007/03/28/lol-vista-mac-x/#comments</comments>
		<pubDate>Wed, 28 Mar 2007 06:33:27 +0000</pubDate>
		<dc:creator>alan</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[Discussion]]></category>

		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://blog.binarystars.com/2007/03/28/lol-vista-mac-x/</guid>
		<description><![CDATA[While doing some more research on the new Vista product I ended up coming across this funny video that David Pogue has made.




Original:
http://www.youtube.com/watch?v=QT6YO30GhmQ
You Tube Profile:
http://www.youtube.com/profile_videos?user=thenewyorktimes
]]></description>
			<content:encoded><![CDATA[<p>While doing some more research on the new Vista product I ended up coming across this funny video that David Pogue has made.</p>
<object HEIGHT="350" WIDTH="425"></object>
<param VALUE="http://www.youtube.com/v/TaIUkwPybtM" NAME="movie"></param>
<param VALUE="transparent" NAME="wmode"></param>
<p><embed HEIGHT="350" WIDTH="425" wmode="transparent" TYPE="application/x-shockwave-flash" SRC="http://www.youtube.com/v/TaIUkwPybtM"></embed></p>
<p>Original:<br />
<a HREF="http://www.youtube.com/watch?v=QT6YO30GhmQ" TARGET="_blank">http://www.youtube.com/watch?v=QT6YO30GhmQ</a><br />
You Tube Profile:<br />
<a HREF="http://www.youtube.com/profile_videos?user=thenewyorktimes" TARGET="_blank">http://www.youtube.com/profile_videos?user=thenewyorktimes</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binarystars.com/2007/03/28/lol-vista-mac-x/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WordPress Plug-in: Fixes Spacing 1.0 BETA</title>
		<link>http://blog.binarystars.com/2007/03/27/plug-in-fixes-spacing-10-beta/</link>
		<comments>http://blog.binarystars.com/2007/03/27/plug-in-fixes-spacing-10-beta/#comments</comments>
		<pubDate>Tue, 27 Mar 2007 07:07:39 +0000</pubDate>
		<dc:creator>alan</dc:creator>
		
		<category><![CDATA[Programming]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.binarystars.com/2007/03/27/plug-in-fixes-spacing-10-beta/</guid>
		<description><![CDATA[This is my first attempt to fix a buggy problem with WordPress (known in version 2.1.2, so far) - where on occassion whenever I try typing something the words start to not word-wrap correctly (see screenshots for example).
This could be a much larger problem with AJAX&#8217;s but who knows - I&#8217;m not into the details [...]]]></description>
			<content:encoded><![CDATA[<p>This is my first attempt to fix a buggy problem with WordPress (known in version 2.1.2, so far) - where on occassion whenever I try typing something the words start to not word-wrap correctly (see screenshots for example).</p>
<p>This could be a much larger problem with AJAX&#8217;s but who knows - I&#8217;m not into the details on that.  What I do know is the problem is re-occuring whenever WordPress Auto-Saves my work.</p>
<p>You may use this plug-in at your own <strong>RISK</strong>. And should note that this is a work around until WordPress comes up with a better solution, or simply disable Auto-Save all together.</p>
<p><a TITLE="Non Breaking" HREF="http://blog.binarystars.com/wp-content/uploads/2007/03/non-breaking.png"><img HEIGHT="53" WIDTH="434" ALT="Non Breaking" SRC="http://blog.binarystars.com/wp-content/uploads/2007/03/non-breaking.png" /></a></p>
<p><a TITLE="Non Breaking in Hex" HREF="http://blog.binarystars.com/wp-content/uploads/2007/03/non-breaking-in-hex.png"><img ALT="Non Breaking in Hex" SRC="http://blog.binarystars.com/wp-content/uploads/2007/03/non-breaking-in-hex.png" WIDTH="448" HEIGHT="58" /></a></p>
<p>Download <a HREF="http://blog.binarystars.com/archive-download/FixSpacing1.0B.zip">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binarystars.com/2007/03/27/plug-in-fixes-spacing-10-beta/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Part 14: Windows XP vs. Vista: Parental Controls and Content Advisor</title>
		<link>http://blog.binarystars.com/2007/03/26/part-14-windows-xp-vs-vista-parental-controls-and-content-advisor/</link>
		<comments>http://blog.binarystars.com/2007/03/26/part-14-windows-xp-vs-vista-parental-controls-and-content-advisor/#comments</comments>
		<pubDate>Tue, 27 Mar 2007 04:16:00 +0000</pubDate>
		<dc:creator>alan</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[References &amp; Documentation]]></category>

		<category><![CDATA[Discussion]]></category>

		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://blog.binarystars.com/2007/03/26/part-14-windows-xp-vs-vista-parental-controls-and-content-advisor/</guid>
		<description><![CDATA[In Vista you can access the Parental Controls and the Content Advisor via the Parental Controls or the Internet Properties Control Panel Applets, however with XP you can only access the Content Advisor via the Internet Properties.
021: Parental Controls
Parental Controls is a new feature in Vista allowing parents or employers to restrict certain applications such [...]]]></description>
			<content:encoded><![CDATA[<p>In Vista you can access the Parental Controls and the Content Advisor via the Parental Controls or the Internet Properties Control Panel Applets, however with XP you can only access the Content Advisor via the Internet Properties.</p>
<p><strong>021: Parental Controls</strong><br />
Parental Controls is a new feature in Vista allowing parents or employers to restrict certain applications such as games, time limits, web filters, and audit information about a user. Below are some screenshots of the system.</p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/021-WinV-Parental-Controls-7.jpg" title="WinV - Parental Controls"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/021-WinV-Parental-Controls-7.jpg" alt="Windows Vista Parental Controls" title="Windows Vista Parental Controls" /><br />
Parental Controls</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/021-WinV-Parental-Controls-8.jpg" title="WinV - Parental Controls - Game Rating System"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/021-WinV-Parental-Controls-8.jpg" alt="Windows Vista Parental Controls" title="Windows Vista Parental Controls" /><br />
Parental Controls - Game Rating System</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/021-WinV-Parental-Controls-2.jpg" title="WinV - Parental Controls - User Controls"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/021-WinV-Parental-Controls-2.jpg" alt="Windows Vista Parental Controls" title="Windows Vista Parental Controls" /><br />
Parental Controls - User Controls</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/021-WinV-Parental-Controls-1.jpg" title="WinV - Parental Controls - Activity Viewer"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/021-WinV-Parental-Controls-1.jpg" alt="Windows Vista Parental Controls" title="Windows Vista Parental Controls" /><br />
Parental Controls - User Controls - Activity Viewer</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/021-WinV-Parental-Controls-3.jpg" title="WinV - Parental Controls - User Controls - Time Restrictions"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/021-WinV-Parental-Controls-3.jpg" alt="Windows Vista Parental Controls" title="Windows Vista Parental Controls" /><br />
Parental Controls - User Controls - Time Restrictions</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/021-WinV-Parental-Controls-4.jpg" title="WinV - Parental Controls - User Controls - Game Controls"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/021-WinV-Parental-Controls-4.jpg" alt="Windows Vista Parental Controls" title="Windows Vista Parental Controls" /><br />
Parental Controls - User Controls - Game Controls</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/021-WinV-Parental-Controls-5.jpg" title="WinV - Parental Controls - User Controls - Application Restrictions"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/021-WinV-Parental-Controls-5.jpg" alt="Windows Vista Parental Controls" title="Windows Vista Parental Controls" /><br />
Parental Controls - User Controls - Application Restrictions</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/021-WinV-Parental-Controls-6.jpg" title="WinV - Parental Controls - User Controls - Web Restrictions"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/021-WinV-Parental-Controls-6.jpg" alt="Windows Vista Parental Controls" title="Windows Vista Parental Controls" /><br />
Parental Controls - User Controls - Web Restrictions</a></p>
<p><strong>022: Content Advisor</strong><br />
Both versions of Vista and XP have Content Advisor built-in allowing individuals to block certain websites based upon a criteria. Below are some screenshots of the system.</p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/022-WinXP-Content-Advisor.jpg" title="Windows XP - Internet Options - Content Advisor"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/022-WinXP-Content-Advisor.jpg" alt="Windows XP Content Adisor" title="Windows XP Content Adisor" /><br />
Windows XP - Internet Options - Content Advisor</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/022-WinV-Content-Advisor.jpg" title="Windows Vista - Internet Options - Content Advisor"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/022-WinV-Content-Advisor.jpg" alt="Windows Vista Content Advisor" title="Windows Vista Content Advisor" /><br />
Windows Vista - Internet Options - Content Advisor</a></p>
<p align="left">&gt;&gt; Go  to  <a href="http://blog.binarystars.com/windows-xp-vs-vista-index/">Windows  XP  vs.  Vista  Index</a> &lt;&lt;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binarystars.com/2007/03/26/part-14-windows-xp-vs-vista-parental-controls-and-content-advisor/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Part 13: Windows XP vs. Vista: Network and Sharing</title>
		<link>http://blog.binarystars.com/2007/03/26/part-13-windows-xp-vs-vista-network-and-sharing/</link>
		<comments>http://blog.binarystars.com/2007/03/26/part-13-windows-xp-vs-vista-network-and-sharing/#comments</comments>
		<pubDate>Mon, 26 Mar 2007 23:02:46 +0000</pubDate>
		<dc:creator>alan</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[Discussion]]></category>

		<category><![CDATA[Research Summaries]]></category>

		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://blog.binarystars.com/2007/03/26/part-13-windows-xp-vs-vista-network-and-sharing/</guid>
		<description><![CDATA[020: Network and Sharing
Other than the Windows Firewall (explained more in another section) XP incorporates Networking Services by installing the services through Add/Remove Programs and then allowing the user to use them. In Vista however, all these services are activated and installed by default (depending on your connection settings, your firewall settings, and your network [...]]]></description>
			<content:encoded><![CDATA[<p><strong>020: Network and Sharing</strong><br />
Other than the Windows Firewall (explained more in another section) XP incorporates Networking Services by installing the services through Add/Remove Programs and then allowing the user to use them. In Vista however, all these services are activated and installed by default (depending on your connection settings, your firewall settings, and your network location settings). For example, in XP to enable UPnP features you have to manually install the feature by using the Add/Remove Programs Control Applet (see screenshot), while in Vista all you need to do is make sure your Network Location is set to Private.</p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/020-WinXP-Network-2.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/020-WinXP-Network-2.jpg" alt="Windows XP Networking" title="Windows XP Networking" /><br />
Windows XP - Networking Options</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/020-WinXP-Network-1.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/020-WinXP-Network-1.jpg" alt="Windows XP Networking" title="Windows XP Networking" /><br />
Windows XP - Network Setup Wizard</a></p>
<p>UPnP network technology allows network devices to advertise and offer services to you directly on your computer than say logging onto a Web Administration page (see example Linksys web administration screenshot). I never use UPnP, as my network here at the home-office is powered through Linux. I also believe it to be more of a secure risk if for example a trojan virus were to take over my machine.</p>
<p align="center"><a href="http://blog.binarystars.com/wp-content/uploads/2007/03/linksys-upnp.png" title="Linksys Web Administration"><img src="http://blog.binarystars.com/wp-content/uploads/2007/03/linksys-upnp.thumbnail.png" alt="Linksys Web Administration" /><br />
Linksys Web Administration Page</a></p>
<p>Of course there are many other features like Network locations (typically used for laptop computers), Firewall Configurations, Program and File Sharing Access settings, Link-Layer Topology (which is now installed by default in Vista and is part of the UPnP features), and more. . . there&#8217;s no fucking way an average user would understand all this. Hypothetically what if you have <a target="_blank" href="http://www.aol.com">AOL</a> 9.0 Security Edition installed along with <a target="_blank" href="http://www.symantec.com">Symantec</a>&#8217;s Internet Security what then – all hell breaks loose! You end up having three firewalls, a redundant Internet slowing traffic down, and a hell of a problem trying to solve the which program is causing the Internet to a halt.</p>
<p>These features in Vista (of course) are all wonderful and dandy, but ask yourself do you really need them just to simply browse the web – I think not! And what happens if something were to go wrong – say “Page cannot be found” errors – where on earth do you go about fixing the problem – it&#8217;s not as simple as Ping yahoo.com anymore especially on computer&#8217;s that are not your own. As an experienced computer repair individual I would have to say that Microsoft over did it on there features for networking.</p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/020-WinV-Network-1.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/020-WinV-Network-1.jpg" alt="Windows Vista networking" title="Windows Vista networking" /><br />
Windows Vista - Network and Sharing Center</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/020-WinV-Network-2.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/020-WinV-Network-2.jpg" alt="Windows Vista Networking" title="Windows Vista Networking" /><br />
Windows Vista - Network Map</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/020-WinV-Network-3.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/020-WinV-Network-3.jpg" alt="Windows Vista Networking" title="Windows Vista Networking" /><br />
Windows Vista - Local Area Connection Properties</a></p>
<p>References:<br />
<a target="_blank" href="http://www.artima.com/spontaneous/upnp_digihome.html">It Just Works: UPnP in the Digital Home</a><br />
<a target="_blank" href="http://www.microsoft.com/technet/prodtechnol/winxppro/support/upnp01.mspx">UPnP NAT Traversal FAQ</a></p>
<p>&gt;&gt; Go  to  <a href="http://blog.binarystars.com/windows-xp-vs-vista-index/">Windows  XP  vs.  Vista  Index</a> &lt;&lt;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binarystars.com/2007/03/26/part-13-windows-xp-vs-vista-network-and-sharing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Part 12: Windows XP vs. Vista: iSCSI</title>
		<link>http://blog.binarystars.com/2007/03/26/part-12-windows-xp-vs-vista-iscsi/</link>
		<comments>http://blog.binarystars.com/2007/03/26/part-12-windows-xp-vs-vista-iscsi/#comments</comments>
		<pubDate>Mon, 26 Mar 2007 05:22:38 +0000</pubDate>
		<dc:creator>alan</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[Discussion]]></category>

		<category><![CDATA[Research Summaries]]></category>

		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://blog.binarystars.com/2007/03/26/part-12-windows-xp-vs-vista-iscsi/</guid>
		<description><![CDATA[
Network SAN Diagram
Source: Apple, Inc.
019: iSCSI
iSCSI support is a native part of Windows Vista, not part of XP. My understanding of iSCSI although (been out since 2003) allows direct communication to a physical device on a IP remote network device (block level I/O). These network devices are typically SAN (Storage Area Networks) or NAS (Network [...]]]></description>
			<content:encoded><![CDATA[<p ALIGN="center"><a HREF="http://blog.binarystars.com/wp-content/uploads/2007/03/consolidate-data-storage.jpg" TITLE="Consolidated Data Storage"><img SRC="http://blog.binarystars.com/wp-content/uploads/2007/03/consolidate-data-storage.jpg" ALT="Consolidated Data Storage" /><br />
Network SAN Diagram</a><br />
Source: <a HREF="http://www.apple.com" TARGET="_blank">Apple, Inc</a>.</p>
<p><strong>019: iSCSI</strong><br />
iSCSI support is a native part of Windows Vista, not part of XP. My understanding of iSCSI although (been out since 2003) allows direct communication to a physical device on a IP remote network device (block level I/O). These network devices are typically SAN (Storage Area Networks) or NAS (Network Attached Storage) powered through Enterprise level (Fiber or Ethernet based) networks.</p>
<p>I find this feature no where on this earth for an average user to use. I can see this technology used in making another <a HREF="http://disney.go.com/disneyvideos/animatedfilms/toystory/home.html" TARGET="_blank">Disney Toy Story</a> or <a HREF="http://en.wikipedia.org/wiki/The_Matrix" TARGET="_blank">The Matrix</a> but still, do you have a SAN at home?!</p>
<p ALIGN="center"><a HREF="http://www.cpututorials.com/_blog.binarystars.com/vista-images/019-Dell-SAN.jpg"><img SRC="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/019-Dell-SAN.jpg" ALT="Dell CX3-40 Screenshot" TITLE="Dell CX3-40 Screenshot" BORDER="1" WIDTH="284" HEIGHT="192" STYLE="width: 284px; height: 192px" /><br />
Dell CX3-40 Screenshot</a></p>
<p>Update: After rethinking what iSCSI (behind the scenes) does, technically this technology includes  like 	<a TARGET="_blank" HREF="http://www.nero.com/nero7/enu/index.html">Nero 7 Ultra Edition&#8217;s     Disk     Image</a> and <a TARGET="_blank" HREF="http://trial.alcohol-soft.com/en/">Alochol 120%</a> emulation features  to     support virtual drives on your computer.</p>
<p>References:<br />
<a HREF="http://en.wikipedia.org/wiki/ISCSI" TARGET="_blank">Wikipedia – iSCSI</a><br />
<a HREF="http://www.iscsistorage.com/" TARGET="_blank">iSCSI Storage</a><br />
<a HREF="http://www.digit-life.com/articles2/iscsi/" TARGET="_blank">iSCSI Review</a><br />
<a HREF="http://www.dell.com/content/products/productdetails.aspx/pvaul_cx3-40?c=us&amp;cs=555&amp;l=en&amp;s=biz" TARGET="_blank">Dell/EMC CX3-40 Disk Storage Array Product Details</a><br />
<a HREF="http://www.apple.com/xsan/" TARGET="_blank">Apple Xsan</a></p>
<p>&gt;&gt; Go    to    <a HREF="http://blog.binarystars.com/windows-xp-vs-vista-index/">Windows    XP    vs.    Vista    Index</a> &lt;&lt;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binarystars.com/2007/03/26/part-12-windows-xp-vs-vista-iscsi/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Part 11: Windows XP vs. Vista: Fonts, Game Controllers, Keyboard and Mouse</title>
		<link>http://blog.binarystars.com/2007/03/25/part-11-windows-xp-vs-vista-fonts-game-controllers-keyboard-and-mouse/</link>
		<comments>http://blog.binarystars.com/2007/03/25/part-11-windows-xp-vs-vista-fonts-game-controllers-keyboard-and-mouse/#comments</comments>
		<pubDate>Mon, 26 Mar 2007 00:22:26 +0000</pubDate>
		<dc:creator>alan</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[Discussion]]></category>

		<category><![CDATA[Research Summaries]]></category>

		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://blog.binarystars.com/2007/03/25/part-11-windows-xp-vs-vista-fonts-game-controllers-keyboard-and-mouse/</guid>
		<description><![CDATA[015: Fonts
Nothing different between XP and Vista Font Control Panel, both support TrueType, OpenType and Raster forms.

Windows XP Fonts

Windows Vista Fonts
016: Game Controllers
Nothing different.

Windows XP Game Controllers

Windows Vista Game Controllers
017: Keyboard
Nothing different.

Windows XP Keyboard

Windows Vista Keyboard
018: Mouse
Nothing really different other than the added Aero theme cursors in Vista.

Windows XP Mouse

Windows Vista Mouse
&#62;&#62; Go to Windows [...]]]></description>
			<content:encoded><![CDATA[<p><strong>015: Fonts</strong><br />
Nothing different between XP and Vista Font Control Panel, both support TrueType, OpenType and Raster forms.</p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/015-WinXP-Fonts.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/015-WinXP-Fonts.jpg" alt="Windows XP Fonts" title="Windows XP Fonts" /><br />
Windows XP Fonts</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/015-WinV-Fonts.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/015-WinV-Fonts.jpg" alt="Windows Vista Fonts" title="Windows Vista Fonts" /><br />
Windows Vista Fonts</a></p>
<p><strong>016: Game Controllers</strong><br />
Nothing different.</p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/016-WinXP-Game-Controllers.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/016-WinXP-Game-Controllers.jpg" alt="Windows XP Game Controllers" title="Windows XP Game Controllers" /><br />
Windows XP Game Controllers</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/016-WinV-Game-Controllers.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/016-WinV-Game-Controllers.jpg" alt="Windows Vista Game Controllers" title="Windows Vista Game Controllers" /><br />
Windows Vista Game Controllers</a></p>
<p><strong>017: Keyboard</strong><br />
Nothing different.</p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/017-WinXP-Keyboard.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/017-WinXP-Keyboard.jpg" alt="Windows XP Keyboard" title="Windows XP Keyboard" /><br />
Windows XP Keyboard</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/017-WinV-Keyboard.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/017-WinV-Keyboard.jpg" alt="Windows Vista Keyboard" title="Windows Vista Keyboard" /><br />
Windows Vista Keyboard</a></p>
<p><strong>018: Mouse</strong><br />
Nothing really different other than the added Aero theme cursors in Vista.</p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/018-WinXP-Mouse.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/018-WinXP-Mouse.jpg" alt="Windows XP Mouse" title="Windows XP Mouse" /><br />
Windows XP Mouse</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/018-WinV-Mouse.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/018-WinV-Mouse.jpg" alt="Windows Vista Mouse" title="Windows Vista Mouse" /><br />
Windows Vista Mouse</a></p>
<p align="left">&gt;&gt; Go to <a href="http://blog.binarystars.com/windows-xp-vs-vista-index/">Windows XP vs. Vista Index</a> &lt;&lt;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binarystars.com/2007/03/25/part-11-windows-xp-vs-vista-fonts-game-controllers-keyboard-and-mouse/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Part 10: Windows XP vs. Vista: Folder Options and Index Options</title>
		<link>http://blog.binarystars.com/2007/03/25/part-10-windows-xp-vs-vista-folder-options-and-index-options/</link>
		<comments>http://blog.binarystars.com/2007/03/25/part-10-windows-xp-vs-vista-folder-options-and-index-options/#comments</comments>
		<pubDate>Sun, 25 Mar 2007 22:05:23 +0000</pubDate>
		<dc:creator>alan</dc:creator>
		
		<category><![CDATA[Computer]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[Discussion]]></category>

		<category><![CDATA[Research Summaries]]></category>

		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://blog.binarystars.com/2007/03/25/part-10-windows-xp-vs-vista-folder-options-and-index-options/</guid>
		<description><![CDATA[014: Folder Options and Index Options
With the new Graphical User Interface (GUI) and Aero design theme you can clearly see Microsoft trying their best to pirate Apple&#8217;s look and theme-like iTunes. Like for instance in iTunes you have your playlists on the left column and assortments of different types of views similar to Vista&#8217;s display [...]]]></description>
			<content:encoded><![CDATA[<p><strong>014: Folder Options and Index Options</strong><br />
With the new Graphical User Interface (GUI) and Aero design theme you can clearly see Microsoft trying their best to pirate Apple&#8217;s look and theme-like iTunes. Like for instance in iTunes you have your playlists on the left column and assortments of different types of views similar to Vista&#8217;s display where you have Documents, Pictures and Music at the left column. Besides the theme, the Folder Options are very similar to XP but surely the look and feel of viewing files and folders are not. Vista incorporates the some of the features of Index Searching now called “Index Options” within the Folder Options than the Computer Management – Indexing Searching Service in XP. Of course there are a ton of other features which I could go on forever listing the details about the changes in regards. These search options in Vista sets the common defaults for the Search feature when finding files and folders on your computer.</p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/014-WinXP-Folder-Options.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/014-WinXP-Folder-Options.jpg" alt="Windows XP Folder Options + Computer Management" title="Windows XP Folder Options + Computer Management" /><br />
Windows XP - Folder Options and Index Service</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/014-WinXP-Folder-View.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/014-WinXP-Folder-View.jpg" alt="Windows XP My Computer" title="Windows XP My Computer" /><br />
Windows XP - My Computer</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/014-WinV-Folder-Options.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/014-WinV-Folder-Options.jpg" alt="Windows Vista Folder Options" title="Windows Vista Folder Options" /><br />
Windows Vista - Folder Options</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/014-WinV-Folder-View.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/014-WinV-Folder-View.jpg" alt="Windows Vista Computer" title="Windows Vista Computer" /><br />
Windows Vista - Computer</a></p>
<p align="center"><a href="http://www.cpututorials.com/_blog.binarystars.com/vista-images/014-WinV-Index-Options.jpg"><img border="1" src="http://www.cpututorials.com/_blog.binarystars.com/vista-images/thumbs/014-WinV-Index-Options.jpg" alt="Windows Vista Index Options" title="Windows Vista Index Options" /><br />
Windows Vista - Index Options and Advanced Options</a></p>
<p align="left">&gt;&gt; Go to <a href="http://blog.binarystars.com/windows-xp-vs-vista-index/">Windows XP vs. Vista Index</a> &lt;&lt;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.binarystars.com/2007/03/25/part-10-windows-xp-vs-vista-folder-options-and-index-options/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
