<?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>The PhenixbluE &#187; Computers</title>
	<atom:link href="http://phenix.thephenixblue.com/category/computers/feed/" rel="self" type="application/rss+xml" />
	<link>http://phenix.thephenixblue.com</link>
	<description>Bringing Nonsense to the Masses since 2003!</description>
	<lastBuildDate>Wed, 10 Mar 2010 22:26:06 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Batch Script for IE &amp; Firefox proxies</title>
		<link>http://phenix.thephenixblue.com/2009/10/batch-script-for-ie-firefox-proxies/</link>
		<comments>http://phenix.thephenixblue.com/2009/10/batch-script-for-ie-firefox-proxies/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 13:00:29 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[Client Management]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[proxy]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=513</guid>
		<description><![CDATA[So, in the many endeavors I pursue at work for needless reasons, here&#8217;s something I hope someone else benefits from. We tend to lock down access on machines that are in public places, or have more than a few users. As we&#8217;re not quite fully migrated over to Microsoft Active Directory, and can&#8217;t manage Group [...]]]></description>
			<content:encoded><![CDATA[<p>So, in the many endeavors I pursue at work for needless reasons, here&#8217;s something I hope someone else benefits from. We tend to lock down access on machines that are in public places, or have more than a few users. As we&#8217;re not quite fully migrated over to Microsoft Active Directory, and can&#8217;t manage Group Policy, theres no easy way to centrally manage browser proxy settings. We use browser proxy settings to limit the websites end users have access to on a machine ( to circumvent many wasted hours of cleaning up virus, spyware, and other junk). Browser proxy setting are super easy to mange with a .PAC file. IE can be managed by both a .INS and a .PAC file, but I&#8217;ve found the .PAC is more compliant throughout the majority of mainstream web browsers. We store a &#8220;restrict.pac&#8221; file on a web server to serve out proxy settings for IE and firefox to minimize the need to touch individual machines to add url&#8217;s to the the exception list. We just edit the one .PAC file and all machines configured to read that file are automatically updates (once the browser is restarted!). The problem is, we still have to touch each machine to setup the initial configuration to read the &#8220;restrict.pac&#8221; to auto configure the proxy settings. I recently developed a batch file that will setup both (IE and Firefox) browsers to use the &#8220;restrict.pac&#8221; file for proxy auto config settings. I haven&#8217;t had time to add conditionals if files already exist, but the script has been tested, and it doesn&#8217;t really matter if the files already exist in our environment. Feel free to use the code, and modify it in any way. If you find yourself needing something a little different, please comment. If you add to it, let me know! Here you go:</p>
<h3>restrict.pac contents:</h3>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>Store info <span style="color: #000000; font-weight: bold;">in</span> variables <span style="color: #000000; font-weight: bold;">for</span> clean code
var ALLOWED = <span style="color: #ff0000;">&quot;DIRECT&quot;</span>;
<span style="color: #000000; font-weight: bold;">//</span><span style="color: #000000; font-weight: bold;">set</span> the proxy server you want to redirect to
var DISALLOWED = <span style="color: #ff0000;">&quot;PROXY services.valdosta.edu:80&quot;</span>;
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> FindProxyForURL<span style="color: #7a0874; font-weight: bold;">&#40;</span>url, host<span style="color: #7a0874; font-weight: bold;">&#41;</span>
<span style="color: #7a0874; font-weight: bold;">&#123;</span>
<span style="color: #000000; font-weight: bold;">//</span>Add all exceptions <span style="color: #000000; font-weight: bold;">for</span> pages <span style="color: #c20cb9; font-weight: bold;">users</span> need to hit here
&nbsp;
<span style="color: #000000; font-weight: bold;">//</span>all VSU pages
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span>shExpMatch<span style="color: #7a0874; font-weight: bold;">&#40;</span>url,<span style="color: #ff0000;">&quot;*valdosta.edu/*&quot;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">return</span> ALLOWED;<span style="color: #7a0874; font-weight: bold;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">//</span>1Card online card office
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span>shExpMatch<span style="color: #7a0874; font-weight: bold;">&#40;</span>url,<span style="color: #ff0000;">&quot;*blackboard.com/*&quot;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">return</span> ALLOWED;<span style="color: #7a0874; font-weight: bold;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">//</span>Bookstore e-commerce stuff
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span>shExpMatch<span style="color: #7a0874; font-weight: bold;">&#40;</span>url,<span style="color: #ff0000;">&quot;*collegestoreonline.com/*&quot;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">return</span> ALLOWED;<span style="color: #7a0874; font-weight: bold;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">//</span>Off campus housing forum
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span>shExpMatch<span style="color: #7a0874; font-weight: bold;">&#40;</span>url,<span style="color: #ff0000;">&quot;*freeforums.org/*&quot;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">return</span> ALLOWED;<span style="color: #7a0874; font-weight: bold;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">//</span>ADP related links
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span>shExpMatch<span style="color: #7a0874; font-weight: bold;">&#40;</span>url,<span style="color: #ff0000;">&quot;*gafirst.esg.edu/*&quot;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">return</span> ALLOWED;<span style="color: #7a0874; font-weight: bold;">&#125;</span>
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span>shExpMatch<span style="color: #7a0874; font-weight: bold;">&#40;</span>url,<span style="color: #ff0000;">&quot;*adp.com/*&quot;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">return</span> ALLOWED;<span style="color: #7a0874; font-weight: bold;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">//</span>VSU Athletics
<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#40;</span>shExpMatch<span style="color: #7a0874; font-weight: bold;">&#40;</span>url,<span style="color: #ff0000;">&quot;*vstateblazers.com/*&quot;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span><span style="color: #7a0874; font-weight: bold;">return</span> ALLOWED;<span style="color: #7a0874; font-weight: bold;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">else</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">&#123;</span>
<span style="color: #000000; font-weight: bold;">//</span>redirect to proxy server <span style="color: #000000; font-weight: bold;">for</span> all other requests
<span style="color: #7a0874; font-weight: bold;">return</span> DISALLOWED;
<span style="color: #7a0874; font-weight: bold;">&#125;</span>
&nbsp;
<span style="color: #7a0874; font-weight: bold;">&#125;</span> <span style="color: #000000; font-weight: bold;">//</span> end of <span style="color: #000000; font-weight: bold;">function</span></pre></div></div>

<h3>browserProxy.bat contents:</h3>
<pre>
::Store info used to create user.js in variables
set var1=# Mozilla User Preferences
set var2=user_pref("network.proxy.autoconfig_url", "http://services.valdosta.edu/restrict.pac");
set var3=user_pref("network.proxy.type", 2);
set var4=user_pref("pref.advanced.proxies.disable_button.reload", false);

::concat each variable to create the user.js
echo %var1%&gt; c:\\apps\user.js
echo %var2%&gt;&gt; c:\\apps\user.js
echo %var3%&gt;&gt; c:\\apps\user.js
echo %var4%&gt;&gt; c:\\apps\user.js

:: determine current user's firefox profile and set it to "var5"
for /f %%a in ('FINDSTR /r ".\.default" "%AppData%\Mozilla\Firefox\profiles.ini"') do set var5=%%a
set var5=%var5:~14%
:: Copy "user.js" to Firefox profile directory
COPY "c:\\apps\user.js" "%AppData%\Mozilla\Firefox\Profiles\%var5%\" &gt;nul

:: create IE Proxy
Reg ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings" /v "AutoConfigUrl" /d "http://services.valdosta.edu/restrict.pac" /f</pre>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fphenix.thephenixblue.com%2F2009%2F10%2Fbatch-script-for-ie-firefox-proxies%2F&amp;linkname=Batch%20Script%20for%20IE%20%26amp%3B%20Firefox%20proxies" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fphenix.thephenixblue.com_2F2009_2F10_2Fbatch-script-for-ie-firefox-proxies_2F_amp_linkname=Batch_20Script_20for_20IE_20_26amp_3B_20Firefox_20proxies&amp;referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/10/batch-script-for-ie-firefox-proxies/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>MAC: Display Sleep Issues</title>
		<link>http://phenix.thephenixblue.com/2009/09/mac-display-sleep-issues/</link>
		<comments>http://phenix.thephenixblue.com/2009/09/mac-display-sleep-issues/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 00:04:51 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[Apple Desktops]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[power]]></category>
		<category><![CDATA[sleep]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=351</guid>
		<description><![CDATA[Because I normally leave my machines running 24/7, i try to set the displays to sleep after 3 minutes (to save some power, prevent burn in, etc.). In my current home office setup I have 2 iMacs side by side. Lately I&#8217;ve noticed one of them has the display go to sleep, and stay asleep, [...]]]></description>
			<content:encoded><![CDATA[<p>Because I normally leave my machines running 24/7, i try to set the displays to sleep after 3 minutes (to save some power, prevent burn in, etc.). In my current home office setup I have 2 iMacs side by side. Lately I&#8217;ve noticed one of them has the display go to sleep, and stay asleep, while the other does not. The iMac&#8217;s screen will go to sleep, but in about 15-20 seconds it will come back on and continue in a cycle like this. It&#8217;s very annoying at night, when all lights are turned off, not to mention WHY!!! I verified the 2 iMacs power save settings and screen saver settings were identical. I of course perused Google, and other sites for a solution to no avail. I finally pieced together info from here and there and have found a solution. Apparently it lies in your Sharing settings within System Preferences.<br />
<img class="aligncenter size-medium wp-image-353" src="http://phenix.thephenixblue.com/files/2009/09/Screen-shot-2009-09-02-at-7.59.31-PM-300x158.png" alt="Remote Management Prefs" width="300" height="158" /></p>
<p>If you reside on a public network, or even on a network with several other macs, and you have &#8220;Remote Management&#8221; set to allow &#8220;All Users&#8221; you can end up getting some unwanted users trying to connect to your machine. Once I configured &#8220;Remote Management&#8221; to only allow specific users to access the machine, the annoying cycle was stopped. If I had to guess, this has to do with a heartbeat coming from bonjour enabled clients.</p>
<p>-Phenix</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fphenix.thephenixblue.com%2F2009%2F09%2Fmac-display-sleep-issues%2F&amp;linkname=MAC%3A%20Display%20Sleep%20Issues" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fphenix.thephenixblue.com_2F2009_2F09_2Fmac-display-sleep-issues_2F_amp_linkname=MAC_3A_20Display_20Sleep_20Issues&amp;referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/09/mac-display-sleep-issues/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DHCP Lease&#8230;..Whooops!</title>
		<link>http://phenix.thephenixblue.com/2009/07/dhcp-lease-whooops/</link>
		<comments>http://phenix.thephenixblue.com/2009/07/dhcp-lease-whooops/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 15:00:32 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[dhcp]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=314</guid>
		<description><![CDATA[So, if you&#8217;re like me and you love to mess around with all kinds of computer related things, you may have run into this scenario before:
You find some cool piece of software, and you spend a week or so fiddling around with it, but then you decide you like it, and later decide to use [...]]]></description>
			<content:encoded><![CDATA[<p>So, if you&#8217;re like me and you love to mess around with all kinds of computer related things, you may have run into this scenario before:</p>
<p>You find some cool piece of software, and you spend a week or so fiddling around with it, but then you decide you like it, and later decide to use it. Well, instead of scrapping everything you&#8217;ve been working with and starting over from scratch you just go ahead working with what you&#8217;ve got.</p>
<p>Sound familiar? If so, and your software of choice happens to be the DHCP service on OSX 10.5 Server, this post is definitely for you. I went through Server Admin and setup my subnets, static maps, and logging levels. The one thing I forgot to change was the Lease Time. I left it configured to issue leases for a week. No biggie for most folks (including myself) since you&#8217;re probably not going to be maxing out your leased IP&#8217;s anytime soon. But if you&#8217;re like me, it annoys you to have to wait for several leases to expire, and you see duplicate leases for devices in your clients table. Here&#8217;s a quick easy fix to clear out all the leases and start fresh (since the option isn&#8217;t available via Server Admin):</p>
<p>1. Stop the dhcp server either through Server Admin, or from aTerminal:</p>
<blockquote><p>%<em> sudo serveradmin stop dhcp</em></p></blockquote>
<p>2. delete the file <span style="color: #3366ff">/var/db/dhcpd_leases</span>. You will need root access. Terminal command:</p>
<blockquote><p>% <em>sudo rm -f /var/db/dhcpd_leases</em></p></blockquote>
<p>3. Restart dhcp via server admin or from Terminal:</p>
<blockquote><p>% <em>sudo serveradmin start dhcp</em></p></blockquote>
<p><em><span style="font-style: normal">A very simple Apple Script can be developed to do this (if you have recurring needs). Contact me if you would like it,</span></em></p>
<p><em><span style="font-style: normal">-Phenix</span></em></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fphenix.thephenixblue.com%2F2009%2F07%2Fdhcp-lease-whooops%2F&amp;linkname=DHCP%20Lease%26%238230%3B..Whooops%21" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fphenix.thephenixblue.com_2F2009_2F07_2Fdhcp-lease-whooops_2F_amp_linkname=DHCP_20Lease_26_238230_3B..Whooops_21&amp;referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/07/dhcp-lease-whooops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Server Migration</title>
		<link>http://phenix.thephenixblue.com/2009/07/server-migration/</link>
		<comments>http://phenix.thephenixblue.com/2009/07/server-migration/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 21:41:29 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Upgrades]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[imac]]></category>
		<category><![CDATA[migration]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=305</guid>
		<description><![CDATA[This Friday, July 24 2009, at approximately 5:00pm will take the server that hosts this site, and all other sites (*.thephenixblue.com, *.phenixblue.com, *.jmsearcy.com, *.vsumug.com, *.vsumug.org, *.vsusinfonia.org, *.firehouseink.com, *.ceramicsdiva.com, *.thewebroot.com) will go offline. During the offline period all sites will be migrated to new server hardware, as well as additional upgrades to Apache, PHP, and MySQL. [...]]]></description>
			<content:encoded><![CDATA[<p>This Friday, July 24 2009, at approximately 5:00pm will take the server that hosts this site, and all other sites (*.thephenixblue.com, *.phenixblue.com, *.jmsearcy.com, *.vsumug.com, *.vsumug.org, *.vsusinfonia.org, *.firehouseink.com, *.ceramicsdiva.com, *.thewebroot.com) will go offline. During the offline period all sites will be migrated to new server hardware, as well as additional upgrades to Apache, PHP, and MySQL. The current server is identical in hardware, but resides on Mac OS X 10.5 client alongside other applications and services. The new server uses Mac OS X 10.5 Server, and is a dedicated box that will have no console interaction other than System Administration. During the migration I will also be pruning some older directories no longer used and striving for a cleaner and leaner setup! The entire migration will hopefully only take a few hours (transfer WWWROOT &amp; MySQL DB&#8217;s, reassign permissions, account creation, create Virtual Hosts &amp; Directories, and update DNS). The DNS changes may take up to 24 hours to propegate (normally only 1-4 hours). That&#8217;s the ideal work flow&#8230;&#8230;pending any unforseen doom! I will keep everyone up to date via twitter (<a title="jmsearcy on Twitter" href="http://twitter.com/jmsearcy" onclick="urchinTracker('/outgoing/twitter.com/jmsearcy?referer=');">@jmsearcy</a>). Thanks in advance for your <span style="text-decoration: line-through">patients </span>patience!</p>
<h3>New Server Specs:</h3>
<ul>
<li>20&#8243; Aluminum iMac</li>
<li>2.0 Ghz Intel Core 2 Duo</li>
<li>4GB DDR2 (667Mhz) RAM</li>
<li>250GB SATA HD</li>
<li>Gigabit Ethernet</li>
<li>128 Mb ATI Radeon 2400HD Graphics</li>
<li>8Mb/s High Speed Cable Internet</li>
<li>Sitting on a desk next to the kitchen!</li>
</ul>
<p>If you don&#8217;t like the fact that I use an iMac for a web server send me money for an xserve!</p>
<p>If you don&#8217;t like the fact that that I hosts sites off of an 8Mb/s connection, send monet for OC3!</p>
<p>If you don&#8217;t like the fact that my server is on a desk next to my kitchen, send money for a Data Center!</p>
<p>-Phenix</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fphenix.thephenixblue.com%2F2009%2F07%2Fserver-migration%2F&amp;linkname=Server%20Migration" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fphenix.thephenixblue.com_2F2009_2F07_2Fserver-migration_2F_amp_linkname=Server_20Migration&amp;referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/07/server-migration/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Category Mod for WP Loop</title>
		<link>http://phenix.thephenixblue.com/2009/07/category-mod-for-wp-loop/</link>
		<comments>http://phenix.thephenixblue.com/2009/07/category-mod-for-wp-loop/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 20:38:35 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[categories]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[mod]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=260</guid>
		<description><![CDATA[On several different occasions I&#8217;ve found the need to modify the WP Loop to produce a desired effect&#8230;.such as  only retrieving posts from a certain category. You can find many examples of how to do this by simply doing a Google search. The most common mod I&#8217;ve found is this:

&#60;?php query_posts(&#8217;category_name=special_cat&#38;showposts=10&#8242;); ?&#62;

&#60;?php while (have_posts()) : the_post(); ?&#62;

&#60;!&#8211; Do [...]]]></description>
			<content:encoded><![CDATA[<p>On several different occasions I&#8217;ve found the need to modify the WP Loop to produce a desired effect&#8230;.such as  only retrieving posts from a certain category. You can find many examples of how to do this by simply doing a Google search. The most common mod I&#8217;ve found is this:</p>
<blockquote>
<h5><em><span style="color: #ff0000">&lt;?php query_posts(&#8217;<span style="color: #3366ff">category_name</span>=special_cat&amp;showposts=10&#8242;); ?&gt;</span></em></h5>
<h5><em><span style="color: #ff0000"><br />
&lt;?php while (have_posts()) : the_post(); ?&gt;</span></em></h5>
<h5 style="padding-left: 60px"><em><span style="color: #ff0000"><br />
&lt;!&#8211; Do special_cat stuff&#8230; &#8211;&gt;</span></em></h5>
<h5><em><span style="color: #ff0000"><br />
&lt;?php endwhile; ?&gt;</span></em></h5>
<p><em><span style="color: #ff0000"><br />
</span></em></p></blockquote>
<p>This isn&#8217;t just some thrown together code from a lonely developer, it&#8217;s the actual snippet from the official WP Codex. I however have never been able to get it to work. No matter what I substitute in for &#8220;<span style="color: #3366ff"><em>category_name</em></span>&#8220;, I get all posts. I normally just modify this a little and use:</p>
<blockquote>
<h5><em><span style="color: #ff0000">&lt;?php query_posts(&#8217;cat=<span style="color: #3366ff">cat_id</span>&amp;showposts=10&#8242;); ?&gt;</p>
<p>&lt;?php while (have_posts()) : the_post(); ?&gt;</p>
<p></span></em></h5>
<h5><em><span style="color: #ff0000"><br />
&lt;!&#8211; Do special_cat stuff&#8230; &#8211;&gt;</span></em></h5>
<h5><em><span style="color: #ff0000"><br />
&lt;?php endwhile; ?&gt;</span></em></h5>
<p><em><span style="color: #ff0000"><span id="more-260"></span></span></em></p></blockquote>
<p>Where &#8220;<span style="color: #3366ff"><em>cat_id</em></span>&#8221; is set to the numeric category ID stored int he MySQL DB. This proves to be cumbersome for anyone who doesn&#8217;t have direct access to the DB. One way to find out the category ID without DB access <em></em><em></em>is to view the source of a page within a browser and look for the ID there (provided your WP Loop is set to display categories). The use of the &#8220;special_cat&#8221; tag is suppose to enable the use of the category &#8220;slug&#8221;, or textual short name for the category (ie. the &#8220;News&#8221; category might have a slug of &#8220;news&#8221;). You can find the category slug when editing the category from the admin interface. The us eof the &#8220;slug&#8221; over the &#8220;ID&#8221; is much more convenient to most users. I have found a little more modification of the loop from the Codex offers a solution (have tested this on a WP 2.8 &amp; WPMU 2.7.1 install, please let me know if there are potential problems I&#8217;m missing by using this):</p>
<blockquote>
<h5><span style="color: #ff0000"><em>&lt;?php query_posts(&#8217;category_name=<span style="color: #3366ff">cat_slug</span>&amp;showposts=<span style="color: #3366ff">num_posts</span>&#8216;); ?&gt;</em></span></h5>
<h5><span style="color: #ff0000"><em><br />
&lt;?php if (have_posts()) : ?&gt; </em></span></h5>
<h5><span style="color: #ff0000"><em><br />
&lt;?php while (have_posts()) : the_post(); ?&gt;</em></span></h5>
<h5 style="padding-left: 90px"><span style="color: #ff0000"><em>&lt;!&#8211; Code for Post Display &#8211;&gt;<br />
</em></span></h5>
<h5><span style="color: #ff0000"><em>&lt;?php endwhile; endif; ?&gt;</em></span></h5>
<p><span style="color: #ff0000"><em><br />
</em></span></p></blockquote>
<p>Where &#8220;<em><span style="color: #3366ff">cat_slug</span></em>&#8221; is equal to the Category Slug, and &#8220;<em><span style="color: #3366ff">num_posts</span></em>&#8221; is equal to the number of posts from that category you want to display.</p>
<p>Because I normally hate people that just leave an example with &#8220;&lt;!&#8211; Code for Post Display &#8211;&gt;&#8221; rather than actually showing me what goes in there, I&#8217;ll give you an example of this modified loop used within a page:</p>
<blockquote>
<h5><em><span style="color: #ff0000">&lt;?php query_posts(&#8217;category_name=News&amp;showposts=5&#8242;); ?&gt;<br />
&lt;?php if (have_posts()) : ?&gt;<br />
&lt;?php while (have_posts()) : the_post(); ?&gt;</span></em></h5>
<p><em><span style="color: #ff0000"><br />
</span></em></p>
<h5><em>&lt;!&#8211; Begin Code for Post Display &#8211;&gt;</em></p>
<p><em></em></h5>
<h5><em> <span style="color: #3366ff"> <span style="color: #3366ff">&lt;DIV class=&#8221;post&#8221; id=&#8221;post-&lt;?php the_ID(); ?&gt;&#8221;&gt;</span></span></em></h5>
<h5><em><span style="color: #3366ff"><span style="color: #3366ff"> &lt;h1&gt;&lt;a href=&#8221;&lt;?php the_permalink() ?&gt;&#8221; rel=&#8221;bookmark&#8221; title=&#8221;Permanent Link to &lt;?php the_title_attribute(); ?&gt;&#8221;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h1&gt;</span></span></em></h5>
<h5><em><span style="color: #3366ff"><span style="color: #3366ff"> &lt;DIV class=&#8221;entry&#8221;&gt;</span></span></em></h5>
<h5><em></em></h5>
<h5><em><span style="color: #3366ff"><span style="color: #3366ff"> &lt;?php wp_link_pages(array(&#8217;before&#8217; =&gt; &#8216;&lt;p&gt;&lt;strong&gt;Pages:&lt;/strong&gt; &#8216;, &#8216;after&#8217; =&gt; &#8216;&lt;/p&gt;&#8217;, &#8216;next_or_number&#8217; =&gt; &#8216;number&#8217;)); ?&gt;</span></span></em></h5>
<h5><em></em></h5>
<h5><em><span style="color: #3366ff"><span style="color: #3366ff"> &lt;/DIV&gt;</span></span></em></h5>
<h5><em><span style="color: #3366ff">&lt;/DIV&gt;</span></em></h5>
<h5><em>&lt;!&#8211; End Code for Post Display &#8211;&gt;</em></h5>
<h5><em><br />
<span style="color: #ff0000">&lt;?php endwhile; endif; ?&gt;</span></em></h5>
<p><em><span style="color: #ff0000"><br />
</span></em></p></blockquote>
<p>This modified WP Loop displays 5 posts form the &#8220;News&#8221; category, Titles only that link to the actual individual post page, and pagination showing if more than 5 posts exist. I hope this helps someon out in the future! Please leave feedback of others possibilities to obtain this same feature, your troubles, or links to your site where you use something similar.</p>
<p>-Phenix</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fphenix.thephenixblue.com%2F2009%2F07%2Fcategory-mod-for-wp-loop%2F&amp;linkname=Category%20Mod%20for%20WP%20Loop" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fphenix.thephenixblue.com_2F2009_2F07_2Fcategory-mod-for-wp-loop_2F_amp_linkname=Category_20Mod_20for_20WP_20Loop&amp;referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/07/category-mod-for-wp-loop/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Phenix Returns!!!</title>
		<link>http://phenix.thephenixblue.com/2009/04/the-phenix-returns/</link>
		<comments>http://phenix.thephenixblue.com/2009/04/the-phenix-returns/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 15:03:12 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Problems]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[down]]></category>
		<category><![CDATA[flood]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=201</guid>
		<description><![CDATA[The PhenixbluE returns (DUH! if you&#8217;re reading this!!!). Sorry for the downtime folks, but Mother Nature didn&#8217;t really give myself or Mediacom forwarning or much of a choice! Service was restored sometime this morning, and a quick restart of services got everything back up and running smooth. Thanks for your patience, and I hope you [...]]]></description>
			<content:encoded><![CDATA[<p>The PhenixbluE returns (DUH! if you&#8217;re reading this!!!). Sorry for the downtime folks, but Mother Nature didn&#8217;t really give myself or Mediacom forwarning or much of a choice! Service was restored sometime this morning, and a quick restart of services got everything back up and running smooth. Thanks for your patience, and I hope you continue visiting.</p>
<p>For anyone unaware of the recent events in Valdosta/Lowndes County, see this <a title="Lowndes County Flooding" href="http://www.walb.com/Global/story.asp?s=10139005" onclick="urchinTracker('/outgoing/www.walb.com/Global/story.asp?s=10139005&amp;referer=');">article and video</a> (to the right of the article)  with details.</p>
<p>-Phenix</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fphenix.thephenixblue.com%2F2009%2F04%2Fthe-phenix-returns%2F&amp;linkname=The%20Phenix%20Returns%21%21%21" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fphenix.thephenixblue.com_2F2009_2F04_2Fthe-phenix-returns_2F_amp_linkname=The_20Phenix_20Returns_21_21_21&amp;referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/04/the-phenix-returns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aqua Connect Terminal Server</title>
		<link>http://phenix.thephenixblue.com/2009/03/aqua-connect-terminal-server/</link>
		<comments>http://phenix.thephenixblue.com/2009/03/aqua-connect-terminal-server/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 13:00:53 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[terminal services]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=183</guid>
		<description><![CDATA[
Any Sys Admin over a Windows Terminal Server would be able to tell you how great a Terminal Services (TS) environment can be regarding Application Management, OS patches, Group Policy, etc. Having served suitable time as such, I can personally attest to the increased efficiency of centralized management. You need to install Photoshop for 50 users, install [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left"><img class="aligncenter size-full wp-image-190" src="http://phenix.thephenixblue.com/files/2009/03/picture-1.png" alt="Aqua Connect TS" width="544" height="167" /><br />
Any Sys Admin over a Windows Terminal Server would be able to tell you how great a Terminal Services (TS) environment can be regarding Application Management, OS patches, Group Policy, etc. Having served suitable time as such, I can personally attest to the increased efficiency of centralized management. You need to install Photoshop for 50 users, install it once on the server, and adjust Group Policy settings to allow those 50 specific users to have access to it, and upon next logon, POW!!! If my memory serves me correctly, Microsoft has offered Terminal Services since the Server 2000 platform. I&#8217;ve also spent some time working with Sun&#8217;s spin on  TS via the SunRay server package, and the SunRay thin clients. Sun&#8217;s solution can be used to deploy independent Solaris OS Desktops to connecting users, and with a little more effort, Linux and Windows Desktop Sessions as well. Having used these TS solutions, my brain began to churn over the unlimited possibilities in a business or education environment. A college could easily setup labs of thin clients with smaller footprints, a cheaper price tag, and still offer to benefit of Windows, Solaris, and Linux in one sitting! What&#8217;s missing form this puzzle you say? Apple&#8217;s Mac OS, DUH! Until about 2 years ago, I had never seen someone take advantage of the TS concept on the Mac OS platform. Being a Mac fanboy I was severely disappointed. As I scathed the internet I did finally come across a package by the name of <a title="Aqua Connect" href="http://www.aquaconnect.net/" onclick="urchinTracker('/outgoing/www.aquaconnect.net/?referer=');">Aqua Connect Terminal Server</a>. I originally viewed a webcast demo of Aqua Connect over at <a title="MacEnterprise" href="http://www.macenterprise.org" onclick="urchinTracker('/outgoing/www.macenterprise.org?referer=');">MacEnterprise</a>, and it absolutely blew me away!!! There were no groundbreaking features that other TS packages didn&#8217;t have, but the sight of multiple Mac OS desktop sessions was beautiful. Over the past couple of years Aqua Connect has really evolved the product into what looks like an extremely solid Enterprise level application. They are now at version 3.0, and have added a very nice admin utility, and support for more protocols. As it stands now, it looks like the RDP, VNC, and X11 protocols are supported (others on the way), and they&#8217;ve extended hardware support to cover Apple, PC, Thin Client, Mobile Phones, laptops, and a few other platforms. At this point Aqua Connect is touting about 120 concurrent users sessions for an xserve (a few dozen on a MBP as per the webcast demo!!!), and around 98% application compatibility. They do not have support for local USB devices (though there are some work arounds for Printers and scanners). They also state that it&#8217;s easily integrated into Apple Directory Services, Microsoft Active Directory, and Open LDAP. All in all, this package looks Kick-Ass. I&#8217;m currently waiting on an evaluation version that i will hopefully be able to test on both Mac OS X Server 10.4 and 10.5. I&#8217;ll try to devote my up and coming free time to testing Aqua Connect TS, and letting you guys know if its the real deal! Anyone interested, I would highly suggest you check out the <a title="Aqua Connect Webcast @ MacEnterprise" href="http://webcast.macenterprise.org/2008Webcasts/10-21-08-AquaConnect-Webcast.mp4.zip" onclick="urchinTracker('/outgoing/webcast.macenterprise.org/2008Webcasts/10-21-08-AquaConnect-Webcast.mp4.zip?referer=');">latest webcast</a>  (.mp4 format) from MacEnterprise and read the documentation at <a title="Aqua Connect" href="http://www.aquaconnect.net/" onclick="urchinTracker('/outgoing/www.aquaconnect.net/?referer=');">Aqua Connect&#8217;s</a> site to see it for yourself.
</p>
<p style="text-align: left">-Phenix</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fphenix.thephenixblue.com%2F2009%2F03%2Faqua-connect-terminal-server%2F&amp;linkname=Aqua%20Connect%20Terminal%20Server" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fphenix.thephenixblue.com_2F2009_2F03_2Faqua-connect-terminal-server_2F_amp_linkname=Aqua_20Connect_20Terminal_20Server&amp;referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/03/aqua-connect-terminal-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Future Plans for Web Server</title>
		<link>http://phenix.thephenixblue.com/2009/03/future-plans-for-web-serve/</link>
		<comments>http://phenix.thephenixblue.com/2009/03/future-plans-for-web-serve/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 18:22:24 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[Additions]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[Upgrades]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[failover]]></category>
		<category><![CDATA[load balancing]]></category>
		<category><![CDATA[replication]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=136</guid>
		<description><![CDATA[I have already tweeted a generic request for anyone with experience/expertise in the following areas:

Remote data Replication
Remote Load Balancing
Remote Failover

The ideal setup would be to have 1 web server (Server A) at ground zero that dynamically replicates it&#8217;s files to another web server (Server B) 20-100 miles away, while simultaneously sharing the load across the [...]]]></description>
			<content:encoded><![CDATA[<p>I have already tweeted a generic request for anyone with experience/expertise in the following areas:</p>
<ul>
<li>Remote data Replication</li>
<li>Remote Load Balancing</li>
<li>Remote Failover</li>
</ul>
<p>The ideal setup would be to have 1 web server (Server A) at ground zero that dynamically replicates it&#8217;s files to another web server (Server B) 20-100 miles away, while simultaneously sharing the load across the two, and also providing an automatic failover to the other in case one goes down. I have never before venrutred into the realm of any of these topics, so I barely have a surface knowldge if this scenario is even possible, let alone practical. Should I configure this setup differently? I have already reserahced and found (as well as been referenced to) <a title="rsync" href="http://www.samba.org/rsync/" onclick="urchinTracker('/outgoing/www.samba.org/rsync/?referer=');">rsync</a> for data replication. I will also note that all of this will be on the Mac OS X 10.5 platform (slight possibility to move to 10.5 server) using a residential ISP connection. Thanks in advanced to anyone that can help out,</p>
<p>-Phenix</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fphenix.thephenixblue.com%2F2009%2F03%2Ffuture-plans-for-web-serve%2F&amp;linkname=Future%20Plans%20for%20Web%20Server" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fphenix.thephenixblue.com_2F2009_2F03_2Ffuture-plans-for-web-serve_2F_amp_linkname=Future_20Plans_20for_20Web_20Server&amp;referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/03/future-plans-for-web-serve/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unexpected Downtime</title>
		<link>http://phenix.thephenixblue.com/2009/03/unexpected-downtime/</link>
		<comments>http://phenix.thephenixblue.com/2009/03/unexpected-downtime/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 13:01:33 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Life]]></category>
		<category><![CDATA[Problems]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[downtime]]></category>
		<category><![CDATA[isp]]></category>
		<category><![CDATA[mediacom]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=133</guid>
		<description><![CDATA[Yesterday a little before 3:00pm EST this site and all associated went down for roughly 4 hours. This outage appears to be the fault of my ISP (Mediacom) as the web server, dns, dhcp, main router, etc. were all in operation when I arrived on site. After examining the logs from the various systems, I [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday a little before 3:00pm EST this site and all associated went down for roughly 4 hours. This outage appears to be the fault of my ISP (Mediacom) as the web server, dns, dhcp, main router, etc. were all in operation when I arrived on site. After examining the logs from the various systems, I saw no system faults. No data was lost during this outage, and full functionality was restored. I know you were all disheartened by not be able to read my wonderful content!</p>
<p>-Phenix</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fphenix.thephenixblue.com%2F2009%2F03%2Funexpected-downtime%2F&amp;linkname=Unexpected%20Downtime" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fphenix.thephenixblue.com_2F2009_2F03_2Funexpected-downtime_2F_amp_linkname=Unexpected_20Downtime&amp;referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/03/unexpected-downtime/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>50 Things Every Mac Geek Should Know</title>
		<link>http://phenix.thephenixblue.com/2009/03/50-things-every-mac-geek-should-know/</link>
		<comments>http://phenix.thephenixblue.com/2009/03/50-things-every-mac-geek-should-know/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 22:38:19 +0000</pubDate>
		<dc:creator>Phenix</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Apple Desktops]]></category>
		<category><![CDATA[Apple Laptops]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://phenix.thephenixblue.com/?p=129</guid>
		<description><![CDATA[
Like a champion cyclist knows bike parts,a car buff knows model years, and a sports fan knows win-loss records, all Mac geeks worth the titl
e must know these things.
Marketers and Madison Avenue operators like to reduce consumers to either/or “types”—paper or plastic, boxers or briefs, cotton or cashmere, Honda or Mercedes, Cristal or Bud&#8211;you get [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" src="http://www.maclife.com/files/u32/0304_geek50_380.jpg" alt="" width="266" height="222" /></p>
<p>Like a champion cyclist knows bike parts,a car buff knows model years, and a sports fan knows win-loss records, all Mac geeks worth the titl</p>
<p>e must know these things.</p>
<p>Marketers and Madison Avenue operators like to reduce consumers to either/or “types”—paper or plastic, boxers or briefs, cotton or cashmere, Honda or Mercedes, Cristal or Bud&#8211;you get the idea. But what often fails to register in such a superficial worldview are the specific reasons behind what we choose when presented with a “this or that?” decision.</p>
<p>When it comes to computing, the question is Mac or Windows? And, as a Mac user, your allegiance to your platform of choice&#8211;as in marriage&#8211;isn’t entered into lightly. But once you renounce the Dark Side and join the growing legions of Mac enthusiasts, it’s not enough to maintain a casual connection to your Mac, iPhone, iPod, or Apple TV. </p>
<p>The difference between a Mac user and a Mac geek isn’t just how attached you are to your Apple tech&#8211;or how often you publicly proclaim that attachment with logo T-shirts, “Think Different” bumper stickers, or by plastering everything you own with Apple logo stickers. Your level of geekitude depends on how deeply you strive to connect with your Mac and OS X&#8211;yeah, we know it sounds like psychobabble. The point, friends, is that being a Mac geek is distinguishable from being any other kind of tech geek, because although it helps to have some basic knowledge of technical geekery, like, say, the names of certain coding languages or the fact that Mac OS X is a Unix-type operating system, you need never have written or even seen a line of Unix code to join the ranks of Mac geekdom. All you need, really, is passion for your Apple gadgets&#8211;how you show it is up to you.</p>
<p>But to help give you the street cred&#8211;that is Mac knowledge&#8211;to back up the passion, we present the 50 things you really should know if you want to call yourself a Mac geek. If you’re a recent convert to the Way of the Mac, be sure you stud</p>
<p>y this compendium so you can move up a few levels of geekitude. If you’re a longtime Mac geek, test your know-how against our list&#8211;and be sure to let us know what we missed by flaming us at editor@maclife.com.</p>
<p>See original article <a title="Mac|Life: 50 things a Mac Geek Should Know" href="http://www.maclife.com/article/feature/50_things_every_mac_geek_should_know?page=0%2C0" onclick="urchinTracker('/outgoing/www.maclife.com/article/feature/50_things_every_mac_geek_should_know?page=0_2C0&amp;referer=');">HERE</a></p>
<p>-Phenix</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fphenix.thephenixblue.com%2F2009%2F03%2F50-things-every-mac-geek-should-know%2F&amp;linkname=50%20Things%20Every%20Mac%20Geek%20Should%20Know" onclick="urchinTracker('/outgoing/www.addtoany.com/share_save?linkurl=http_3A_2F_2Fphenix.thephenixblue.com_2F2009_2F03_2F50-things-every-mac-geek-should-know_2F_amp_linkname=50_20Things_20Every_20Mac_20Geek_20Should_20Know&amp;referer=');"><img src="http://phenix.thephenixblue.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://phenix.thephenixblue.com/2009/03/50-things-every-mac-geek-should-know/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
