<?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>John Callanta</title>
	<atom:link href="http://john.callanta.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://john.callanta.net</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 02:52:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>List IIS requests with appcmd</title>
		<link>http://john.callanta.net/list-iis-requests-with-appcmd/</link>
		<comments>http://john.callanta.net/list-iis-requests-with-appcmd/#comments</comments>
		<pubDate>Sat, 04 Feb 2012 02:48:32 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[SysOp]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[appcmd]]></category>
		<category><![CDATA[iis]]></category>
		<category><![CDATA[powershell]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://john.callanta.net/?p=28</guid>
		<description><![CDATA[This simple Powershell one liner can show you the current IIS requests with a 1 second delay. Launch a Powershell console and type the following: do { appcmd list requests; sleep 1 } while ($true) You should see a list of requests IIS is currently processing or nothing depending on how busy the web server <a href='http://john.callanta.net/list-iis-requests-with-appcmd/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>This simple Powershell one liner can show you the current IIS requests with a 1 second delay. Launch a Powershell console and type the following:</p>
<p><em>do { appcmd list requests; sleep 1 } while ($true)</em></p>
<p>You should see a list of requests IIS is currently processing or nothing depending on how busy the web server is. Just hit Ctrl+C to stop the loop.</p>
<p>I found this extremely useful when trying to figure out if a server is backed up or to see which types of requests users are attempted to hit.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://john.callanta.net/list-iis-requests-with-appcmd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My BASH prompt</title>
		<link>http://john.callanta.net/my-bash-prompt/</link>
		<comments>http://john.callanta.net/my-bash-prompt/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 20:50:54 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[SysOp]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://john.callanta.net/?p=23</guid>
		<description><![CDATA[Put a little kick in your bash prompt! Just put this as the last entry in either your .bashrc .profile in your local home directory or for global bash prompt: PS1=&#8221;(box:\u@\h) [dir: \w]  \n {\d &#8211; \T} (cmd: \#) &#62;&#62; &#8220; Looks like:]]></description>
			<content:encoded><![CDATA[<p>Put a little kick in your bash prompt!</p>
<p>Just put this as the last entry in either your .bashrc .profile in your local home directory or for global bash prompt:</p>
<p><em>PS1=&#8221;(box:\u@\h) [dir: \w]  \n {\d &#8211; \T} (cmd: \#) &gt;&gt; &#8220;</em></p>
<p>Looks like:</p>
<div id="attachment_24" class="wp-caption alignnone" style="width: 310px"><a href="http://john.callanta.net/wp-content/uploads/2012/01/bash.png"><img class="size-medium wp-image-24" title="bash" src="http://john.callanta.net/wp-content/uploads/2012/01/bash-300x57.png" alt="" width="300" height="57" /></a><p class="wp-caption-text">bash prompt</p></div>
]]></content:encoded>
			<wfw:commentRss>http://john.callanta.net/my-bash-prompt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use tr command to turn tab delimited file to CSV</title>
		<link>http://john.callanta.net/use-tr-command-to-turn-tab-delimited-file-to-csv/</link>
		<comments>http://john.callanta.net/use-tr-command-to-turn-tab-delimited-file-to-csv/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 20:09:14 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[SysOp]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[parse]]></category>
		<category><![CDATA[scripting]]></category>
		<category><![CDATA[tr]]></category>

		<guid isPermaLink="false">http://john.callanta.net/?p=16</guid>
		<description><![CDATA[Got a large (296MB) tab delimited text file you need to convert to CSV? Does it have more than 500k lines? Got *nix? Don&#8217;t like sed? Use tr (OSX has it too!)! tr -s &#8216;\t&#8217; &#8216;,&#8217; &#60; input.txt &#62; output.csv Done!]]></description>
			<content:encoded><![CDATA[<p>Got a large (296MB) tab delimited text file you need to convert to CSV? Does it have more than 500k lines? Got *nix? Don&#8217;t like sed? Use <a href="http://ss64.com/bash/tr.html" target="_blank">tr</a> (OSX has it too!)!</p>
<p><em>tr -s &#8216;\t&#8217; &#8216;,&#8217; &lt; input.txt &gt; output.csv</em></p>
<p>Done!</p>
]]></content:encoded>
			<wfw:commentRss>http://john.callanta.net/use-tr-command-to-turn-tab-delimited-file-to-csv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iOS 5.0.1 untethered jailbreak</title>
		<link>http://john.callanta.net/ios-5-0-1-untethered-jailbreak/</link>
		<comments>http://john.callanta.net/ios-5-0-1-untethered-jailbreak/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 17:33:32 +0000</pubDate>
		<dc:creator>jp</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[jailbreak]]></category>

		<guid isPermaLink="false">http://john.callanta.net/?p=7</guid>
		<description><![CDATA[For those who don&#8217;t want to be shackled by Apple&#8217;s closed platform, and have been waiting for an untethered jailbreak for the latest iOS (5.0.1), it&#8217;s finally here! The instructions are all here, and there are even video tutorials: http://www.redsn0w.us/2011/12/jailbreak-ios-501-untethered-on-iphone.html. I&#8217;ve successfully jailbroken my iPhone from an already jailbroken 5.0.0. Just make sure to backup existing <a href='http://john.callanta.net/ios-5-0-1-untethered-jailbreak/'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>For those who don&#8217;t want to be shackled by Apple&#8217;s closed platform, and have been waiting for an untethered jailbreak for the latest iOS (5.0.1), it&#8217;s finally here! The instructions are all here, and there are even video tutorials:<a title="http://www.redsn0w.us/2011/12/jailbreak-ios-501-untethered-on-iphone.html" href="http://www.redsn0w.us/2011/12/jailbreak-ios-501-untethered-on-iphone.html"> http://www.redsn0w.us/2011/12/jailbreak-ios-501-untethered-on-iphone.html</a>.</p>
<p>I&#8217;ve successfully jailbroken my iPhone from an already jailbroken 5.0.0. Just make sure to backup existing setup with apps, update to 5.0.1 from iTunes and use the new redsnow version (Redsn0w 0.9.10b1) after updating. Cydia gave me a few package signature errors after launching so just let it update and it should be good.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://john.callanta.net/ios-5-0-1-untethered-jailbreak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

