<?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"
	>

<channel>
	<title>FlipsideReality</title>
	<atom:link href="http://flipsidereality.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://flipsidereality.com/blog</link>
	<description>Once upon a time, in a land far far away...</description>
	<pubDate>Tue, 11 Nov 2008 19:20:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>NFS shares keep on dropping in leopard?</title>
		<link>http://flipsidereality.com/blog/mac-osx/nfs-shares-keep-on-dropping-in-leopard/</link>
		<comments>http://flipsidereality.com/blog/mac-osx/nfs-shares-keep-on-dropping-in-leopard/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 19:20:27 +0000</pubDate>
		<dc:creator>wole</dc:creator>
		
		<category><![CDATA[MAC OSX]]></category>

		<guid isPermaLink="false">http://flipsidereality.com/blog/mac-osx/nfs-shares-keep-on-dropping-in-leopard/</guid>
		<description><![CDATA[Had a problem recently with nfs shares disconnecting all the time, much to my annoyance.
Turns out that it&#8217;s due to the .DS_Store files on the server, so a quick 
find / -name [.]DS_Store -exec rm -f {} \;&#60;/pre&#62;
on the server sorted that out.

Now to stop leopard from making them, on the client machine run:
&#60;pre&#62;defaults write [...]]]></description>
		<wfw:commentRss>http://flipsidereality.com/blog/mac-osx/nfs-shares-keep-on-dropping-in-leopard/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Habey launched mini itx with 6 SATA, 2Gb ethernet</title>
		<link>http://flipsidereality.com/blog/hardware/habey-launched-mini-itx-with-6-sata-2gb-ethernet/</link>
		<comments>http://flipsidereality.com/blog/hardware/habey-launched-mini-itx-with-6-sata-2gb-ethernet/#comments</comments>
		<pubDate>Wed, 22 Oct 2008 18:59:36 +0000</pubDate>
		<dc:creator>wole</dc:creator>
		
		<category><![CDATA[hardware]]></category>

		<guid isPermaLink="false">http://flipsidereality.com/blog/hardware/habey-launched-mini-itx-with-6-sata-2gb-ethernet/</guid>
		<description><![CDATA[just came up ion linuxdevices link
]]></description>
		<wfw:commentRss>http://flipsidereality.com/blog/hardware/habey-launched-mini-itx-with-6-sata-2gb-ethernet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Remotely enable terminal servces on a win5x or 6x box</title>
		<link>http://flipsidereality.com/blog/work/remotely-enable-terminal-servces-on-a-win5x-or-6x-box/</link>
		<comments>http://flipsidereality.com/blog/work/remotely-enable-terminal-servces-on-a-win5x-or-6x-box/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 14:15:00 +0000</pubDate>
		<dc:creator>wole</dc:creator>
		
		<category><![CDATA[servers]]></category>

		<category><![CDATA[software]]></category>

		<category><![CDATA[windows]]></category>

		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://flipsidereality.com/blog/work/remotely-enable-terminal-servces-on-a-win5x-or-6x-box/</guid>
		<description><![CDATA[
connect remote registry


browse to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server.
change fDenyTSConnections to 0
reboot remote machine with shutdown -r -t 00 -m \\[computername]
connect: mstsc /{admin or console} /v:[computername]

]]></description>
		<wfw:commentRss>http://flipsidereality.com/blog/work/remotely-enable-terminal-servces-on-a-win5x-or-6x-box/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Postfix, postgrey, and targrey. How&#8217;s that for a boring title, yay!</title>
		<link>http://flipsidereality.com/blog/linux/postfix-postgrey-and-targrey-hows-that-for-a-boring-title-yay/</link>
		<comments>http://flipsidereality.com/blog/linux/postfix-postgrey-and-targrey-hows-that-for-a-boring-title-yay/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 16:16:22 +0000</pubDate>
		<dc:creator>wole</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[postfix]]></category>

		<category><![CDATA[postgrey]]></category>

		<category><![CDATA[targrey]]></category>

		<category><![CDATA[tarpit]]></category>

		<guid isPermaLink="false">http://flipsidereality.com/blog/linux/postfix-postgrey-and-targrey-hows-that-for-a-boring-title-yay/</guid>
		<description><![CDATA[YupYup,
installed postgrey &#38; targrey today:
wget http://postgrey.schweikert.ch/pub/postgrey-1.32.tar.gz
tar xvfz postgrey-1.32.tar.gz
cd postgrey-1.32
wget http://k2net.hakuba.jp/pub/targrey-0.31-postgrey-1.32.patch
cp ./postgrey postgrey.orig
patch &#60; targrey-0.31-postgrey-1.32.patch
cp ./postgrey /usr/sbin/
cp ./postgrey_whitelist_clients /etc/postfix
cp ./postgrey_whitelist_recipients /etc/postfix
groupadd mail
useradd -g mail -d /home/postgrey -m -s /bin/false postgrey
mkdir /var/run/postgrey/
chown -R postgrey:mail /var/run/postgrey/
mkdir /var/spool/postfix/postgrey
chown postgrey:mail /var/spool/postfix/postgrey -R
Now create an init file:
vi /etc/init.d/postgrey
and put this in it:
#!/bin/bash
#
# Init file for postgrey server daemon
#
# chkconfig: 2345 79 [...]]]></description>
		<wfw:commentRss>http://flipsidereality.com/blog/linux/postfix-postgrey-and-targrey-hows-that-for-a-boring-title-yay/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Spamassasin sa-learn automatic from exchange mailbox</title>
		<link>http://flipsidereality.com/blog/scripting/spamassasin-sa-learn-automatic-from-exchange-mailbox/</link>
		<comments>http://flipsidereality.com/blog/scripting/spamassasin-sa-learn-automatic-from-exchange-mailbox/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 12:02:52 +0000</pubDate>
		<dc:creator>wole</dc:creator>
		
		<category><![CDATA[perl]]></category>

		<category><![CDATA[scripting]]></category>

		<category><![CDATA[spam]]></category>

		<category><![CDATA[spamassasin]]></category>

		<guid isPermaLink="false">http://flipsidereality.com/blog/scripting/spamassasin-sa-learn-automatic-from-exchange-mailbox/</guid>
		<description><![CDATA[I needed a script to auto bayes learn spam, there were a couple out there, but all old, and none of them did imaps, which is what exchange needs. So herre you go:

#!/usr/bin/perl
#
# 20081006
# from flipsidereality.com
#
# script to pull spam and ham from exchange by imaps, push it through sa-learn, and then delete it from [...]]]></description>
		<wfw:commentRss>http://flipsidereality.com/blog/scripting/spamassasin-sa-learn-automatic-from-exchange-mailbox/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ffmpeg cheat sheet</title>
		<link>http://flipsidereality.com/blog/play/ffmpeg-cheat-sheet/</link>
		<comments>http://flipsidereality.com/blog/play/ffmpeg-cheat-sheet/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 19:56:10 +0000</pubDate>
		<dc:creator>wole</dc:creator>
		
		<category><![CDATA[*nix]]></category>

		<category><![CDATA[play]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://flipsidereality.com/blog/play/ffmpeg-cheat-sheet/</guid>
		<description><![CDATA[ffmpeg is a multiplatform, open-source library for video and audio files. I have compiled 19 useful and amazing commands covering almost all needs: video conversion, sound extraction, encoding file for iPod or PSP, and more.
Getting infos from a video file
ffmpeg -i video.avi
Turn X images to a video sequence
ffmpeg -f image2 -i image%d.jpg video.mpg
This command will [...]]]></description>
		<wfw:commentRss>http://flipsidereality.com/blog/play/ffmpeg-cheat-sheet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Aspell PSPELL win32 fastcgi problems</title>
		<link>http://flipsidereality.com/blog/work/aspell-pspell-win32-fastcgi-problems/</link>
		<comments>http://flipsidereality.com/blog/work/aspell-pspell-win32-fastcgi-problems/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 17:03:38 +0000</pubDate>
		<dc:creator>wole</dc:creator>
		
		<category><![CDATA[php]]></category>

		<category><![CDATA[windows]]></category>

		<category><![CDATA[work]]></category>

		<guid isPermaLink="false">http://flipsidereality.com/blog/work/aspell-pspell-win32-fastcgi-problems/</guid>
		<description><![CDATA[So i had fun with aspell on a win2003 IIS PHP eAccelerator fastCGI PSPELL Aspell setup today.
I was getting a 500 error from fastcgi. phpinfo() showed that pspell was loaded correctly. After pushing a test script through php.exe, and getting an error telling me that a file in the aspell data folder was in the [...]]]></description>
		<wfw:commentRss>http://flipsidereality.com/blog/work/aspell-pspell-win32-fastcgi-problems/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Screen and the delete key - .screenrc</title>
		<link>http://flipsidereality.com/blog/nix/screen-and-the-delete-key-screenrc/</link>
		<comments>http://flipsidereality.com/blog/nix/screen-and-the-delete-key-screenrc/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 16:50:09 +0000</pubDate>
		<dc:creator>wole</dc:creator>
		
		<category><![CDATA[*nix]]></category>

		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://flipsidereality.com/blog/nix/screen-and-the-delete-key-screenrc/</guid>
		<description><![CDATA[After a bit of poking around the interwebs i came across this little gem for getting screen to behave a bit better with the delete key.
Put this in your ~/.screenrc
termcapinfo xterm-color kD=\E[3~
the best thing is that you don&#8217;t even have to restart the screen to get it, just reattach.
]]></description>
		<wfw:commentRss>http://flipsidereality.com/blog/nix/screen-and-the-delete-key-screenrc/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Recursive unrar unzip perl script</title>
		<link>http://flipsidereality.com/blog/scripting/recursive-unrar-unzip-perl-script/</link>
		<comments>http://flipsidereality.com/blog/scripting/recursive-unrar-unzip-perl-script/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 21:46:14 +0000</pubDate>
		<dc:creator>wole</dc:creator>
		
		<category><![CDATA[perl]]></category>

		<category><![CDATA[scripting]]></category>

		<guid isPermaLink="false">http://flipsidereality.com/blog/scripting/recursive-unrar-unzip-perl-script/</guid>
		<description><![CDATA[It&#8217;s a bit hacky, but it works. 

#!/usr/bin/perl
use File::Find;
use File::Spec;

if (@ARGV[0] eq '')
{
	print "useage: $0 foldername\n";
}
else
{
	print "Exctacting for folder ". $ARGV[0] ."\n";
	find ( \&#38;extract_dir , @ARGV[0]);
	print (++$n,": $_\n") foreach (@elist) ;
}

exit;

sub extract_dir
{
next if -d $_;
next if /^\./;
my $ff = $File::Find::name;

	# deal with RAR files
	unrar($_,$ff);
	#deal with ZIP files
	if ($ff =~ /\.zip$/i )
	{
		print "unzip $ff";
		system ('unzip','-qq', "$_");
		if [...]]]></description>
		<wfw:commentRss>http://flipsidereality.com/blog/scripting/recursive-unrar-unzip-perl-script/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Automate a Remote Login Using SSH-Agent</title>
		<link>http://flipsidereality.com/blog/nix/automate-a-remote-login-using-ssh-agent/</link>
		<comments>http://flipsidereality.com/blog/nix/automate-a-remote-login-using-ssh-agent/#comments</comments>
		<pubDate>Thu, 31 Jul 2008 20:06:05 +0000</pubDate>
		<dc:creator>wole</dc:creator>
		
		<category><![CDATA[*nix]]></category>

		<category><![CDATA[MAC OSX]]></category>

		<category><![CDATA[linux]]></category>

		<category><![CDATA[ssh]]></category>

		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://flipsidereality.com/blog/nix/automate-a-remote-login-using-ssh-agent/</guid>
		<description><![CDATA[When it comes to remote logins, SSH is a wonderful tool. Not only is it
secure, it supports public/private key logins. Depending on public and
private keys mean even if someone gets your password, without your
private key it won&#8217;t do them any good (and vice versa).
see full article here
]]></description>
		<wfw:commentRss>http://flipsidereality.com/blog/nix/automate-a-remote-login-using-ssh-agent/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
