<?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>AJollyLife</title>
	<atom:link href="http://www.ajollylife.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.ajollylife.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 08 Jun 2009 17:36:21 +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>Defcon 17 CTF Qualifier Results (2009)</title>
		<link>http://www.ajollylife.com/?p=17</link>
		<comments>http://www.ajollylife.com/?p=17#comments</comments>
		<pubDate>Mon, 08 Jun 2009 17:36:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ajollylife.com/?p=17</guid>
		<description><![CDATA[Final results for the 2009 (Defcon 17) CTF Qualifier is as follows:
1. sk3wlm4st3r (5400)
2. VedaGodz (5000)
3. Sexy Pwndas (5000)
4. PLUS (4500)
5. Shellphish (4500)
6. Song of Freedom (4400)
7. lollerskaterz dropping from roflcopters (4300)
8. Underminers (4300)
9. Routards (4200)
alt. WOWHACKER (3800)
sk3wlm4st3r are rumored to be last years CTF champion, School of Root.  This means that WOWHACKER would [...]]]></description>
			<content:encoded><![CDATA[<p>Final results for the 2009 (Defcon 17) CTF Qualifier is as follows:</p>
<p>1. sk3wlm4st3r (5400)<br />
2. VedaGodz (5000)<br />
3. Sexy Pwndas (5000)<br />
4. PLUS (4500)<br />
5. Shellphish (4500)<br />
6. Song of Freedom (4400)<br />
7. lollerskaterz dropping from roflcopters (4300)<br />
8. Underminers (4300)<br />
9. Routards (4200)<br />
alt. WOWHACKER (3800)</p>
<p>sk3wlm4st3r are rumored to be last years CTF champion, School of Root.  This means that WOWHACKER would be team 10 at CTF.</p>
<p>528 &#8220;teams&#8221; signed up for quals, and 225 &#8220;teams&#8221; submitted answers.<br />
Congratulations to everyone, and good luck at Defcon!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ajollylife.com/?feed=rss2&amp;p=17</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Batch Script to reboot cable modem</title>
		<link>http://www.ajollylife.com/?p=15</link>
		<comments>http://www.ajollylife.com/?p=15#comments</comments>
		<pubDate>Thu, 12 Feb 2009 22:30:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ajollylife.com/?p=15</guid>
		<description><![CDATA[My Comcast cable modem keeps dropping internet connectivity, so I hacked together a script to monitor my internet connection and reboot the modem when needed.
Hopefully this will solve the problem until Comcast can replace the modem or fix their problems.

REM This script checks to see if I am online, if not, it reboots the cable [...]]]></description>
			<content:encoded><![CDATA[<p>My Comcast cable modem keeps dropping internet connectivity, so I hacked together a script to monitor my internet connection and reboot the modem when needed.<br />
Hopefully this will solve the problem until Comcast can replace the modem or fix their problems.</p>
<p><code><br />
REM This script checks to see if I am online, if not, it reboots the cable modem. If it cannot reach the cable modem, it resets the router and then the cable modem.<br />
REM if error code is 0 it pinged successfully.<br />
REM if error code is 1, then there was an error.</p>
<p>:Start<br />
echo at Start<br />
sleep 30</p>
<p>ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 1 goto :ping2<br />
goto :Start</p>
<p>:ping2<br />
sleep 2<br />
ping -n 1 www.yahoo.com<br />
if %ERRORLEVEL%== 1 goto :ping3<br />
goto :Start</p>
<p>:ping3<br />
ping -n 1 www.myspace.com<br />
if %ERRORLEVEL%== 1 goto :ping4<br />
goto :Start</p>
<p>:ping4<br />
ping -n 1 www.live.com<br />
if %ERRORLEVEL%== 1 goto :logerror<br />
goto :Start</p>
<p>:logerror<br />
echo %date% %time% >> %COMPUTERNAME%-internetdown.txt</p>
<p>:recovery<br />
ping -n 1 192.168.100.1<br />
if %ERRORLEVEL%== 1 goto :resetrouter<br />
goto :rebootmodem</p>
<p>:resetrouter<br />
plink -i c:\temp\wheatonrouterkey.ppk -batch -ssh -l root 10.5.20.1<br />
reboot</p>
<p>sleep 90<br />
goto :recovery2</p>
<p>:recovery2<br />
ping -n 1 192.168.100.1<br />
if %ERRORLEVEL%== 1 goto :recovery2</p>
<p>ping -n 1 192.168.100.1<br />
if %ERRORLEVEL%== 1 goto :recovery2</p>
<p>ping -n 1 192.168.100.1<br />
if %ERRORLEVEL%== 1 goto :recovery2</p>
<p>ping -n 1 192.168.100.1<br />
if %ERRORLEVEL%== 1 goto :recovery2</p>
<p>:rebootmodem<br />
sleep 20<br />
wget -g -w 1 -t 0 --retry-connrefused http://192.168.100.1/configdata.html --post-data="FREQ_PLAN=NORTH_AMERICA&#038;US_CHANNEL_ID=6&#038;FREQUENCY_MHZ=555000000&#038;DHCP_SERVER=YES&#038;BUTTON_INPUT=Restart+Cable+Modem"<br />
sleep 60<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 1 echo %date% %time% still not online >> %COMPUTERNAME%-internetdown.txt<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 0 echo %date% %time% phew online >> %COMPUTERNAME%-internetdown.txt<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 0 goto :start<br />
sleep 60<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 1 echo %date% %time% still not online >> %COMPUTERNAME%-internetdown.txt<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 0 echo %date% %time% phew online >> %COMPUTERNAME%-internetdown.txt<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 0 goto :start<br />
sleep 60<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 1 echo %date% %time% still not online >> %COMPUTERNAME%-internetdown.txt<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 0 echo %date% %time% phew online >> %COMPUTERNAME%-internetdown.txt<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 0 goto :start<br />
sleep 60<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 1 echo %date% %time% still not online >> %COMPUTERNAME%-internetdown.txt<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 0 echo %date% %time% phew online >> %COMPUTERNAME%-internetdown.txt<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 0 goto :start<br />
sleep 60<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 1 echo %date% %time% still not online >> %COMPUTERNAME%-internetdown.txt<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 0 echo %date% %time% phew online >> %COMPUTERNAME%-internetdown.txt<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 0 goto :start<br />
sleep 60<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 1 echo %date% %time% still not online >> %COMPUTERNAME%-internetdown.txt<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 0 echo %date% %time% phew online >> %COMPUTERNAME%-internetdown.txt<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 0 goto :start<br />
sleep 60<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 1 echo %date% %time% still not online >> %COMPUTERNAME%-internetdown.txt<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 0 echo %date% %time% phew online >> %COMPUTERNAME%-internetdown.txt<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 0 goto :start<br />
sleep 60<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 1 echo %date% %time% still not online >> %COMPUTERNAME%-internetdown.txt<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 0 echo %date% %time% phew online >> %COMPUTERNAME%-internetdown.txt<br />
ping -n 1 www.google.com<br />
if %ERRORLEVEL%== 0 goto :start</p>
<p>goto :Start<br />
</code></p>
<p>Here&#8217;s how this script works:</p>
<p>1) Ping a series of websites to check if we have internet access.  This way if one particular website is down, or is dropping pings, we still can connect.</p>
<p>2) If we still do not have internet access, log the date/time to a logfile.</p>
<p>3) Check if we can access the cable modem.</p>
<p>4) If we can not, reboot my router.  This is done by sshing into my Openwrt router and rebooting it.</p>
<p>5) Otherwise reboot the cable modem.<br />
This is done by using wget to post to a form.</p>
<p>6) Keep checking to see if we are online, write that information to a log file, then restart.</p>
<p>It&#8217;s a quick hack of a script, but it demonstrates how to use a batch file to see if a website is online.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ajollylife.com/?feed=rss2&amp;p=15</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Batch script to delete all empty subdirectories.</title>
		<link>http://www.ajollylife.com/?p=14</link>
		<comments>http://www.ajollylife.com/?p=14#comments</comments>
		<pubDate>Thu, 15 May 2008 20:16:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bat]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://www.ajollylife.com/?p=14</guid>
		<description><![CDATA[I needed a script to delete all empty subdirectories, but the examples I found failed with directories with spaces in them, or would not let me pass the directory name to the script.
This bat file will do the trick.

@echo off
for /f "delims=" %%i in ('dir "%~f1" /ad /b /s ^&#124; sort /R') do rd "%%i" [...]]]></description>
			<content:encoded><![CDATA[<p>I needed a script to delete all empty subdirectories, but the examples I found failed with directories with spaces in them, or would not let me pass the directory name to the script.</p>
<p>This bat file will do the trick.</p>
<p><code><br />
@echo off<br />
for /f "delims=" %%i in ('dir "%~f1" /ad /b /s ^| sort /R') do rd "%%i"  1>NUL 2>&#038;1<br />
</code></p>
<p>The batch file will list all directories, in reverse order, and then attempt to delete each one.<br />
rd will only delete empty directories.<br />
The delims parameter stops spaces from being used as a delimiter.<br />
%~f1 lets you pass a directory name to the script.</p>
<p>We use IO redirection at the end of the script to prevent warnings from being displayed on screen.<br />
<code> 1>NUL 2>&#038;1</code><br />
This code says to redirect standard output (handle 1) to NUL, and also take sderr (handle 2) and redirect that to handle 1.</p>
<p>Thanks to <a href="http://blogs.msdn.com/oldnewthing/archive/2008/04/17/8399914.aspx">Raymond Chen</a> for the original code.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ajollylife.com/?feed=rss2&amp;p=14</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Sguil 0.7.0 released</title>
		<link>http://www.ajollylife.com/?p=13</link>
		<comments>http://www.ajollylife.com/?p=13#comments</comments>
		<pubDate>Wed, 26 Mar 2008 15:58:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ajollylife.com/index.php/2008/03/26/sguil-070-released/</guid>
		<description><![CDATA[As a former MSSP (managed security service provider) security analyst, I&#8217;m always on the lookout for tools to better help me watch and analyze network traffic.  Sguil provides for an analyst centric toolkit for monitoring network traffic, and has proved to be very useful in the past.
Version 0.7.0 was just released, and I encourage [...]]]></description>
			<content:encoded><![CDATA[<p>As a former MSSP (managed security service provider) security analyst, I&#8217;m always on the lookout for tools to better help me watch and analyze network traffic.  Sguil provides for an analyst centric toolkit for monitoring network traffic, and has proved to be very useful in the past.</p>
<p>Version 0.7.0 was just released, and I encourage people to check it out.</p>
<p><a href="http://sguil.sourceforge.net/news.html">Sguil 0.7.0</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ajollylife.com/?feed=rss2&amp;p=13</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Digital Books, the Easy Way</title>
		<link>http://www.ajollylife.com/?p=9</link>
		<comments>http://www.ajollylife.com/?p=9#comments</comments>
		<pubDate>Thu, 09 Mar 2006 18:53:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[College]]></category>

		<guid isPermaLink="false">http://www.ajollylife.com/?p=9</guid>
		<description><![CDATA[Especially since I bought my Tablet PC, I’ve always wanted digital copies of my books.  Unfortunately, even with a decent scanner,  scanning books takes an extremely long time.  However, with modern day digital cameras, we can vastly reduce scan time by using a camera to photograph our book.]]></description>
			<content:encoded><![CDATA[<p>Especially since I bought my <a href="http://www.rojakpot.com/showarticle.aspx?artno=102&#038;pgno=0">Tablet PC</a>, I’ve always wanted digital copies of my books.  Unfortunately, even with a decent scanner,  scanning books takes an extremely long time.  However, with modern day digital cameras, we can vastly reduce scan time by using a camera to photograph our book.</p>
<p><span id="more-9"></span></p>
<p>This guide details my personal workflow for e-book creation.  I use a combination of <a href="http://www.breezesys.com/DSLRRemotePro/index.htm">DSLR Remote</a>, and <a href="http://www.abbyy.com/finereader_ocr/">Abbyy FineReader</a>.</p>
<p><a href="http://www.breezesys.com/DSLRRemotePro/index.htm">DSLR Remote</a> is available from <a href="http://www.breezesys.com/">BreezeSystems</a>, for Canon EOS series digital cameras.  It is a remote control and capture program.  What this lets me do is to connect my camera directly to my computer through a USB cable, and then control the camera through the computer.  Using DSLR Remote Pro has three key advantages:</p>
<li>It lets us easily take test photos and optimize our setup.
</li>
<li>We eliminate the camera shake that would be there if we took the photos manually.
</li>
<li>It dramatically cuts down on photo transfer time, it can save the photos as fast as we can take them, rather than having to save to a memory card and then transfer to the computer.
</li>
<p><strong>Camera Setup: Getting the best images possible.</strong><br />
	Camera Positioning and Placement<br />
In order to be able to easily OCR <em>(Optical Character Recognition)</em> our books, we need to get the best possible photos possible.  For this, a tripod is absolutely essential.</p>
<p>I start by verifying my camera has been set to its optimal settings.  I set it to</p>
<ul>
Aperture Priority<br />
	Computer Connection<br />
	JPEG Fine<br />
	Sharpness, Contrast – Maximum</ul>
<p>Check your owners manual for the camera if you have problems.</p>
<p>Next, attach the camera to its tripod, and aim the camera downwards.  Connect the USB cable to the camera, and then to the computer.  Turn the camera on.</p>
<p>Run DSLR Remote Pro, and connect to the camera.<br />
(Camera, Connect to Camera)<br />
If you have problems, make sure the cables are securely attached, and try again.</p>
<p><wpg2>EBooks/ScreenShot011.jpg</wpg2><br />
<em>(Click on Screen Shots to view full size)</em></p>
<p>Take the book to be scanned and position it underneath the camera.  You want it to capture the entire book in one photo, while not having too much empty space.</p>
<p>Push F9 to take a preview shot of the book.  If the book does not fill most of the photo, adjust the camera zoom, book, and tripod, and take another preview shot.<br />
<wpg2>EBooks/0002.jpg</wpg2></p>
<p>Repeat as needed until the book is properly positioned.  Don’t worry if the image quality isn’t great, we will fix that next.</p>
<p>Once we have the book properly positioned, take masking tape and use it to “outline” the book.  By placing tape around the book, we know where the proper position for the book is.  This will save us time later if we accidentally move the book.</p>
<p>To optimize the photo’s being taken, we vary our aperture, ISO rating and shutter speed.<br />
In DSLR Remote, set the AV (aperture) to 6.0 to start.  A higher aperture number means more of the photo is in focus, but the shutter speed is then slower.<br />
Let the shutter speed be automatically controlled.<br />
A lower ISO rating is better, but this setting depends on how much light is available.  Try setting this to 400 to start.  The lower the ISO number, the less grainy the photo is, but the longer the shutter has to be open.</p>
<p>The better the room is lighted, the easier it will be to take a high quality photo.</p>
<p>Press F9 to take a preview shot.</p>
<p><wpg2id>147</wpg2id></p>
<p>Examine the photo.  If it isn’t sharp enough, increase the aperture.  If it is too grainy, lower the ISO.  We are trying to find a balance between a high quality photo, and a high shutter speed.  If the shutter speed is low, each photo will take longer, slowing down our process.</p>
<p>Now we are ready to start taking the photos.  The easiest way is to sit on the floor next to the book, and set the keyboard on the floor next to you.  Press F8 to take a photo, turn the page and press F8 again. <em> (This will go faster and be easier if you have another person helping to hold the pages down). </em> Keep on repeating the sequence until you have finished photographing the entire book.  You should be able to capture about 15-20 photos in a minute, or 30-40 pages in a minute.</p>
<p>When you have finished photographing the book, pack up your camera, and recharge the batteries.</p>
<p><strong>OCR Time: Converting images into text.  </strong><br />
Run ABBYY FineReader.<br />
We need to set our options to enhance character recognition.<br />
Go to Tools, Options (or press Control + Shift + O)<br />
Go to the Scan/Open tab.<br />
Make sure the following options are checked:</p>
<ul>
	Straighten text lines<br />
	Detect image orientation<br />
	Split dual pages</ul>
<p>Go to the read tab.  If the recognition language is not English; Numbers, press the Edit Languages button.  Check English and Numbers.<br />
Press OK.  <em>(The languages chosen will depend on the book being scanned &#8211; for example, if you are scanning a Chemistry book, you would want the Chemical Formulas option to be selected)</em></p>
<p>Press the Open Image button.<br />
Browse to the directory where you saved the photos <em>(probably C:\DSlrRemote)</em><br />
Select all the images by pressing Control+A<br />
Press Open.</p>
<p>Abbyy FineReader will now import the photos.  This will take a while, feel free to take a break.<br />
<wpg2>EBooks/ScreenShot001.jpg</wpg2></p>
<p><strong>Warning: The recognition process takes a long time.  It is ideal to start this step before you go to bed, and let it run overnight.  </strong><br />
When it is done, go to Process, Start Background Recognition.</p>
<p><wpg2>EBooks/ScreenShot004.jpg</wpg2></p>
<p>Now, Press Control+Shift+R to tell it to recognize all photos.  (This is different  from starting Background Recognition)</p>
<p>Take another break.  This will take a very long time, depending on how many photos you have.</p>
<p><wpg2>EBooks/ScreenShot005.jpg</wpg2></p>
<p>Press Check Spelling to begin the Proof Reading Process.<br />
This is the most labor intensive part of the  process.  Depending on the book scanned, and the quality of the images, this step could be very quick or excruciatingly slow.  If the book has a large amount of specialized terms, it will take longer.</p>
<p><wpg2>EBooks/ScreenShot010.jpg</wpg2></p>
<p><strong>Save Time:</strong></p>
<p>Press the Save button.<br />
Pick which format to save to &#8211; I prefer LIT or PDF, depending on the book.<br />
LIT is Microsoft Readers format, I prefer using it for fiction books, or anything I will be reading for enjoyment.  It works well on my Pocket Pc for on the go reading.<br />
I prefer PDF for textbooks, or refrence material.  If I&#8217;m going to mark it up and annotate it later, PDF is my choice.</p>
<p>We&#8217;re Done!  Enjoy your new e-book.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ajollylife.com/?feed=rss2&amp;p=9</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Polarity</title>
		<link>http://www.ajollylife.com/?p=7</link>
		<comments>http://www.ajollylife.com/?p=7#comments</comments>
		<pubDate>Fri, 13 Jan 2006 01:47:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ajollylife.com/?p=5</guid>
		<description><![CDATA[Just recived this sweet board game Polarity&#8230;and managed to make a double leaner  
108
]]></description>
			<content:encoded><![CDATA[<p>Just recived this sweet board game Polarity&#8230;and managed to make a double leaner <img src='http://www.ajollylife.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><wpg2id>108</wpg2id></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ajollylife.com/?feed=rss2&amp;p=7</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>On Paranoia</title>
		<link>http://www.ajollylife.com/?p=6</link>
		<comments>http://www.ajollylife.com/?p=6#comments</comments>
		<pubDate>Thu, 12 Jan 2006 21:46:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ajollylife.com/?p=4</guid>
		<description><![CDATA[When browsing slashdot, I came across an interesting comment:
Bill Gates from Triumph of the nerds:
        Success is a menace &#8212; it fools smart people into thinking they can&#8217;t lose.
That is absolutely the perfect quote to describe why Microsoft is the unbelivably paranoid company that it is. Bill always [...]]]></description>
			<content:encoded><![CDATA[<p>When browsing slashdot, I came across an interesting comment:</p>
<blockquote><p>Bill Gates from Triumph of the nerds:</p>
<p>        Success is a menace &#8212; it fools smart people into thinking they can&#8217;t lose.</p>
<p>That is absolutely the perfect quote to describe why Microsoft is the unbelivably paranoid company that it is. Bill always thinks Microsoft might lose and does any and everything (legal or not) to make sure that they don&#8217;t.</p></blockquote>
<p>I think this summarizes an interesting viewpoint on paranoia; namely that paranoia in and of itself doesn&#8217;t have to be a bad thing.  It&#8217;s an extended version of what one might deem a disaster recovery plan, but an ongoing continous plan.</p>
<p>Paranoia as a mindset especially in the InfoSecurity world can be  a very good thing, it&#8217;s merely a way of looking at the world that continously analyzes it for potential failings, and asks the question &#8211; How can I mitigate this risk?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ajollylife.com/?feed=rss2&amp;p=6</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>lorem ipsum</title>
		<link>http://www.ajollylife.com/?p=5</link>
		<comments>http://www.ajollylife.com/?p=5#comments</comments>
		<pubDate>Mon, 24 Oct 2005 21:38:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.ajollylife.com/wordpress/?p=2</guid>
		<description><![CDATA[lorem ipsum is standard dummy text&#8230;been used for a while.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.lipsum.com/">lorem ipsum</a> is standard dummy text&#8230;been used for a while.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ajollylife.com/?feed=rss2&amp;p=5</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Work In Progress</title>
		<link>http://www.ajollylife.com/?p=4</link>
		<comments>http://www.ajollylife.com/?p=4#comments</comments>
		<pubDate>Sat, 22 Oct 2005 18:43:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">/?p=1</guid>
		<description><![CDATA[I&#8217;m currently working on setting up a combination wordpress/gallery2 blog/photogallery.
Should be fun:)
Jolly
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m currently working on setting up a combination wordpress/gallery2 blog/photogallery.</p>
<p>Should be fun:)</p>
<p>Jolly</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ajollylife.com/?feed=rss2&amp;p=4</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
