<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Awaiting Inspiration</title>
	
	<link>http://awaitinginspiration.com</link>
	<description>Personal Blog of Adam</description>
	<lastBuildDate>Sat, 07 Nov 2009 19:56:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by-nc-sa/3.0/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/AwaitingInspiration" type="application/rss+xml" /><feedburner:emailServiceId>AwaitingInspiration</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>iMac Digital Picture Frame</title>
		<link>http://feedproxy.google.com/~r/AwaitingInspiration/~3/HJfwZCyted4/imac-digital-picture-frame</link>
		<comments>http://awaitinginspiration.com/imac-digital-picture-frame#comments</comments>
		<pubDate>Sun, 25 Oct 2009 18:19:35 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[make]]></category>
		<category><![CDATA[diy]]></category>
		<category><![CDATA[frame]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[pc]]></category>
		<category><![CDATA[picture]]></category>

		<guid isPermaLink="false">http://awaitinginspiration.com/?p=2388</guid>
		<description><![CDATA[A few months ago I acquired an iMac G4 Lamp (Apple officially designates it the "iMac G4 Flat Panel"), which these days is a pretty useless piece of hardware; especially if it's missing the OS like mine was. However, even with the hardware to slow to be of any real use, I felt like it would be a shame dump it. The iMac G4 has a great 17" LCD so I figured the it would make a great digital picture frame. ]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://awaitinginspiration.com/imac-digital-picture-frame" title="Permanent link to iMac Digital Picture Frame"><img class="post_image aligncenter frame" src="http://awaitinginspiration.com/wp-content/uploads/2009/imac-frame.jpg" width="460" height="345" alt="DIY Digital Picture Frame | iMac Digital Picture Frame" /></a>
</p><p>Ok, there are a gazillion DIY digital picture frames out there, this is nothing new. I figure I&#8217;d share it though because it shows a good use for outdated hardware. More importantly it serves as documentation for what I did and how I did it, so I&#8217;m not asking myself six months from now &#8220;how did I do that?&#8221;<br />
<span id="more-2388"></span><br />
A few months ago I acquired an iMac G4 Lamp (Apple officially designates it the &#8220;iMac G4 Flat Panel&#8221;), which these days is a pretty useless piece of hardware; especially if it&#8217;s missing the OS like mine was. However, even with the hardware to slow to be of any real use, I felt like it would be a shame dump it. The iMac G4 has a great 17&#8243; LCD so I figured it would make a great digital picture frame. Since my G4 was missing the OS, I decided to use the PowerPC version of Ubuntu<sup><a id="f1r" href="#f1" rel="nofollow">1</a></sup>, and after some searching, testing, and cursing, I found that <a href="http://vega.rd.no/articles/ubuntu-based-digital-picture-frame">these instructions,</a> with some tweaks to suite my needs worked the best.</p>
<p>I won&#8217;t get into it here because there are already tons of HOWTOs (<a href="http://www.google.com/search?q=install+ubuntu+&#038;ie=utf-8&#038;oe=utf-8&#038;aq=t&#038;rls=org.mozilla:en-US:official&#038;client=firefox-a">Google is your friend</a>) but the first thing I did was to install Ubuntu Desktop. </p>
<p>After Ubuntu was up and running I installed the image viewer <a href="http://freshmeat.net/projects/feh/">feh</a> by opening a terminal and entering:</p>
<pre>
sudo apt-get install feh
</pre>
<p>Like <a href="http://vega.rd.no/articles/ubuntu-based-digital-picture-frame">Vegard</a>, my pictures are stored on another computer but accessible through a network share. I wanted to setup feh to display the the pictures stored on that computer; but unlike Vegard my frame will be connected to my network via a wired connection so I don&#8217;t need to mess with rsync like he did.</p>
<p>The first step is to create a mount point for the share. In a terminal I entered:</p>
<pre>
sudo mkdir /media/framepics
</pre>
<p>Next I edited the <a href="http://ubuntuforums.org/showthread.php?t=283131">fstab</a> config so that the share gets mounted to <em>/media/framepics</em> and stays persistent even after a reboot. Again, in a terminal I entered:</p>
<pre>
sudo nano /etc/fstab
</pre>
<p>This opens the fstab config in <a href="http://www.nano-editor.org/">nano</a> for editing. On the last like I entered:</p>
<pre>
//enterprise/phat_drive/data/pictures/imac_frame /media/framepics cifs username=yourusername,password=yourpassword,iocharset=utf8, file_mode=0777,dir_mode=0777 0 0
</pre>
<p class="alert">Note &#8211; the above code should be placed on a <em>single line</em>.</p>
<p>Here&#8217;s a quick explanation of the fstab edit:</p>
<p>The first part:</p>
<p><em>//enterprise/phat_drive/data/pictures/imac_frame</em></p>
<p>Is the <a href="http://en.wikipedia.org/wiki/Path_(computing)">UNC path</a> to the share where the pictures are stored &#8211; <em>enterprise</em> is my server and the rest of the path <em>phat_drive/data/pictures/imac_frame</em> leads to the folder where the frame pictures will be stored.</p>
<p>The second part:</p>
<p><em>/media/framepics</em></p>
<p>Is the mount point I created, after the share is mounted I will be able to access the share from <em>/media/framepics</em> as if it were a local directory on the iMac.</p>
<p>The third part:</p>
<p><em>cifs</em> </p>
<p>Is the file system used when accessing the share and as far as I can tell this is the best option; the share that&#8217;s being mounted is on a Windows box.</p>
<p>The fourth part:</p>
<p><em>username=yourusername,password=yourpassword</em></p>
<p>Is where I put the user name and password needed to access the share on the Windows server.</p>
<p>The fifth part:</p>
<p><em>iocharset=utf8</em></p>
<p>Is the character set used when accessing the share on the Windows server. Again, as far as I can tell from my reading this is what you want to use.</p>
<p>The sixth part:</p>
<p><em>file_mode=0777,dir_mode=0777 0 0</em></p>
<p>Is the file permissions set for the mount point &#8211; 0777 gives full access to the share from the iMac. Last two 0s are used to set the dump option and mount order, for this purpose 0 on both is fine.</p>
<p>Once the line was added to fstab I hit Ctrl X and answered Y to save the changes and exit out of nano. I then rebooted to make sure the share mounted properly after a reboot.</p>
<p>The next step was to set feh to start after a reboot, rescan the image directory periodically, and set the iMac to automatically turn the screen off at night and back on in the morning. I used the scripts from Vegard as a guide:</p>
<p>The first script is used to start feh:</p>
<pre>
#!/bin/bash
export DISPLAY=:0
feh --quiet --recursive --randomize --hide-pointer --full-screen --slideshow-delay 300 /media/framepics/ &#038;
</pre>
<p><em>delay</em> is the time in seconds that the image is displayed; in this case 5 minutes. <em>/media/framepics</em> is where feh will look for images. I saved this file in my home directory (you could stick it anywhere) as <em>start-feh.sh</em> and gave it execute permissions. I then went to system > Preferences > Startup Applications and added the script to the start up entries so feh would start automatically on boot.</p>
<p>The next three scripts are used in conjunction with <a href="http://en.wikipedia.org/wiki/Cron">cron</a> to restart feh periodically and turn the screen on and off at scheduled times. </p>
<p>When feh starts it reads the images currently in the directory and will only show images that existed when it started. In order for newly added images to show I need to stop and restart feh periodically:</p>
<pre>
#!/bin/bash
export DISPLAY=:0
killall feh
feh --quiet --recursive --randomize --hide-pointer --full-screen --slideshow-delay 300 /media/framepics/ &#038;
</pre>
<p><em>killall feh</em> kills the feh process and the next line is exactly the same as the start-feh script. This script is also saved in my home directory as <em>sync-feh.sh</em> and given exicute permissions.</p>
<p>This script turns the screen off:</p>
<pre>
#!/bin/bash
export DISPLAY=:0
xset +dpms
xset dpms force off
</pre>
<p>This script turns the display on:</p>
<pre>
#!/bin/bash
export DISPLAY=:0
xset +dpms
xset dpms force on
</pre>
<p>They were are also saved in my home directory as <em>screen-on.sh</em> and <em>screen-off.sh</em> and given execute permissions.</p>
<p>The next step is to setup cron so that sync-feh.sh, screen-on.sh, and screen-off.sh run at set times. Form the terminal:</p>
<pre>
crontab -e
</pre>
<p>I added the following:</p>
<pre>
00 07 * * 1-5 /home/adam/screen-on.sh
00 09 * * 0,6 /home/adam/screen-on.sh
00 23 * * 1-5 /home/adam/screen-off.sh
30 0 * * 0,6 /home/adam/screen-off.sh
0 * * * * /home/adam/sync-feh.sh
</pre>
<p>The first line sets cron to run <em>screen-on.sh</em> at 7AM Monday &#8211; Friday.</p>
<p>The second line sets cron to run <em>screen-on.sh</em> at 9AM Saturday and Sunday.</p>
<p>The third line sets cron to run <em>screen-off.sh</em> at 11PM Monday &#8211; Friday.</p>
<p>The fourth line sets cron to run <em>screen-off.sh</em> at 12AM Saturday and Sunday.</p>
<p>Finally, the fifth line sets cron to run <em>sync-feh.sh</em> every hour, to refresh the images. Every hour is probably excessive but whatever.</p>
<p>I then removed the desktop background image and set the background color to black, removed the desktop icons (I had to use <a href="http://www.howtogeek.com/howto/ubuntu/hide-removable-drive-icons-from-your-ubuntu-desktop/">gconf-editor</a> to remove the mapped drive icon) and completely <a href="http://joshualowry.vox.com/library/post/ubuntu-completely-hide-those-pesky-panels.html">hid all the panels</a>. With the background set to black, the icons and panels removed, all that shows when <em>sync-feh.sh</em> runs every hour is a blank black screen.</p>
<p><img alt="DIY Digital Picture Frame | iMac Digital Picture Frame" src="http://awaitinginspiration.com/wp-content/uploads/2009/imac-frame-final.jpg" title="DIY Digital Picture Frame | iMac Digital Picture Frame" class="aligncenter frame" width="460" height="308" /></p>
<p><small><br />
<sup id="f1">1</sup> The PowerPC architecture is no longer officially supported by Ubuntu. However, it is still available and supported by the <a href="http://ubuntuforums.org/showthread.php?t=427714">community.</a><sup><a href="#f1r">&crarr;</a></sup><br />
</small></p>

<p><a href="http://feedads.g.doubleclick.net/~a/SQ0Yh2-CADNnjwrJPndunHn_KL0/0/da"><img src="http://feedads.g.doubleclick.net/~a/SQ0Yh2-CADNnjwrJPndunHn_KL0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/SQ0Yh2-CADNnjwrJPndunHn_KL0/1/da"><img src="http://feedads.g.doubleclick.net/~a/SQ0Yh2-CADNnjwrJPndunHn_KL0/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=HJfwZCyted4:l2sqyBmrMe0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=HJfwZCyted4:l2sqyBmrMe0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=HJfwZCyted4:l2sqyBmrMe0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=HJfwZCyted4:l2sqyBmrMe0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=HJfwZCyted4:l2sqyBmrMe0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=HJfwZCyted4:l2sqyBmrMe0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=HJfwZCyted4:l2sqyBmrMe0:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=HJfwZCyted4:l2sqyBmrMe0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=HJfwZCyted4:l2sqyBmrMe0:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AwaitingInspiration/~4/HJfwZCyted4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://awaitinginspiration.com/imac-digital-picture-frame/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://awaitinginspiration.com/imac-digital-picture-frame</feedburner:origLink></item>
		<item>
		<title>The Pictures I Wasn’t Supposed to Take</title>
		<link>http://feedproxy.google.com/~r/AwaitingInspiration/~3/BMscIqEO0FA/empsfm-review</link>
		<comments>http://awaitinginspiration.com/empsfm-review#comments</comments>
		<pubDate>Sun, 27 Sep 2009 19:17:26 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[review]]></category>
		<category><![CDATA[empsfm]]></category>
		<category><![CDATA[museum]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://awaitinginspiration.com/?p=2653</guid>
		<description><![CDATA[This is partly a review of the Experience Music Project and Science Fiction Museum and Hall of Fame, henceforth referred to as EMP&#124;SFM, and mostly a rant about stupid rules.]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://awaitinginspiration.com/empsfm-review" title="Permanent link to The Pictures I Wasn&#8217;t Supposed to Take"><img class="post_image aligncenter frame" src="http://awaitinginspiration.com/wp-content/uploads/2009/empsfm-review/empsfm-review.jpg" width="460" height="306" alt="EMP|SFM Review | The Picture I Wasn't Supposed to Take" /></a>
</p><p><em>This is partly a review of the <em><a href="http://www.EMP|SFM.org/">Experience Music Project and Science Fiction Museum and Hall of Fame</a></em>, henceforth referred to as EMP|SFM, and mostly a rant about stupid rules.</em></p>
<p class ="note">
Update: EMP|SFM responded to this post on Twitter
</p>
<blockquote><p>
EMPSFM @adambyers FYI &#8211; the bag policy is now changed as well &#8211; we restricted bags because large bags in crowded galleries = no fun for anyone.</p>
<p>EMPSFM @adambyers another old rule that wasn&#8217;t always needed except for certain small galleries. Sorry you got hassled and thx for sending to me.
</p></blockquote>
<h3>[review]</h3>
<p>This last August my family and I visited the EMP|SFM on the invitation of a friend. The EMP|SFM is a cool museum, but it&#8217;s far from living up to the hype surrounding it. The exhibits were both neat and educational, lots of Jimmy Hendricks stuff, the Guitar Gallery (offering a history of the electric guitar) was really cool and educational, and the Sound Lab was again fun and educational (after 30 or so minutes in there Jay was playing the drums pretty good). </p>
<p>The Science Fiction Museum (arguably the part I was most interested in) was a cool in that it offered you a chance to view props from various sci-fi movies and TV programs, as well as sci-fi history and the usual &#8220;did ya know?&#8221; type of stuff. </p>
<p>Still, after it was all said and done we were left with the impression that the coolest thing and arguably the the exhibit the kids had the most fun with was the giant LED screen:<br />
<span id="more-2653"></span><br />
<object width="460" height="259"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=6740578&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=59a5d1&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=6740578&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=59a5d1&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="460" height="259"></embed></object></p>
<p>Apparently this is the world&#8217;s largest LED screen and before it arrived at the EMP|SFM it belonged to <a href="http://en.wikipedia.org/wiki/U2">U2</a>, who used in at concerts and later donated it to the museum.</p>
<p>We had fun, no doubt, and we learned stuff, no doubt. However, our fun probably had more to do with the people we were with rather than the museum itself. The staff at the museum seem to have an elitist attitude and most acted like they were doing us some kind of favor by letting us in their museum. The atmosphere of the EMP|SFM is a stark contrast to other famous North West museums we&#8217;ve been to &#8211; like <a href="http://www.omsi.edu/">OMSI</a> and the <a href="http://www.sprucegoose.org/">Evergreen Aviation &#038; Space Museum</a> where the staff is friendly, welcoming, and treats you as though they appreciate your visit. The EMP|SFM is kind of an awkward place, and for all the hype we were left feeling like there was something missing.  </p>
<p>If I needed to sum up EMP|SFM in one word it would be &#8211; <em>meh</em>. </p>
<h3>[stupid rules]</h3>
<p>In total we were a group of 11 people, to eat in out would have been spendy, and complicated, so we brown-bagged lunch. We had all the lunch stuff in a couple of paper shopping bags and after we parked the bags were loaded on a stroller. The plan was to pause our EMP|SFM visit at some point to go out and eat in the park nearby. Our bags would have happy stayed on the stroller during our tour but we quickly found out that the EMP|SFM is either really paranoid, or just into stupid rules:</p>
<p>From <a href="http://www.EMP|SFM.org/aboutEMP|SFM/index.asp?categoryID=158#bagcheck">EMP|SFM site</a>:</p>
<blockquote><p>
Does EMP|SFM offer bag check?<br />
Yes. EMP|SFM offer complimentary bag and coat check for museum guests.</p>
<p>Bags larger than 16 inches are not allowed in the gallery spaces.
</p></blockquote>
<p>Ok, so we had to check our lunch bags, inconvenient, and stupid but not a huge deal. However, if your going to have stupid rules at least have the courtesy to explain why they exist. Maybe it&#8217;s to help enforce their (understandable) <a href="http://www.EMP|SFM.org/aboutEMP|SFM/index.asp?categoryID=158#food">no food rule</a>:</p>
<blockquote><p>
Can I bring food or drink into EMP|SFM?<br />
Food and drink are prohibited in all gallery spaces. They are permitted in the public areas (such as the ticketing lobby or the retail store).
</p></blockquote>
<p>Maybe the TSA style bag check is designed so that terrorists can only bring in bombs smaller than 16 inches? Maybe it&#8217;s designed to inconvenience you enough so that you don&#8217;t bring sack lunch and eat at the EMP|SFM food court? Who knows? Our friends were allowed to bring in their, larger than 16 inches, diaper bag but as is often the case with stupid rules, there are people who take them too far. </p>
<p>My wife and her friend got to talking to a couple who were forced to check their two week old baby&#8217;s diaper bag before they were allowed into the museum. Apparently the museum expected them to just walk back to the front of the museum if they needed anything. </p>
<p>After my wife and her friend brought the issue to the attention of a EMP|SFM employee (the only one who didn&#8217;t act like a pretentious douche bag) he quickly retrieved the diaper bag for the couple and apologized. Still, it should have never happened and wouldn&#8217;t have if they didn&#8217;t have stupid rules that gave EMP|SFM employees the opportunity to go on power trips, which is the only reason for denying a mother and father ready access to their two week old baby&#8217;s diaper bag.</p>
<p>What could be more stupid then the mandatory bag check? The EMP|SFM policy on photography. When we asked, were told there are parts of the EMP|SFM where photography is allowed and parts where it&#8217;s prohibited. For instance your allowed to take a picture of <strike>a child molesters</strike> Michael Jackson&#8217;s jacket:</p>
<p><img alt="EMP|SFM Review | The Pictures I Wasn't Supposed to Take" src="http://awaitinginspiration.com/wp-content/uploads/2009/empsfm-review/empsfm-review-2.jpg" title="EMP|SFM Review | The Pictures I Wasn't Supposed to Take" class="aligncenter frame" width="315" height="460" /></p>
<p>You can also take a picture of a giant funnel of guitars:</p>
<p><img alt="EMP|SFM Review | The Pictures I Wasn't Supposed to Take" src="http://awaitinginspiration.com/wp-content/uploads/2009/empsfm-review/empsfm-review-5.jpg" title="EMP|SFM Review | The Pictures I Wasn't Supposed to Take" class="aligncenter frame" width="306" height="460" /></p>
<p><img alt="EMP|SFM Review | The Pictures I Wasn't Supposed to Take" src="http://awaitinginspiration.com/wp-content/uploads/2009/empsfm-review/empsfm-review-3.jpg" title="EMP|SFM Review | The Pictures I Wasn't Supposed to Take" class="aligncenter frame" width="306" height="460" /></p>
<p>Besides the Sound Lab and the LED wall, those are the only two exhibits your allowed to take pictures of, and where carrying a camera won&#8217;t get you stalked by EMP|SFM staff. Stupid rules be damned! I took pictures anyway:</p>
<div class="wp-caption aligncenter" style="width: 460px">
	<img alt="These are really neat old guitars, it&#39;s a good picture too... wish I could show it to you. Perhaps it would inspire you to go see them for yourself but EMP|SFM does not allow photography. I wasn't supposed to take this picture." src="http://awaitinginspiration.com/wp-content/uploads/2009/empsfm-review/empsfm-review-1.jpg" title="EMP|SFM Review | The Pictures I Wasn't Supposed to Take" width="460" height="306" />
	<p class="wp-caption-text">These are really neat old guitars, it&#39;s a good picture too... wish I could show it to you. Perhaps it would inspire you to go see them for yourself but EMP|SFM does not allow photography. I wasn't supposed to take this picture.</p>
</div>
<p>I took others, I was sneaky, I shot from the hip and didn&#8217;t use a flash and I wasn&#8217;t the only one. Several other people were taking pictures, some being a lot more obvious then I was. I almost got out scot-free; until the Science Fiction Museum. </p>
<p>As we were exiting the sci-fi museum there was an exhibit with props from <em>Lost in Space</em> including the famous <a href="http://en.wikipedia.org/wiki/Robot_B-9">B9 Robot</a>. I was admiring the exhibit when Sandi said &#8220;you should get a picture of that.&#8221; I had gotten too relaxed and made the mistake of holding my camera to my eye to take the shot (no flash). Just as the shutter snapped I heard &#8220;Sir! Sir!&#8221; and saw a man quickly approaching me. The man was an EMP|SFM &#8220;security guard&#8221; and he was quick to tell me that I had to delete the picture. &#8220;Frak!&#8221; I new that if he watched me delete that picture he&#8217;d see another I wasn&#8217;t supposed to have taken pop up.</p>
<p>At this point I was thinking &#8220;Ok, I got caught doing something I wasn&#8217;t supposed to do, I&#8217;ll suck it up and take it.&#8221; I showed him my camera and deleted the picture I took of the <em>Lost in Space</em> exhibit. I tried to turn the screen off fast enough but he was hovering over me and he saw another picture that I wasn&#8217;t supposed to have taken and demanded that I delete that. After deleting that picture a third one came on the screen and he again demanded that I delete it. After deleting those three pictures a picture I took of the Yoda exhibit popped up and he demanded that I delete that picture as well. I refused.</p>
<p>My kids love <em>Star Wars</em> and I took that picture so they&#8217;d have it and this guy&#8217;s power trip was getting tiring. The picture wasn&#8217;t even a good one, burly, as is was shot from the hip. I was sick of this guy leaning over me demanding I delete my pictures. I told him I wasn&#8217;t going to delete any more pictures, that we were leaving anyway, and I&#8217;d put the lens cap on. I walked away and meet up with the rest of my group, who were talking to the couple with the two week old baby.</p>
<div class="wp-caption aligncenter" style="width: 306px">
	<img alt="This is (one of) the original Yoda puppets used in the Star Wars movie." src="http://awaitinginspiration.com/wp-content/uploads/2009/empsfm-review/empsfm-review-4.jpg" title="EMP|SFM Review | The Pictures I Wasn't Supposed to Take" width="306" height="460" />
	<p class="wp-caption-text">This is (one of) the original Yoda puppets used in the Star Wars movie.</p>
</div>
<p class="note">I&#8217;m not sure if the EMP|SFM &#8220;security guard&#8221; was allowed to, even if photography is prohibited, demand that I delete my pictures&#8230; it felt like illegal search and seizure to me. Since we were with other people I didn&#8217;t want to push the issue and get us completely kicked out or worse, which is why I complied as far as I did.</p>
<p>The same EMP|SFM employee who brought the couples diaper bag to them (again the only one who didn&#8217;t act like a pretentious douche bag), talked to Sandi and I. He was very nice, apologized for the other employees behavior and explained why they didn&#8217;t allow photography. </p>
<p>The photography ban stems from the fact that the EMP|SFM does not own all the exhibits and some of the owners don&#8217;t want their exhibits photographed and since it would be difficult to limit photography to only exhibits the EMP|SFM owns, they ban it altogether. The EMP|SFM employee agreed that it was a stupid, outdated rule and told us the new CEO was trying to get it lifted. </p>
<p>Exhibit owners and artists think that allowing people to take pictures is going to devalue the artwork or exhibit, which is just crap. Wake up people! Allowing people to photograph your artwork or exhibit and share it on their blog, FaceBook, Twitter, insert name of latest social network here, is only going promote the museum, which makes the museum money, money that the museum can pay you, the exhibit owner or artist, to have your exhibit or artwork displayed.</p>
<p>Ironically, as I was (slowly) writing this post <a href="http://www.seattlepi.com/local/410223_museum16.html">this article</a> came out in the <em>Seattle P-I</em>:</p>
<blockquote><p>
Sad you couldn&#8217;t get a shot with the original Death Star on your last visit to the Experience Music Project and Science Fiction Museum?</p>
<p>Starting Sept. 26, you&#8217;ll be able to strike a pose with the relic of a galaxy far, far away &#8212; not to mention Jimi Hendrix&#8217;s Woodstock Stratocaster, Captain Kirk&#8217;s Enterprise chair and every other object in the museum&#8217;s permanent collection.</p>
<p>EMP/SFM is about to change its photo policy. And if you ask staff, it&#8217;s about time.
</p></blockquote>
<p>Egads! Photography of items in the EMP|SFM&#8217;s permanent collection is now permitted! The article goes on the explain that traveling exhibits may still restrict photography but it does not seem that enforcing it will be of much concern to the museum:</p>
<blockquote><p>
&#8220;You can worry &#8217;til the cows come home on a lot of this stuff, or you can sort of try to minimize the amount of potential damage,&#8221; said senior curator Jacob McMurray.</p>
<p>&#8220;At some point you have to decide, do you want to waste resources pushing back against something that can&#8217;t be solved, can&#8217;t be fixed?&#8221;
</p></blockquote>
<p>Of course flash photography is still prohibited, which I agree with. Whether or not a flash damages an artifact is debatable but a dozen flashes going off in a dark room would be annoying so I&#8217;m down with no-flash.</p>
<p>The EMP|SFM needs to update their web site because according to it photography is still prohibited:</p>
<blockquote><p>
Is photography allowed in the EMP|SFM galleries?<br />
No film or video photography is allowed in the museum galleries. Any commercial or other unauthorized use of any transmission, picture, film/type, writing, drawing, or other depiction or description of any Experience Music Project or Science Fiction Museum and Hall of Fame name, mark or logo is prohibited without prior specific written approval from the EMP|SFM Marketing and PR Department. Call 206.770.2700 for more information.
</p></blockquote>
<p>I&#8217;m glad to see the EMP|SFM dispensing with the stupid no photography rule, it shows progress on their part. Perhaps allowing people to take diaper bags in will be the next step froward for the EMP|SFM.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/KVGibPngCxlqs9lr3EKmR9qEhCw/0/da"><img src="http://feedads.g.doubleclick.net/~a/KVGibPngCxlqs9lr3EKmR9qEhCw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/KVGibPngCxlqs9lr3EKmR9qEhCw/1/da"><img src="http://feedads.g.doubleclick.net/~a/KVGibPngCxlqs9lr3EKmR9qEhCw/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=BMscIqEO0FA:aq3MHnZt78k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=BMscIqEO0FA:aq3MHnZt78k:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=BMscIqEO0FA:aq3MHnZt78k:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=BMscIqEO0FA:aq3MHnZt78k:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=BMscIqEO0FA:aq3MHnZt78k:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=BMscIqEO0FA:aq3MHnZt78k:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=BMscIqEO0FA:aq3MHnZt78k:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=BMscIqEO0FA:aq3MHnZt78k:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=BMscIqEO0FA:aq3MHnZt78k:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AwaitingInspiration/~4/BMscIqEO0FA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://awaitinginspiration.com/empsfm-review/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://awaitinginspiration.com/empsfm-review</feedburner:origLink></item>
		<item>
		<title>To Jeffery</title>
		<link>http://feedproxy.google.com/~r/AwaitingInspiration/~3/fhzBveFirYM/to-jeff</link>
		<comments>http://awaitinginspiration.com/to-jeff#comments</comments>
		<pubDate>Sat, 12 Sep 2009 18:41:45 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[whatever]]></category>
		<category><![CDATA[MLM]]></category>
		<category><![CDATA[pyramid scheme]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[scam]]></category>

		<guid isPermaLink="false">http://awaitinginspiration.com/?p=2425</guid>
		<description><![CDATA[I hate, hate, hate, pyramid schemes, multi-level marketing, whatever you call it a rose is a rose and a scam is a scam.]]></description>
			<content:encoded><![CDATA[<p></p><div class="wp-caption aligncenter" style="width: 460px">
	<img alt="Look closely into the magic pyramid and you will find fun, freedom, and riches beyond your dreams." src="http://awaitinginspiration.com/wp-content/uploads/2009/pyramid-scheme-2.jpg" title="To Jeffery Berg | Pyramid Scheme" width="460" height="305" />
	<p class="wp-caption-text">Look closely into the magic pyramid and you will find fun, freedom, and riches beyond your dreams.</p>
</div>
<p>Dear Jeff, </p>
<p>If your reading this then you have received the CD I sent back to you with a link to this post. I&#8217;d first like to start this letter with a couple of quotes from <a href="http://en.wikipedia.org/wiki/Pyramid_scheme">Wikipedia</a>:</p>
<blockquote><p>
A pyramid scheme is a non-sustainable business model that involves the exchange of money primarily for enrolling other people into the scheme, often without any product or service being delivered.
</p></blockquote>
<blockquote><p>
Pyramid schemes are illegal in many countries, including the United States&#8230;
</p></blockquote>
<p><span id="more-2425"></span><br />
As I&#8217;m sure you recall we meet briefly at The Home Depot in the surge protector/extension cord aisle about a week ago. I was looking for a couple of surge protectors with right angle plugs (they fit better behind desks). You walked up shortly after I arrived and confusingly started looking at Home Depot&#8217;s surge protector offerings and after sifting through various surge protectors I found what I was looking for, grabbed a couple, and started to walk away. Before I got too far though, you stopped me and asked me something to the effect of &#8220;what surge protector is best?&#8221;</p>
<p>Your question through me for a loop, it&#8217;s not that it was a dumb question, or that I was not willing to help you out but I&#8217;m just the sort of guy who goes into a store, gets what he needs, and gets out while attempting as little human interaction as possible. I&#8217;m just not used to interacting with people in stores unless I start the interaction&#8230; it&#8217;s an introvert thing I guess. However, I try hard to be a nice guy and even though it went against my standard operating procedure, I decided I&#8217;d help you. Plus, you asked a tech. related question&#8230; I tend to like answering those types of questions.</p>
<p>In any case I asked you what you were planning on plugging into it, gave you a brief idea of what to look for, and recommended one of the brands available. You asked me if I was in the tech filed and I said &#8220;Actually, I&#8217;m the IT guy at [name of company] down the street.&#8221; You said something about that being cool, thanked me for my help, and I walked off feeling pretty good that I was able to help you out. I was still weirded out by the abnormal interaction though.</p>
<p>Apparently you were listening when I told you the name of the place I worked because about an hour later you called me there. I&#8217;m guessing that you looked the name of the company up, called the main number, and asked for me. I admire you for remembering my name because I&#8217;m terrible with names and frankly I would not have remembered your&#8217;s 5 seconds after you told me; even if my life depended on it. Anyway, what was at this point a slightly abnormal occurrence for me &#8211; talking to a stranger in a store &#8211; now moved to the category of <em>this is too frakking weird, my head is going to EXPLODE!</em>. Honestly, my first reaction was &#8220;what the frak is this guy calling me for?!&#8221; You eased my nerves a little by telling me that you realized this was all coming &#8220;out of left field.&#8221; It helped knowing that you realized how frakking crazy it was that you tracked me down and called me&#8230; of course you realizing how crazy it was, and still doing it, could actually make you more insane than not.</p>
<p>Oh, by the way, I <em>hate</em> sports metaphors.</p>
<p>Anyway, you told me that you appreciated my help at Home Depot and that you thought that it took integrity to help a stranger and all that. Then you really came out of left field and asked me if I would be interested in doing some part time work for your &#8220;internet company.&#8221; Wow. I doubted that it was possible that I made such an impression in our brief exchange that you would track me down and offer me a legitimate job of some kind but I didn&#8217;t want to squander a possible opportunity so I said &#8220;sure.&#8221;</p>
<p>You didn&#8217;t say much about your &#8220;internet company&#8221; but you said that you wanted to meet some time to discuss your &#8220;opportunity,&#8221; so we set a date and time to meet at a Starbucks down the street from where I work. This was not too odd, I had interviewed for jobs (and got them) at Starbucks before. You then told me that you had some information about your company that you wanted to send me and asked what address you should send it to. When I asked if e-mail would work you told me that you were going to be mailing an audio CD so standard mail was easier. I found this odd because for someone who has an &#8220;internet company&#8221; I&#8217;d think that you&#8217;d realize that the internet is a pretty damn good way to distribute audio. Anyway, I gave you the befit of the doubt, maybe you were just the money man and you had people to handle all the technical stuff for you. In any case I gave you my work address and by the end of our conversation I was pretty sure that what you were offering would not turn out to be anything; but I was curious to see what, exactly, it turned out to be.</p>
<p>A few days later I received the CD you sent me titled &#8220;Fun and Freedom.&#8221; I listened to it. Some guy who went by the name Wade Simmons talked for a few minutes about a system he had that would gain the follower, wait for it&#8230; Fun and Freedom! Egads!</p>
<p><img alt="To Jeffery Berg | Pyramid Scheme" src="http://awaitinginspiration.com/wp-content/uploads/2009/pyramid-scheme-cd.jpg" title="To Jeffery Berg | Pyramid Scheme" class="aligncenter frame" width="460" height="354" /></p>
<p>Not that I needed to (I already knew what this was) but I did a bit of research &#8211; I could not find any information on Wade Simmons, other than some mountain biker out of Canada, who I was pretty sure had nothing to do with any of this. Printed on the CD label was &#8220;Copyright TEAM INA.&#8221; Googling TEAM INA only turned up <a href="http://answers.yahoo.com/question/index?qid=20071011205216AAwuYGq">this</a> <em>Yahoo Answers</em> post where the answerer said they&#8217;d been to a TEAM INA meeting and determined that it was a pyramid scheme. Further digging turned up <a href="http://awaitinginspiration.com/wp-content/uploads/2009/amway-pyramid-suit.pdf">this</a><sup>(pdf)</sup> California Class Action Suit against Quixtar (later dropped). Quixtar is in fact Amway Global, a company known to run, wait for it&#8230; pyramid schemes! If you look on page 13 of the suit where it lists Quixtar&#8217;s &#8220;lines of sponsorship&#8221; on line f. you&#8217;ll see listed InterNet Associates (INA).</p>
<p>Here&#8217;s the thing Jeff &#8211; I helped you in that day in Home Depot, it may have not been for anything particularly significant but I did help you. I&#8217;m not saying I deserve a medal or anything but I could have easily given you a B.S. response, or ignored you; either of which would have actually been easier for me. Instead, I not only answered your question I took the time to pass valuable knowledge to you and you responded to my kindness by trying to scam me.</p>
<p>Ok, I&#8217;m not so native as to actually think that you were really looking for a surge protector and genuinely needed help picking one out. I&#8217;d imagine your &#8220;working&#8221; day is spent loitering around stores looking for marks, people you try run your little scam on. Make no mistake Jeff, pyramid schemes <em>are</em> scams and people that perpetuate their existence are, in my opinion, criminals.</p>
<p>I hate, hate, hate, pyramid schemes, multi-level marketing, whatever you call it a rose is a rose and a scam is a scam.</p>
<p>Jeff, you&#8217;re despicable, and if it existed you would burn in a very special level of Hell. A level they reserve for child molesters and people who talk at the theater<sup><a id="f1r" href="#f1" rel="nofollow">1</a></sup>.</p>
<p>Oh, and I left your CD in my car for a couple of days and it got pretty hot in there&#8230; so if you CD is a little warped I apologize&#8230;</p>
<div class="wp-caption aligncenter" style="width: 460px">
	<img alt="Or maybe it was the heat gun..." src="http://awaitinginspiration.com/wp-content/uploads/2009/pyramid-scheme-cd-death.jpg" title="I didn't use my heat gun on his CD... I sent it back intact." width="460" height="370" />
	<p class="wp-caption-text">Or maybe it was the heat gun...</p>
</div>
<p><small><br />
<sup id="f1">1</sup> <a href="http://www.imdb.com/title/tt0579532/quotes">&#8220;Firefly&#8221; Our Mrs. Reynolds (2002)</a><sup><a href="#f1r">&crarr;</a></sup><br />
</small></p>
<p><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=FFFFFF&#038;IS2=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=awaitiinspir-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;asins=1563431696" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe> <iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=FFFFFF&#038;IS2=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=awaitiinspir-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;asins=0964879514" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe> <iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&#038;bc1=FFFFFF&#038;IS2=1&#038;bg1=FFFFFF&#038;fc1=000000&#038;lc1=0000FF&#038;t=awaitiinspir-20&#038;o=1&#038;p=8&#038;l=as1&#038;m=amazon&#038;f=ifr&#038;asins=0470289651" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></p>

<p><a href="http://feedads.g.doubleclick.net/~a/yKcH3S6FNf9EqbO5YhFV7lzub2U/0/da"><img src="http://feedads.g.doubleclick.net/~a/yKcH3S6FNf9EqbO5YhFV7lzub2U/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/yKcH3S6FNf9EqbO5YhFV7lzub2U/1/da"><img src="http://feedads.g.doubleclick.net/~a/yKcH3S6FNf9EqbO5YhFV7lzub2U/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=fhzBveFirYM:ukITElaUAQE:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=fhzBveFirYM:ukITElaUAQE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=fhzBveFirYM:ukITElaUAQE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=fhzBveFirYM:ukITElaUAQE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=fhzBveFirYM:ukITElaUAQE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=fhzBveFirYM:ukITElaUAQE:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=fhzBveFirYM:ukITElaUAQE:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=fhzBveFirYM:ukITElaUAQE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=fhzBveFirYM:ukITElaUAQE:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AwaitingInspiration/~4/fhzBveFirYM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://awaitinginspiration.com/to-jeff/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://awaitinginspiration.com/to-jeff</feedburner:origLink></item>
		<item>
		<title>iPhone Call Recorder</title>
		<link>http://feedproxy.google.com/~r/AwaitingInspiration/~3/sZEBZ4elJ3g/iphone-call-recorder</link>
		<comments>http://awaitinginspiration.com/iphone-call-recorder#comments</comments>
		<pubDate>Thu, 20 Aug 2009 15:56:31 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[make]]></category>
		<category><![CDATA[call]]></category>
		<category><![CDATA[diy]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[record]]></category>

		<guid isPermaLink="false">http://awaitinginspiration.com/?p=2194</guid>
		<description><![CDATA[
If you are interested in buying a pre-made iPhone Call Recorder click please e-mail me adam [at] adambyers.com
8/25/2009 &#8211; I&#8217;ve updated this post to hopefully make things a little more clear and answer some questions people had.
8/26/2009 &#8211; I have seen some comments around the web that this device is illegal. It&#8217;s not. It&#8217;s perfectly [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://awaitinginspiration.com/iphone-call-recorder" title="Permanent link to iPhone Call Recorder"><img class="post_image aligncenter frame" src="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-7-sm.jpg" width="460" height="367" alt="Record iPhone Calls | iPhone Call Recorder" /></a>
</p><p class="alert">If you are interested in buying a pre-made iPhone Call Recorder click please e-mail me adam [at] adambyers.com</p>
<p class="note">8/25/2009 &#8211; I&#8217;ve updated this post to hopefully make things a little more clear and answer some questions people had.</p>
<p class="note">8/26/2009 &#8211; I have seen some comments around the web that this device is illegal. It&#8217;s not. It&#8217;s perfectly legal to make a device that enables you record phone calls and it&#8217;s perfectly legal to record phone calls to which you are a party of. However, depending on your jurisdiction, you may have to notify the other party that the call is being recorded. It&#8217;s always illegal to record a phone call to which you are not a party. Your mileage may vary, when in doubt <a href="http://www.callcorder.com/phone-recording-law-america.htm">do some reading</a>, and consult a lawyer.</p>
<h3>The Problem</h3>
<p>I&#8217;ve wanted a way to record phone calls to and from my iPhone since I&#8217;ve had it but hadn&#8217;t really looked into solutions until a couple of weeks ago. What I really wanted was a native iPhone app that would record incoming and outgoing phone calls &#8211; there is <a href="http://www.spoofapp.com/index.php">SpoofApp</a> but it requires a JailBroken phone, per-minute fees, and looks like it only works on outgoing calls. Another iPhone app <a href="http://recordertheapp.com/">Recorder 10</a>, does not require a JailBroken phone but like SpoofApp you have to pay per-minute fees and it only records outgoing calls.<br />
<span id="more-2194"></span><br />
Exhausted after searching for something I <em>assumed</em> would be out there already, and finding nothing I figured that the only way I was going to get what I wanted was to do it myself. </p>
<p>I had a few criteria that I wanted to meet:</p>
<ul>
<li>Portable as possible.</li>
<li>Record both sides of the conversation.</li>
<li>The ability to start recording the conversation midstream.</li>
<li>As little indication that the call was being recorded as possible.</li>
</ul>
<p class="note">
Before I go any further &#8211; laws regarding the recording of phone calls vary from state to state and federal laws may apply as well. Don&#8217;t be stupid, <a href="http://www.callcorder.com/phone-recording-law-america.htm">do some reading</a> and if in doubt talk to a lawyer. If you make this device and get yourself into trouble using it I&#8217;m not responsible. I&#8217;m also not responsible if you release the magic smoke from your iPhone.
</p>
<h3>The Obvious Solution</h3>
<p>When you talk on a phone, whether you notice it or not, you hear a smidgen of your voice through the phones speaker. If phones didn&#8217;t do this it would sound strange when you talked on the phone. So my first test was to just record the headphone output [using a splitter] of the iPhone to see if I got both sides of the conversation. You can record both sides of the conversation like this but the iPhone side of the conversation is unacceptability low. </p>
<p>This is the <a href="http://www.netstreamshifter.com/2009/06/record-iphone-conversations-on-mac-with.html">method</a> used by Rory but he uses the built in microphone on his Mac to record his side of the conversation. So, while Rory has a workable solution it requires the use of a computer so it&#8217;s not all that portable.</p>
<p class="note">8/25/2009 &#8211; Previously I incorrectly stated that this method causes an echo on the recording but after going back and trying it last night I could not replicate this effect; go figure.</p>
<div class="wp-caption aligncenter" style="width: 460px">
	<img alt="With this method you’re relying on the smidgen of audio that the phone feeds back to your ear piece. This is not enough to get a decent recording of your side of the conversation, which is why Rory uses his Mac's mic to record his side of the conversation." src="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/ipone-record-spliter.jpg" title="Record iPhone Calls | iPhone Call Recorder" width="460" height="306" />
	<p class="wp-caption-text">With this method you’re relying on the smidgen of audio that the phone feeds back to your ear piece. This is not enough to get a decent recording of your side of the conversation, which is why Rory uses his Mac's mic to record his side of the conversation.</p>
</div>
<p>Without using a second recorder (in Rory&#8217;s case his Mac) for your side of the conversation using this method your recording sounds like <a href="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-spliter-test.mp3" rel="shadowbox[post-2194];player=flv;width=500;height=0;">this</a>. Notice you can barely hear my side (iPhone side) of the conversation and when it gets loud, you can&#8217;t hear my side at all.</p>
<h3>A Better Way</h3>
<p>So, I started to look at the <a href="http://pinouts.ru/PortableDevices/iphone_headphone_pinout.shtml">pinout of the iPhone headphone jack</a> which is a <a href="http://en.wikipedia.org/wiki/TRS_connector">TRRS</a> (Tip, Ring, Ring, Sleeve) jack. I stumbled across <a href="http://benttronics.blogspot.com/2009/05/audio-breakout-cable-for-ipodiphone.html">this post</a> that gave instructions on how to wire a breakout cable so that you could use your own headphones and mic with the iPhone and after some dabbling I came up with this:</p>
<div class="wp-caption aligncenter" style="width: 460px">
	<a href="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-v1-bg.jpg" rel="shadowbox[post-2194];player=img;"><img alt="In this schematic the W, R, Y and NS (White, Red, Yellow, and Not Shielded) note the color of the individual wires for the TRRS cable I used." src="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-v1-sm.jpg" title="Record iPhone Calls | iPhone Call Recorder" width="460" height="328" /></a>
	<p class="wp-caption-text">In this schematic the W, R, Y and NS (White, Red, Yellow, and Not Shielded) note the color of the individual wires for the TRRS cable I used.</p>
</div>
<p>Which, if you haven&#8217;t guessed already, does not work. Well, It actually does work. It records both sides of the conversation beautifully. The problem is that the person your talking to hears everything they say repeated back to them (delayed by a millisecond) in their ear peace, very loudly and very clearly. Not only would this &#8220;talk back&#8221; be very annoying for the person your talking to, it would defiantly indicate to them that something odd was going on with the call.</p>
<p>It&#8217;s seems obvious now but it took me awhile to figure out what was going on &#8211; to get the recorder to work the way I wanted, I needed to combine the headphone output and the mic input (my side of the conversation), to one single output that would go to the recorder. By doing this I ended up feeding the headphone output of the iPhone back into the mic input of the iPhone, which is why the person on the other end heard everything they said repeated back to them. The obvious solution was to not combine the headphone and mic to one output, but to record the calls I&#8217;d either need two recorders (one for each side of the conversation) or a recorder that had multiple inputs. I wanted to get it working using only one recording output.</p>
<p>I wondered if using a mixer would solve the problem and to test this I connected the headphone and mic outputs to my little Behringer mixer on separate channels and it worked beautifully. Unfortunately, as beautifully as it worked, it required the use of a small but not so portable mixer. So I consulted Google and found some schematics (<a href="http://www.tkk.fi/Misc/Electronics/circuits/linesum.html">link 1</a>, <a href="http://diystrat.blogspot.com/2008/08/two-channel-mini-mixer.html">link 2</a>) for some simple two channel mixers. However, using simple mixer did not do enough to keep the headphone and mic separated, it helped but it wasn&#8217;t enough. Finally, by using strategically placed capacitors I was able to virtually eliminate the &#8220;talk back&#8221;problem.   </p>
<h3>The Solution</h3>
<p><a href="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-v2-bg.jpg" rel="shadowbox[post-2194];player=img;"><img alt="Record iPhone Calls | iPhone Call Recorder" src="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-v2-sm.jpg" title="Record iPhone Calls | iPhone Call Recorder" class="aligncenter frame" width="460" height="284" /></a></p>
<p>To keep things simple I combined the left and right headphone channels [see: <a href="http://www.rane.com/note109.html">Stereo-to-Mono Summing Box</a>] to make a mono signal going to the recording output but the headphone output for the iPhone user (you) is still stereo. Also, you could probably use lower resistor values all around since the signal coming from the iPhone isn&#8217;t <em>that</em> hot but I decided to err on the side of caution for now. The potentiometers are your garden variety (Radio Shack) 100k audio taper pots; you could use 50k or probably even smaller with this setup and they only control the signal going to the recording output, which gives you some control of the recording levels.</p>
<div class="wp-caption aligncenter" style="width: 460px">
	<a href="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-8-bg.jpg" rel="shadowbox[post-2194];player=img;"><img alt="Depending on the headset you use, you may need to modify the cable to have the headphones and mic on separate jacks; the one pictured here was made with separate headphone and mic jacks. Here I have the iPhone Call Recorder hooked up to a hand held voice recorder (which has a mic input) but you could use any recording device that accepts a 3.5mm jack." src="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-8-sm.jpg" title="Record iPhone Calls | iPhone Call Recorder" width="460" height="309" /></a>
	<p class="wp-caption-text">Depending on the headset you use, you may need to modify the cable to have the headphones and mic on separate jacks; the one pictured here was made with separate headphone and mic jacks. Here I have the iPhone Call Recorder hooked up to a hand held voice recorder (which has a mic input) but you could use any recording device that accepts a 3.5mm jack.</p>
</div>
<p class="note">
Click <a href="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-call-recorder.mp3" rel="shadowbox[post-2194];player=flv;width=500;height=0;">here</a> to listen to a phone call recorded using the iPhone Call Recorder.</p>
<h3>Notes</h3>
<ul>
<li>It&#8217;s <em>very likely</em> that this is not the best (in fact it&#8217;s not), or the only way to accomplish recording phone calls on the iPhone, but it does work and it works well. I agree that the best solution would be a native iPhone app. but it&#8217;s my understanding that it&#8217;s not even possible to write an app. that records phone calls on the iPhone without using third party services like Recorder 10 and SpoofApp do (which they charge you for and are limited in functionality).</li>
<li>As Gizmodo &#8220;journalist&#8221; Joanna Stern <a href="http://gizmodo.com/5344287/iphone-call-recorder-there-is-an-fugly-piece-of-hardware-for-that">pointed out</a> this is a &#8220;fucking ugly&#8221; solution. What she fails to note though it that it works and is in several ways it&#8217;s better than any of the software solutions available.</li>
<li>While &#8220;Fucking Ugly&#8221; this solution does not require you to jailbreak your phone, you don&#8217;t have to pay per-min fees to use it, you can record both incoming and outgoing calls with it, your recording stays with you and is not on some third party server, it gives no indication that the call is being recorded, it lets you start recording mid-call, and it affords you the ability to use an external set of headphones and an external microphone even if you don&#8217;t want to record the call. In any case it&#8217;s certainly better than just rolling over and paying for an app. that does not do what you want/need it to do as &#8220;journalist&#8221; Joanna Stern <a href="http://gizmodo.com/5344287/iphone-call-recorder-there-is-an-fugly-piece-of-hardware-for-that">suggests</a> we all do.</li>
<li>Despite &#8220;journalist&#8221; Joanna Stern&#8217;s assertion this is not a &#8220;switch box&#8221; it does not use any switches at all.</li>
<li>I agree with everyone that it&#8217;s rather large but I used a project box that I had lying around; it could certainly be made to fit in a smaller box.</li>
<li>Several people have asked &#8220;If you willing to go through the trouble make this breakout box, why not just jailbreak? It woudl be easier.&#8221; First, I have not jailbroken an iPhone, but based on my understanding of the process, I&#8217;d say that for me the amount of work between jailbreaking and making this breakout box is about equal. For someone less familiar with electronics this may in fact be more work than simply jailbreaking but you only have to make this breakout box once, by jailbreaking your iPhone your entering a never ending arms race with Apple (at least if yo want the latest iPhone OS). Also, the only app. that is available for a jailbroken phone that records calls is SpoofApp. SpoofApp seems like a great app. but as mentioned in the beginning of this post it not only requires a jailbroken phone, you have to pay per-min fees to record calls, only works on outgoing calls, and your recording ends up on a third party server that you have no control over; a privacy issue.</li>
<li>You still get a <em>little</em> &#8220;talk back&#8221; but it is so mild that unless you were really, really, really listening for it you would not notice; it&#8217;s extremely mild. You actually have to blow in the receiver hard to get it to produce the effect.</li>
<li>The headphones act as a microphone with this setup but it&#8217;s so weak that it has no effect on the recording.</li>
<li>The headphone volume on the iPhone affects the level of the recording output.</li>
<li>Obviously (or maybe not) this setup requires that you to use a separate headphone and mic during calls &#8211; you could just use something like <a href="http://www.amazon.com/gp/product/B000BYAJBU?ie=UTF8&#038;tag=awaitiinspir-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B000BYAJBU">this.</a><img src="http://www.assoc-amazon.com/e/ir?t=awaitiinspir-20&#038;l=as2&#038;o=1&#038;a=B000BYAJBU" width="0" height="0" border="0" alt="" style="border:none !important; margin:0px !important;" />
</li>
<li>The iPhone puts out ~3 volts on the mic line because it&#8217;s expecting an <a href="http://en.wikipedia.org/wiki/Microphone#Electret_condenser_microphone">electret microphone</a>. You could filter this with a capacitor but it <em>probably</em> won&#8217;t hurt anything. I&#8217;m assuming that I&#8217;ll always be using and electret mic so I didn&#8217;t add one.</li>
<li>The TRRS cable I used was actually just a <a href="http://www.amazon.com/gp/product/B0007V6JCK?ie=UTF8&#038;tag=awaitiinspir-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=B0007V6JCK">3.5mm video cable.</a><img src="http://www.assoc-amazon.com/e/ir?t=awaitiinspir-20&#038;l=as2&#038;o=1&#038;a=B0007V6JCK" width="0" height="0" border="0" alt="" style="border:none !important; margin:0px !important;" /> This type of cable comes with a lot of video and digital cameras. TRRS jacks and cables are surprisingly hard to find &#8211; Mouser <a href="http://www.mouser.com/Search/ProductDetail.aspx?qs=sGAEpiMZZMukzO2buB5fm%252btMyV14Sz%252bgr3eOZAI%252bnQU%3d">does have a TRRS plug</a> but I could not find TRRS jacks anywhere.</li>
</ul>
<h3>Build Pictures</h3>
<p><a href="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-2-bg.jpg" rel="shadowbox[post-2194];player=img;"><img alt="Record iPhone Calls | iPhone Call Recorder" src="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-2-sm.jpg" title="Record iPhone Calls | iPhone Call Recorder" class="aligncenter frame" width="460" height="415" /></a></p>
<p><a href="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-1-bg.jpg" rel="shadowbox[post-2194];player=img;"><img alt="Record iPhone Calls | iPhone Call Recorder" src="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-1-sm.jpg" title="Record iPhone Calls | iPhone Call Recorder" class="aligncenter frame" width="460" height="380" /></a></p>
<p><a href="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-3-bg.jpg" rel="shadowbox[post-2194];player=img;"><img alt="Record iPhone Calls | iPhone Call Recorder" src="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-3-sm.jpg" title="Record iPhone Calls | iPhone Call Recorder" class="aligncenter frame" width="460" height="345" /></a></p>
<p><a href="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-4-bg.jpg" rel="shadowbox[post-2194];player=img;"><img alt="Record iPhone Calls | iPhone Call Recorder" src="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-4-sm.jpg" title="Record iPhone Calls | iPhone Call Recorder" class="aligncenter frame" width="460" height="474" /></a></p>
<p><a href="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-5-bg.jpg" rel="shadowbox[post-2194];player=img;"><img alt="Record iPhone Calls | iPhone Call Recorder" src="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-5-sm.jpg" title="Record iPhone Calls | iPhone Call Recorder" class="aligncenter frame" width="460" height="379" /></a></p>
<p><a href="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-6-bg.jpg" rel="shadowbox[post-2194];player=img;"><img alt="Record iPhone Calls | iPhone Call Recorder" src="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-6-sm.jpg" title="Record iPhone Calls | iPhone Call Recorder" class="aligncenter frame" width="460" height="438" /></a></p>
<p><a href="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-7-bg.jpg" rel="shadowbox[post-2194];player=img;"><img alt="Record iPhone Calls | iPhone Call Recorder" src="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-7-sm.jpg" title="Record iPhone Calls | iPhone Call Recorder" class="aligncenter frame" width="460" height="367" /></a></p>
<p><iframe src="http://rcm.amazon.com/e/cm?t=awaitiinspir-20&#038;o=1&#038;p=8&#038;l=as1&#038;asins=B000BYAJBU&#038;fc1=000000&#038;IS2=1&#038;lt1=_blank&#038;m=amazon&#038;lc1=0000FF&#038;bc1=000000&#038;bg1=FFFFFF&#038;f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe> <iframe src="http://rcm.amazon.com/e/cm?t=awaitiinspir-20&#038;o=1&#038;p=8&#038;l=as1&#038;asins=B0007V6JCK&#038;fc1=000000&#038;IS2=1&#038;lt1=_blank&#038;m=amazon&#038;lc1=0000FF&#038;bc1=000000&#038;bg1=FFFFFF&#038;f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe> <iframe src="http://rcm.amazon.com/e/cm?t=awaitiinspir-20&#038;o=1&#038;p=8&#038;l=as1&#038;asins=B0015A6O6S&#038;fc1=000000&#038;IS2=1&#038;lt1=_blank&#038;m=amazon&#038;lc1=0000FF&#038;bc1=000000&#038;bg1=FFFFFF&#038;f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></p>

<p><a href="http://feedads.g.doubleclick.net/~a/39uibdvsa4tDa7smxhyCrLrc_Yk/0/da"><img src="http://feedads.g.doubleclick.net/~a/39uibdvsa4tDa7smxhyCrLrc_Yk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/39uibdvsa4tDa7smxhyCrLrc_Yk/1/da"><img src="http://feedads.g.doubleclick.net/~a/39uibdvsa4tDa7smxhyCrLrc_Yk/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=sZEBZ4elJ3g:0bMpEdAHmdI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=sZEBZ4elJ3g:0bMpEdAHmdI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=sZEBZ4elJ3g:0bMpEdAHmdI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=sZEBZ4elJ3g:0bMpEdAHmdI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=sZEBZ4elJ3g:0bMpEdAHmdI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=sZEBZ4elJ3g:0bMpEdAHmdI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=sZEBZ4elJ3g:0bMpEdAHmdI:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=sZEBZ4elJ3g:0bMpEdAHmdI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=sZEBZ4elJ3g:0bMpEdAHmdI:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AwaitingInspiration/~4/sZEBZ4elJ3g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://awaitinginspiration.com/iphone-call-recorder/feed</wfw:commentRss>
		<slash:comments>36</slash:comments>
<enclosure url="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-record-spliter-test.mp3" length="2292613" type="audio/mpeg" />
<enclosure url="http://awaitinginspiration.com/wp-content/uploads/2009/iphone-record/iphone-call-recorder.mp3" length="2118951" type="audio/mpeg" />
		<feedburner:origLink>http://awaitinginspiration.com/iphone-call-recorder</feedburner:origLink></item>
		<item>
		<title>Fred Meyer Fell On My Wife</title>
		<link>http://feedproxy.google.com/~r/AwaitingInspiration/~3/FSVbQ1SiXTg/fred-meyer-fell-on-my-wife</link>
		<comments>http://awaitinginspiration.com/fred-meyer-fell-on-my-wife#comments</comments>
		<pubDate>Tue, 28 Jul 2009 23:31:02 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[whatever]]></category>
		<category><![CDATA[customer-service]]></category>
		<category><![CDATA[fred-meyer]]></category>
		<category><![CDATA[rant]]></category>
		<category><![CDATA[rave]]></category>
		<category><![CDATA[store]]></category>

		<guid isPermaLink="false">http://awaitinginspiration.com/?p=2126</guid>
		<description><![CDATA[When I got over to where Sandi was, I immediately realized something was very wrong - Sandi was crying and holding her forehead. ]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://awaitinginspiration.com/fred-meyer-fell-on-my-wife" title="Permanent link to Fred Meyer Fell On My Wife"><img class="post_image aligncenter" src="http://awaitinginspiration.com/wp-content/uploads/2009/fred-meyer/fred-meyer-logo.png" width="460" height="141" alt="Fred Meyer Fell On My Wife" /></a>
</p><p class="note">UPDATE: Tuesday afternoon we were contacted by Sedgwick &#038; James, the company that handles Fred Meyer&#8217;s liability issues and are discussing with them what compensation, if any, Fred Meyer is willing to give.</p>
<p class="note">UPDATE: Tuesday afternoon Laura S. Fred Meyer&#8217;s Director of Risk Management called and apologized to Sandi.</p>
<p>This last Sunday, July 26, my wife, Sandi, our kids, Sandi&#8217;s mom, and my kid sister and I were at Fred Meyer to do some shopping. I was over in the men’s section across from where everyone else was in the boys/girls section. I finished looking and started walking back over to the boys/girls section to meet up with everyone when I saw Sandi motioning to a male Fred Meyer employee while saying “excuse me” apparently trying to get his help, the Fred Meyer employee said “Don’t ask me, ask her” while pointing to a female employee. The male employee didn’t even have the decency to ask what Sandi needed; and respectfully refer her over to the female employee; his behavior was rude and unacceptable but as I was about to find out that wasn&#8217;t the half of it. </p>
<p>The female employee started to walk over to assist Sandi and when I got over to where everyone was, I realized something was very wrong &#8211; Sandi was crying and holding her forehead. I asked what happened and Sandi’s mom pointed to a sign on the floor and told me that the sign fell off the rack and hit Sandi on the forehead.<br />
<span id="more-2126"></span><br />
<div class="wp-caption aligncenter" style="width: 460px">
	<img alt="This was taken several minutes after the sign fell on Sandi. " src="http://awaitinginspiration.com/wp-content/uploads/2009/fred-meyer/fred-meyer-8.jpg" title="Fred Meyer Fell On My Wife" width="460" height="333" />
	<p class="wp-caption-text">This was taken several minutes after the sign fell on Sandi. </p>
</div></p>
<p>Sandi told the female employee what happened, which was simple – Sandi pulled a hoodie off the top hanger, had my sister try it on, and then put it back on the hanger, a normal every day shopping activity; but in this case the movement of Sandi putting the hanger back caused the 11&#8243; x 14&#8243; 2 pound sign to fall 15&#8243; before striking Sandi’s forehead.</p>
<p>The female employee was apologizing profusely but didn’t know what to do, so she acted accordingly and called her manager. A few moments later Nancy, a manager, came over and asked me what the problem was. I was upset, about two seconds from boiling over, I sneeringly said “your display fell on my wife” Nancy got a concerned look on her face and looked over at the sign and at Sandi’s head… she begin apologizing. I asked Nancy if there was an incident report or something that we could fill out; Nancy said yeas and proceeded to call her manager Maria over.</p>
<div class="wp-caption aligncenter" style="width: 460px">
	<img alt="I took this the day after the incident. I went back to make sure the remaining signs were taken down (at least the high ones) and to measure and weigh the sign that fell on Sandi." src="http://awaitinginspiration.com/wp-content/uploads/2009/fred-meyer/fred-meyer-1.jpg" title="Fred Meyer Fell On My Wife" width="460" height="306" />
	<p class="wp-caption-text">I took this the day after the incident. I went back to make sure the remaining signs were taken down (at least the high ones) and to measure and weigh the sign that fell on Sandi.</p>
</div>
<div class="wp-caption aligncenter" style="width: 460px">
	<img alt="This is exactly like the sign that fell on Sandi - 11”x14” and 2 1/4lbs. Held on by noting more than glorified refrigerator magnets." src="http://awaitinginspiration.com/wp-content/uploads/2009/fred-meyer/fred-meyer-2.jpg" title="Fred Meyer Fell On My Wife" width="460" height="379" />
	<p class="wp-caption-text">This is exactly like the sign that fell on Sandi - 11” x 14” and 2 1/4 pounds. Held on by noting more than glorified refrigerator magnets.</p>
</div>
<p>Maria, Nancy’s manager, arrived moments later and asked what happened, and we explained. I smacked a small sign, attached by the same mechanism as the bigger one that hit Sandi’s head and said something like “look how easily these fall off, there defective” I was trying to show how poorly their attached, but honestly it was also out of frustration and anger. </p>
<p>Maria quickly asked Sandi if she needed anything, water, ice, and sent Nancy to go get them for her. Sandi felt dizzy enough that she needed to sit down; the impact of the sign on her head caused her knees to buckle and she almost fell over. </p>
<p>While Nancy was off getting ice and water Maria started to take the incident report, Maria was very apologetic and in our opinion handled the situation to the best of her ability, as did every other Fred Meyer employee involved in the incident.</p>
<p>We had taken a look at the fallen sign and found that it was missing one of two magnets that hold it to the hanger and the adhesive holding the remaining magnet, jostled when Sandi put the hoodie back, failed causing the sign to fall. </p>
<div class="wp-caption aligncenter" style="width: 460px">
	<img alt="I took this picture of the mount from the sign that fell on Sandi the day of the incident. There are supposed to be two magnets but one was missing, weakening an already insufficient mount. We think the adhesive holding the remaining magnet failed causing it to fall." src="http://awaitinginspiration.com/wp-content/uploads/2009/fred-meyer/fred-meyer-3.jpg" title="Fred Meyer Fell On My Wife" width="460" height="442" />
	<p class="wp-caption-text">I took this picture of the mount from the sign that fell on Sandi the day of the incident. There are supposed to be two magnets but one was missing, weakening an already insufficient mount. We think the adhesive holding the remaining magnet failed causing it to fall.</p>
</div>
<p>Maria mentioned that she never liked the signs, but didn’t specify why and said that she’d have them taken down in the morning. Nancy returned with and ice pack, water and some antiseptic for Sandi and in fact went to get Sandi a second ice pack a few minutes later because the first one warmed up. </p>
<p>Maria finished filling out the paper work and explained to Sandi and I that we could go to the hospital and Fred Meyer’s insurance would cover it. Maria recommended that at the very least Sandi should go and get a tetanus shot. At this point, about 30-45 minutes into the incident, Sandi’s head was still hurting but she was coherent and joking with Maria and Nancy as we were wrapping up the paper work. </p>
<p class="note">
I want to clearly express that Nancy and Maria, as well as the female employee all handled the situation very well, they reacted appropriately, were very apologetic and nice. Honestly, I was ready to pounce but Maria and Nancy’s attitude in dealing with the situation diffused what was a volatile situation.
</p>
<p>As we finished up I asked Maria if we could get a copy of the incident report, she said “no, I can’t do that” and though I found it odd I didn’t push the issue. I snapped a few pictures with my phone and neither Maria nor Nancy objected. Before we parted ways Maria gave me a piece of paper with her name, the name of Fred Meyer’s insurance company and her direct line.</p>
<p>Later that night Sandi was feeling nauseous, worried her mom and I convinced her to go to the ER and get checked out. The doctor said that the nausea was due to a mild concussion but since Sandi did not have any other symptoms she did not require a CT scan. They gave Sandi medicine for the nausea and a tetanus shot. We were given instructions on symptoms to watch out for over the next few days in case the concussion worsened.</p>
<p>The next day, Monday, I went back to the store to see if the signs had been taken down as Maria said they would be. I found two that were still up in the apparel section but they were on racks no higher than 5’. I also took a few pictures, used a tape measure to measure how high the sign that hit Sandi was from the floor and weighed it.</p>
<div class="wp-caption aligncenter" style="width: 460px">
	<img alt="It’s funny - as I was unboxing the scale, camera around my neck, two Fred Meyer employees walked by and didn’t say a word to me. By the way, I put the scale back just as I found it." src="http://awaitinginspiration.com/wp-content/uploads/2009/fred-meyer/fred-meyer-6.jpg" title="Fred Meyer Fell On My Wife" width="460" height="343" />
	<p class="wp-caption-text">It’s funny - as I was unboxing the scale, camera around my neck, two Fred Meyer employees walked by and didn’t say a word to me. By the way, I put the scale back just as I found it.</p>
</div>
<p>On Tuesday, Maria called to see how Sandi was doing &#8211; I told her that Sandi did go to the ER and explained what the doctor said. She was again apologetic and told me she had a discussion with the male employee that initially snubbed Sandi &#8211; the male employee explained that he acted the way he did in a joking manner and did not realize Sandi was injured. Maria said he was very sorry and even asked to call to apologize to Sandi himself. Looking back, Sandi and I both see how the way he acted towards Sandi was meant to have some humor behind it, which we both can certainly appreciate; we do not think he was acting maliciously. So his behavior is forgiven as far as we are concerned.</p>
<p>Whatever the case may be, someone at Fred Meyer was negligent &#8211; Given the size and weight of the sign it should have never been mounted the way it was, additionally the mount that was holding the sign in question was damaged, so an already insufficient mount was compromised. It was an accident waiting to happen. No matter how well the management of Fred Meyer handled the situation (which they did very well) it does not excuse the fact that the sign should have never fallen. </p>
<p>Sandi and I feel that it is more than acceptable to ask Fred Meyer for monetary compensation, above the medical costs that we incurred. Sandi was physically injured, it&#8217;s not enough for Fred Meyer as a company to simply say &#8220;sorry&#8221; and walk away. We are not suing Fred Meyer, but we are going to seek compensation, a monetary apology if you will. Whether you like it or not, money talks in these parts and we hope that Fred Meyer puts it&#8217;s money where it&#8217;s mouth is. </p>
<p>We have yet to speak with anyone regarding this issue, besides the managers of the local store, but were being told that someone should be contacting us shortly [see update(s) above].</p>
<div class="wp-caption aligncenter" style="width: 460px">
	<img alt="This is how the mounts attach to the rack, it’s a ingenious design but woefully insufficient for anything heaver than a pound." src="http://awaitinginspiration.com/wp-content/uploads/2009/fred-meyer/fred-meyer-7.jpg" title="Fred Meyer Fell On My Wife" width="460" height="306" />
	<p class="wp-caption-text">This is how the mounts attach to the rack, it’s a ingenious design but woefully insufficient for anything heaver than a pound.</p>
</div>
<div class="wp-caption aligncenter" style="width: 460px">
	<img alt="This is how the mount is supposed to look; the one that fell on Sandi was missing one of the magnets. So not only was the mount overweighed it was damaged and yet still being used." src="http://awaitinginspiration.com/wp-content/uploads/2009/fred-meyer/fred-meyer-5.jpg" title="Fred Meyer Fell On My Wife" width="460" height="385" />
	<p class="wp-caption-text">This is how the mount is supposed to look; the one that fell on Sandi was missing one of the magnets. So not only was the mount overweighed it was damaged and yet still being used.</p>
</div>
<div class="wp-caption aligncenter" style="width: 460px">
	<img alt="This was taken the day after the sign fell on Sandi." src="http://awaitinginspiration.com/wp-content/uploads/2009/fred-meyer/fred-meyer-10.jpg" title="Fred Meyer Fell On My Wife" width="460" height="306" />
	<p class="wp-caption-text">This was taken the day after the sign fell on Sandi.</p>
</div>

<p><a href="http://feedads.g.doubleclick.net/~a/tpoU-VTd937qgLCbZqLvAz3C0gY/0/da"><img src="http://feedads.g.doubleclick.net/~a/tpoU-VTd937qgLCbZqLvAz3C0gY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/tpoU-VTd937qgLCbZqLvAz3C0gY/1/da"><img src="http://feedads.g.doubleclick.net/~a/tpoU-VTd937qgLCbZqLvAz3C0gY/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=FSVbQ1SiXTg:5_nPQcQI8WU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=FSVbQ1SiXTg:5_nPQcQI8WU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=FSVbQ1SiXTg:5_nPQcQI8WU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=FSVbQ1SiXTg:5_nPQcQI8WU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=FSVbQ1SiXTg:5_nPQcQI8WU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=FSVbQ1SiXTg:5_nPQcQI8WU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=FSVbQ1SiXTg:5_nPQcQI8WU:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=FSVbQ1SiXTg:5_nPQcQI8WU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=FSVbQ1SiXTg:5_nPQcQI8WU:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AwaitingInspiration/~4/FSVbQ1SiXTg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://awaitinginspiration.com/fred-meyer-fell-on-my-wife/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://awaitinginspiration.com/fred-meyer-fell-on-my-wife</feedburner:origLink></item>
		<item>
		<title>100 Things – #5</title>
		<link>http://feedproxy.google.com/~r/AwaitingInspiration/~3/JIfO8aETVnY/100-things-5</link>
		<comments>http://awaitinginspiration.com/100-things-5#comments</comments>
		<pubDate>Fri, 24 Jul 2009 06:11:13 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[100 things]]></category>
		<category><![CDATA[about]]></category>
		<category><![CDATA[me]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[sharpie]]></category>

		<guid isPermaLink="false">http://awaitinginspiration.com/?p=2118</guid>
		<description><![CDATA[Number 5 "100 Things About Me" photo project.]]></description>
			<content:encoded><![CDATA[<p></p><p><img alt="100 Things About Me #5" src="http://awaitinginspiration.com/wp-content/uploads/2009/100_about_me_5.jpg" title="100 Things About Me #5" class="aligncenter frame" width="460" height="410" /></p>

<p><a href="http://feedads.g.doubleclick.net/~a/0XXRoeYZGDrBxPZW7Y4FFCedTIA/0/da"><img src="http://feedads.g.doubleclick.net/~a/0XXRoeYZGDrBxPZW7Y4FFCedTIA/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/0XXRoeYZGDrBxPZW7Y4FFCedTIA/1/da"><img src="http://feedads.g.doubleclick.net/~a/0XXRoeYZGDrBxPZW7Y4FFCedTIA/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=JIfO8aETVnY:6Pv0TeUcHIs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=JIfO8aETVnY:6Pv0TeUcHIs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=JIfO8aETVnY:6Pv0TeUcHIs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=JIfO8aETVnY:6Pv0TeUcHIs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=JIfO8aETVnY:6Pv0TeUcHIs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=JIfO8aETVnY:6Pv0TeUcHIs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=JIfO8aETVnY:6Pv0TeUcHIs:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=JIfO8aETVnY:6Pv0TeUcHIs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=JIfO8aETVnY:6Pv0TeUcHIs:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AwaitingInspiration/~4/JIfO8aETVnY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://awaitinginspiration.com/100-things-5/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://awaitinginspiration.com/100-things-5</feedburner:origLink></item>
		<item>
		<title>Apollo 11 – 40 Years</title>
		<link>http://feedproxy.google.com/~r/AwaitingInspiration/~3/-_S6qAqWZag/apollo-11-40-years</link>
		<comments>http://awaitinginspiration.com/apollo-11-40-years#comments</comments>
		<pubDate>Tue, 21 Jul 2009 05:01:13 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[whatever]]></category>
		<category><![CDATA[exploration]]></category>
		<category><![CDATA[mars]]></category>
		<category><![CDATA[moon]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[travel]]></category>

		<guid isPermaLink="false">http://awaitinginspiration.com/?p=2083</guid>
		<description><![CDATA[
On this day in 1969, Man set foot on the Moon. It was an achievement that forever changed what we considered possible. It is an achievement that should be remembered and honored not just by Americans but all of humanity. 
Space exploration has always held a special place in my heart – Always looking up [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://awaitinginspiration.com/apollo-11-40-years" title="Permanent link to Apollo 11 &#8211; 40 Years"><img class="post_image aligncenter" src="http://awaitinginspiration.com/wp-content/uploads/2009/apollo-40.jpg" width="460" height="162" alt="Apollo 11 - 40 Years" /></a>
</p><p>On this day in 1969, Man set foot on the Moon. It was an achievement that forever changed what we considered possible. It is an achievement that should be remembered and honored not just by Americans but all of humanity. </p>
<p>Space exploration has always held a special place in my heart – Always looking up at the starts; I remember looking at the moon through my first telescope. I remember making a Space Shuttle model rocket that flew from the launch pad in a perfect arch, landing nose first in the ground… We lived in Lancaster, CA most of my life and as a kid, my mom got (from a patient at the dental office she worked at) our family press level passes to see the Space Shuttle land at Edwards Air Force Base. I was also able to participate in a tour of Space Shuttle Columbia while it was at Lockheed Martin for maintenance; I believe this was just before its last mission in 2003.</p>
<p>I believe now, as I always have, that we need to go back to the Moon, we need to relearn the lessons that Apollo taught us 40 years ago, we need to relearn to land on another world so we can go beyond our planet. Space is the final frontier and we need to commit to exploring this frontier, we cannot let ourselves become complacent for if we fail to explore, we fail ourselves and the generations of people before us who gave so much to discover.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/vVwRgSbx2mu1ir9g15rCuVGNmqM/0/da"><img src="http://feedads.g.doubleclick.net/~a/vVwRgSbx2mu1ir9g15rCuVGNmqM/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/vVwRgSbx2mu1ir9g15rCuVGNmqM/1/da"><img src="http://feedads.g.doubleclick.net/~a/vVwRgSbx2mu1ir9g15rCuVGNmqM/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=-_S6qAqWZag:93omjklMeig:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=-_S6qAqWZag:93omjklMeig:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=-_S6qAqWZag:93omjklMeig:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=-_S6qAqWZag:93omjklMeig:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=-_S6qAqWZag:93omjklMeig:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=-_S6qAqWZag:93omjklMeig:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=-_S6qAqWZag:93omjklMeig:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=-_S6qAqWZag:93omjklMeig:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=-_S6qAqWZag:93omjklMeig:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AwaitingInspiration/~4/-_S6qAqWZag" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://awaitinginspiration.com/apollo-11-40-years/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://awaitinginspiration.com/apollo-11-40-years</feedburner:origLink></item>
		<item>
		<title>Cheep Under Table Computer Mount</title>
		<link>http://feedproxy.google.com/~r/AwaitingInspiration/~3/v2RY1Cfou7w/cheep-under-table-computer-mount</link>
		<comments>http://awaitinginspiration.com/cheep-under-table-computer-mount#comments</comments>
		<pubDate>Mon, 20 Jul 2009 04:43:29 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[make]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[diy]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[table]]></category>

		<guid isPermaLink="false">http://awaitinginspiration.com/?p=2063</guid>
		<description><![CDATA[
I needed a cheep and easy way to mount a computer under a table &#8211; some aluminum stock, Velcro, and bolts made for a quick and dirty mount for around $12.00.




]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://awaitinginspiration.com/cheep-under-table-computer-mount" title="Permanent link to Cheep Under Table Computer Mount"><img class="post_image aligncenter frame" src="http://awaitinginspiration.com/wp-content/uploads/2009/under-table-computer-mount/computer-table-mount-sm-1.jpg" width="460" height="418" alt="Cheep Under Table Computer Mount" /></a>
</p><p>I needed a cheep and easy way to mount a computer under a table &#8211; some aluminum stock, Velcro, and bolts made for a quick and dirty mount for around $12.00.<br />
<span id="more-2063"></span><br />
<div class="wp-caption aligncenter" style="width: 460px">
	<img alt="The aluminum stock was bent to shape in a vice and 1/4 holes we drilled for the 1 bolts." src="http://awaitinginspiration.com/wp-content/uploads/2009/under-table-computer-mount/computer-table-mount-sm-7.jpg" title="Cheep Under Table Computer Mount" width="460" height="329" />
	<p class="wp-caption-text">The aluminum stock was bent to shape in a vice and 1/4&quot; holes we drilled for the 1&quot; bolts.</p>
</div></p>
<div class="wp-caption aligncenter" style="width: 460px">
	<img alt="Velcro squares were used to keep the computer from moving around." src="http://awaitinginspiration.com/wp-content/uploads/2009/under-table-computer-mount/computer-table-mount-sm-9.jpg" title="Cheep Under Table Computer Mount" width="460" height="314" />
	<p class="wp-caption-text">Velcro squares were used to keep the computer from moving around.</p>
</div>
<p><img alt="" src="http://awaitinginspiration.com/wp-content/uploads/2009/under-table-computer-mount/computer-table-mount-sm-8.jpg" title="Cheep Under Table Computer Mount" class="aligncenter frame" width="460" height="306" /></p>
<p><img alt="" src="http://awaitinginspiration.com/wp-content/uploads/2009/under-table-computer-mount/computer-table-mount-sm-6.jpg" title="Cheep Under Table Computer Mount" class="aligncenter frame" width="460" height="333" /></p>
<p><img alt="" src="http://awaitinginspiration.com/wp-content/uploads/2009/under-table-computer-mount/computer-table-mount-sm-3.jpg" title="Cheep Under Table Computer Mount" class="aligncenter frame" width="460" height="332" /></p>
<div class="wp-caption aligncenter" style="width: 460px">
	<img alt="Rip-ties were used to keep the cables under control." src="http://awaitinginspiration.com/wp-content/uploads/2009/under-table-computer-mount/computer-table-mount-sm-5.jpg" title="Cheep Under Table Computer Mount" width="460" height="344" />
	<p class="wp-caption-text">Rip-ties were used to keep the cables under control.</p>
</div>

<p><a href="http://feedads.g.doubleclick.net/~a/aqDxQYEssnQ6OBZ_tjxVbq3hkJU/0/da"><img src="http://feedads.g.doubleclick.net/~a/aqDxQYEssnQ6OBZ_tjxVbq3hkJU/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/aqDxQYEssnQ6OBZ_tjxVbq3hkJU/1/da"><img src="http://feedads.g.doubleclick.net/~a/aqDxQYEssnQ6OBZ_tjxVbq3hkJU/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=v2RY1Cfou7w:hy6RS-Oe2No:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=v2RY1Cfou7w:hy6RS-Oe2No:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=v2RY1Cfou7w:hy6RS-Oe2No:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=v2RY1Cfou7w:hy6RS-Oe2No:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=v2RY1Cfou7w:hy6RS-Oe2No:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=v2RY1Cfou7w:hy6RS-Oe2No:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=v2RY1Cfou7w:hy6RS-Oe2No:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=v2RY1Cfou7w:hy6RS-Oe2No:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=v2RY1Cfou7w:hy6RS-Oe2No:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AwaitingInspiration/~4/v2RY1Cfou7w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://awaitinginspiration.com/cheep-under-table-computer-mount/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://awaitinginspiration.com/cheep-under-table-computer-mount</feedburner:origLink></item>
		<item>
		<title>Teri Gunn | Stealing Memories</title>
		<link>http://feedproxy.google.com/~r/AwaitingInspiration/~3/RoMDHFxbMIw/teri-gunn-stealing-memories</link>
		<comments>http://awaitinginspiration.com/teri-gunn-stealing-memories#comments</comments>
		<pubDate>Thu, 02 Jul 2009 23:27:24 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[whatever]]></category>
		<category><![CDATA[advice]]></category>
		<category><![CDATA[bitch]]></category>
		<category><![CDATA[bs]]></category>
		<category><![CDATA[court]]></category>
		<category><![CDATA[justice]]></category>
		<category><![CDATA[law]]></category>
		<category><![CDATA[lies]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[teri gunn]]></category>
		<category><![CDATA[twat]]></category>
		<category><![CDATA[wedding]]></category>

		<guid isPermaLink="false">http://awaitinginspiration.com/?p=1653</guid>
		<description><![CDATA[...this is me taking the opportunity to drag Teri through the mud; and I am completely unapologetic about it. She deserves it; Teri is a liar, and a thief and I’m going to do everything I can to let the world know that...]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://awaitinginspiration.com/teri-gunn-stealing-memories" title="Permanent link to Teri Gunn | Stealing Memories"><img class="post_image aligncenter" src="http://awaitinginspiration.com/wp-content/uploads/2009/teri-gunn-stealing-memories/teri-gunn-stealing-memories.jpg" width="436" height="460" alt="Teri Gunn | Stealing Memories" /></a>
</p><p><em>If it existed, Teri would burn in a very special level of Hell. A level they reserve for child molesters and people who talk at the theater<sup><a id="f1r" href="#f1" rel="nofollow">1</a></sup>.</em><br />
<span id="more-1653"></span></p>
<p class="note">
<strong>UPDATE:</strong> Sandi realized that the images of the e-mails and letter we sent to Teri were hard to read, especially at lower resolutions. The links now point to PDFs of the e-mails and letters.
</p>
<h3>[why]</h3>
<p>First, a brief explanation of why I&#8217;m writing this post: </p>
<p>It&#8217;s a warning, even as unlikely as it is that you will come across Teri Gunn, you will no doubt be presented with an opportunity to deal with someone like her. Your gut will tell you not to trust them but you will still want to; because it&#8217;s who you are. Let my words serve as reinforcement for your gut; do not trust them, run away, avoid people like Teri Gunn as you would avoid a zombie horde.</p>
<p>It&#8217;s payback, Teri hurt my wife Sandi and me &#8211; caused us undue stress, time, money, and caused a rift to form between Sandi and members of her family. Her inhumane behavior brought Sandi to tears and that&#8217;s frakking unacceptable. So, this is me taking the opportunity to drag Teri through the mud; and I am completely unapologetic about it. She deserves it; Teri is a liar, and a thief and I&#8217;m going to do everything I can to let the world know that.</p>
<h3>[truth]</h3>
<p>What you are about to read is the truth &#8211; it&#8217;s obviously written in my own words but it is nevertheless the complete truth. Teri and others on her side would of course claim otherwise &#8211; and they&#8217;d be lying<sup><a id="f2r" href="#f2" rel="nofollow">2</a></sup>. </p>
<h3>[story]</h3>
<p>Sandi and I got married on a budget and didn&#8217;t have a whole lot of money for a wedding photographer, but obviously still wanted pictures of the day. I was going to ask my uncle<sup><a id="f3r" href="#f3" rel="nofollow">3</a></sup>; until Sandi&#8217;s sister-in-law Kim told her that Teri, a friend of theirs, was interested in photographing our wedding.</p>
<p>Before talking to Teri or my uncle, among other things regarding our wedding pictures, Sandi and I established that we wanted the raw<sup><a id="f4r" href="#f4" rel="nofollow">4</a></sup> pictures that our wedding photographer shot. So, whoever our photographer was; we needed to make sure that they would be ok with giving them to us. Sandi and I also decided that if she wanted to do it, we&#8217;d use Teri as our photographer because my uncle was already videotaping and we didn&#8217;t want to add anymore to his plate. </p>
<p class="note">
I am strongly against the practice of a photographer maintaining ownership (copyright) of pictures they are being paid to take. If I am paying you to take pictures &#8211; they are mine thankyouverymuch. Most photographers will make you sign a contract – signing away your rights to the pictures you&#8217;re paying them to take. It&#8217;s about trying to suck you for every penny they can, they want to make sure that you have to come back to them for prints, etc. Some photographers will release their rights after a period of time (years) or for a very handsome fee, which is ridiculous. The idea that a photographer maintains ownership of pictures you paid them to take is bunk; but it&#8217;s been happening so long that people don&#8217;t know any better, it shouldn&#8217;t be tolerated and people should seek out more enlightened photographers.
</p>
<p>Several weeks before our wedding Teri called Sandi and officially offered to act as our wedding photographer. I walked into the room part way through their conversation and Sandi told me that Teri had offered to do our wedding photos. First thing I asked Sandi was if she was ok with giving us the raw pictures and Sandi nodded indicating to me that she had confirmed that Teri was ok with it. Still wanting to be sure I asked Sandi several more times, I asked so many times that Sandi gave me a look because I was being annoying. </p>
<p class="note">
It&#8217;s simple, if Teri was not ok with giving us the raw pictures she would have not been our photographer.
</p>
<p>During the conversation when Sandi asked Teri how much she&#8217;d charge us, Teri told Sandi that she would do it for free and gave Sandi a number of reasons why: </p>
<ul>
<li>Sandi was her friend.</li>
<li>Sandi was there for her even through tough times, when no one else was.</li>
<li>Sandi was the reason she met her husband<sup><a id="f5r" href="#f5" rel="nofollow">5</a></sup> met.</li>
</ul>
<p>Teri said she wanted to photograph our wedding as a gift to Sandi, plus as a student photographer she wanted the experience of photographing a wedding and the pictures to start building her portfolio. Having Teri do our wedding pictures, no charge, was obviously advantageous to us, given our limited wedding budget. Given the risk we were taking on an inexperienced photographer though, it seemed like a fair trade.</p>
<p class="note">
I want to make it clear that at the time Teri was not a professional photographer; she approached us as a <em>student photographer</em>. Teri had no portfolio<sup><a id="f6r" href="#f6" rel="nofollow">6</a></sup>, no professional experience and our wedding would be the first she had ever done.
</p>
<p>The deal that Sandi and Teri hashed out was straight forward:</p>
<ul>
<li>Teri would photograph our wedding on April 1st 2009, no charge, she refused to be paid because it was to be a gift to Sandi.</li>
<li>Teri was ok with giving us the raw pictures, Sandi confirmed this several times.</li>
<li>If Sandi and I wanted any prints, either from Teri&#8217;s edits or my own we&#8217;d order them through Teri.</li>
<li>And of course Teri was free to use our wedding pictures for her portfolio.</li>
</ul>
<p>Sandi and I had been warned, by several people not to deal with Teri &#8211; she has a reputation of being unscrupulous, of screwing people over, and going back on her word. The problem is Sandi and I are far too trusting for our own good, and generally give people the benefit of the doubt; so we dismissed the warnings. After all Teri was Sandi&#8217;s friend, a friend of Sandi&#8217;s sister-in-law and what kind of person would frack with someone&#8217;s wedding right?</p>
<p>About two weeks before our wedding Teri called Sandi and asked if we could pay her $125.00 for photographing our wedding. Several weeks ago she was more than willing to do it as a gift to Sandi but something changed<sup><a id="f7r" href="#f7" rel="nofollow">7</a></sup> and now she wanted to be paid $125.00. It was two weeks before the wedding so we were a bit stuck so we agreed to pay her the $125.00, nothing else changed. </p>
<p class="note">
It could be argued that it&#8217;s ridiculous for a student photographer, one with no experience, to expect to be paid anything; and in fact, it is. As a student photographer they should be content with the fact that someone is willing to take the risk on them in the first place. But Sandi and I are far too nice for our own good, and thought it was fair that Teri get paid a little for taking the time out of her day.
</p>
<p>It&#8217;s fair to say that since Teri was being paid now, even the small amount, our wedding was now a paid gig and so the stakes were raised a little higher. Our expectations went up a little compared the freebee gig she had offered us before but we were still aware that Teri had no experience.</p>
<p>Our wedding day came and Teri showed up with her camera and one 512MB SD card. It was a cloudy, cold, and rainy April day; so as we expected, outside pictures were not going to happen. When we started to take pictures Teri immediately started complaining about not being able to take pictures outside, the poor lighting inside, and her camera. Teri&#8217;s complaining didn&#8217;t help Sandi who was already nervous and it was so incessant that it caught the attention of our guests and the manager of the facility. The facility manager told Sandi that she felt bad, and was turning every light on that she could… the lack of light was not the problem though, it was Teri&#8217;s complete lack of knowing what the frack she was doing. Again, Sandi and I were aware of Teri&#8217;s lack of experience, but one also expects that an adult who is trying to start a career would be able to maintain at least a minimum level of professional composure. Even still, Sandi and I had largely forgotten about Teri&#8217;s behavior, and dismissed it. We understood that this was her first wedding and she was probably just nervous.</p>
<p class="note">
It&#8217;s now two weeks after our wedding and we&#8217;ve not see any of the pictures Teri took, except for three of our cake that she posted on Facebook.
</p>
<p>Sandi was on Facebook when she got a message from Teri, via Facebook chat. Teri started the conversation with normal conversation banter and then said she had worked on our pictures that day. Sandi asked when we&#8217;d get to see them and Teri said &#8220;soon.&#8221; Sandi asked Teri about the raw pictures, and told her that she didn&#8217;t need to spend time on them (of course she was welcome to) since we&#8217;re just going to get the raw pictures and I&#8217;d Photoshop them up and go from there.</p>
<p>Then, the same person who brought one 512MB SD card to a wedding, the same one who complained incessantly about the weather, lighting and her camera said:</p>
<blockquote><p>
No, remember I told you I can&#8217;t do that. Anything that goes out with my name on it has to be to my quality standards.
</p></blockquote>
<p>First, Teri said she was ok with giving us the raw pictures several weeks back, second why is she so concerned with her &#8220;quality standards&#8221; now, when she was willing to represent herself so poorly at our wedding?</p>
<p>Eventually, Teri told Sandi that if we want the raw pictures we could pay her $800 for them. Teri said she&#8217;s a professional, and she needed to maintain &#8220;creative control&#8221; over her work and denied agreeing to give us the raw pictures. I find it laughable that Teri called herself a &#8220;professional&#8221; &#8211; between her incessant complaining about the weather, lighting, and her camera, only bringing one 512MB SD card to a wedding, having no experience, and no portfolio, Teri is hardly a professional.</p>
<p>At this point watching our wedding pictures slip away Sandi was in tears, I got on the chat and thanked Teri for bringing Sandi to tears. I called Teri a liar, and reminded her that she agreed to give us the raw pictures, and again she denied it. Like a coward she then left the Facebook chat, saying &#8220;we&#8217;ll talk later&#8221; but she never came back.</p>
<p>I felt like we needed an advocate, so I called Sandi&#8217;s mom and apprised her of the situation hoping that maybe she could talk to Teri (who she knew) so we could come to some resolution; but Teri would not take her calls, or ours. </p>
<p>Turns out, Teri was busy calling Sandi&#8217;s sister-in-law, telling her that &#8220;Adam called me every name in the book&#8221; during the Facebook chat. Sandi&#8217;s sister-in-law Kim (the wife of a pastor) then called Sandi&#8217;s mom and blatantly lied, telling her that I cussed Teri out. When Sandi&#8217;s mom told Sandi and I what Teri and Kim were saying, I was thankful that Sandi was smart enough not to close the chat window… I took <a href="http://awaitinginspiration.com/wp-content/uploads/2009/teri-gunn-stealing-memories/teri-gunn-facebook_1.jpg" rel="shadowbox[facebook]">screen shots</a> to show whoever needed proof that I did not utter one curse word to Teri during the Facebook chat. Given the fact that Teri was screwing us over, Sandi and I were both rather nice.<a href="http://awaitinginspiration.com/wp-content/uploads/2009/teri-gunn-stealing-memories/teri-gunn-facebook_2.jpg" rel="shadowbox[facebook]" class="hidden"></a><a href="http://awaitinginspiration.com/wp-content/uploads/2009/teri-gunn-stealing-memories/teri-gunn-facebook_3.jpg" rel="shadowbox[facebook]" class="hidden"></a><a href="http://awaitinginspiration.com/wp-content/uploads/2009/teri-gunn-stealing-memories/teri-gunn-facebook_4.jpg" rel="shadowbox[facebook]" class="hidden"></a><a href="http://awaitinginspiration.com/wp-content/uploads/2009/teri-gunn-stealing-memories/teri-gunn-facebook_5.jpg" rel="shadowbox[facebook]" class="hidden"></a></p>
<p>Unfortunately, the damage was done; Teri&#8217;s actions, involving people who had nothing to do with the situation had already caused the rift to form between Sandi&#8217;s sister-in-law Kim and her brother but that is a whole other story.</p>
<p>The next day we sent Teri <a href="http://awaitinginspiration.com/wp-content/uploads/2009/teri-gunn-stealing-memories/first-email-to-teri-gunn.pdf">an e-mail</a><sup>(pdf)</sup> &#8211; Since she was so willing to call herself a professional I outlined some issues Sandi and I had with her unprofessional behavior at our wedding and offered her some advice. Though critical of her, it was not mean. In the same e-mail we remind Teri that she agreed to give us the raw pictures and that she originally offered to photograph our wedding for free, only to ask for $125.00 two weeks before the wedding. We asked her to just give us the SD card she used for our wedding and we&#8217;d give her $25.00, more than enough to replace the 512MB card she used.<a href="http://awaitinginspiration.com/wp-content/uploads/2009/teri-gunn-stealing-memories/teri-gunn-letter_2.png" rel="shadowbox[email1]" class="hidden"></a><a href="http://awaitinginspiration.com/wp-content/uploads/2009/teri-gunn-stealing-memories/teri-gunn-letter_3.png" rel="shadowbox[email1]" class="hidden"></a><a href="http://awaitinginspiration.com/wp-content/uploads/2009/teri-gunn-stealing-memories/teri-gunn-letter_4.png" rel="shadowbox[email1]" class="hidden"></a></p>
<p>Teri replied:</p>
<blockquote><p>
Sandi and Adam,</p>
<p>I&#8217;m sorry you are choosing to do this. I will not play your games, and I can&#8217;t be bullied. I am not going to respond to all this rubbish. We all know the truth and if you decide to admit it and stick to the agreement we made, I will order your proofs and then prints for you. You cannot have my files, sorry, not a deal, EVER. As soon as you pay me the $125 we agreed on, plus printing, and a signed contract, the order can be placed. I would be willing to GIVE you select files for use in your video, but only with a signed contract limiting the use to your video. You can also choose not to purchase you photos, and I will write off the $125. If this is the choice you make I will consider our verbal contract void and there will be no need for further communication about this.</p>
<p>Teri
</p></blockquote>
<p>Hum, I don&#8217;t recall that a contract limiting the use of our pictures was a part of the &#8220;agreement we made.&#8221; </p>
<p>At this point Sandi and I had both emotionally written off the pictures but were not ok with what Teri was doing. She went back on her word, lied about me to Sandi&#8217;s family and was effectively holding our wedding pictures hostage, demanding ransom. It was now about the principal, about not taking Teri trying to screw us lying down.</p>
<p>Sandi talked to a family member, a lawyer, who told her that whatever the agreement was at the time Teri took the pictures is what we should stick by. So, we wrote Teri another <a href="http://awaitinginspiration.com/wp-content/uploads/2009/teri-gunn-stealing-memories/second-email-to-teri-gunn.pdf">e-mail</a><sup>(pdf)</sup> in which we told Teri that we talked to a lawyer, and were going to go by the agreement that was in place when she took the pictures. We&#8217;d pay her $125.00, and she should give us the raw pictures. Obviously, at this point getting prints from Teri was out of the question. We also warned Teri that if she did not abide by the agreement then we would file a small claims case against her.</p>
<p>Teri replied:</p>
<blockquote><p>
Good luck, no contract! No proof. I told you that if you did not accept my deal that you should not contact me again. If you choose to do so I will contact authorities and get a restraining order. Yes this is serious and the law is on my side. Copyright laws are clear and you have no grounds for a lawsuit. As I told you, I will not be bullied. I am not afraid of your hot air.</p>
<p>Teri
</p></blockquote>
<p>Again, hum, &#8220;Good luck, no contract! No proof.&#8221; it&#8217;s true, we didn&#8217;t have a signed contract but why is she taunting us about it? She also tells us that if we don&#8217;t do it her way, she is going to get a restraining order against us; which is laughable because she has no grounds but it shows you the type of person we were dealing with. We&#8217;re trying to resolve the situation and she is threatening restraining orders.</p>
<p>As a last ditch effort, we sent Teri a <a href="http://awaitinginspiration.com/wp-content/uploads/2009/teri-gunn-stealing-memories/demand-letter-to-teri-gunn.pdf">demand letter</a><sup>(pdf)</sup> via certified mail, which included a check for $125.00; we gave Teri 10 days from the date of the letter to surrender our photos. In a demonstration of utter responsibility Teri waited till the ninth day to pick the letter up from the post office. Sandi and I waited five more working days for Teri to respond, and then we filed a small claims case against her.</p>
<p>Now, Sandi and I both understood that it was our word against Teri&#8217;s, but we did not feel that we should take this lying down, it was the principal of the matter. With cases like this, it comes down to who the judge believes, whose story is most likely the truth. Given our stance on the issue, what&#8217;s more likely: that we&#8217;d use Teri who would not give us the raw photos unless we paid her $800, or that we&#8217;d use my uncle, or someone else who would just give them to us?</p>
<p>As part of the process of filing the small claims case we were required to put the dollar amount we were seeking, we could not put that we just wanted our pictures. Obviously, wedding pictures are priceless, but Sandi and I sat down and figured out how much it would cost us to recreate our wedding pictures and we came up with $3,700.00. So that&#8217;s what we filed the small claims case for, but we still just wanted the pictures, or at least to let Teri know that she couldn&#8217;t get away with screwing us over. it was not about money.</p>
<p>Teri was served the court papers via sheriff and we had to wait fourteen days for her to respond, she had three options:</p>
<ul>
<li>Deny the claim.</li>
<li>Deny the claim and file a counter suit.</li>
<li>Ignore it and risk a default judgment against her.</li>
</ul>
<p>Teri decided to deny the claim and counter sue… she counter sued us for $3,700 which is laughable. First, because the most amount of money she ever asked us for was $800. Second, because that’s the same amount our suit against her was for. Teri&#8217;s counter claim was the definition of frivolous.</p>
<p>In between waiting for our court date we actually got an offer to appear on <a href="http://awaitinginspiration.com/wp-content/uploads/2009/teri-gunn-stealing-memories/judge-judy-teri-gunn.pdf"><em>Judge Judy</em></a><sup>(pdf)</sup> and have our case arbitrated on the show. Sandi talked to a producer and got the low down on what would happen and we agreed that we would go on the show. The producer then talked to Teri and even though Teri seemed interested at first, she stopped communicating with the producer.</p>
<p>The producer later told us that Teri would not go on without Kim, Sandi&#8217;s sister-in-law who took Teri&#8217;s side from the beginning. What we think happened was that while Kim was willing to lie to me, Sandi and everyone else, going on TV and lying was a little too much for the wife of a pastor. Since Kim was not willing to do Judge Judy, neither was Teri. We were a little surprised; a free trip to California, free hotel stay, free food, $100 appearance fee and the show pays whatever judgment is found, it&#8217;s a sweet deal. But again, it would have required Teri and Kim to both appear on national TV and lie; it seems that they both prefer to keep their lies local.</p>
<p class="note">
It&#8217;s now been two months since our wedding and we have still not seen any of the pictures Teri took. Teri claimed she had amazing pictures but up till this point she refused to show them to us.
</p>
<p>Yamhill County requires that both parties attempt mediation before the case is heard by a judge. The process is simple, both sides go into a room and two trained mediators do their best to try to get both sides to come to an agreement. It&#8217;s actually a good thing, because it forces you to listen to what the other person has to say (you are not allowed to interrupt), you have to be civil and it allows the parties to come to a mutual agreement rather than a judge forcing a decision on you.</p>
<p>We went first stating our side to the mediators, we told the mediators that we were still willing to adhere to the agreement that we had in place when Teri took the pictures. We&#8217;d pay Teri $125, she gives us the raw pictures like she said she would and we&#8217;d part ways. For obvious reasons we were not willing to get prints through her. The thing was that we had pay to file the small claims case against her and we felt that Teri&#8217;s unwillingness to work out the situation outside of the court system forced us to file the case; so we said we&#8217;d pay Teri $2.18 which when added to our filing costs added up to $125.</p>
<p>Then Teri told her side, continued to lie, said that we could get prints from her, for whatever amount she decided to pull out of her disgustingly oversized butt at that moment and we could only have the raw pictures if we paid her $800. She droned on about being a professional, it was really the most frustrating part, having to sit there and listen to Teri blather on knowing full well that she was lying.</p>
<p>After we both stated our sides the mediators started to&#8230; mediate. We went back and forth, neither of us willing to back down from our position. We weren&#8217;t willing to back down because we were not going to allow Teri to lie, cheat, and steal from us. Teri was not backing down because she&#8217;s a stubborn thief. </p>
<p>The mediators asked to speak with each of us privately, we went first. We basically told the mediators we were not going to back down; Teri agreed to give us the raw pictures and we were not going to give her the satisfaction of paying her any more money than we agreed to. It wasn&#8217;t like we had $800 just to slap down and give her anyway. Sandi was very emotional at this point; it was incredibly frustrating that even in a court house Teri would not admit that she agreed to give us the raw pictures. We also discussed Teri&#8217;s counter suit, as frivolous as it was, it did present a risk to us. If we went before a judge there was a possibility that we could end up being ordered to pay Teri even more than the $800 raw picture fee she pulled out of her disgustingly oversized butt.</p>
<p>Teri then took her turn to meet with the mediators privately… what they talked about we don&#8217;t know but I&#8217;d stake my life that Teri continued to lie. After Teri was done lying to the mediators privately we were called back into the room. </p>
<p>I&#8217;m pretty good at reading people, the mediators were frustrated because they really wanted to find a resolution to the situation and even after nearly two hours of mediation Sandi and I were not budging and neither was Teri. I&#8217;m obviously biased but I felt like they were sympathetic towards Sandi and me<sup><a id="f8r" href="#f8" rel="nofollow">8</a></sup>. It was getting to the point where they were going to have to call it and we&#8217;d have to go before a judge.</p>
<p class="note">
Sandi summed it up very well when she told the mediators – What we are purposing, sticking to the original agreement does not cost us or Teri anything. What Teri is purposing does not cost her anything, but costs us $800, on top of the fact that it goes completely against what Teri agreed to in the first place.
</p>
<p>The mediators told us Teri was willing to show us some of the pictures she brought of our wedding; maybe if we saw them we&#8217;d be willing to budge a little. Up till this point Teri had been unwilling to show us any of our pictures unless we paid her, so this was progress. </p>
<p>Sandi left the decision up to me and I thought for a little bit and finally told the mediators: If we look at the pictures, and decide that they are not worth fighting for, or paying $800 for, then we will just walk away and drop our suit as long as Teri drops her counter suit. Sandi added that Teri also has to agree to destroy the pictures. Teri refused to agree to destroy the pictures, she insisted that one day we&#8217;d come to &#8220;our senses&#8221; and pay her for them. Not likely. </p>
<p class=note>
Teri tried to get the mediators to add that Sandi and I could not &#8220;talk bad about her&#8221; to anyone… the mediators gave her a look like &#8220;are you five?&#8221;
</p>
<p>We finally came to an agreement that if we looked at the pictures, did not feel that they were worth it we&#8217;d drop our suit, Teri would drop hers and Teri was barred from using any pictures from our wedding in any personal or professional capacity; in other words &#8211; <em>she might as well destroy them because they would never see the light of day anyway</em>.</p>
<p>Teri slid over a sheet with four pictures printed on it – I looked at them, Sandi looked at them. I wanted to jump across the table and beat the living crap out of Teri. How dare she put Sandi and I through this, how dare she taint our wedding day like this, how dare she force us to this room, on this day, only to show us the complete and utter pile of crap that were the pictures she took of our wedding. </p>
<p class="note">
Sandi and I were thinking the same thing: If you were trying to convince someone that your pictures are worth something, wouldn&#8217;t you bring your best examples? Holy monkey balls, there is no way that we&#8217;d pay her $8.00 for those pictures let alone $800.
</p>
<p>After seeing the pictures Sandi, emotionally spent, asked me to make the final decision to drop it or see a judge.</p>
<p>Throughout all this Teri kept telling us what great pictures she took, and we kept reminding her that she hadn&#8217;t shown any of them to us. If she had just shown them to us in the first place, it would have never gone as far as it did because the pictures simply were not worth the fight. Sandi and I were operating off the principal of the matter, we&#8217;d already emotionally written off the pictures but Teri was trying to screw us over and we were not going to take that lying down. Before this, I thought justice would be Teri giving us our pictures per our agreement, or a judge ordering her to do so. But then, looking at those pictures, I realized that justice could be found simply by telling Teri that her pictures were not worth fighting for. </p>
<p>I threw the pictures back at Teri and told the mediators we&#8217;d be dropping our suit, per the agreement.</p>
<h3>[conclusion]</h3>
<p>In the end Teri did not get any of the money she <strike>claimed we owed her</strike> tried to steal from us and she can&#8217;t use our pictures for anything<sup><a id="f9r" href="#f9" rel="nofollow">9</a></sup>, not her portfolio, not anything. Sandi and I maintained control &#8211; Teri agreed to <em>our</em> terms to end the suit, she didn&#8217;t even get her laughable &#8220;can&#8217;t talk bad about me&#8221; condition put in the agreement. </p>
<p>Teri&#8217;s hope in all this was that we&#8217;d want the pictures so bad that we&#8217;d do anything for them, and she was wrong. If we had taken the suit to a judge we would have been sending the message to Teri that the pictures were worth something and they just weren&#8217;t. In fact, had Teri not been such a twat and shown us the pictures to begin with, we would have dismissed the issue <em>long</em> before we filed a case against her. </p>
<p>Teri thought she saw an opportunity to make a quick buck; she tried, and failed to hold our wedding pictures hostage for ransom. I&#8217;d suggest that if Teri want&#8217;s to try this scam with anyone else, she should do <a href="http://www.amazon.com/gp/product/0470149272?ie=UTF8&#038;tag=awaitiinspir-20&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=0470149272">some reading</a><img src="http://www.assoc-amazon.com/e/ir?t=awaitiinspir-20&#038;l=as2&#038;o=1&#038;a=0470149272" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /> and actually get pictures <em>at least</em> worth the paper they are printed on.</p>
<h3>[grace]</h3>
<p>Sandi and I still have plenty of pictures of our wedding, friends and family, decent human beings, who took snapshots have freely given us the pictures they took; no undue payment or contracts required. We do not have the &#8220;posed&#8221; pictures but we have had several people (including a real professional photographer) offer to do those for us if we want to dress back up. </p>
<p><small><br />
<sup id="f1">1</sup> <a href="http://www.imdb.com/title/tt0579532/quotes">&#8220;Firefly&#8221; Our Mrs. Reynolds (2002)</a><sup><a href="#f1r">&crarr;</a></sup></p>
<p><sup id="f2">2</sup> Though I believe what is written here to be factual, it is in the end just <em>my</em> opinion of Teri Gunn and what she did to my wife Sandi and me. I trust that you, the discerning reader have the capability to read this, digest it, and form your own conclusions. After posting this if Teri offers a rebuttal I will be more than happy to post it here. Until then, or if your just in the mood to be lied to; you can contact Teri via e-mail and get her side of the story &#8211; <em>rtgunn4him@msn.com</em><sup><a href="#f2r">&crarr;</a></sup></p>
<p><sup id="f3">3</sup> While not a professional, he is a more than capable photographer.<sup><a href="#f3r">&crarr;</a></sup></p>
<p><sup id="f4">4</sup> A little explanation &#8211; In this case by &#8220;raw pictures&#8221; I mean the pictures directly from the camera, untouched, as shot. If we had hired a &#8220;real&#8221; photographer I&#8217;d be referring to both the untouched, as shot pictures directly from the camera, as well as the any full resolution (uncompressed) edits that the photographer may have made.<sup><a href="#f4r">&crarr;</a></sup></p>
<p><sup id="f5">5</sup> You know those people that just look like child molesters, even though they may not be? Teri&#8217;s husband, Rob, looks like that.<sup><a href="#f5r">&crarr;</a></sup></p>
<p><sup id="f6">6</sup> When I say portfolio, I mean a <em>real</em> portfolio not a few pictures posted on FaceBook.<sup><a href="#f6r">&crarr;</a></sup></p>
<p><sup id="f7">7</sup> We found out later that Kim (Sandi&#8217;s sister-in-law) found out that Teri was going to photograph our wedding for free. Kim apparently had an issue with this and told Teri she should charge us $150. Apparently $125 was a compromise.<sup><a href="#f7r">&crarr;</a></sup></p>
<p><sup id="f8">8</sup> Obviously, the mediators do not take sides. They <em>never</em> once stated an opinion one way or the other. I just felt like they understood where Sandi and I were coming from.<sup><a href="#f8r">&crarr;</a></sup></p>
<p><sup id="f9">9</sup> The verbiage used is clear and we made sure of that. If it&#8217;s of our wedding, and she took it, she can&#8217;t use it in anyway shape or form. If she took a picture of the grass at our wedding, she can&#8217;t use it. Those family pictures she was taking while deleting ours? Nope sorry, bummer for you Jim and Kim. She can&#8217;t print them, show them, sell them, give them away, hell it could be argued that she can&#8217;t look at them. Oh, and those pictures of our wedding cake she has on her FaceBook &#8211; need to be pulled off. If she uses them <em>in any personal or professional capacity</em> she <em>will</em> find herself back in court.<sup><a href="#f9r">&crarr;</a></sup><br />
</small></p>

<p><a href="http://feedads.g.doubleclick.net/~a/apjhEYHSLTWoYRSZhMAvQjGdbqI/0/da"><img src="http://feedads.g.doubleclick.net/~a/apjhEYHSLTWoYRSZhMAvQjGdbqI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/apjhEYHSLTWoYRSZhMAvQjGdbqI/1/da"><img src="http://feedads.g.doubleclick.net/~a/apjhEYHSLTWoYRSZhMAvQjGdbqI/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=RoMDHFxbMIw:FAWmzjM3qPs:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=RoMDHFxbMIw:FAWmzjM3qPs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=RoMDHFxbMIw:FAWmzjM3qPs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=RoMDHFxbMIw:FAWmzjM3qPs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=RoMDHFxbMIw:FAWmzjM3qPs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=RoMDHFxbMIw:FAWmzjM3qPs:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=RoMDHFxbMIw:FAWmzjM3qPs:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=RoMDHFxbMIw:FAWmzjM3qPs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=RoMDHFxbMIw:FAWmzjM3qPs:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AwaitingInspiration/~4/RoMDHFxbMIw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://awaitinginspiration.com/teri-gunn-stealing-memories/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://awaitinginspiration.com/teri-gunn-stealing-memories</feedburner:origLink></item>
		<item>
		<title>UFO Conspiracy Theorists</title>
		<link>http://feedproxy.google.com/~r/AwaitingInspiration/~3/UGlx1n9EH6w/ufo-conspiracy-theorists</link>
		<comments>http://awaitinginspiration.com/ufo-conspiracy-theorists#comments</comments>
		<pubDate>Thu, 11 Jun 2009 05:00:10 +0000</pubDate>
		<dc:creator>Adam</dc:creator>
				<category><![CDATA[rant]]></category>
		<category><![CDATA[aliens]]></category>
		<category><![CDATA[conspiracy]]></category>
		<category><![CDATA[govenment]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[UFO]]></category>

		<guid isPermaLink="false">http://awaitinginspiration.com/?p=1624</guid>
		<description><![CDATA[The people that believe this sort of thing, UFO conspiracy theories, will never be able to accept truth, or facts...]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://awaitinginspiration.com/ufo-conspiracy-theorists" title="Permanent link to UFO Conspiracy Theorists"><img class="post_image aligncenter frame" src="http://awaitinginspiration.com/wp-content/themes/thesis/custom/images/post_images/ufo_conspiracy.jpg" width="460" height="345" alt="UFO Conspiracy Theorists" /></a>
</p><p>I was sitting in a waiting room with a TV tuned to the &#8220;History Channel&#8221; (which I happen to like). Since I was not there to watch TV, and the audio was down to a waiting room volume (i.e. you could barely hear it) I was only half watching. I did decipher that the program had something to do with UFO conspiracy theorists, trying to get presidents to admit that the US Government has evidence that we have been, or are being visited by aliens. I guess in UFO conspiracy circles there is a belief that the president is briefed on all the UFO happenings that our government knows about. </p>
<p>Now, I&#8217;m not going to get into the fact that there is zero scientific evidence that Earth has been visited by aliens, other than to say that while it&#8217;s cool to think about, entertaining and makes for good TV and movies &#8211; UFOs are bunk. </p>
<p>But it got me thinking&#8230;<br />
<span id="more-1624"></span><br />
So, what if the president admitted to UFO conspiracy theorists that the US Government is engaging in an active cover-up to hide evidence that we have been visited by aliens? Would they believe him? Could they? After all, they believe that the president is a part of the conspiracy to begin with. So, even if the president did admit something, even showed them evidence how could they believe him? He&#8217;s a part of the conspiracy after all.</p>
<p>The people that believe this sort of thing, UFO conspiracy theories, will never be able to accept truth; even if it&#8217;s the truth they wanted to hear. So, even if the president did confirm a UFO conspiracy theory, UFO conspiracy theorists would just turn around and claim that his admission is a part of a larger, more elaborate conspiracy to cover up another even more elaborate conspiracy, so on and so on.</p>

<p><a href="http://feedads.g.doubleclick.net/~a/aIP81JUPGjsVjZUbPv0BpSxlSwI/0/da"><img src="http://feedads.g.doubleclick.net/~a/aIP81JUPGjsVjZUbPv0BpSxlSwI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/aIP81JUPGjsVjZUbPv0BpSxlSwI/1/da"><img src="http://feedads.g.doubleclick.net/~a/aIP81JUPGjsVjZUbPv0BpSxlSwI/1/di" border="0" ismap="true"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=UGlx1n9EH6w:f1DY-T7KFdQ:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=UGlx1n9EH6w:f1DY-T7KFdQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=UGlx1n9EH6w:f1DY-T7KFdQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=UGlx1n9EH6w:f1DY-T7KFdQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=UGlx1n9EH6w:f1DY-T7KFdQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=UGlx1n9EH6w:f1DY-T7KFdQ:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=UGlx1n9EH6w:f1DY-T7KFdQ:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/AwaitingInspiration?a=UGlx1n9EH6w:f1DY-T7KFdQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/AwaitingInspiration?i=UGlx1n9EH6w:f1DY-T7KFdQ:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/AwaitingInspiration/~4/UGlx1n9EH6w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://awaitinginspiration.com/ufo-conspiracy-theorists/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://awaitinginspiration.com/ufo-conspiracy-theorists</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.608 seconds. --><!-- Cached page generated by WP-Super-Cache on 2009-11-08 16:07:30 --><!-- Compression = gzip -->
