<?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>Geekologist - Your Technology Forecast! &#187; iPocalypse</title>
	<atom:link href="http://geekologist.net/category/ipocalypse/feed/" rel="self" type="application/rss+xml" />
	<link>http://geekologist.net</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Fri, 11 Sep 2009 02:26:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Sending Notifications from mIRC to Growl</title>
		<link>http://geekologist.net/2009/04/sending-notifications-from-mirc-to-growl/</link>
		<comments>http://geekologist.net/2009/04/sending-notifications-from-mirc-to-growl/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 04:38:43 +0000</pubDate>
		<dc:creator>whoknew</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[iPocalypse]]></category>
		<category><![CDATA[geekologist]]></category>
		<category><![CDATA[geekology]]></category>
		<category><![CDATA[Growl Notifications]]></category>
		<category><![CDATA[GrowlNotify]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[mIRC]]></category>
		<category><![CDATA[mIRC on mac]]></category>
		<category><![CDATA[mIRC scripting]]></category>
		<category><![CDATA[mIRC to Growl]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Send Notifications]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://geekologist.net/?p=893</guid>
		<description><![CDATA[
First please watch the video above as it will help you better understand the tools required to get this job done correctly.
I have always had the issue of Mac OS X not having the best IRC clients. So I decided to start using mIRC within a VM (Virtual Machine) Running windows XP. However the problem [...]


Related posts:<ol><li><a href='http://geekologist.net/2009/01/dock-spaces-review/' rel='bookmark' title='Permanent Link: Dock Spaces Review'>Dock Spaces Review</a></li>
<li><a href='http://geekologist.net/2009/07/att-mms-and-iphone-os-3-1/' rel='bookmark' title='Permanent Link: AT&#038;T/MMS and iPhone OS 3.1'>AT&#038;T/MMS and iPhone OS 3.1</a></li>
<li><a href='http://geekologist.net/2009/03/ubuntu-alpha-brings-notifications-to-the-mix/' rel='bookmark' title='Permanent Link: Ubuntu Alpha brings notifications to the mix&#8230;'>Ubuntu Alpha brings notifications to the mix&#8230;</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><object width="560" height="340" data="http://www.youtube.com/v/4svAB3uDz3Y&amp;hl=en&amp;fs=1&amp;rel=0&amp;hd=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/4svAB3uDz3Y&amp;hl=en&amp;fs=1&amp;rel=0&amp;hd=1" /><param name="allowfullscreen" value="true" /></object></p>
<p>First please watch the video above as it will help you better understand the tools required to get this job done correctly.</p>
<p>I have always had the issue of Mac OS X not having the best IRC clients. So I decided to start using mIRC within a VM (Virtual Machine) Running windows XP. However the problem I ran into was not getting the fancy growl notifications when I received a PM or Highlight. To solve this issue we at Geekologist have found a way to get mIRC to send notifications to Growl via SSH.</p>
<p><strong>Requirements :</strong></p>
<ul>
<li>plink.exe &#8211; It can be download from putty&#8217;s download page. (Just google Putty)</li>
<li>growlnotify &#8211; This is included in the software bundle when you download Growl</li>
<li>mIRC (Obvious)</li>
<li>SSH enabled on the Mac &#8211; (Follow the instructions in the video to do this)</li>
<li>Growl installed and running on the mac</li>
</ul>
<p><strong>mIRC Scripts you will need :</strong></p>
<blockquote><p><strong>For Highlights :</strong></p>
<p>On $*:Text:*:#: {<br />
if ($highlight($1-)) {<br />
if (($0 == 1) &amp;&amp; ($1 isnum)) return<br />
else echo $color(highlight) -ts -Highlight- $nick highlighted you in $chan $+ . ( $+ $replace($1-,$ifmatch, $+ $ifmatch $+ ) $+ )<br />
/run -hide plink.exe -ssh MACIP -l YOURUSERNAME -pw YOURPASSWORD /Users/YOURUSERNAME/growlnotify &#8211;image &#8216;/users/YOURUSERNAME/images.png&#8217; -t &#8216; Highlight from $nick &#8216; -m &#8216; $chan $+ : $replace($1-,$ifmatch, $+ $ifmatch $+ ) $+ &#8216; -n &#8216; mIRC &#8216;<br />
}</p>
<p><strong>For PM&#8217;s :</strong><br />
On $*:Text:*:?: {<br />
if ($nick == $active) { return }<br />
/run -hide plink.exe -ssh MACIP -l YOURUSERNAME -pw YOURPASSWORD /Users/YOURUSERNAME/growlnotify &#8211;image &#8216;/Users/YOURUSERNAME/images.png&#8217; -t &#8216;PM from $nick &#8216; -m &#8216; $1- &#8216;<br />
}</p></blockquote>
<p>Please replace YOURUSERNAME with your mac username, YOURPASSWORD with your mac password and MACIP with the IP address of the mac running growl.</p>
<p>If you have any questions or comments please leave them below.</p>


<p>Related posts:<ol><li><a href='http://geekologist.net/2009/01/dock-spaces-review/' rel='bookmark' title='Permanent Link: Dock Spaces Review'>Dock Spaces Review</a></li>
<li><a href='http://geekologist.net/2009/07/att-mms-and-iphone-os-3-1/' rel='bookmark' title='Permanent Link: AT&#038;T/MMS and iPhone OS 3.1'>AT&#038;T/MMS and iPhone OS 3.1</a></li>
<li><a href='http://geekologist.net/2009/03/ubuntu-alpha-brings-notifications-to-the-mix/' rel='bookmark' title='Permanent Link: Ubuntu Alpha brings notifications to the mix&#8230;'>Ubuntu Alpha brings notifications to the mix&#8230;</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://geekologist.net/2009/04/sending-notifications-from-mirc-to-growl/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Interview with Eric and Simon</title>
		<link>http://geekologist.net/2008/08/interview-with-eric-and-simon/</link>
		<comments>http://geekologist.net/2008/08/interview-with-eric-and-simon/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 05:31:28 +0000</pubDate>
		<dc:creator>whoknew</dc:creator>
				<category><![CDATA[iPocalypse]]></category>
		<category><![CDATA[bluephoenix]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[interview]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://bluephoneix.geekologist.net/?p=53</guid>
		<description><![CDATA[So today I got a great opprotunity to interview some awesome people. Eric and Simon are two out of three executives for irc.ipocalypse.net. Ipocalypse is a growing chat community that strives on a great user experience. If you are interested in learning more just head over to http://ipocalypse.net Check out the video of the interview.
 [...]


Related posts:<ol><li><a href='http://geekologist.net/2008/12/windows-7-whats-so-special/' rel='bookmark' title='Permanent Link: Windows 7. What&#8217;s so special?'>Windows 7. What&#8217;s so special?</a></li>
<li><a href='http://geekologist.net/2008/07/youtube-most-used-mac-apps/' rel='bookmark' title='Permanent Link: Youtube &#8212; Most used Mac Apps!'>Youtube &#8212; Most used Mac Apps!</a></li>
<li><a href='http://geekologist.net/2008/08/skyfire-the-future-in-mobile-web-browsing/' rel='bookmark' title='Permanent Link: Skyfire! The future in mobile web browsing'>Skyfire! The future in mobile web browsing</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>So today I got a great opprotunity to interview some awesome people. Eric and Simon are two out of three executives for irc.ipocalypse.net. Ipocalypse is a growing chat community that strives on a great user experience. If you are interested in learning more just head over to <a href="http://ipocalypse.net">http://ipocalypse.net</a> Check out the video of the interview.</p>
<p><embed src="http://www.metacafe.com/fplayer/1628777/bluephoenix_tv_interview_with_eric_and_simon_from_ipoc.swf" width="400" height="345" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"> </embed><br /><font size = 1></font></p>


<p>Related posts:<ol><li><a href='http://geekologist.net/2008/12/windows-7-whats-so-special/' rel='bookmark' title='Permanent Link: Windows 7. What&#8217;s so special?'>Windows 7. What&#8217;s so special?</a></li>
<li><a href='http://geekologist.net/2008/07/youtube-most-used-mac-apps/' rel='bookmark' title='Permanent Link: Youtube &#8212; Most used Mac Apps!'>Youtube &#8212; Most used Mac Apps!</a></li>
<li><a href='http://geekologist.net/2008/08/skyfire-the-future-in-mobile-web-browsing/' rel='bookmark' title='Permanent Link: Skyfire! The future in mobile web browsing'>Skyfire! The future in mobile web browsing</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://geekologist.net/2008/08/interview-with-eric-and-simon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
