<?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>Life in the Geek Lane &#187; Geek / Apple Stuff</title>
	<atom:link href="http://www.geeklane.com/category/geek-apple-stuff/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.geeklane.com</link>
	<description>babblings!</description>
	<lastBuildDate>Tue, 19 Jul 2011 11:06:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Custom NSTableViewCell labels not appearing</title>
		<link>http://www.geeklane.com/2011/07/19/custom-nstableviewcell-labels-not-appearing/</link>
		<comments>http://www.geeklane.com/2011/07/19/custom-nstableviewcell-labels-not-appearing/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 11:05:18 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Geek / Apple Stuff]]></category>
		<category><![CDATA[iPhone Dev Musings]]></category>
		<category><![CDATA[cocoa]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[objective-c]]></category>

		<guid isPermaLink="false">http://www.geeklane.com/?p=936</guid>
		<description><![CDATA[I&#8217;m working on an iPhone app at the moment that is being upgraded from a previous version. I decided early on to just build on the existing code rather than trying to reinvent the wheel. I&#8217;ve spent a bit of time fixing warnings that have cropped up from changes in the iOS SDK (the original [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m working on an iPhone app at the moment that is being upgraded from a previous version. I decided early on to just build on the existing code rather than trying to reinvent the wheel.</p>
<p>I&#8217;ve spent a bit of time fixing warnings that have cropped up from changes in the iOS SDK (the original app was developed for iOS 2) but one problem in particular had me stumped for a while.</p>
<p>When subclassing NSTableViewCell, the old init method was: <br />
	- (id)initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier</p>
<p>but somewhere along the line the init method definition changed to: <br />
	-(id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier</p>
<p>I&#8217;m yet to find out when this changed occurred, but it left me with the problem of no longer having access to the &#8220;frame&#8221; parameter. This meant the code in the init method that used to size the views of the custom cell no longer had a point of reference.</p>
<p>It took me a while to figure out that due to this change there was also another new method introduced that now had to be overridden to size the custom cell views:<br />
	-(void)layoutSubviews</p>
<p>In this method is where we are now meant to set the size of the custom cell views.</p>
<p>So I commented out the sizing code that used to be in the init method and moved it to the new layoutSubviews method as follows:<br />
	-(void)layoutSubviews<br />
	{<br />
		[super layoutSubviews];<br />
 		CGRect label, steps;<br />
 		CGRect bounds = [[self contentView] bounds];<br />
 		label.origin.x = 20.0;<br />
 		label.origin.y = 3.0;<br />
 		label.size.height = bounds.size.height &#8211; (label.origin.y*2);<br />
 		label.size.width = 160.0;<br />
 		[dateLabel setFrame:label];</p>
<p>		steps.origin.x = 170.0;<br />
 		steps.origin.y = 5.0;<br />
 		steps.size.height = bounds.size.height &#8211; (steps.origin.y*2);<br />
 		steps.size.width = 120.0;<br />
 		[stepsLabel setFrame:steps];<br />
 	}</p>
<p>This fixed my issue. Running the app now showed the custom cell labels as expected.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geeklane.com/2011/07/19/custom-nstableviewcell-labels-not-appearing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>UPDATE: Office 2011 Mac &#8211; Crashing when copying and pasting</title>
		<link>http://www.geeklane.com/2011/07/11/update-office-2011-mac-crashing-when-copying-and-pasting/</link>
		<comments>http://www.geeklane.com/2011/07/11/update-office-2011-mac-crashing-when-copying-and-pasting/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 10:27:58 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Geek / Apple Stuff]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.geeklane.com/?p=932</guid>
		<description><![CDATA[An update to a previous entry http://www.geeklane.com/2011/07/06/office-2011-mac-–-crashing-when-copying-and-pasting/ I asked the user today if their version of Word was still crashing and they said it wasn&#8217;t. Seems that one check box is the problem. Weird.]]></description>
			<content:encoded><![CDATA[<p>An update to a previous entry<br />
<a href="http://www.geeklane.com/2011/07/06/office-2011-mac-–-crashing-when-copying-and-pasting/">http://www.geeklane.com/2011/07/06/office-2011-mac-–-crashing-when-copying-and-pasting/</a></p>
<p>I asked the user today if their version of Word was still crashing and they said it wasn&#8217;t. Seems that one check box is the problem.</p>
<p>Weird.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geeklane.com/2011/07/11/update-office-2011-mac-crashing-when-copying-and-pasting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Word 2011 &#8211; Share as Email Attatchment</title>
		<link>http://www.geeklane.com/2011/07/11/word-2011-share-as-email-attatchment/</link>
		<comments>http://www.geeklane.com/2011/07/11/word-2011-share-as-email-attatchment/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 10:23:44 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Geek / Apple Stuff]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[word]]></category>

		<guid isPermaLink="false">http://www.geeklane.com/?p=930</guid>
		<description><![CDATA[I recently had a staff member who was having trouble emailing word documents from within Word. To be honest I never actually realised you could do this. I&#8217;d never even thought about trying it. Anyway, Word 2011 has a feature under the &#8220;File -> Share&#8221; menu that allows you to email the current document as [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had a staff member who was having trouble emailing word documents from within Word. To be honest I never actually realised you could do this. I&#8217;d never even thought about trying it.</p>
<p>Anyway, Word 2011 has a feature under the &#8220;File -> Share&#8221; menu that allows you to email the current document as an attachment.</p>
<p>The staff member was trying to use it with Outlook 2011, but the email kept being created in Mac Mail. I went into Mac Mail preferences and made sure Outlook 2011 was the default email client. I thought this was a systemwide setting and that other applications would use the setting when trying to send email.</p>
<p>Turns out that Word 2011 doesn&#8217;t use this setting as even with it set to Outlook, it still kept trying to use Mac Mail.</p>
<p>It was then that I discovered that Outlook 2011 has a setting under preferences -> general, that sets Outlook as the default email client.</p>
<p>We clicked this button and tried again and it worked.</p>
<p>So, why doesn&#8217;t Word 2011 use the default as set by Mac Mail? Why do I have to set it in Outlook for it to take notice? Seems a little strange to me.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geeklane.com/2011/07/11/word-2011-share-as-email-attatchment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deploying SCCM OSD image to mac bootcamp partition</title>
		<link>http://www.geeklane.com/2011/07/08/deploying-sccm-osd-image-to-mac-bootcamp-partition/</link>
		<comments>http://www.geeklane.com/2011/07/08/deploying-sccm-osd-image-to-mac-bootcamp-partition/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 12:47:02 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Geek / Apple Stuff]]></category>
		<category><![CDATA[bootcamp]]></category>
		<category><![CDATA[deployment]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[sccm]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.geeklane.com/?p=928</guid>
		<description><![CDATA[I&#8217;ve spent a good part of the last week trying to get the unis windows 7 MOE to install on a bootcamp partition. Little did I know when I started that it was a complicated process with obstacles all along the way. To cut a long story short I could not find a way to [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve spent a good part of the last week trying to get the unis windows 7 MOE to install on a bootcamp partition. Little did I know when I started that it was a complicated process with obstacles all along the way.</p>
<p>To cut a long story short I could not find a way to get the iMac to boot and pull the SCCM image via the network. I even tried booting from a set of SCCM OSD dvds that the sys admin guys burnt. That too didn&#8217;t work and kept bugging out when the SCCM installer would try to set the windows partition to be active.</p>
<p>So&#8230;. In the end the solution that worked is as follows:<br />
* Run bootcamp assistant to setup the partition<br />
* Insert a standard windows installation DVD and reboot<br />
* Hold down the &#8220;Option&#8221; key to get a boot menu<br />
* Select the dvd and then press the &#8220;Space bar&#8221; until the windows menu appears (See previous blog on why pressing space is needed)<br />
* Install windows, use generic info because this install will be getting overwritten with the SCCM image soon.<br />
* Once installed, insert the SCCM OSD disk and run the autorun.<br />
* SCCM installer will kick off and start staging the image for deployment.<br />
* System will reboot and installation will kick off</p>
<p>Doing it this way seems to get around the &#8220;Setting the partition active&#8221; problem. I guess if windows is already installed then the SCCM OSD installer just skips trying to set the partition as active.</p>
<p>So I managed to get the unis windows 7 SCCM image deployed to a bootcamp partition of an iMac. Monday will be time to kick <a href="http://www.deploystudio.com/Home.html">DeployStudio</a> into gear and create the dual boot master images. Then try to deploy it out to some other test systems.</p>
<p>Everything going ok I&#8217;m hoping to be deploying dual boot images to macs by the end of next week.</p>
<p>After that, it&#8217;s on to setting up <a href="http://code.google.com/p/munki/">Munki</a> and getting it working.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geeklane.com/2011/07/08/deploying-sccm-osd-image-to-mac-bootcamp-partition/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Office 2011 Mac – Crashing when copying and pasting</title>
		<link>http://www.geeklane.com/2011/07/06/office-2011-mac-%e2%80%93-crashing-when-copying-and-pasting/</link>
		<comments>http://www.geeklane.com/2011/07/06/office-2011-mac-%e2%80%93-crashing-when-copying-and-pasting/#comments</comments>
		<pubDate>Wed, 06 Jul 2011 10:55:40 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Geek / Apple Stuff]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[solution]]></category>

		<guid isPermaLink="false">http://www.geeklane.com/?p=924</guid>
		<description><![CDATA[I have a user at work who has been having constant and regular issues with Word 2011. I couldn&#8217;t really narrow it down but it will just crash and he will lose his work. The common action he did when the crash happened was to cut/copy + paste. Once again, trawling google and forums seems [...]]]></description>
			<content:encoded><![CDATA[<p>I have a user at work who has been having constant and regular issues with Word 2011. I couldn&#8217;t really narrow it down but it will just crash and he will lose his work.</p>
<p>The common action he did when the crash happened was to cut/copy + paste.</p>
<p>Once again, trawling google and forums seems to have provided a solution (and yet again the actual microsoft support suggestions are useless). </p>
<p>In this case I got him to:<br />
* Click the &#8220;Word&#8221; menu and choose &#8220;Preferences&#8221;<br />
* In the window that opens, click &#8220;Edit&#8221; under the &#8220;Authoring and Proofing Tools&#8221; section<br />
* The &#8220;Edit&#8221; window loads. About half way down is an option called &#8220;Use smart cut and paste&#8221;<br />
* Untick this option so it&#8217;s NOT selected.<br />
* Click &#8220;OK&#8221;<br />
* Restart Word (cause microsoft stuff seems to like that)<br />
* See how it goes.</p>
<p>I haven&#8217;t heard back from the user in 4 days, so for me that&#8217;s another issue solved.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geeklane.com/2011/07/06/office-2011-mac-%e2%80%93-crashing-when-copying-and-pasting/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Bootcamp &#8211; Flashing cursor when booting</title>
		<link>http://www.geeklane.com/2011/07/06/bootcamp-flashing-cursor-when-booting/</link>
		<comments>http://www.geeklane.com/2011/07/06/bootcamp-flashing-cursor-when-booting/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 23:21:36 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Geek / Apple Stuff]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[bootcamp]]></category>
		<category><![CDATA[imac]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.geeklane.com/?p=920</guid>
		<description><![CDATA[I&#8217;m currently building a dual boot MOE image for our mac labs and came across a weird problem when trying to install windows 7 under bootcamp. The bootcamp assistant would run fine, partition the drive then reboot. I had a windows 7 cd in the drive but the iMac would just reboot and display a [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m currently building a dual boot MOE image for our mac labs and came across a weird problem when trying to install windows 7 under bootcamp.</p>
<p>The bootcamp assistant would run fine, partition the drive then reboot. I had a windows 7 cd in the drive but the iMac would just reboot and display a black screen with a flashing white cursor in the top left corner of the display.</p>
<p>I trawled support forums for a few days looking for ideas but non of the many suggested worked until I tried the following:</p>
<ul>
<li>Run the bootcamp assistant as normal, partition the drive etc</li>
<li>Start the iMac</li>
<li>Hold down the &#8220;Option&#8221; key to get the boot menu</li>
<li>Choose the windows installation DVD</li>
<li>As soon as you choose it, start tapping the space bar</li>
<li>A screen should appear with a windows style boot menu where you can select the windows installation and away it goes.</li>
</ul>
<p>From there the windows installation kicked off and worked as expected.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geeklane.com/2011/07/06/bootcamp-flashing-cursor-when-booting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Office 2011 Mac &#8211; Crashing when inserting symbols</title>
		<link>http://www.geeklane.com/2011/05/04/office-2011-mac-crashing-when-inserting-symbols/</link>
		<comments>http://www.geeklane.com/2011/05/04/office-2011-mac-crashing-when-inserting-symbols/#comments</comments>
		<pubDate>Wed, 04 May 2011 11:30:44 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Geek / Apple Stuff]]></category>

		<guid isPermaLink="false">http://www.geeklane.com/?p=914</guid>
		<description><![CDATA[Had a job today where Word 2011 for mac would freeze / crash every time the user chose to insert a symbol. As usual, the Microsoft help was useless with the only real suggestions being to repair fonts / clear the users profile (On a side note, this seems to the the generic solution for [...]]]></description>
			<content:encoded><![CDATA[<p>Had a job today where Word 2011 for mac would freeze / crash every time the user chose to insert a symbol.</p>
<p>As usual, the Microsoft help was useless with the only real suggestions being to repair fonts / clear the users profile (On a side note, this seems to the the generic solution for EVERY Office 2011 problem, even though most of the time it does nothing).</p>
<p>Anyway, I spent a good 2 hours on this until I stumbled across a forum post where a user had solved a similar issue by doing the following:</p>
<p>1) Move the contents of the users ~/Movies folder to the desktop</p>
<p>2) Start Word.</p>
<p>3) Test by trying to insert a symbol.</p>
<p>(This worked!)</p>
<p>4) Move each file that was in the ~/Movies folder back into the ~/Movies folder one at a time, each time starting Word and testing again.</p>
<p>You should eventually find at least 1 movie that is causing the issue.</p>
<p>Now, in my case, I just copied each file back and repeated the steps until I had all the files back. Somehow, the mere act of moving them out then moving them in again fixed the issue for me.</p>
<p>I have no idea why moving them in then out again would fix the issue.</p>
<p>On another side note, Why does it need to scan the ~/Movies folder when inserting a symbol? Sure the panel it uses is the generic &#8220;insert&#8221; panel which has a media tab, but why does it need to prescan the folder when the user doesn&#8217;t even click the media tab? Seems like a lot of extra wasted processing.</p>
<p>I need to check to see if the same is true for the OS X iLife media browser. I don&#8217;t recall having such issues with Apple software, so maybe it doesn&#8217;t.</p>
<p>I put this down to another silly issue with Office Mac.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geeklane.com/2011/05/04/office-2011-mac-crashing-when-inserting-symbols/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Reply button not working in Outlook 2011 Mac</title>
		<link>http://www.geeklane.com/2011/03/17/reply-button-not-working-in-outlook-2011-mac/</link>
		<comments>http://www.geeklane.com/2011/03/17/reply-button-not-working-in-outlook-2011-mac/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 23:00:25 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Geek / Apple Stuff]]></category>

		<guid isPermaLink="false">http://www.geeklane.com/?p=912</guid>
		<description><![CDATA[Had a job today where a user reported that they could not reply to emails. Checked it out and none of the reply features in Outlook 2011 for mac would work. Reply, Reply All and Forward all didn&#8217;t work. Other toolbar items worked fine. Console had numerous errors which were indecipherable to me. Turns out [...]]]></description>
			<content:encoded><![CDATA[<p>Had a job today where a user reported that they could not reply to emails.</p>
<p>Checked it out and none of the reply features in Outlook 2011 for mac would work. Reply, Reply All and Forward all didn&#8217;t work.</p>
<p>Other toolbar items worked fine.</p>
<p>Console had numerous errors which were indecipherable to me.</p>
<p>Turns out that something weird (great explanation I know) can happen with Outlook 2011 and Safari. Outlook 2011 uses Safari for its reply / forward functions and if that gets corrupted the features stop working.</p>
<p>I was sceptical, but downloaded a new version of Safari and installed it. It worked.</p>
<p>I&#8217;ve got to read more about it to see exactly what the link is between Safari and Outlook 2011. Is Outlook 2011 corrupting part of the framework used by Safari and the only way to fix it is to reinstall? Who knows.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geeklane.com/2011/03/17/reply-button-not-working-in-outlook-2011-mac/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>iPad. Thoughts.</title>
		<link>http://www.geeklane.com/2010/05/05/ipad-thoughts/</link>
		<comments>http://www.geeklane.com/2010/05/05/ipad-thoughts/#comments</comments>
		<pubDate>Wed, 05 May 2010 12:19:12 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Geek / Apple Stuff]]></category>

		<guid isPermaLink="false">http://www.geeklane.com/2010/05/05/ipad-thoughts/</guid>
		<description><![CDATA[I&#8217;ve had the iPad for a week now and I really can&#8217;t fault it. Battery life is great, it&#8217;s snappy, apps just work and the screen is amazing. Even typing on the keyboard isn&#8217;t as troublesome as I thought it might be. Reading email and surfing the web is amazing on the device. It&#8217;s perfect [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had the iPad for a week now and I really can&#8217;t fault it. Battery life is great, it&#8217;s snappy, apps just work and the screen is amazing. Even typing on the keyboard isn&#8217;t as troublesome as I thought it might be.<br />
Reading email and surfing the web is amazing on the device. It&#8217;s perfect for quickly checking email or sitting for long sessions of email sorting. I actually sorted out my gmail account on it pretty fast. The web is snappy and vie had no problems at all with the fact that it doesn&#8217;t do flash. I guess none of the sites I visit frequently use flash <img src='http://www.geeklane.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /><br />
The only thing I could fault about it is that the books and apple apps aren&#8217;t available in Australia yet, so I gotta wait for those.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geeklane.com/2010/05/05/ipad-thoughts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Frameworks</title>
		<link>http://www.geeklane.com/2010/03/30/frameworks/</link>
		<comments>http://www.geeklane.com/2010/03/30/frameworks/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 13:17:52 +0000</pubDate>
		<dc:creator>Brett</dc:creator>
				<category><![CDATA[Geek / Apple Stuff]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.geeklane.com/?p=882</guid>
		<description><![CDATA[I&#8217;ve become involved in a project at work that requires a website to be built, so I decided to bite the bullet and finally leverage the power of a php framework. I&#8217;m not sure why, but for some reason I had never really embraced development frameworks. I had read about different ones but never really [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve become involved in a project at work that requires a website to be built, so I decided to bite the bullet and finally leverage the power of a php framework.</p>
<p>I&#8217;m not sure why, but for some reason I had never really embraced development frameworks. I had read about different ones but never really taken the time to download and try to use one.</p>
<p>Google <a href="http://lmgtfy.com/?q=php+frameworks">says</a> there are a bunch of different ones, but in the end I decided to have a bash with <a href="http://codeigniter.com/">CodeIgniter</a>. Truth be told, I picked it by going on first impressions of the website.</p>
<p>So far the whole experience has been great. I think the whole MVC design pattern I picked up from OS X development really helped and in a way help solidify the MVC stuff I already knew.</p>
<p>It&#8217;s been ridiculously fast to get a basic, decent website up and running and I&#8217;m currently working on the whole user authentication side of things. </p>
<p>I spent a few days reading about different authentication libraries and in the end I&#8217;ve decided to go with <a href="http://www.konyukhov.com/soft/tank_auth/">Tank Auth</a>. It seems pretty lightweight and simple, so will be a good start I think. Ideally I&#8217;d like to include LDAP support in the web app, but that will come later.</p>
<p>I&#8217;m feeling positive about this project. Got someone pushing me all the way so chances are it won&#8217;t end up as vapourware like many of the other projects I seem to start and never get finished&#8230; sigh&#8230; but that&#8217;s a whole other blog post.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.geeklane.com/2010/03/30/frameworks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

