<?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>itguyonline.com</title>
	<atom:link href="http://www.itguyonline.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.itguyonline.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 04 Aug 2010 02:07:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>WordPress Upgrade</title>
		<link>http://www.itguyonline.com/blog/2010/08/03/wordpress-upgrade-3/</link>
		<comments>http://www.itguyonline.com/blog/2010/08/03/wordpress-upgrade-3/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 02:07:25 +0000</pubDate>
		<dc:creator>Kurt Wolf</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.itguyonline.com/blog/2010/08/03/wordpress-upgrade-3/</guid>
		<description><![CDATA[I just upgraded my worspress site using safari on an iPhone. Pretty neat. Just make sure your phone does not lock or press the home button.]]></description>
			<content:encoded><![CDATA[<p>I just upgraded my worspress site using safari on an iPhone. Pretty neat. Just make sure your phone does not lock or press the home button. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.itguyonline.com/blog/2010/08/03/wordpress-upgrade-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Feather Text in Table</title>
		<link>http://www.itguyonline.com/blog/2010/06/28/86/</link>
		<comments>http://www.itguyonline.com/blog/2010/06/28/86/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 02:49:21 +0000</pubDate>
		<dc:creator>Kurt Wolf</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[png hack]]></category>

		<guid isPermaLink="false">http://www.itguyonline.com/blog/?p=86</guid>
		<description><![CDATA[I have been working on a project at work to create a status board display of important company metrics. Since this will eventually make it to a large LCD display, I am doing everything I can to make sure it is as perfect as possible. Now, I&#8217;m no professional designer but one of the things [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.itguyonline.com/blog/wp-content/uploads/2010/06/Table-With-Text-Feather.gif"><img class="alignnone size-full wp-image-87" title="Table With Text Feather" src="http://www.itguyonline.com/blog/wp-content/uploads/2010/06/Table-With-Text-Feather.gif" alt="" width="589" height="71" /></a></p>
<p>I have been working on a project at work to create a status board display of important company metrics.  Since this will eventually make it to a large LCD display, I am doing everything I can to make sure it is as perfect as possible.  Now, I&#8217;m no professional designer but one of the things that really bothered me was the tables of information running together and there was no easy way to distinguish the data columns.  I wanted to feather (fade) the text at the end of the column before the start of the next.</p>
<p>It seems there is not too much about this on the good old inter-web so I was off to hacking.  Like most of my good ideas, they come to me when I stop thinking about them and just allow a moment of quiet.  That came tonight at the dog park.</p>
<p>I was really consumed with the idea that I had to address the column that I wanted to feather, when in fact I needed to add the feather to the column I did not want to run into.  The picture above shows to table rows, the first does not have the treatment, and the second does.  Code to follow&#8230;</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
</pre></td><td class="code"><pre class="html" style="font-family:monospace;">&lt;html&gt;
    &lt;head&gt;
        &lt;title&gt;Sample Table Layout&lt;/title&gt;
&nbsp;
        &lt;style&gt;
&nbsp;
			*, HTML {
				padding: 0px;
				margin: 0px;
				font-family: verdana
				font-size: 12px;
				background-color: #000000;
				color: #FFFFFF;
			}
&nbsp;
			TABLE {
				table-layout: fixed;
				width: 675px;
			}
&nbsp;
			TD {
				white-space: nowrap;
				overflow: hidden;
			}
&nbsp;
			TD SPAN {
				background: url(feather.png) repeat-y;
				background-position: right;
				position: absolute;
				/* Set these both to the width of your feather image */
				margin-left: -20px;
				width: 20px;
				height: 100%;
			}
&nbsp;
        &lt;/style&gt;
&nbsp;
    &lt;/head&gt;
&nbsp;
    &lt;body&gt;
&nbsp;
        &lt;table&gt;
            &lt;tr&gt;
                &lt;th&gt;Col 1&lt;/th&gt;
                &lt;th&gt;Col 2&lt;/th&gt;
                &lt;th&gt;Col 3&lt;/th&gt;
            &lt;/tr&gt;
            &lt;tr&gt;
                &lt;td&gt;The quick brown fox jumped over the log&lt;/td&gt;
                &lt;td&gt;This is the start of a second column.&lt;/td&gt;
                &lt;td&gt;Parker&lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;
                &lt;td&gt;The quick brown fox jumped over the log&lt;/td&gt;
                &lt;td&gt;&lt;span&gt;&lt;/span&gt;This is the start of a second column.&lt;/td&gt;
                &lt;td&gt;&lt;span&gt;&lt;/span&gt;Parker&lt;/td&gt;
            &lt;/tr&gt; 
        &lt;/table&gt;
&nbsp;
    &lt;/body&gt;
&lt;/html&gt;</pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://www.itguyonline.com/blog/2010/06/28/86/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrade to WordPress 3</title>
		<link>http://www.itguyonline.com/blog/2010/06/27/upgrade-to-wordpress-3/</link>
		<comments>http://www.itguyonline.com/blog/2010/06/27/upgrade-to-wordpress-3/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 03:16:25 +0000</pubDate>
		<dc:creator>Kurt Wolf</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.itguyonline.com/blog/?p=84</guid>
		<description><![CDATA[Ok, I took the plunge and upgraded to WordPress 3 tonight. Looks like TentyTen will be my default theme for a while as I pick it apart.]]></description>
			<content:encoded><![CDATA[<p>Ok, I took the plunge and upgraded to WordPress 3 tonight.  Looks like TentyTen will be my default theme for a while as I pick it apart.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itguyonline.com/blog/2010/06/27/upgrade-to-wordpress-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Infra has changed hands once again</title>
		<link>http://www.itguyonline.com/blog/2010/04/14/infra-has-changed-hands-once-again/</link>
		<comments>http://www.itguyonline.com/blog/2010/04/14/infra-has-changed-hands-once-again/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 19:43:12 +0000</pubDate>
		<dc:creator>Kurt Wolf</dc:creator>
				<category><![CDATA[Infra]]></category>

		<guid isPermaLink="false">http://www.itguyonline.com/blog/?p=77</guid>
		<description><![CDATA[The product formally known as Ionix Service Manager, formally known as Infra has been moved to VMWare and is now known as VMWare Service Manager. Since the move, there seems to be new material on the website referencing version 9. I know that this version has been talked about by EMC for a while so [...]]]></description>
			<content:encoded><![CDATA[<p>The product formally known as Ionix Service Manager, formally known as Infra has been moved to VMWare and is now known as <a href="http://www.infra-corp.com/">VMWare Service Manager</a>.  Since the move, there seems to be new material on the website referencing version 9.  I know that this version has been talked about by EMC for a while so I am curious if it will really come out.</p>
<p>In other news, Microsoft has granted me access to <a href="http://www.microsoft.com/systemcenter/en/us/service-manager.aspx">System Center Service Manager</a>.  I am going to dig into that product to see how it compares.  If it accomplishes 80% of what Infra accomplished, I may be sold.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itguyonline.com/blog/2010/04/14/infra-has-changed-hands-once-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Infra / Ionix and Windows 7 64bit</title>
		<link>http://www.itguyonline.com/blog/2010/04/14/infra-ionix-and-windows-7-64bit/</link>
		<comments>http://www.itguyonline.com/blog/2010/04/14/infra-ionix-and-windows-7-64bit/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 19:19:06 +0000</pubDate>
		<dc:creator>Kurt Wolf</dc:creator>
				<category><![CDATA[Infra]]></category>

		<guid isPermaLink="false">http://www.itguyonline.com/blog/?p=74</guid>
		<description><![CDATA[Just a note for all of you Infra / Ionix users&#8230; The db and wrapper controls that are downloaded ARE NOT 64bit compatible. You must use the 32bit version of IE to launch Infra. This is for version 8, I have not tested version 9 yet.]]></description>
			<content:encoded><![CDATA[<p>Just a note for all of you Infra / Ionix users&#8230;  The db and wrapper controls that are downloaded ARE NOT 64bit compatible.  You must use the 32bit version of IE to launch Infra.  This is for version 8, I have not tested version 9 yet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itguyonline.com/blog/2010/04/14/infra-ionix-and-windows-7-64bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac Airport Utility</title>
		<link>http://www.itguyonline.com/blog/2009/11/23/mac-airport-utility/</link>
		<comments>http://www.itguyonline.com/blog/2009/11/23/mac-airport-utility/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 16:02:11 +0000</pubDate>
		<dc:creator>Kurt Wolf</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.itguyonline.com/blog/?p=67</guid>
		<description><![CDATA[I needed a quick way to check the type of connection I had running. After a quick Google, I found that the MacOS has the utility, it just needs to be tweaked a little. Open terminal and create a link to the utility. 1 sudo ln -s /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport /usr/sbin/airport Now that the utility is available, [...]]]></description>
			<content:encoded><![CDATA[<p>I needed a quick way to check the type of connection I had running.  After a quick Google, I found that the MacOS has the utility, it just needs to be tweaked a little.</p>
<p>Open terminal and create a link to the utility.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">ln</span> <span style="color: #660033;">-s</span> <span style="color: #000000; font-weight: bold;">/</span>System<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>PrivateFrameworks<span style="color: #000000; font-weight: bold;">/</span>Apple80211.framework<span style="color: #000000; font-weight: bold;">/</span>Versions<span style="color: #000000; font-weight: bold;">/</span>Current<span style="color: #000000; font-weight: bold;">/</span>Resources<span style="color: #000000; font-weight: bold;">/</span>airport <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>sbin<span style="color: #000000; font-weight: bold;">/</span>airport</pre></td></tr></table></div>

<p>Now that the utility is available, run airport -I for all of your wireless information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itguyonline.com/blog/2009/11/23/mac-airport-utility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sonicwall NetExtender and Snow Leopard</title>
		<link>http://www.itguyonline.com/blog/2009/09/13/sonicwall-netextender-and-snow-leopard/</link>
		<comments>http://www.itguyonline.com/blog/2009/09/13/sonicwall-netextender-and-snow-leopard/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 01:47:43 +0000</pubDate>
		<dc:creator>Kurt Wolf</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Systems]]></category>

		<guid isPermaLink="false">http://www.itguyonline.com/blog/?p=64</guid>
		<description><![CDATA[Seems like pppd is no longer setuid anymore. To correct this, fire up terminal and enter the following: 1 sudo chmod u+s /usr/sbin/pppd This will enable NetExtender to once again work its magic.]]></description>
			<content:encoded><![CDATA[<p>Seems like pppd is no longer setuid anymore.  To correct this, fire up terminal and enter the following:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">chmod</span> u+s <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>sbin<span style="color: #000000; font-weight: bold;">/</span>pppd</pre></td></tr></table></div>

<p>This will enable NetExtender to once again work its magic.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itguyonline.com/blog/2009/09/13/sonicwall-netextender-and-snow-leopard/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Snow Leopard &#8211; 64bit</title>
		<link>http://www.itguyonline.com/blog/2009/09/13/snow-leopard-64bit/</link>
		<comments>http://www.itguyonline.com/blog/2009/09/13/snow-leopard-64bit/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 01:14:11 +0000</pubDate>
		<dc:creator>Kurt Wolf</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Systems]]></category>

		<guid isPermaLink="false">http://www.itguyonline.com/blog/?p=56</guid>
		<description><![CDATA[Looks like Snow Leopard does not boot into a 64bit kernel by default. There are a couple of ways to get some 64bit goodness. Boot Keyboard Shortcut Hold down the &#8217;6&#8242; and &#8217;4&#8242; keys while you are booting. Conversly, you can boot into 32bit by holding down the &#8217;3&#8242; and the &#8217;2&#8242; keys. NVRAM setting [...]]]></description>
			<content:encoded><![CDATA[<p>Looks like Snow Leopard does not boot into a 64bit kernel by default.  There are a couple of ways to get some 64bit goodness.</p>
<p><span id="more-56"></span></p>
<p><strong>Boot Keyboard Shortcut</strong></p>
<p>Hold down the &#8217;6&#8242; and &#8217;4&#8242; keys while you are booting.  Conversly, you can boot into 32bit by holding down the &#8217;3&#8242; and the &#8217;2&#8242; keys.</p>
<p><strong>NVRAM setting</strong></p>
<p>Set a nvram setting to boot into 64bit.</p>
<p><code>nvram boot-args="arch=x86_64"</code></p>
<p><strong>Apple Configuration File</strong></p>
<p>Set to Apple configuration file to boot into 64bit by editing /Library/Preferences/SystemConfiguration/com.apple.Boot.plist</p>
<pre>< ?xml version="1.0" encoding="UTF-8"?>
<  !DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
< plist version="1.0">
< dict>
	< key>Kernel< /key>
	< string>mach_kernel< /string>
	< key>Kernel Flags< /key>
	< string>arch=x86_64< /string>
< /dict>
< /plist></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.itguyonline.com/blog/2009/09/13/snow-leopard-64bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Motorcycle ride: AZ &#8211; Cape Cod</title>
		<link>http://www.itguyonline.com/blog/2009/08/01/motorcycle-ride-az-cape-cod/</link>
		<comments>http://www.itguyonline.com/blog/2009/08/01/motorcycle-ride-az-cape-cod/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 14:42:49 +0000</pubDate>
		<dc:creator>Kurt Wolf</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.itguyonline.com/blog/?p=51</guid>
		<description><![CDATA[Friend of mine is taking a ride from AZ to Cape Cod and blogging about his adventure. Check out his site at: http://www.azweeks.com/.]]></description>
			<content:encoded><![CDATA[<p>Friend of mine is taking a ride from AZ to Cape Cod and blogging about his adventure.  Check out his site at: <a href="http://www.azweeks.com/">http://www.azweeks.com/</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itguyonline.com/blog/2009/08/01/motorcycle-ride-az-cape-cod/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Administrative Tools for Windows 7</title>
		<link>http://www.itguyonline.com/blog/2009/07/29/administrative-tools-for-windows-7/</link>
		<comments>http://www.itguyonline.com/blog/2009/07/29/administrative-tools-for-windows-7/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 13:29:02 +0000</pubDate>
		<dc:creator>Kurt Wolf</dc:creator>
				<category><![CDATA[Systems]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.itguyonline.com/blog/2009/07/29/administrative-tools-for-windows-7/</guid>
		<description><![CDATA[I am running Windows 7 (build 7100) and I manage quite a few Windows 2003 servers, one of which is running Exchange 2003.&#160; I am not a fan of having to RDP to a domain controller just to manage some user settings and I was patiently waiting for Microsoft to release something… Don’t bother trying [...]]]></description>
			<content:encoded><![CDATA[<p>I am running Windows 7 (build 7100) and I manage quite a few Windows 2003 servers, one of which is running Exchange 2003.&#160; I am not a fan of having to RDP to a domain controller just to manage some user settings and I was patiently waiting for Microsoft to release something…</p>
<p>Don’t bother trying to install the Windows 2003 Admin Tool Pack in Windows 7.&#160; It will not work.</p>
<p>Microsoft has released the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=7d2f6ad7-656b-4313-a005-4e344e43997d&#038;displaylang=en" target="_blank">Remote Server Administration Tools for Windows 7</a>.&#160; Download and install this little jewel.&#160; Once installed, hop into your “Control Panel”.&#160; Click on “Programs” and then “Turn Windows features on or off”.&#160; You will see a new section called “Remote Server Administration Tools”.&#160; Mark which tools you need and then click Ok.&#160; No reboot needed.</p>
<p>That was half the problem…&#160; Now onto the Exchange tools.&#160; Microsoft seems to not have much information about the Exchange tools for 2003.&#160; I can’t blame them.&#160; I would like to be running Exchange 2007 right now but it is not in the cards for another year.&#160; By that time, probably jump right into Exchange 2010.&#160; In the meantime, I found a download over at <a href="http://nwcalc.web44.net/Win7/" target="_blank">Will Dove’s website</a>.&#160; What he has done is take the official ESM for Vista build from Microsoft and removed the check for Vista in the install process.&#160; This works like a charm.&#160; I have not run into any issues using this on my system.</p>
<p>Next up for my admin tool build project, Citrix Tools and OCS.</p>
<hr/>
<p>Updates:</p>
<ul>
<li>20090817 &#8211; Updated the link to the Remote Server Administration Tools</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.itguyonline.com/blog/2009/07/29/administrative-tools-for-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
