<?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>RouterNotes.com &#187; Mac OS X</title>
	<atom:link href="http://routernotes.com/category/mac-os-x/feed/" rel="self" type="application/rss+xml" />
	<link>http://routernotes.com</link>
	<description>Networking and Mac OS X lessons learned in a Campus LAN environment</description>
	<lastBuildDate>Mon, 15 Sep 2008 18:01:29 +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>Finder restart issue</title>
		<link>http://routernotes.com/2008/08/25/finder-restart-issue/</link>
		<comments>http://routernotes.com/2008/08/25/finder-restart-issue/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 15:11:29 +0000</pubDate>
		<dc:creator>siteadmin</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[.DS_Store]]></category>
		<category><![CDATA[Finder]]></category>

		<guid isPermaLink="false">http://routernotes.com/?p=71</guid>
		<description><![CDATA[I was recently working on an issue where the finder would restart every time it mounted a server share. The restart was quick, almost like a flash. At first, I thought something was wrong with the server, but after bring up the console to look at errors, I found this error at the client end.
terminate [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>I was recently working on an issue where the finder would restart every time it mounted a server share. The restart was quick, almost like a flash. At first, I thought something was wrong with the server, but after bring up the console to look at errors, I found this error at the client end.</p>
<blockquote><p><strong>terminate called after throwing an instance of &#8216;IAException&#8217;</strong></p></blockquote>
<p>To resolve the probem,  I just deleted the .DS_Store file in every folder of that share. But I believe that the problem could occur on a single workstation too with a corrupt .DS_Store on a volume.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://routernotes.com/2008/08/25/finder-restart-issue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create encrypted disk images with a script</title>
		<link>http://routernotes.com/2008/06/30/create-encrypted-disk-images-with-a-script/</link>
		<comments>http://routernotes.com/2008/06/30/create-encrypted-disk-images-with-a-script/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 14:32:39 +0000</pubDate>
		<dc:creator>siteadmin</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[disk image]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://routernotes.com/?p=35</guid>
		<description><![CDATA[Disk images are one the great things that Mac OS X supports natively. There are so many things that can be done with them like store important data in them securely with the built-in encryption.  The encrypted disk images can be taken anywhere and can be opened on any Mac.
All of this can be [...]


Related posts:<ol><li><a href='http://routernotes.com/2008/06/16/create-encrypted-backups-with-disk-images/' rel='bookmark' title='Permanent Link: Create Encrypted Backups with Disk Images'>Create Encrypted Backups with Disk Images</a> <small>Disk images make the perfect backup file. Without any extra...</small></li><li><a href='http://routernotes.com/2008/07/07/encrypt-your-thumbdrive-protect-your-identity/' rel='bookmark' title='Permanent Link: Encrypt your Thumbdrive: Protect your identity'>Encrypt your Thumbdrive: Protect your identity</a> <small>The little flash devices are the modern day floppy disk...</small></li><li><a href='http://routernotes.com/2008/01/14/disable-time-machine-from-nagging-about-every-disk-in-leopard/' rel='bookmark' title='Permanent Link: Disable Time Machine from nagging about every disk in Leopard'>Disable Time Machine from nagging about every disk in Leopard</a> <small>Time Machine is a great utility, but it asks if...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Disk images are one the great things that Mac OS X supports natively. There are so many things that can be done with them like store important data in them securely with the built-in encryption.  The encrypted disk images can be taken anywhere and can be opened on any Mac.</p>
<p>All of this can be done through Disk utility, but if you do it repeatedl, creating a little script can save time. For example, in Terminal:</p>
<p>hdiutil create -encryption -stdinpass -srcfolder private encryptedfolder.dmg</p>
<p>So, it would look something like this:</p>
<p><strong> hdiutil create -encryption -stdinpass -srcfolder /Users/Myaccount/Documents encryptedfolder.dmg</strong></p>
<p>Note that the command is entered all in the terminal as one line with a return. This will encrypt the folder to a disk image called encryptedfolder.dmg and bring up a password dialogue box for you to enter a password.  If you want to enter the password in the script then try this.</p>
<p><strong>echo -n &#8220;password&#8221; | hdiutil create -encryption -stdinpass -srcfolder private encrypted.dmg </strong></p>
<p>This will create the disk image with the password of &#8220;password&#8221; with bringing up an interactive dialogue box. Be warned that anyone with access to the computer may be able to read this script and see you password, but that is not a problem if you take the  disk image away from the computer</p>


<p>Related posts:<ol><li><a href='http://routernotes.com/2008/06/16/create-encrypted-backups-with-disk-images/' rel='bookmark' title='Permanent Link: Create Encrypted Backups with Disk Images'>Create Encrypted Backups with Disk Images</a> <small>Disk images make the perfect backup file. Without any extra...</small></li><li><a href='http://routernotes.com/2008/07/07/encrypt-your-thumbdrive-protect-your-identity/' rel='bookmark' title='Permanent Link: Encrypt your Thumbdrive: Protect your identity'>Encrypt your Thumbdrive: Protect your identity</a> <small>The little flash devices are the modern day floppy disk...</small></li><li><a href='http://routernotes.com/2008/01/14/disable-time-machine-from-nagging-about-every-disk-in-leopard/' rel='bookmark' title='Permanent Link: Disable Time Machine from nagging about every disk in Leopard'>Disable Time Machine from nagging about every disk in Leopard</a> <small>Time Machine is a great utility, but it asks if...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://routernotes.com/2008/06/30/create-encrypted-disk-images-with-a-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10.5 Leopard installer unable to see internal drive</title>
		<link>http://routernotes.com/2008/04/07/105-leopard-installer-unable-to-see-internal-drive/</link>
		<comments>http://routernotes.com/2008/04/07/105-leopard-installer-unable-to-see-internal-drive/#comments</comments>
		<pubDate>Mon, 07 Apr 2008 13:13:57 +0000</pubDate>
		<dc:creator>siteadmin</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[10.5]]></category>
		<category><![CDATA[instll]]></category>
		<category><![CDATA[Leopard]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://routernotes.com/2008/04/07/105-leopard-installer-unable-to-see-internal-drive/</guid>
		<description><![CDATA[I finally went to install 10.5 Leopard on my laptop and immediately ran into trouble. The  install utility would not recognize my internal hard drive. The &#8216;Install location&#8217; was blank like there was no hard drive. I switched from the 10.5 installer to the Disk Utility on the install DVD and tried to reformat [...]


Related posts:<ol><li><a href='http://routernotes.com/2008/01/14/disable-time-machine-from-nagging-about-every-disk-in-leopard/' rel='bookmark' title='Permanent Link: Disable Time Machine from nagging about every disk in Leopard'>Disable Time Machine from nagging about every disk in Leopard</a> <small>Time Machine is a great utility, but it asks if...</small></li><li><a href='http://routernotes.com/2007/10/08/itunes-recovery-service/' rel='bookmark' title='Permanent Link: iTunes Recovery Service'>iTunes Recovery Service</a> <small>Had a friend bring me his poor little Intel Mac...</small></li><li><a href='http://routernotes.com/2008/06/16/create-encrypted-backups-with-disk-images/' rel='bookmark' title='Permanent Link: Create Encrypted Backups with Disk Images'>Create Encrypted Backups with Disk Images</a> <small>Disk images make the perfect backup file. Without any extra...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I finally went to install 10.5 Leopard on my laptop and immediately ran into trouble. The  install utility would not recognize my internal hard drive. The &#8216;Install location&#8217; was blank like there was no hard drive. I switched from the 10.5 installer to the Disk Utility on the install DVD and tried to reformat the drive, but Disk Utility was unable to format the drive, giving a &#8216;Resource Busy&#8217; error.</p>
<p>I finally booted the laptop into Target Disk Mode and connected it an old iMac G4 and was able to format the hard drive that way. Afterwards the 10.5 Leopard intall ran without error.<br />
<!--adsense--></p>


<p>Related posts:<ol><li><a href='http://routernotes.com/2008/01/14/disable-time-machine-from-nagging-about-every-disk-in-leopard/' rel='bookmark' title='Permanent Link: Disable Time Machine from nagging about every disk in Leopard'>Disable Time Machine from nagging about every disk in Leopard</a> <small>Time Machine is a great utility, but it asks if...</small></li><li><a href='http://routernotes.com/2007/10/08/itunes-recovery-service/' rel='bookmark' title='Permanent Link: iTunes Recovery Service'>iTunes Recovery Service</a> <small>Had a friend bring me his poor little Intel Mac...</small></li><li><a href='http://routernotes.com/2008/06/16/create-encrypted-backups-with-disk-images/' rel='bookmark' title='Permanent Link: Create Encrypted Backups with Disk Images'>Create Encrypted Backups with Disk Images</a> <small>Disk images make the perfect backup file. Without any extra...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://routernotes.com/2008/04/07/105-leopard-installer-unable-to-see-internal-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Order Pizza on your AppleTV</title>
		<link>http://routernotes.com/2008/03/03/order-pizza-on-your-appletv/</link>
		<comments>http://routernotes.com/2008/03/03/order-pizza-on-your-appletv/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 14:31:44 +0000</pubDate>
		<dc:creator>siteadmin</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[AppleTV]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Media Player]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Pizza]]></category>

		<guid isPermaLink="false">http://routernotes.com/2008/03/03/order-pizza-on-your-appletv/</guid>
		<description><![CDATA[Unlike the iPod, the AppleTV certainly hasn&#8217;t been the marketing success that Apple hoped for but hackers sure love it.
From the day that the AppleTV shipped, hackers have dissected the diminutive media player and found ways to add cool and innovative features like playing new video formats, upgrading the hard drive and turning one into [...]


Related posts:<ol><li><a href='http://routernotes.com/2008/01/31/diybuild-your-own-media-player-from-an-old-pda/' rel='bookmark' title='Permanent Link: DIY:Build your own Media Player from an old PDA'>DIY:Build your own Media Player from an old PDA</a> <small>The Core Pocket Media Player, TCPMP, for short, is a...</small></li><li><a href='http://routernotes.com/2008/06/16/create-encrypted-backups-with-disk-images/' rel='bookmark' title='Permanent Link: Create Encrypted Backups with Disk Images'>Create Encrypted Backups with Disk Images</a> <small>Disk images make the perfect backup file. Without any extra...</small></li><li><a href='http://routernotes.com/2007/10/08/itunes-recovery-service/' rel='bookmark' title='Permanent Link: iTunes Recovery Service'>iTunes Recovery Service</a> <small>Had a friend bring me his poor little Intel Mac...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Unlike the iPod, the AppleTV certainly hasn&#8217;t been the marketing success that Apple hoped for but hackers sure love it.<br />
From the day that the AppleTV shipped, hackers have dissected the diminutive media player and found ways to add cool and innovative features like playing new video formats, upgrading the hard drive and turning one into a fully working Mac OS X computer.<br />
One modification enables you to <a href="http://www.appletvhacks.net/2008/01/21/pizza-on-demand-ultimate-in-apple-tv-hacks/" title="order pizza with an AppleTV" target="_blank" id="p.ea">order pizza</a> directly from the AppleTV with just the remote control, perfect for the lazy college student that wants to order pizza without taking time to boot up their laptop computer.<br />
<!-- START CUSTOM WIDGETBUCKS CODE -->
<div><script src="http://api.widgetbucks.com/script/ads.js?uid=yMPfdCLYyAawM9Av"></script></div>
<p><!-- END CUSTOM WIDGETBUCKS CODE --></p>
<p><strong>What can a hacked AppleTV do?</strong><br />
Play various video formats in addition to Mp4<br />
Order pizza<br />
Make Skype calls<br />
Use a web browser<br />
Run a full version of Mac OS X<br />
Use a keyboard and mouse<br />
Use an external hard drive<br />
Enable file server and web server<br />
<strong>Getting started with Hacking an AppleTV</strong><br />
The first hacks for the AppleTV involved a bit of surgery and exposure to AppleTV innards. The hard drive had to be removed, mounted into a USB hard drive enclosure and special software loaded from a Macintosh before re-installation back into the AppleTV. But the process has been refined to a no-screwdriver-required method. The <a href="http://wiki.awkwardtv.org/wiki/Patchstick" title="AppleTV Patchstick" target="_blank" id="atw5">Patchstick Method</a> involves installing software on a USB flash drive and plugging it into the AppleTV&#8217;s USB port which Apple reserves for repairs. When the AppleTV boots up, the thumb drive automatically loads the software needed to connect remotely to the media player and install other modifications.<br />
<strong>Why do hackers love the AppleTV?</strong><br />
Apple&#8217;s media player is the perfect piece of computer hardware. First, it&#8217;s smaller than even a Mac Mini, uses low power, is quiet and is relatively inexpensive compared to other media center computers. Additionally, the AppleTV has the right video connectors to hook to a new HD TV and a remote control. Underneath the hood, the AppleTV is really a single board computer with a relatively powerful processor running an interface program Back Row. Hackers only needed to enable the parts of Mac OS X that Apple had hidden and then they had a full computer to load whatever software that they wanted. Once one of the media players has been modified to run an unrestricted copy of Mac OS X, the AppleTV becomes the least expensive Macintosh available coming in at nearly half the price of a Mac Mini.<br />
<strong>This probably voids the warranty</strong><br />
Apple will make little effort to make sure that future software updates to the AppleTV do not break any modifications, so owners of modified AppleTVs may not be able to take advantage of new features and bug fixes provided by Apple. But then again, there&#8217;s always a new hack out. Check out <a href="http://www.appletvhacks.net/" title="AppleTVhacks" target="_blank" id="v-pp">AppleTVhacks</a> for an ongoing list of hacks, modifications and How-To&#8217;s.</p>


<p>Related posts:<ol><li><a href='http://routernotes.com/2008/01/31/diybuild-your-own-media-player-from-an-old-pda/' rel='bookmark' title='Permanent Link: DIY:Build your own Media Player from an old PDA'>DIY:Build your own Media Player from an old PDA</a> <small>The Core Pocket Media Player, TCPMP, for short, is a...</small></li><li><a href='http://routernotes.com/2008/06/16/create-encrypted-backups-with-disk-images/' rel='bookmark' title='Permanent Link: Create Encrypted Backups with Disk Images'>Create Encrypted Backups with Disk Images</a> <small>Disk images make the perfect backup file. Without any extra...</small></li><li><a href='http://routernotes.com/2007/10/08/itunes-recovery-service/' rel='bookmark' title='Permanent Link: iTunes Recovery Service'>iTunes Recovery Service</a> <small>Had a friend bring me his poor little Intel Mac...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://routernotes.com/2008/03/03/order-pizza-on-your-appletv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search for files in Unix</title>
		<link>http://routernotes.com/2008/02/07/search-for-files-in-unix/</link>
		<comments>http://routernotes.com/2008/02/07/search-for-files-in-unix/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 16:11:01 +0000</pubDate>
		<dc:creator>siteadmin</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://routernotes.com/2008/02/07/search-for-files-in-unix/</guid>
		<description><![CDATA[I am always having to search for the exact syntax on this command, so I want to document it. This command works on almost any any linux/unix including MacOS X/
find / -name &#8220;MyFavoriteFile&#8221;
Find is the actual command. The / is the start location. In this case, it means root of the drive, so find will [...]


Related posts:<ol><li><a href='http://routernotes.com/2008/04/14/create-a-web-filtering-firewall-with-ipcop-and-urfilter/' rel='bookmark' title='Permanent Link: Create a web filtering firewall with IPcop and URFilter'>Create a web filtering firewall with IPcop and URFilter</a> <small>With the URLfilter addon installed, an IPcop firewall can be...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>I am always having to search for the exact syntax on this command, so I want to document it. This command works on almost any any linux/unix including MacOS X/<br />
<strong>find / -name &#8220;MyFavoriteFile&#8221;</strong></p>
<p>Find is the actual command. The <strong>/</strong> is the start location. In this case, it means root of the drive, so find will search the entire volume. If you know the files is in a subdirectory, you can specify that. <strong>-name</strong> specifies to look for a name and then the filename must be in quote. Variables can be used like &#8220;*.txt&#8221;.</p>


<p>Related posts:<ol><li><a href='http://routernotes.com/2008/04/14/create-a-web-filtering-firewall-with-ipcop-and-urfilter/' rel='bookmark' title='Permanent Link: Create a web filtering firewall with IPcop and URFilter'>Create a web filtering firewall with IPcop and URFilter</a> <small>With the URLfilter addon installed, an IPcop firewall can be...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://routernotes.com/2008/02/07/search-for-files-in-unix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Filemaker Bento: A Tasty Snack of a Database</title>
		<link>http://routernotes.com/2008/02/04/filemaker-bento-a-tasty-snack-of-a-database/</link>
		<comments>http://routernotes.com/2008/02/04/filemaker-bento-a-tasty-snack-of-a-database/#comments</comments>
		<pubDate>Mon, 04 Feb 2008 16:02:43 +0000</pubDate>
		<dc:creator>siteadmin</dc:creator>
				<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://routernotes.com/2008/02/04/filemaker-bento-a-tasty-snack-of-a-database/</guid>
		<description><![CDATA[Bento is the iTunes inspired database for Mac OSX.
Named for a Japanese boxed lunch with compartments, Bento is described as a personal database targeted to the home user or small business professional that needs a little more organization in their life. It comes with several pre-designed templates, including membership lists, event planning, time billing and [...]


Related posts:<ol><li><a href='http://routernotes.com/2007/10/08/itunes-recovery-service/' rel='bookmark' title='Permanent Link: iTunes Recovery Service'>iTunes Recovery Service</a> <small>Had a friend bring me his poor little Intel Mac...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Bento is the iTunes inspired database for Mac OSX.<br />
Named for a Japanese boxed lunch with compartments, Bento is described as a personal database targeted to the home user or small business professional that needs a little more organization in their life. It comes with several pre-designed templates, including membership lists, event planning, time billing and inventory.<br />
Many users will see Bento as the missing database from Apple&#8217;s iWork productivity suite because it integrates with Address Book, iCal, and iCal task lists. Bento can pull or publish information to Address Book and iCal, so tasks and calendar events created in the database will synchronize with iPods and iPhones.The interface is iTunes inspired and the iLife design theme is carried throughout the program with a three-panel interface. The left panel is a list of sources of information like contacts and other databases. The current database resides in the middle column and fields available to the database sit in the right column.<br />
<script type="text/javascript"><!--
google_ad_client = "pub-9512234219429601";
google_ad_slot = "5860377475";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
<br />
Bento tries to simplify record keeping, even down to the names it uses. Databases are called libraries and groups of records are called collections rather than queries or searches, much like playlists in iTunes. Saved queries are called smart collections. Custom databases are simple to create with this program, so a degree in database architecture is not needed<strong>.</strong> To modify or create a new database, just drag the data fields onto the database pane.Part&#8217;s of Bento&#8217;s magic is that it hides the fact it is creating relational databases where information is shared and synchronized between multiple information sources. Relational databases is a feature is typically reserved for larger, more costly, database programs.</p>
<p><span id="more-45"></span><br />
Filemaker International, the Bento developer hopes Bento will fill a gap left by its flagship product FileMaker Pro, which started out as a simple form-based database like Bento, but has grown into a powerful multi-user, multi-platform business-class program. While Bento does not have any support for network or multi-user functionality like Filemaker Pro, it does share some interface design with its big brother. For, example, the calculations screen where fields can be combined will remind longtime users of the same screen in Filemaker Pro.</p>
<p>Previously, Apple integrated a simple database application into its AppleWorks productivity suite, but the database had its limits primarily because it could not support a relational database. AppleWorks was abandoned after Apple released its iWork productivity suite that integrated with iLife in 2005. iWork does not include a database program.<br />
Bento is perfect for soccer team rosters, simple billing and home inventories. It retails for $49. A trial copy can be downloaded from www.Filemaker.com/Bento.</p>
<p>[tags]FileMaker,Bento, MacOSX, Database[/tags]</p>


<p>Related posts:<ol><li><a href='http://routernotes.com/2007/10/08/itunes-recovery-service/' rel='bookmark' title='Permanent Link: iTunes Recovery Service'>iTunes Recovery Service</a> <small>Had a friend bring me his poor little Intel Mac...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://routernotes.com/2008/02/04/filemaker-bento-a-tasty-snack-of-a-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
