<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SnapJag Creative Designs &#187; Windows</title>
	<atom:link href="http://www.snapjag.com/category/computers/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.snapjag.com</link>
	<description>Specialists in busines consulting, database administration, programming, hosting, photography, and creative system designs.</description>
	<lastBuildDate>Fri, 25 Nov 2011 00:59:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>EC2 and SQL Server micro</title>
		<link>http://www.snapjag.com/2011/11/ec2-and-sql-server-micro/</link>
		<comments>http://www.snapjag.com/2011/11/ec2-and-sql-server-micro/#comments</comments>
		<pubDate>Fri, 25 Nov 2011 00:59:51 +0000</pubDate>
		<dc:creator>snapjag</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.snapjag.com/?p=1031</guid>
		<description><![CDATA[As I&#8217;m learning how to do the EC2 Amazon cloud services, I am compelled to post the how-to when setting up and connecting to an AWS EC2 SQL Server box. This will answer many questions for others so they can get around the few issues that will creep up when Launching a new EC2 SQL [...]]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;m learning how to do the EC2 Amazon cloud services, I am compelled to post the how-to when setting up and connecting to an AWS EC2 SQL Server box. This will answer many questions for others so they can get around the few issues that will creep up when Launching a new EC2 SQL instance. This same information can be used for other server launches too.</p>
<h1>Steps to Allow Access</h1>
<ol>
<li>Open the SQL Server Configuration Management application, 1) start SQL Services and set to start automatically, 2) start SQL Browser and set to start automatically; these are not started or set to start automatically when a new AMI instance is launched</li>
<li>While in the SQL Server Configuration Management application, go to the node, Network Protocols and find the Dynamic TCP port under the IP ALL section. Make note of the port to be used later.</li>
<li>Open the same following ports in the Windows Firewall:
<ol>
<li>TCP &lt;dynamicport&gt; (from step #2)</li>
<li>UDP &lt;1434&gt; (for the SQL Browser Service)</li>
</ol>
</li>
<li>In the EC2 AWS Security Group of the server add the following ports:
<ol>
<li>TCP &lt;dynamicport&gt; (from step #2)</li>
<li>UDP &lt;1434&gt; (for the SQL Browser Service)</li>
</ol>
</li>
<li>Turn off EC2 server hostname naming from the EC2 Administration Services application, rename the server according to your own server naming standards in the Computer | Properties panel, restart the box</li>
</ol>
<h1>Accessing the Server through SSMS</h1>
<p>It&#8217;s important to note that there are four different ways to access the EC2 AWS SQL Server box from your local machine. To connect to a SQL Server Instance it&#8217;s necessary to use the name of the server and the port. If a default instance is setup, then the port, by default is TCP 1433, but this is not the case with EC2 AWS AMI servers.</p>
<p>The standard method to attach to the database server from an application or SSMS is &#8220;[&lt;servername&gt;][&lt;ip&gt;][\&lt;instance&gt;][,&lt;port&gt;]&#8221;</p>
<ol>
<li>In order to use &lt;servername&gt;, you need to have some form of DNS setup, which is done automatically for an EC2, or you have done through Elastic IPs and your own DNS server (like GoDaddy). If you don&#8217;t have DNS, use the &lt;ip&gt; or &lt;elasticip&gt;</li>
<li>To access the &lt;instance&gt;, the SQL Browser Service must be started and the UDP 1434 port open in AWS Security Group and the Windows Firewall.</li>
</ol>
<h2>Examples</h2>
<p>&#8220;<em>aws.dns.server.name</em>&#8221; comes from the properties of the EC2 instance properties. &#8220;<em>ec2sqlexpress</em>&#8221; is an example name of the SQL Server Instance. Using the IP must be the IP as provided through a VPC or the Elastic IP (not part of this tutorial). The port is represented as an example 411xx is not a real number, it must be what you find in the SQL Server Configuration Application.</p>
<ul>
<li>Example 1 using DNS and SQL Browser Service: &#8220;aws.dns.server.name\ec2sqlexpress&#8221;</li>
<li>Example 2 using DNS and port: &#8220;aws.dns.server.name,411xx&#8221;</li>
<li>Example 3 using IP (VPC) or Elastic IP and SQL Browser Service: &#8220;50.234.x.x\ec2sqlexpress&#8221;</li>
<li>Example 4 using IP (VPC) or Elastic IP and port: &#8220;50.234.x.x,411xx&#8221;</li>
</ul>
<h1>Other Considerations</h1>
<p>There have been some statements that SQL Server can&#8217;t run on a micro. Well, that can be true for the big SQL editions like Standard or Enterprise, and my considerations would be 2048 (my recommendation) to start.</p>
<p>As for another topic, I&#8217;m always pinning my CPU&#8217;s and my RAM at certain values.</p>
<p>For another topic, I&#8217;m always pinning my CPU&#8217;s and my RAM at certain  values, because all too many times do I find problems with keeping the  default installation settings. This is to say that the default  installation uses all CPUs and all RAM. I will put turn on CPU affinity  and take out 10% of the CPUs, if you have 10 cores, I remove 1 or 2 for  the OS and Networking services and other support activities to run. The  same goes for RAM.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snapjag.com/2011/11/ec2-and-sql-server-micro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<price></price>	</item>
		<item>
		<title>What is Zipping Files?</title>
		<link>http://www.snapjag.com/2010/04/zipping-files/</link>
		<comments>http://www.snapjag.com/2010/04/zipping-files/#comments</comments>
		<pubDate>Mon, 12 Apr 2010 14:33:10 +0000</pubDate>
		<dc:creator>snapjag</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[Zip]]></category>

		<guid isPermaLink="false">http://www.snapjag.com/?p=858</guid>
		<description><![CDATA[Compress files into a smaller format for transport via email, thumb-drive, or for storage. This is by bundling and reducing the size of the original files. This will not harm the original content, and can help to increase space. Some files can not be compressed, like JPG photos. But others are great for compression, like document files.]]></description>
			<content:encoded><![CDATA[<p>Zipping files on a Mac or Windows is straight-forward. You used to have to buy an application to zip files, and now the operating system has it built in, at least for the simple and basic tasks. This was included since Mac OSX 10.3 and later and in Windows XP and later.</p>
<p>Zipping capabilities are limited in these free OS versions. For example, it isn&#8217;t permitted to set password on the zip file, so make sure you don&#8217;t send sensitive information through the internet or to other people. It&#8217;s also not permitted to adjust how much compression is applied, or making an EXE version (for decompressing on a system that doesn&#8217;t have Zip capabilities). In order to get zipping with passwords and other enhanced features, you will still need to resort to purchasing an application, for the Mac, it can be <a href="http://www.stuffit.com" target="_blank">StuffIt Pro</a>; for Windows, it can be <a href="http://www.winzip.com/downwz.htm" target="_blank">WinZip</a>. There are other free utilities that that offer enhanced features for free, like from <a href="http://www.7-zip.org/" target="_blank">7-Zip</a> or <a href="http://www.rarlab.com/" target="_blank">WinRAR</a>.</p>
<p><strong>What is a Zip file?</strong></p>
<p>Zip files are a way to take many files on a disk, bundle them into a single file and apply compression to them to shrink the final resulting files into a smaller result than the sum of the total set of files being package/zipped/compressed. The files are made of the original files represented in a compressed format. Many operating systems have built-in Zipping or compression capabilities now, so you won&#8217;t have to buy an application for simple compressing/bundling tasks.</p>
<p>In simple terms, if you have a lot of the same letters and numbers in a document, Zipping the document would count how many duplicates there are, where they are located, and take them how, thus compressing the document. The document is not readable in the compressed format, but it can then be &#8220;unzipped&#8221; and the document will be reconstructed to it&#8217;s original form with all the duplicate letters, numbers, and other characters.</p>
<p>The files that don&#8217;t compress well are JPG photo files and other formats that already in a &#8220;compressed&#8221; format. It does still mean thought that you can &#8220;package&#8221; or &#8220;bundle&#8221; your files using Zip even though the compression may not reduce the file size. This is particularly important when you want to send one file to someone. For example, you have 50 new photos you&#8217;ve taken of a place you visited, you want to send those to someone, zip them up in to one &#8220;zip package&#8221; file. This eliminates sending all 50 files. The compression won&#8217;t be good, so the file will be large, so watch out for that. But you can still send the single file.</p>
<h1>How Do I Zip Files?</h1>
<p>This can be accomplished the same way on either Mac or Windows:</p>
<ol>
<li>Pick a set of files, or a folder that contains the files to package/compress</li>
<li>On Windows, right-click and &#8220;Send To | Compressed (Zipped) Folder&#8221;</li>
<li>On Mac, right-click or ctrl+left-click and choose &#8220;Compress Files&#8221;</li>
</ol>
<p>A single file will be created with all original files packaged and compressed and bundled into it for storage, email delivery, or thumb-drive transport.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snapjag.com/2010/04/zipping-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<price></price>	</item>
		<item>
		<title>Fix: HP Mediacenter Blu-ray Error</title>
		<link>http://www.snapjag.com/2009/04/hp-mediacenter-blu-ray-error/</link>
		<comments>http://www.snapjag.com/2009/04/hp-mediacenter-blu-ray-error/#comments</comments>
		<pubDate>Fri, 01 May 2009 04:30:41 +0000</pubDate>
		<dc:creator>snapjag</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.snapjag.com/?p=483</guid>
		<description><![CDATA[Use this link to find a software update for the HP Media Center by Cyberlink for playing Blu-ray DVDs when and if you are getting the message that you need to update your DVD software/hardware. The error message on the computer states you need to visit the site http://cyberlink.com/bdupdate and perform an update of your DVD [...]]]></description>
			<content:encoded><![CDATA[<p>Use <a href="http://docs.cyberlink.com/multi/patch/enu/result.jsp?SR=HTS080229-03&amp;ProductNo=HTS00006&amp;AutoBuildID=00006835" target="_blank">this link to find a software update for the HP Media Center by Cyberlink </a>for playing Blu-ray DVDs when and if you are getting the message that you need to update your DVD software/hardware. The error message on the computer states you need to visit the site http://cyberlink.com/bdupdate and perform an update of your DVD blu-ray hardware and software; but the problem lies in it not detecting any software to download.</p>
<p>Use the <a href="http://docs.cyberlink.com/multi/patch/enu/result.jsp?SR=HTS080229-03&amp;ProductNo=HTS00006&amp;AutoBuildID=00006835">link</a> to find the free patch to update your machine and get it working again. In short, this worked!</p>
<ol>
<li>follow the link</li>
<li>download the software</li>
<li>begin the installation</li>
<li>answer the questions to uninstall the old HP Mediacenter software and install the new</li>
<li>start the Mediacenter</li>
</ol>
<p>The disc was recognized and started playing the movie. Finally!</p>
<h3>The Long of the Story</h3>
<p>I bought the X Men trilogy blu-ray for my wife for Mother&#8217;s Day and tried playing it in our HP Pavilion dv7-1273cl laptop. It didn&#8217;t work. It initially started when I had previlus model of HP laptop in December of 2008, but the fan failed. I returned it and purchased a more updated model. Now having the fan taken care of the same problem still existed for the DVDs.</p>
<p>But, thanks to this posting on the <a href="http://h30434.www3.hp.com/psg/board/message?board.id=Display&amp;message.id=1197" target="_blank">HPs forums</a> I found the link to take care of it.</p>
<p>Originally, we bought Horton and it didn&#8217;t work. I bought Batman, it worked. I now bought X Men and it didn&#8217;t work &#8230; consistently. Now that I&#8217;ve done the patch, all of them, so far, are working.</p>
<p>Hope this helped you out too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snapjag.com/2009/04/hp-mediacenter-blu-ray-error/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<price></price>	</item>
		<item>
		<title>Ungrouping Taskbar Applications</title>
		<link>http://www.snapjag.com/2009/04/ungrouping-taskbar-applications/</link>
		<comments>http://www.snapjag.com/2009/04/ungrouping-taskbar-applications/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 21:04:40 +0000</pubDate>
		<dc:creator>snapjag</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Taskbar]]></category>

		<guid isPermaLink="false">http://www.snapjag.com/?p=457</guid>
		<description><![CDATA[In recent versions of Windows there exists the option to group your applications on the Taskbar. This is expected to reduce the amount of windows on the screen. To reduce clutter. It&#8217;s helped me, but at times, I can&#8217;t tell which window is which, or I want to compare side by side and it&#8217;s clumsy [...]]]></description>
			<content:encoded><![CDATA[<p>In recent versions of Windows there exists the option to group your applications on the Taskbar. This is expected to reduce the amount of windows on the screen. To reduce clutter. It&#8217;s helped me, but at times, I can&#8217;t tell which window is which, or I want to compare side by side and it&#8217;s clumsy to do it with grouping on. So here&#8217;s how you ungroup the similar applications on the Taskbar.</p>
<p>1) Right-click on your Taskbar<br />
2) Click Properties menu item<br />
3) Make the Taskbar tab active<br />
4) Untick the Group similar taskbar buttons</p>
<p>If you have a handy tip that you&#8217;d like to share, please forward it to us.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snapjag.com/2009/04/ungrouping-taskbar-applications/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	<price></price>	</item>
		<item>
		<title>Conficker Virus</title>
		<link>http://www.snapjag.com/2009/04/conficker-virus/</link>
		<comments>http://www.snapjag.com/2009/04/conficker-virus/#comments</comments>
		<pubDate>Wed, 01 Apr 2009 15:21:07 +0000</pubDate>
		<dc:creator>snapjag</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Virus]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://gleew.wordpress.com/?p=253</guid>
		<description><![CDATA[This virus is rather nasty. It has been deemed one of the worst virus&#8217; since the SQL Slammer of 2003. Which in similar fashion will flood networks with requests that then cause systems to perform much slower. Some actions you can take to protect your systems is to make sure you have the latest Microsoft [...]]]></description>
			<content:encoded><![CDATA[<p>This virus is rather nasty. It has been deemed one of the worst virus&#8217; since the SQL Slammer of 2003. Which in similar fashion will flood networks with requests that then cause systems to perform much slower. Some actions you can take to protect your systems is to make sure you have the latest Microsoft security patches and updates. There is no information that this virus infects or has any problems with UBUNTU or MAC systems, but there is no more clear warning than to make sure you have all the latest updates to your software and antivirus databases.<span id="more-277"></span></p>
<p>Researchers at eEye Digital Security have built a Conficker detection software that can be installed and run on your machines and network to see if any systems are compromised or vulnerable to Conficker. Be sure you download and run this utility on your system as an extra precaution. Download the software here (<a href="http://www.eeye.com/html/downloads/other/ConfickerScanner.html">http://www.eeye.com/html/downloads/other/ConfickerScanner.html</a>)</p>
<p>There is no beginning or ending date identified that a system could be infected; so it&#8217;s imperitive to always have your system up to date. The most frequent time to update a system is, if not daily, then weekly. By visiting here, you can obtain a discount on BitDefender on our main site at (<a href="http://www.snapjag.com">http://www.snapjag.com</a>).</p>
<p>Microsoft, as of February 2009, is offering a $250,000 reward for information that leads to the conviction of the people that have built and distribute this virus. This is a great incentive to signal to the technical community to find out who is doing this. If we all take the initiative to find out what we can and let the authorities know, we can help make the digital community much safer, reliable, and fun.</p>
<p>I consider virus&#8217; to be the graffiti of the real world. It&#8217;s sick, wrong, and dirties the environmental experience that draws so many people to the internet. If you need assistance to rid yourself of this or any other virus&#8217;, or you have any other technical computer problem, contact SnapJag and you&#8217;ll receive a discount on our services. Mention the Ad code &#8220;snapjag_av_discount15&#8243;. If we can&#8217;t help you get rid of your virus and get your system back up and running, whatever it takes, you don&#8217;t have to pay for the services. Ever! We feel that when you pay for a service, you should receive to your expectations, or you won&#8217;t be charged.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snapjag.com/2009/04/conficker-virus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<price></price>	</item>
		<item>
		<title>USB Dead After Vista Update</title>
		<link>http://www.snapjag.com/2009/01/usb-dead-after-vista-update/</link>
		<comments>http://www.snapjag.com/2009/01/usb-dead-after-vista-update/#comments</comments>
		<pubDate>Tue, 20 Jan 2009 09:06:46 +0000</pubDate>
		<dc:creator>snapjag</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[KB938371]]></category>
		<category><![CDATA[Update]]></category>
		<category><![CDATA[USB]]></category>
		<category><![CDATA[Vista]]></category>

		<guid isPermaLink="false">http://gleew.wordpress.com/?p=219</guid>
		<description><![CDATA[Have you recently performed an update on your machine that includes a patch from Microsoft (KB938371) that has suddenly disabled your USB ports, possibly your bluetooth, and making virtually any of your devices to stop interacting with your computer? This happened to me and I wanted to do what we do best, get all the information [...]]]></description>
			<content:encoded><![CDATA[<p>Have you recently performed an update on your machine that includes a patch from Microsoft (KB938371) that has suddenly disabled your USB ports, possibly your bluetooth, and making virtually any of your devices to stop interacting with your computer?</p>
<p>This happened to me and I wanted to do what we do best, get all the information together and provide a solution. I truly read through about 15 to 20 blogs where there were no less than 20 entries to try and find a solution. Some people supplied solutions. I tried almost all of them, but didn&#8217;t fix it, at least not my problem.</p>
<p><span id="more-219"></span><br />
I&#8217;ve spent the night figuring out a solution to this issue. This problem has had a ton of people up in arms. There&#8217;s nothing but flaming comments for Microsoft not having a solid solution; myself included. What a sour experience. And I&#8217;m usually in a favorable mood with MS.</p>
<p>All because of a patch that&#8217;s gone &#8220;bonkers&#8221;. Patch article number KB938371 is the purported problem. The update is a pre-requisite hotfix, which by the way, cannot be removed once it&#8217;s installed. Even after I performed Windows updates and having restored back to the original point through the Restore Points I still had the problem.</p>
<p>In a few words, it has to do with the drivers, plain and simple!</p>
<p>There are many ways to resolve this issue, but I soved the problem through a third-party application. I purchased the DriverCure software by ParetoLogic. It immediately found low-level drivers (for the HID and USB and Bluetooth components) that were out of date including a few others; it downloaded and installed them. After rebooting the machine, my USB ports worked and the devices were active!</p>
<p>Now this was the easy way, but it cost me $49.00. Although I&#8217;m positive the solution can be done without cost. It might be an arduous task to go through. You&#8217;ll have to sift through all the HID devices in the Device Manager, identifying all the manufacturers, find their websites, finding the installation packages, making sure they are the latest drivers, installing them, and hoping all that was right. =)</p>
<p>There are other techniques too; sometimes they are more complex and not so straight forward. At SnapJag.com we want to put together solutions that are &#8220;Geek Speek to Plain Talk&#8221;(TM) threads.</p>
<p>I&#8217;m no noobie but I like giving support to people offering a solid, simple solution even if it might cost a few dollars without much headache. If you&#8217;re up for trying on your own, then follow the instructions at this link.</p>
<ul>
<li><a href="http://dotnetwizard.net/vista-stuff/workaround-for-usb-devices-not-getting-detected-after-vista-update/">Workaround for dead USB ports in Vista after update</a></li>
</ul>
<p>Another article vaguely refers to this issue <a href="http://smokeys.wordpress.com/2008/04/16/windows-vista-update-kills-usb-devices/" target="_blank">here</a>.</p>
<h2>Summary</h2>
<p>I&#8217;m very confident of this solution because I bought the laptop brand new from Costco on Saturday, and I immediately started working on the computer. And everything worked. I performed the updates and started having the problems. I restored back to the original Restore Point but the problems still existed.</p>
<p>My new computer make and model is a HP Pavilion dv7-1273cl Entertainment PC with the following specifications:</p>
<ul>
<li>500 GB (5400 RPM)</li>
<li>4 GB Ram</li>
<li>Duo Core Intel Centrino</li>
<li>17&#8243; HD display</li>
<li>Blu-Ray DVD+-/CD+-RW</li>
<li>Bluetooth and Wireless LAN</li>
<li>Windows Vista Home Premium</li>
</ul>
<h1>Problem</h1>
<p>I haven&#8217;t had my USB devices since my computer drivers update. I could certainly use the touchpad on the laptop, but I am a programmer and DBA and need to work fast. So using an external mouse (either corded or bluetooth) is essential but totally useless.</p>
<p>HP has nice registration and setup screens that I went through in about 10 minutes. I decided to turn off the pre-instaled Norton Security and install my favorite BitDefender. I did that. Then, my curiosity got the better of me, and this is when all heck broke lose &#8230; I bought two Blu-ray discs at Costco (since this is my first Blu-ray player) and would watch them while I setup them machine. The DVD player came up and said that the firmware, software, or some-rather-annoying message appeared. I decided the next step was to update the system. So, I did a Windows update and sought a repair of the DVD problem. About 20 updates were available, and I ran throught those.</p>
<p>Let me say at this point that as of right now, 12 hours later, I haven&#8217;t revisted the issue about the Blu-ray. But can&#8217;t fix it still. Will work on and provide a solution if others are having the same problem. =(</p>
<p>After restarting the machine and finishing the updates my external Microsoft miniature mouse wouldn&#8217;t work. I thought that was odd. Now and again I would turn off the wireless so I didn&#8217;t have any compromises while installing virus protection and had seen initialially that the Wireless and Bluetooth statement would appear in the bubble that would appear because of toggling them off and on. But now I didn&#8217;t see those either. It&#8217;s as if the Bluetooth and the USB interfaces and shut off. Which in actuality, they had done.</p>
<h1>Solution</h1>
<p>I used DriverCure from ParetoSoft and it found the underlying drivers that according to Microsoft were up todate, but because Microsoft keeps a different versioning system than the vendors, it appears to be bassackwards.</p>
<p>I understand it costs money to use ParetoSoft to find and correct the problem. But it was the best $40 I&#8217;ve spent because I could move on and get work done without having to individually investigate, find, and install each of the 25 driver inconsistencies.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snapjag.com/2009/01/usb-dead-after-vista-update/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<price></price>	</item>
		<item>
		<title>Firewire</title>
		<link>http://www.snapjag.com/2008/10/firewire/</link>
		<comments>http://www.snapjag.com/2008/10/firewire/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 02:20:11 +0000</pubDate>
		<dc:creator>snapjag</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Firewire]]></category>

		<guid isPermaLink="false">http://www.snapjag.com/?p=432</guid>
		<description><![CDATA[Wow, the differences between the Firewire standards really have me up in arms. I&#8217;m a little disappointed with Apple for not making the Firewire 800 (1394b &#8211; 9pin) plug available on my MacBook. Because, it&#8217;s been out for a while, and the speed is amazing, up to 700 MB/sec. That&#8217;s up from the 100, 200, [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, the differences between the Firewire standards really have me up in arms. I&#8217;m a little disappointed with Apple for not making the Firewire 800 (1394b &#8211; 9pin) plug available on my MacBook. Because, it&#8217;s been out for a while, and the speed is amazing, up to 700 MB/sec. That&#8217;s up from the 100, 200, and 400 speeds of Firewire 400 (1394a).</p>
<p>I wanted to get the new Lexar Professional UDMA 300x speed Compact Flash card for my DSLR and I&#8217;m finding out a few things needed to make this all work.</p>
<p>First, my Nikon D70s doesn&#8217;t transfer at the 300x speed and not many new cameras do. The camera will still use the CF and at the highest rate the UDMA will allow for the cameras slot. That&#8217;s OK, I wanted to get the images downloaded off the card as fast as possible. So, I had to get all the components together that would allow the fast possible speed, yet be a complete high-speed set so when the time comes to upgrade the other devices, everything is at it&#8217;s peak.</p>
<p>The components required from photo shoot to post-processing are the following.</p>
<p>Camera to memory card to memory card reader to computer</p>
<p>Each of these have different transfer rates. The Camera (CF) being about 70x, the memory card reader (9 pin 1394b Firewire) is 300x, the computer (Apple Macbook 6 pin 1394a Firewire) is about 150x.</p>
<p>Because the Lexar camera reader has 9 pin 1394b Firewire connections and the Macbook has 6 pin 1394a Firewire connections. I am having to find an adapter that bridges this connection &#8220;disconnect&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snapjag.com/2008/10/firewire/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<price></price>	</item>
		<item>
		<title>Turn On/Off Indenting Bullets in MS Office</title>
		<link>http://www.snapjag.com/2008/06/turn-onoff-indenting-bullets-while-typing/</link>
		<comments>http://www.snapjag.com/2008/06/turn-onoff-indenting-bullets-while-typing/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 01:08:19 +0000</pubDate>
		<dc:creator>snapjag</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://gleew.wordpress.com/?p=29</guid>
		<description><![CDATA[Have you accidentally turned off the ability to indent your bullets with tab and shift-tab? I did. And it was a very obscure solution to turn it back on. Here is the Word 2007 version to turn it back on (or off, if you&#8217;re having troubles getting the formatting just right). The Office Button is [...]]]></description>
			<content:encoded><![CDATA[<p>Have you accidentally turned off the ability to indent your bullets with tab and shift-tab? I did. And it was a very obscure solution to turn it back on. Here is the Word 2007 version to turn it back on (or off, if you&#8217;re having troubles getting the formatting just right). The Office Button is where you open/save/print files and find other Word options.</p>
<p>Office Button | Word Options | AutoCorrect Options | AutoFormat As You Type: &#8220;Set left- and first-indent with tabs and backspaces</p>
]]></content:encoded>
			<wfw:commentRss>http://www.snapjag.com/2008/06/turn-onoff-indenting-bullets-while-typing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<price></price>	</item>
	</channel>
</rss>

