<?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>Jordan.Liggitt(.net) &#187; Computers</title>
	<atom:link href="http://jordan.liggitt.net/category/computers/feed/" rel="self" type="application/rss+xml" />
	<link>http://jordan.liggitt.net</link>
	<description>A slice of Liggitt life</description>
	<lastBuildDate>Sun, 20 Feb 2011 05:46:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Maximize</title>
		<link>http://jordan.liggitt.net/2009/12/09/maximize/</link>
		<comments>http://jordan.liggitt.net/2009/12/09/maximize/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 04:28:25 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://jordan.liggitt.net/?p=493</guid>
		<description><![CDATA[One of the things I&#8217;ve been looking for in OS X is a keyboard shortcut to maximize the current window. Found this tip today: Most apps have either &#8220;Zoom&#8221; or &#8220;Zoom Window&#8221; menu item, so type the following in the Terminal app: defaults write NSGlobalDomain NSUserKeyEquivalents '{"Zoom" = "@^Z"; "Zoom Window" = "@^Z"; }' That [...]]]></description>
			<content:encoded><![CDATA[One of the things I&#8217;ve been looking for in OS X is a keyboard shortcut to maximize the current window. Found <a href="http://www.macosxhints.com/article.php?story=20051227001809626">this tip</a> today:
<br /><br />
Most apps have either &#8220;Zoom&#8221; or &#8220;Zoom Window&#8221; menu item, so type the following in the Terminal app:
<br /><br />
<code>defaults write NSGlobalDomain NSUserKeyEquivalents '{"Zoom" = "@^Z"; "Zoom Window" = "@^Z"; }'</code>
<br /><br />
That sets the keyboard shortcut to Cmd-Ctrl-Z for almost all apps. Hitting that key combination repeatedly will toggle between the full-screen and fit-to-content states.
<br /><br />
Note: You will have to restart any running apps before the setting will take effect for them.
]]></content:encoded>
			<wfw:commentRss>http://jordan.liggitt.net/2009/12/09/maximize/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What&#8217;s In A Name?</title>
		<link>http://jordan.liggitt.net/2009/03/08/whats-in-a-name/</link>
		<comments>http://jordan.liggitt.net/2009/03/08/whats-in-a-name/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 18:36:20 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://jordan.liggitt.net/?p=402</guid>
		<description><![CDATA[Am I the only one amused by the name of this software update? Oh, and it requires a restart. Of course.]]></description>
			<content:encoded><![CDATA[Am I the only one amused by the name of this software update? Oh, and it requires a restart. Of course.

<img src="http://jordan.liggitt.net/wp-content/uploads/2009/03/updates.png" alt="Software Updates" class="aligncenter size-full wp-image-401" />]]></content:encoded>
			<wfw:commentRss>http://jordan.liggitt.net/2009/03/08/whats-in-a-name/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dynamic LINK element detection</title>
		<link>http://jordan.liggitt.net/2008/08/22/dynamic-link-element-detection/</link>
		<comments>http://jordan.liggitt.net/2008/08/22/dynamic-link-element-detection/#comments</comments>
		<pubDate>Fri, 22 Aug 2008 19:10:59 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://jordan.liggitt.net/?p=252</guid>
		<description><![CDATA[Both Firefox and IE7 have issues with dynamically added and removed LINK elements to feeds. Firefox will detect dynamically added feeds, and add them to the &#8220;Subscribe to&#8230;&#8221; menu, but when the link elements are removed from the DOM, the feeds still hang around in the &#8220;Subscribe to&#8230;&#8221; UI. Internet Explorer doesn&#8217;t even detect dynamically [...]]]></description>
			<content:encoded><![CDATA[<script>
<!--
function addFeed() {
  var head = document.getElementsByTagName("HEAD")[0];
  var link = document.createElement("link");
  link.className = "dynamicLink";
  link.setAttribute("rel", "alternate");
  link.setAttribute("type", "application/rss+xml");
  link.setAttribute("title", "Test title");
  link.setAttribute("href", "test.xml");
  head.appendChild(link);
  alert("link element added... check the 'Subscribe to...' menu");
}

function removeFeed() {
  var head = document.getElementsByTagName("HEAD")[0];
  var link = head.lastChild;
  if (link)
     if (link.className == "dynamicLink") {
       head.removeChild(link);
       alert("link element removed... check the 'Subscribe to...' menu");
       return;
     }
  alert("No more dynamically added feeds exist");
}
// -->
</script>

<p>Both Firefox and IE7 have issues with dynamically added and removed LINK elements to feeds. Firefox will detect dynamically added feeds, and add them to the &#8220;Subscribe to&#8230;&#8221; menu, but when the link elements are removed from the DOM, the feeds still hang around in the &#8220;Subscribe to&#8230;&#8221; UI.</p>

<p>Internet Explorer doesn&#8217;t even detect dynamically added links.</p>

<p>Try it out here: <a href="http://jordan.liggitt.net/2008/08/22/dynamic-link-element-detection/" onclick="addFeed(); return false;">Add feed</a> | <a href="http://jordan.liggitt.net/2008/08/22/dynamic-link-element-detection/" onclick="removeFeed(); return false;">Remove feed</a></p>]]></content:encoded>
			<wfw:commentRss>http://jordan.liggitt.net/2008/08/22/dynamic-link-element-detection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sometimes I write little stories in my folder names</title>
		<link>http://jordan.liggitt.net/2008/08/06/sometimes-i-write-little-stories-in-my-folder-names/</link>
		<comments>http://jordan.liggitt.net/2008/08/06/sometimes-i-write-little-stories-in-my-folder-names/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 20:14:47 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Misc]]></category>

		<guid isPermaLink="false">http://jordan.liggitt.net/?p=247</guid>
		<description><![CDATA[I saw this in the release notes for Eclipse 3.3 a while ago, describing how filenames longer than 255 characters were now supported. Why can&#8217;t all release notes be this creative?]]></description>
			<content:encoded><![CDATA[I saw this in the <a href="http://archive.eclipse.org/eclipse/downloads/drops/R-3.3-200706251500/whatsnew/eclipse-news-part1.html">release notes</a> for Eclipse 3.3 a while ago, describing how filenames longer than 255 characters were now supported. Why can&#8217;t all release notes be this creative?
<br /><br />
<img src="http://jordan.liggitt.net/wp-content/uploads/2008/08/long-names1.png" alt="Long Filenames" title="Long Filenames" width="457" height="249" class="aligncenter size-full wp-image-246" />]]></content:encoded>
			<wfw:commentRss>http://jordan.liggitt.net/2008/08/06/sometimes-i-write-little-stories-in-my-folder-names/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secure GMail</title>
		<link>http://jordan.liggitt.net/2008/08/05/secure-gmail/</link>
		<comments>http://jordan.liggitt.net/2008/08/05/secure-gmail/#comments</comments>
		<pubDate>Tue, 05 Aug 2008 14:47:23 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://jordan.liggitt.net/?p=242</guid>
		<description><![CDATA[Google recently added a feature to GMail that requires any program interacting with it to use HTTPS, rather than HTTP (see Enabling the HTTPS setting).This is great for security purposes, but can cause programs that interact with GMail to stop working. Here&#8217;s how to get them working again: Windows GMail notifier Mac OS X notifier [...]]]></description>
			<content:encoded><![CDATA[Google recently added a feature to GMail that requires any program interacting with it to use HTTPS, rather than HTTP (see <a href="http://mail.google.com/support/bin/answer.py?answer=74765">Enabling the HTTPS setting</a>).This is great for security purposes, but can cause programs that interact with GMail to stop working. Here&#8217;s how to get them working again:
<br /><br />
<a href="http://mail.google.com/support/bin/answer.py?answer=9429">Windows GMail notifier</a>
<br /><br />
<a href="http://www.macosxhints.com/article.php?story=200707030100345">Mac OS X notifier</a>
<br /><br />
<a href="http://mail.google.com/support/bin/answer.py?answer=100210">GMail mobile application</a>]]></content:encoded>
			<wfw:commentRss>http://jordan.liggitt.net/2008/08/05/secure-gmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Very slow typing in cmd.exe</title>
		<link>http://jordan.liggitt.net/2008/05/14/very-slow-typing-in-cmdexe/</link>
		<comments>http://jordan.liggitt.net/2008/05/14/very-slow-typing-in-cmdexe/#comments</comments>
		<pubDate>Wed, 14 May 2008 16:36:40 +0000</pubDate>
		<dc:creator>Jordan</dc:creator>
				<category><![CDATA[Computers]]></category>

		<guid isPermaLink="false">http://jordan.liggitt.net/?p=212</guid>
		<description><![CDATA[I have a Lenovo ThinkPad T60 with Windows XP, service pack 2. I would occasionally notice a problem when running a cmd.exe command line, that typing would grind to a halt. Characters would take about a second each to appear in the console. I found that the cause was a service named &#8220;IPS Core Service&#8221;. [...]]]></description>
			<content:encoded><![CDATA[I have a Lenovo ThinkPad T60 with Windows XP, service pack 2. I would occasionally notice a problem when running a cmd.exe command line, that typing would grind to a halt. Characters would take about a second each to appear in the console. I found that the cause was a service named &#8220;IPS Core Service&#8221;. Disabling that made the cmd.exe window responsive again.]]></content:encoded>
			<wfw:commentRss>http://jordan.liggitt.net/2008/05/14/very-slow-typing-in-cmdexe/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

