<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Justin Carmony &#187; Apple</title>
	<atom:link href="http://www.justincarmony.com/blog/tag/apple/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.justincarmony.com/blog</link>
	<description>Web Designer &#38; Software Engineer</description>
	<lastBuildDate>Wed, 01 Feb 2012 04:30:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>XAMPP for Mac &#8211; My Frustrations &amp; Solutions</title>
		<link>http://www.justincarmony.com/blog/2009/02/14/xampp-for-mac-my-frustrations-solutions/</link>
		<comments>http://www.justincarmony.com/blog/2009/02/14/xampp-for-mac-my-frustrations-solutions/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 23:15:34 +0000</pubDate>
		<dc:creator>Justin Carmony</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[MacBook Pro]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Servers]]></category>
		<category><![CDATA[XAMPP]]></category>

		<guid isPermaLink="false">http://www.justincarmony.com/blog/?p=396</guid>
		<description><![CDATA[These last few days I&#8217;ve been trying to get XAMPP to work on my MacBook Pro these last couple of days and it has been frustrating! It seemed I kept running into more and more problems. For those who don&#8217;t know, XAMPP is tool for developers to run a LAMP stack (Linux, Apache, MySQL, PHP) ...


Related posts:<ol><li><a href='http://www.justincarmony.com/blog/2008/10/14/php-video-tutorial-getting-started-installing-xampp/' rel='bookmark' title='PHP Video Tutorial – Getting Started – Installing XAMPP'>PHP Video Tutorial – Getting Started – Installing XAMPP</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/02/12/pagefindcontrol-returning-null-issues-and-solutions-within-another-control/' rel='bookmark' title='Page.FindControl() Returning Null Issues and Solutions Within Another Control'>Page.FindControl() Returning Null Issues and Solutions Within Another Control</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/10/10/local-lamp-developement-user-content/' rel='bookmark' title='Local LAMP Developement &amp; User Content'>Local LAMP Developement &#038; User Content</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://c747925.r25.cf2.rackcdn.com/blog/wp-content/uploads/2009/02/xampp-objectdock.png"><img src="http://c747925.r25.cf2.rackcdn.com/blog/wp-content/uploads/2009/02/xampp-objectdock.png" alt="" title="xampp-objectdock" width="256" height="256" class="alignright size-full wp-image-633" /></a>These last few days I&#8217;ve been trying to get <a href="http://www.apachefriends.org/en/xampp.html" target="_blank">XAMPP</a> to work on my MacBook Pro these last couple of days and it has been <em><strong>frustrating</strong></em>! It seemed I kept running into more and more problems. For those who don&#8217;t know, XAMPP is tool for developers to run a LAMP stack (Linux, Apache, MySQL, PHP) on your machine locally. I&#8217;ve been running it on my Windows machines for years, and I have been running my production servers on Linux.</p>
<p>Installing just XAMPP and getting it to run with the Control Panel was easy. All my headaches started when I tried to get my vhosts installed and working. The problem I ran into getting XAMPP to run on my MacBook Pro were the following:</p>
<ol>
<li><strong>XAMPP for Mac is different from XAMPP for Windows</strong></li>
<li><strong>Max OS X comes with a Version of Apache Installed<br />
</strong></li>
<li><strong>Mac OS X has additional permissions that are different from Linux</strong></li>
</ol>
<h2>XAMPP for Mac != XAMPP for Windows</h2>
<p>My first mistake was that I assumed that XAMPP for Mac is the same as XAMPP for Windows. After digging into it, the file structure and config files are pretty different. The php.ini file is different, and all the binary files are in /xampp/xamppfiles/bin/. On windows the binary files are in their own folders. It took me awhile to figure out where everything was at. This led me into my next problem:</p>
<h2>Mac OS X comes with a Version of Apache Installed</h2>
<p>When I was trying to debug why stuff wasn&#8217;t working, I opened up the terminal and started running commands. There is just one problem, OS X already has a version of Apache installed. So when I cd&#8217;d into the bin directory, I would execute this command:</p>
<blockquote><p>apachectrl -t -D DUMP_VHOSTS</p></blockquote>
<p>There was just one problem, it was executing the apachectl that was installed by Mac OS X, not the one for XAMPP. So it all my debugging with the config files, etc. wasn&#8217;t working. I was going insane. Finally I figured out what was going on and I had to execute this command instead:</p>
<blockquote><p>./apachectl -t -D DUMP_VHOSTS</p></blockquote>
<p>It started behaving like I expected! This lead my to my third hang up.</p>
<h2>Mac OS X has additional permissions that are different from Linux</h2>
<p>This threw me for a loop to. I don&#8217;t understand exactly why this was happening, but I kept gettinga  Permission Denied when trying to view the vhost I was trying to setup. The way I used to do it on Windows is I have a partition for all of my development files. I would have a folder at the root of that drive called SVN_Repositories that holds all the SVN Repositories I use for work. So on my MacBook Pro at / I did the same, I had my SVN_Repositories folder. So my vhost would point to a directory like with a name something like this: &#8220;/SVN_Repositories/ExampleRepo/trunk/httpdocs/&#8221;</p>
<p>So my linux side clicked in and thought &#8220;Hrm, it looks like there is something wrong with the permissions. Let me change the folder permissions to 777 just to test.&#8221; So I did that and it still didn&#8217;t work. This it made me think it still was a vhost configuration issue. So I spent hours testing all sorts of stuff and just getting more frustrating. Then I read somewhere that XAMPP can have problems with OS X&#8217;s unique permissions on addition to the FreeBSD stuff it does. It said to host the vhost content in either the Applications folder or Users folder. So I moved my SVN_Repositories folder to my Users folder so it was like this: &#8220;/Users/<em>username</em>/SVN_Repositories/ExampleRepo/trunk/httpdocs/&#8221;</p>
<p>It finally worked! So the lessons I learned were:</p>
<ul>
<li>Put your vhost content in the Users folder.</li>
<li>If you try things from the terminal, make sure you do ./apachectl so you execute the correct binary file.</li>
<li>Most of your config files are in the /Applications/xampp/etc/ folder.</li>
</ul>
<p>As always, hopefully this helps someone. Feel free to leave any questions or comments.</p>


<p>Related posts:<ol><li><a href='http://www.justincarmony.com/blog/2008/10/14/php-video-tutorial-getting-started-installing-xampp/' rel='bookmark' title='PHP Video Tutorial – Getting Started – Installing XAMPP'>PHP Video Tutorial – Getting Started – Installing XAMPP</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/02/12/pagefindcontrol-returning-null-issues-and-solutions-within-another-control/' rel='bookmark' title='Page.FindControl() Returning Null Issues and Solutions Within Another Control'>Page.FindControl() Returning Null Issues and Solutions Within Another Control</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/10/10/local-lamp-developement-user-content/' rel='bookmark' title='Local LAMP Developement &amp; User Content'>Local LAMP Developement &#038; User Content</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.justincarmony.com/blog/2009/02/14/xampp-for-mac-my-frustrations-solutions/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>Is Apple Blinded by Style?</title>
		<link>http://www.justincarmony.com/blog/2008/10/15/is-apple-blinded-by-style/</link>
		<comments>http://www.justincarmony.com/blog/2008/10/15/is-apple-blinded-by-style/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 19:58:39 +0000</pubDate>
		<dc:creator>Justin Carmony</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Frustration]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[MacBook]]></category>

		<guid isPermaLink="false">http://www.justincarmony.com/blog/?p=242</guid>
		<description><![CDATA[I have to add my voice to Jason D. O&#8217;Grady from ZDNet&#8217;s &#8220;The Apple Core&#8221; about the new MacBook &#38; MacBook Pro. Jason complains: The thing that bums me out the most about yesterday’s MacBook announcements is Apple’s move to all-glossy displays. I’ll make no bones about it – I loathe glossy displays – especially ...


Related posts:<ol><li><a href='http://www.justincarmony.com/blog/2008/09/19/im-a-pc-take-that-apple/' rel='bookmark' title='I&#8217;m a PC &#8211; Take That Apple'>I&#8217;m a PC &#8211; Take That Apple</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/07/02/apple-needs-to-stop-being-misleading-viruses-malware/' rel='bookmark' title='Apple Needs to Stop Being Misleading &#8211; Viruses &amp; Malware'>Apple Needs to Stop Being Misleading &#8211; Viruses &#038; Malware</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/09/16/blog-wordpress-theme-experiment-grunge-style/' rel='bookmark' title='Blog WordPress Theme Experiment &#8211; Grunge Style'>Blog WordPress Theme Experiment &#8211; Grunge Style</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I have to add my voice to <a href="http://blogs.zdnet.com/Apple/?p=2395" target="_blank">Jason D. O&#8217;Grady from ZDNet&#8217;s &#8220;The Apple Core&#8221;</a> about the new MacBook &amp; MacBook Pro. Jason complains:</p>
<blockquote><p>The thing that bums me out the most about yesterday’s MacBook announcements is Apple’s move to <strong>all-glossy displays</strong>. I’ll make no bones about it – <strong>I loathe glossy displays</strong> – especially on a notebook computer.</p>
<p>Apple will spin it that blacks look darker and colors are more saturated, blah, blah, blah. It’s a load of garbage. How are we expected to read the screen when the glare is practically blinding? (Don’t even get me started on fingerprints).</p></blockquote>
<p>I remember when I was talking with my boss about the order for my new MacBook Pro. When he asked about my screen, I repeated several times &#8220;not-glossy, never, ever glossy.&#8221; We triple checked the order at the end that I had the matted screen. I&#8217;m glad that I got my MacBook Pro when I did, because I cannot stand a glossy finish. The only purpose for a glossy finish is shine.</p>
<p>Why shine? Because it looks cool from the outside-in. The demos looks really nice. I love the new approach they&#8217;re taking. My only beef is the <em>lack of option</em>. Offer glossy <em><strong>and</strong></em> matte. I&#8217;m all about choice. But this decision to only offer glossy is a blatant example of &#8220;Apple knows best&#8221; and their priority is style, not functionality. Those laptops look &#8220;sexy&#8221;, but blinding.</p>
<p>I haven&#8217;t had a chance to handle one myself, but when I get my hands on one I&#8217;ll let you know. If you want to see a video about the new MacBook Pro, <a href="http://movies.apple.com/movies/us/apple/mac/macbook/2008/designvideo/apple_new_macbook_video_20081014_r848-9cie.mov">check out this video</a>.</p>


<p>Related posts:<ol><li><a href='http://www.justincarmony.com/blog/2008/09/19/im-a-pc-take-that-apple/' rel='bookmark' title='I&#8217;m a PC &#8211; Take That Apple'>I&#8217;m a PC &#8211; Take That Apple</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/07/02/apple-needs-to-stop-being-misleading-viruses-malware/' rel='bookmark' title='Apple Needs to Stop Being Misleading &#8211; Viruses &amp; Malware'>Apple Needs to Stop Being Misleading &#8211; Viruses &#038; Malware</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/09/16/blog-wordpress-theme-experiment-grunge-style/' rel='bookmark' title='Blog WordPress Theme Experiment &#8211; Grunge Style'>Blog WordPress Theme Experiment &#8211; Grunge Style</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.justincarmony.com/blog/2008/10/15/is-apple-blinded-by-style/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
<enclosure url="http://movies.apple.com/movies/us/apple/mac/macbook/2008/designvideo/apple_new_macbook_video_20081014_r848-9cie.mov" length="334" type="video/quicktime" />
		</item>
		<item>
		<title>I&#8217;m a PC &#8211; Take That Apple</title>
		<link>http://www.justincarmony.com/blog/2008/09/19/im-a-pc-take-that-apple/</link>
		<comments>http://www.justincarmony.com/blog/2008/09/19/im-a-pc-take-that-apple/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 22:27:38 +0000</pubDate>
		<dc:creator>Justin Carmony</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.justincarmony.com/blog/2008/09/19/im-a-pc-take-that-apple/</guid>
		<description><![CDATA[It is about time that Microsoft answers back to Apple&#8217;s &#8220;I&#8217;m a PC, I&#8217;m a Mac&#8221; commercials. The ironic thing is I am writing this from my MacBook Pro. Apple for so long started to take little jabs at Microsoft&#8217;s Windows. Their first commercials we&#8217;re pretty straight forward, but lately they&#8217;ve been getting more misleading. ...


Related posts:<ol><li><a href='http://www.justincarmony.com/blog/2008/07/02/apple-needs-to-stop-being-misleading-viruses-malware/' rel='bookmark' title='Apple Needs to Stop Being Misleading &#8211; Viruses &amp; Malware'>Apple Needs to Stop Being Misleading &#8211; Viruses &#038; Malware</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/07/27/iphone-sdk-21-another-nda/' rel='bookmark' title='iPhone SDK 2.1 &#8211; Another NDA'>iPhone SDK 2.1 &#8211; Another NDA</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/07/03/mac-keyboard-quirks-making-mac-more-like-windows/' rel='bookmark' title='Mac Keyboard Quirks &#8211; Making Mac more like Windows'>Mac Keyboard Quirks &#8211; Making Mac more like Windows</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>It is about time that Microsoft answers back to Apple&#8217;s &#8220;I&#8217;m a PC, I&#8217;m a Mac&#8221; commercials. The ironic thing is I am writing this from my MacBook Pro. Apple for so long started to take little jabs at Microsoft&#8217;s Windows. Their first commercials we&#8217;re pretty straight forward, but lately they&#8217;ve been getting more misleading. Here is an example:</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/OOjlqg3tYBI&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/OOjlqg3tYBI&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>Give me a break. Windows can come bundled with everything Mac does. The only real program I&#8217;ve been impressed with has been Apple&#8217;s Mail.app. Other then that, there isn&#8217;t anything super fantastic about their other programs. iTunes is terrible as it keeps crashing my iPhone and Laptop. Here is another one that it super misleading:</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/_18RKPHD6CU&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/_18RKPHD6CU&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>Okay&#8230; this one made me kinda upset. Yes, currently Apple&#8217;s Laptops might be out-selling other companies laptops. Thats comparing Apple individually to Compaq, HP, Sony, etc. However, if you counted the number of Apple OS X based laptops to Windows based laptops, windows would win. Lets not forget the reasons they sight? iSight? Almost any new Laptop comes with a built in web cam. Leopard? I know tons of people who don&#8217;t like it because its a different experience using it. Microsoft Office? I absolutely loath, let me repeat, <strong>loath</strong> Microsoft Office 2007 on the Mac. The interface is so much more complex and doesn&#8217;t benefit from the Windows Office&#8217;s face lift it got this last version. Bottom line, Apple confuses the viewer into being mislead by their statements. </p>
<p>I think Microsoft&#8217;s approach is much better than their original approach to their campaign. They&#8217;re calling Apple out saying their stereotyping Microsoft. I want to see if Apple produces another &#8220;I&#8217;m a Mac, I&#8217;m a PC&#8221; ad after these new ads.</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/xsN5hh2G7l8&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/xsN5hh2G7l8&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/MSiSIzXKMXw&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/MSiSIzXKMXw&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>


<p>Related posts:<ol><li><a href='http://www.justincarmony.com/blog/2008/07/02/apple-needs-to-stop-being-misleading-viruses-malware/' rel='bookmark' title='Apple Needs to Stop Being Misleading &#8211; Viruses &amp; Malware'>Apple Needs to Stop Being Misleading &#8211; Viruses &#038; Malware</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/07/27/iphone-sdk-21-another-nda/' rel='bookmark' title='iPhone SDK 2.1 &#8211; Another NDA'>iPhone SDK 2.1 &#8211; Another NDA</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/07/03/mac-keyboard-quirks-making-mac-more-like-windows/' rel='bookmark' title='Mac Keyboard Quirks &#8211; Making Mac more like Windows'>Mac Keyboard Quirks &#8211; Making Mac more like Windows</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.justincarmony.com/blog/2008/09/19/im-a-pc-take-that-apple/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Two-Way Sync between Google Calendar, Windows, OS X, and iPhone</title>
		<link>http://www.justincarmony.com/blog/2008/08/23/two-way-sync-between-google-calendar-windows-os-x-and-iphone/</link>
		<comments>http://www.justincarmony.com/blog/2008/08/23/two-way-sync-between-google-calendar-windows-os-x-and-iphone/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 21:43:36 +0000</pubDate>
		<dc:creator>Justin Carmony</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://www.justincarmony.com/blog/2008/08/23/two-way-sync-between-google-calendar-windows-os-x-and-iphone/</guid>
		<description><![CDATA[Since my wife and I got our new iPhones, I&#8217;ve been playing around with a way unify our calendars. When we first got married we started to use Google Calendar. We have three calendars: mine, hers, and ours. Its great for staying organized, especially when we&#8217;re trying to organize two lives. It worked well for ...


Related posts:<ol><li><a href='http://www.justincarmony.com/blog/2008/07/03/mac-keyboard-quirks-making-mac-more-like-windows/' rel='bookmark' title='Mac Keyboard Quirks &#8211; Making Mac more like Windows'>Mac Keyboard Quirks &#8211; Making Mac more like Windows</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/07/09/alright-an-iphone-app-that-is-definitly-going-te-cause-horror-stories-friend-book/' rel='bookmark' title='Alright, an iPhone App that is definitly going te cause horror stories: Friend Book'>Alright, an iPhone App that is definitly going te cause horror stories: Friend Book</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/06/12/iphone-3g-my-personal-perspective/' rel='bookmark' title='iPhone 3G &#8211; My Personal Perspective'>iPhone 3G &#8211; My Personal Perspective</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Since my wife and I got our new iPhones, I&#8217;ve been playing around with a way unify our calendars. When we first got married we started to use Google Calendar. We have three calendars: mine, hers, and ours. Its great for staying organized, especially when we&#8217;re trying to organize two lives. It worked well for several weeks, except one thing&#8230;</p>
<p><strong>We had to be on-line and on the browser to view our Google Calendars.</strong> Lot of the time when we needed to see our calendar we were with family or friends without computer access. Also, when I work I have twenty or so browser windows open, and it can be difficult to find my calendar in the mix. I also am biased towards desktop client applications when I&#8217;m using them every hour of the day. So I set out on my quest to find a way to sync across all the different mediums I use. Now that I think I&#8217;ve found my solution, I thought I would share my findings with the rest of the world.</p>
<p>When I tried to decide how to sync my calendars, I started with several goals:</p>
<ol>
<li>Google as my &#8220;main&#8221; hub for hosting the calendars.</li>
<li>No &#8220;hosting&#8221; services on my end &#8211; I didn&#8217;t want to have to have a server or something on one of my PCs required to be on all the time for this system to work.</li>
<li>Over the air syncing for the iPhone &#8211; I don&#8217;t want to have to plug in my phone to my PC to &#8220;update&#8221; my calendar.</li>
<li>No hassle, &#8220;it just works&#8221; mentality.</li>
</ol>
<p></p>
<p>Here is a diagram of how I&#8217;m syncing:</p>
<p><img src="http://c747925.r25.cf2.rackcdn.com/blog/wp-content/uploads/2008/08/200808231150.jpg" width="683" height="374" alt="200808231150.jpg" /></p>
<p>Here is how I set it up:</p>
<p>1) Google is the &#8220;center&#8221; for my calendar &#8211; I&#8217;m using google as the main hub for my calendars. It is a great source for hosting my calendars because I know they are always up to date, they have great apis for developers to use to implement with, and you can access them anywhere.</p>
<p>2) <a href="http://www.calgoo.com/">Calgoo on Windows</a> &#8211; Since I don&#8217;t use Outlook for numerous reasons (mainly because it is a slow pig), I was flexible for my window client. I settled on using Calgoo because it was free, the interface is great, and it just works.</p>
<p>3) iCal and <a href="http://www.busymac.com/">BusySync</a> on Mac &#8211; I like the iCal interface for using a calendar, and BusySync allows for bi-directional syncing. It happens automatically without any manual intervention.</p>
<p>4) <a href="http://www.nuevasync.com/" title="iPhone Calendar Sync">NuevaSync</a> to iPhone &#8211; This is the best syncing system for the iPhone and Google (that I&#8217;ve found). It doesn&#8217;t require any third party software on your iPhone, it uses an exchange account to sync between Google and your iPhone. Best of all, it is over the air, so it work greats. I&#8217;ve set my iphone&#8217;s fetch to ever 15 for email and calendar.</p>
<p>How do I like it?</p>
<p>I love it. It gives me easy access on my phone, my work PC, my laptop mac, and anywhere with a browser. Depending on your sync frequency, it can take as little as 15 mins for a new entry to get sent across to my other devices. My wife can add something to our calendar and it will show up on my phone.</p>
<p>Let me know if anyone has any questions on how I set this up, but each of the websites explain pretty well how to do it.</p>


<p>Related posts:<ol><li><a href='http://www.justincarmony.com/blog/2008/07/03/mac-keyboard-quirks-making-mac-more-like-windows/' rel='bookmark' title='Mac Keyboard Quirks &#8211; Making Mac more like Windows'>Mac Keyboard Quirks &#8211; Making Mac more like Windows</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/07/09/alright-an-iphone-app-that-is-definitly-going-te-cause-horror-stories-friend-book/' rel='bookmark' title='Alright, an iPhone App that is definitly going te cause horror stories: Friend Book'>Alright, an iPhone App that is definitly going te cause horror stories: Friend Book</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/06/12/iphone-3g-my-personal-perspective/' rel='bookmark' title='iPhone 3G &#8211; My Personal Perspective'>iPhone 3G &#8211; My Personal Perspective</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.justincarmony.com/blog/2008/08/23/two-way-sync-between-google-calendar-windows-os-x-and-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone SDK 2.1 &#8211; Another NDA</title>
		<link>http://www.justincarmony.com/blog/2008/07/27/iphone-sdk-21-another-nda/</link>
		<comments>http://www.justincarmony.com/blog/2008/07/27/iphone-sdk-21-another-nda/#comments</comments>
		<pubDate>Sun, 27 Jul 2008 06:24:20 +0000</pubDate>
		<dc:creator>Justin Carmony</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone SDK]]></category>
		<category><![CDATA[Ranting]]></category>

		<guid isPermaLink="false">http://www.justincarmony.com/blog/2008/07/27/iphone-sdk-21-another-nda/</guid>
		<description><![CDATA[Until Apple change&#8217;s their attitude and policies, they will never be a Microsoft, Sun, or other monolithic technology company. Why? Their NDA on the new iPhone SDK 2.1 hinders developers seriously. They are so tight lipped about everything and are such control freaks that they will never replace Microsoft. If someone asked me today if ...


Related posts:<ol><li><a href='http://www.justincarmony.com/blog/2008/05/16/iphone-sdk-dna-a-frustrating-issue/' rel='bookmark' title='iPhone SDK DNA &#8211; A Frustrating Issue'>iPhone SDK DNA &#8211; A Frustrating Issue</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/01/17/iphone-vista-64-bit-finally/' rel='bookmark' title='iPhone &amp; Vista 64-Bit&#8230;. Finally!'>iPhone &#038; Vista 64-Bit&#8230;. Finally!</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/05/20/iphone-sdk-learning-the-basics-by-removing-the-touch/' rel='bookmark' title='iPhone SDK &#8211; Learning the Basics by Removing the Touch'>iPhone SDK &#8211; Learning the Basics by Removing the Touch</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Until Apple change&#8217;s their attitude and policies, they will never be a Microsoft, Sun, or other monolithic technology company. Why? <a href="http://www.tuaw.com/2008/07/25/iphone-2-1-sdk-disappointments/">Their NDA on the new iPhone SDK 2.1 hinders developers seriously</a>. They are so tight lipped about everything and are such control freaks that they will never replace Microsoft. If someone asked me today if I could magically snap my fingers and have Apple replace Microsoft, I would say &#8220;hell no.&#8221; Using their Laptops and Phones is one thing. Developing blindly with nothing but half-baked documentation and a NDA shoved down my throat is another beast.</p>
<p>I don&#8217;t have time to describe every little detail as to why Apple is absolutely retarded about prohibiting developers from collaborating with each other. We endured it while the iPhone 2.0 wasn&#8217;t out, but if Apple can&#8217;t trust anyone, they are in the wrong business. Maybe one day I&#8217;ll rant some more, but until I want to waste some time on complaining about Apple, I think I&#8217;ll just let everyone else do it to. I just wanted to throw in my two cents that I&#8217;m frustrated with Apple.</p>


<p>Related posts:<ol><li><a href='http://www.justincarmony.com/blog/2008/05/16/iphone-sdk-dna-a-frustrating-issue/' rel='bookmark' title='iPhone SDK DNA &#8211; A Frustrating Issue'>iPhone SDK DNA &#8211; A Frustrating Issue</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/01/17/iphone-vista-64-bit-finally/' rel='bookmark' title='iPhone &amp; Vista 64-Bit&#8230;. Finally!'>iPhone &#038; Vista 64-Bit&#8230;. Finally!</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/05/20/iphone-sdk-learning-the-basics-by-removing-the-touch/' rel='bookmark' title='iPhone SDK &#8211; Learning the Basics by Removing the Touch'>iPhone SDK &#8211; Learning the Basics by Removing the Touch</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.justincarmony.com/blog/2008/07/27/iphone-sdk-21-another-nda/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DRM vs. Users &#8211; The Good and The Bad</title>
		<link>http://www.justincarmony.com/blog/2008/07/26/drm-vs-users-the-good-and-the-bad/</link>
		<comments>http://www.justincarmony.com/blog/2008/07/26/drm-vs-users-the-good-and-the-bad/#comments</comments>
		<pubDate>Sun, 27 Jul 2008 05:46:54 +0000</pubDate>
		<dc:creator>Justin Carmony</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[DRM]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.justincarmony.com/blog/2008/07/26/drm-vs-users-the-good-and-the-bad/</guid>
		<description><![CDATA[The other day I posted on my thoughts of Rhapsody and Yahoo Music. It seems like there has been a lot of talk about how Yahoo Music users are going to lose their music they purchased through Yahoo. I want clarify a few things: First, Yahoo Music users can transfer their account to Rhapsody. I ...


Related posts:<ol><li><a href='http://www.justincarmony.com/blog/2008/07/21/yahoo-vs-rhapsody-why-yahoo-lost/' rel='bookmark' title='Yahoo vs. Rhapsody &#8211; Why Yahoo Lost'>Yahoo vs. Rhapsody &#8211; Why Yahoo Lost</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/07/18/why-are-some-open-source-advocates-hypocrites/' rel='bookmark' title='Why Are Some Open Source Advocates Hypocrites?'>Why Are Some Open Source Advocates Hypocrites?</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/02/29/iphone-sdk-release-on-march-6th/' rel='bookmark' title='iPhone SDK release on March 6th?'>iPhone SDK release on March 6th?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>The other day I posted on my thoughts of Rhapsody and Yahoo Music. It seems like <a href="http://arstechnica.com/news.ars/post/20080724-drm-still-sucks-yahoo-music-going-dark-taking-keys-with-it.html">there has been a lot of talk about how Yahoo Music users are going to lose their music they purchased through Yahoo</a>. I want clarify a few things:</p>
<p>First, Yahoo Music users can transfer their account to Rhapsody. I believe this also transfers their purchased music. Now, if your account has lapsed, I don&#8217;t know exactly how it works. I still think there are lots of Yahoo Music users will get the short end of the deal, and some lose all their purchased music. I know there are worse things in the world, but here are my thought on DRM.They</p>
<h3>Digital Rights Management &#8211; Good Intentions, Horrible Execution</h3>
<p>DRM at heart really has good intentions. It just wants to make sure that people listen to music that they are have bought or subscribed to. In a perfect world, DRM could <strong>help</strong> the user. If I bought a song, and that song could follow me across all computers, all devices, and I would never lose it. If my computer blew up, I could buy a new one and &#8220;hey! There is my song!&#8221; My mp3 player, my phone, my laptop, my computer, and anything else all that could play the song. I could burn it to a CD when ever I wanted, and I could use it all this way 100% legally.</p>
<p>But <span style="font-weight: bold; font-style: italic;">whose</span> rights are being managed? They are not the user&#8217;s rights. The scenario above is when the user&#8217;s rights are being managed. DRM in its current state doesn&#8217;t manage the user&#8217;s rights, but the publishers rights. This isn&#8217;t a bad thing in theory if both publishers and users rights are managed. But whose rights are being managed? The publisher&#8217;s right solely.</p>
<p>DRM in its current state has this philosophy: If there is any possible way that any user could might share a song with someone else who doesn&#8217;t own the rights to listen. Unfortunately, this philosophy leads to buying music with DRM into an extremely restricted environment. What would it take to make DRM work?</p>
<p><strong>1) One Universal DRM System</strong> &#8211; For my music to work everywhere, there only has to be one. I doubt this will ever happen. If there are more than one system, they have to work together seamlessly. This in my opinion is an impossible dream. Why can there only be one? For all Computers, Devices, etc. to work with DRM music, there should only be one system. When there is more, it undoubtably will happen that one device will only support one and not two. Our classic example now is Apple&#8217;s technology vs. Windows Based (WMA&#8217;s) systems. iPods and iPhone can play apple&#8217;s music. Zunes, Sansas, etc can play protected WMAs. There is no way to switch the two. It just doesn&#8217;t work.</p>
<p><strong>2) Easier for the User</strong> &#8211; The reason why all DRM systems have been so locked down is the mentality of &#8220;don&#8217;t trust the user!&#8221; Isn&#8217;t that the whole reason why we have DRM? I believe DRM would work a great deal better if it made life easier for a user. I&#8217;ll give an example where this indeed has happened with DRM later in this blog post.</p>
<p><strong>3) Don&#8217;t Punish the User</strong> &#8211; Currently, if you slightly fall out of a DRM&#8217;s system or model, you lose your music. It is frustrating for users and my biggest fear of buying DRM music is I&#8217;ll somehow lose the license, crash my computer, etc. and I will have to re-buy the song. Once 6-7 years ago a hotel maid threw away my plane ticket on accident. It was with Southwest and when I got to the airport I had my driver&#8217;s license to prove it was me. I told them my last name of &#8220;Carmony&#8221; and she asked me if I was Justin and I said yes. They then told me without the ticket I had to buy another one. I was infuriated! They knew it was me. They knew I had bought a ticket. But because of some maid I had to re-buy my ticket. I get the same feeling with DRM. Why can&#8217;t I re-download music I purchased? You know I bought it. You know I signed in just fine. So force me to re-buy what I already should own? Just because my computer blew up, or was stolen, or any other number of reasons I would imagine DRM would protect me in this case, not hurt me.</p>
<h3>When Digital Rights Management is Good</h3>
<p>I think the current DRM model is mostly good for one scenario: music subscriptions. I loved my Yahoo Music account and now my Rhapsody. I love the fact that I can pay a subscription to listen to millions of songs. The key in understanding <span style="font-style: italic; font-weight: bold;">why</span> I pay money to subscribe is one simple reason: <span style="font-weight: bold; font-style: italic;">it is more convenient than other illegal alternatives</span>. I used to download music illegally when I was younger. The good old Napster days when it took 30 minutes to download one song over dial-up. Now a person can download an entire discography of a band in under 30 minutes.</p>
<p>DRM makes sense for subscription services. It makes good sense to protect &#8220;borrowed&#8221; music. People would be able to steal music insanely easy without protecting that music. Besides, they are renting it, not purchasing it. DRM has enabled a new business model that couldn&#8217;t exist without it. The only issue is that I can&#8217;t use subscription music on any device. Once again, the problem of not having a universal system.</p>
<h3>When Digital Rights Management is Bad</h3>
<p>Purchasing Music. That sums it up right there. While subscribing to music works well because you can re-download it when needed, buying music with DRM is a huge hassle. It makes it such a big hassle that it is a lot easier to download music illegally than buy it legally. Any current DRM system ties users to specific computers, devices, and rules. If those rules are broken, the music won&#8217;t work, and even lost forever. However, instead of coming up with more lenient DRM systems, companies have been doing the sane thing: throwing it out the window.</p>
<p>Amazon, Rhapsody, and many others are allowing people to buy MP3s on their site. This allows people to legally buy their music and do whatever they want with it. It is the same as buying a CD. No worries about what devices it will work on, or if you can burn it to a CD. If you lose it, its your own fault and you can&#8217;t blame anyone but yourself.</p>
<p>Once again, if DRM made my life better, I would love to have DRM. However, when DRM is such a restrictive technology, it only hurts honest paying customers and doesn&#8217;t stop illegal users. It would be different if acquiring illegal is was hard. But many times it is so much easier to get it illegally on the internet than legally. Once again, I can never say this enough times, if DRM made the consumer&#8217;s life better, it would be welcomed with open arms. But since it is such a pain in the butt, we all hate it.</p>
<p>I look forward to the day where either the DRM towel is thrown in and it is only used for subscription based technologies. Or I&#8217;ll even look forward to the day when DRM helps my life by just working exactly how I would have want to work. But until then, I will never buy music if I&#8217;m bound down by it.</p>


<p>Related posts:<ol><li><a href='http://www.justincarmony.com/blog/2008/07/21/yahoo-vs-rhapsody-why-yahoo-lost/' rel='bookmark' title='Yahoo vs. Rhapsody &#8211; Why Yahoo Lost'>Yahoo vs. Rhapsody &#8211; Why Yahoo Lost</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/07/18/why-are-some-open-source-advocates-hypocrites/' rel='bookmark' title='Why Are Some Open Source Advocates Hypocrites?'>Why Are Some Open Source Advocates Hypocrites?</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/02/29/iphone-sdk-release-on-march-6th/' rel='bookmark' title='iPhone SDK release on March 6th?'>iPhone SDK release on March 6th?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.justincarmony.com/blog/2008/07/26/drm-vs-users-the-good-and-the-bad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why Are Some Open Source Advocates Hypocrites?</title>
		<link>http://www.justincarmony.com/blog/2008/07/18/why-are-some-open-source-advocates-hypocrites/</link>
		<comments>http://www.justincarmony.com/blog/2008/07/18/why-are-some-open-source-advocates-hypocrites/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 13:49:58 +0000</pubDate>
		<dc:creator>Justin Carmony</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://www.justincarmony.com/blog/2008/07/18/why-are-some-open-source-advocates-hypocrites/</guid>
		<description><![CDATA[Edit: This article was intended to specifically address certain types of of open source advocates, as stated in the title. This article is not intended to label all open source advocates as hypocrites. See comments by the author below. Today, and almost every day, I&#8217;ll read an article about a proprietary computer company (Microsoft, Apple, ...


Related posts:<ol><li><a href='http://www.justincarmony.com/blog/2008/01/17/iphone-vista-64-bit-finally/' rel='bookmark' title='iPhone &amp; Vista 64-Bit&#8230;. Finally!'>iPhone &#038; Vista 64-Bit&#8230;. Finally!</a></li>
<li><a href='http://www.justincarmony.com/blog/about/' rel='bookmark' title='About'>About</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/06/17/why-i-love-ecto/' rel='bookmark' title='Why I love ecto'>Why I love ecto</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><em><strong>Edit: </strong>This article was intended to specifically address certain types of of open source advocates, as stated in the title. This article is not intended to label all open source advocates as hypocrites. See comments by the author below. </em></p>
<p>Today, and almost every day, I&#8217;ll read an article about a proprietary computer company (Microsoft, Apple, etc) and &#8220;open source&#8221; technologies and communities. Every time I read them I see a large percentage of &#8220;user participants&#8221; in comments, responses, etc. that make me cringe.</p>
<p>Today&#8217;s example was <a href="http://www.zdnet.com">ZDNet&#8217;s</a> article &#8220;<a href="http://blogs.zdnet.com/open-source/?p=2666#comments">Open source should support Apple over Psystar</a>&#8220;. I thought it was a great, simple article:</p>
<blockquote><p>I have been wracking my brain all day for an angle on this <a href="http://blogs.zdnet.com/hardware/?p=2240">Apple-Psystar story</a> (great work by <a href="http://blogs.zdnet.com/hardware/?p=2248">Adrian Kingsley-Hughes</a>) and I can’t come up with one.</p>
<p>Save this. Open source should be supporting <a href="http://blogs.zdnet.com/Apple/?p=2006">Apple</a> here.</p></blockquote>
<p>The writer goes on to basically say that the Open Source world relies on users respecting the licenses and agreements made by the people who download their software. Apple has a EULA and Psystar is basically breaking that agreement. She admits that Apple&#8217;s EULA is nasty and removes any rights for a user, but that user <span style="font-weight: bold; font-style: italic">by choice</span> bought an Apple product.</p>
<p>However, what kind of comments show up?</p>
<blockquote><p>If you accept Apple EULA you give your soul to the devil (and all your possession must be Apple approved, you cannot use the software to its full potential: like on a REAL computer, you surrender all freedom and you are sucked down into the whorst artificial monopoly ever witness by mankind)</p></blockquote>
<blockquote><p>However their kernel choice is an open source kernel, and if this is the part that is being modified then the issue is moot.</p></blockquote>
<blockquote><p>Apple doesn&#8217;t support Open Source. Where&#8217;s my version of iTunes for Linux? Glad to see they were able to take KHTML and make Safari out of it. Where&#8217;s the love in return?</p>
<p>There isn&#8217;t any. Recompiling iTunes for another *nix kernel would be trivial. It&#8217;s missing because they don&#8217;t think the open source community matters to them.</p>
<p>I say let &#8216;em swing in the wind.</p></blockquote>
<blockquote><p>hell no open source should not support apple over psystar. i have download the os 10.5 patch myself along with a copy of os 10.5. why would i pay apple 2400 dollars for a computer that is not as fast as the one i am using, that i built for less than 1500 dollars(including xp). as far as the eula is concerned it means nothing to me. i signature is not their. as i have stated before once i buy a piece of software i will do whatever i want with it.</p></blockquote>
<p>Here is the problem in a nutshell: Proprietary Companies (Microsoft, IBM, etc) have legally fought Open Source to snuff out competition. Open Source people fought back for their rights and defend them. They declared that open source &#8220;is about choice!&#8221; Its allowing people to choose different software than the typical proprietary solutions. These open source projects have adopted licenses to prevent people abusing their Intellectual Property. While Open Source people might scream at me for saying that, in essence that is what all of these open source projects are: intellectual property that is owned by the public, instead of by a person or corporation.</p>
<p>So open source advocates scream and yell when people violate the intellectual property of the public. However, when it is the intellectual property of a company, especially someone like Microsoft or Apple, that it doesn&#8217;t matter because they are &#8220;evil.&#8221; Regardless of the hundreds, thousands, millions, and billions of dollars they have invested into their IP, its okay to disregard that due to the fact their &#8220;business principles don&#8217;t line up with mine.&#8221;</p>
<p>It is a double standard that thousands and thousands of Open Source users are taking. It is a total crime for a business to abuse open source licenses, however its okay to for users to abuse business&#8217;s licenses. When companies mess with open source, open source users run to the law for protection. Yet when the roles are reversed, open source users say &#8220;screw the law&#8221; and go with their own &#8216;moral compass&#8217;.</p>
<p>My question to these people are: <span style="font-weight: bold; font-style: italic">what about my choice?</span></p>
<p>I&#8217;m willing to pay for my copy of windows. I support Microsoft in their endeavor to make better products. I enjoy programming in .NET because it saves me time. That is <span style="font-weight: bold; font-style: italic">my</span> choice. I love my MacBook Pro. I like the quickness and responsiveness I get from it. It is <span style="font-weight: bold; font-style: italic">my</span> choice to buy from a company whose value is in their Quality Control.</p>
<p>But hypocritical open source advocates tell me I&#8217;m wrong and evil because I&#8217;m making the &#8220;wrong&#8221; choice. I&#8217;ve seen a serious trend with open source users that instead of arguing for choice, are arguing what I should choose. Yes! By all means you can choose whatever you want to do. If you want to run only on open source technologies, more power to you. But don&#8217;t call me &#8220;evil&#8221; for being willing to pay for software that makes my life easier.</p>
<p>I support open source. I love what it is doing to the technology industry. However, there are many open source users that I cannot stand. Stand up for choice, but stop being hypocrites when telling me that my choices are wrong, because thats not choice at all.</p>


<p>Related posts:<ol><li><a href='http://www.justincarmony.com/blog/2008/01/17/iphone-vista-64-bit-finally/' rel='bookmark' title='iPhone &amp; Vista 64-Bit&#8230;. Finally!'>iPhone &#038; Vista 64-Bit&#8230;. Finally!</a></li>
<li><a href='http://www.justincarmony.com/blog/about/' rel='bookmark' title='About'>About</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/06/17/why-i-love-ecto/' rel='bookmark' title='Why I love ecto'>Why I love ecto</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.justincarmony.com/blog/2008/07/18/why-are-some-open-source-advocates-hypocrites/feed/</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
		<item>
		<title>Alright, an iPhone App that is definitly going te cause horror stories: Friend Book</title>
		<link>http://www.justincarmony.com/blog/2008/07/09/alright-an-iphone-app-that-is-definitly-going-te-cause-horror-stories-friend-book/</link>
		<comments>http://www.justincarmony.com/blog/2008/07/09/alright-an-iphone-app-that-is-definitly-going-te-cause-horror-stories-friend-book/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 02:22:40 +0000</pubDate>
		<dc:creator>Justin Carmony</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPhone SDK]]></category>
		<category><![CDATA[Random]]></category>

		<guid isPermaLink="false">http://www.justincarmony.com/blog/2008/07/09/alright-an-iphone-app-that-is-definitly-going-te-cause-horror-stories-friend-book/</guid>
		<description><![CDATA[&#8230; Is it me or is this idea just bad: http://lifehacker.com/398228/friend-book-to-beam-your-iphones-contact-data-with-a-shake Here is an except about what Friend Book does: The coolest feature without a doubt is the new &#8220;Handshake&#8221;: put two iPhones running Friend Book together, shake them up and down, and the personal contact information of the phones&#8217; owners will be beamed through ...


Related posts:<ol><li><a href='http://www.justincarmony.com/blog/2008/02/19/starting-book-reviews/' rel='bookmark' title='Starting Book Reviews'>Starting Book Reviews</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/05/20/iphone-sdk-learning-the-basics-by-removing-the-touch/' rel='bookmark' title='iPhone SDK &#8211; Learning the Basics by Removing the Touch'>iPhone SDK &#8211; Learning the Basics by Removing the Touch</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/06/12/iphone-3g-my-personal-perspective/' rel='bookmark' title='iPhone 3G &#8211; My Personal Perspective'>iPhone 3G &#8211; My Personal Perspective</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>&#8230; Is it me or is this idea just bad:</p>
<p><a href="http://lifehacker.com/398228/friend-book-to-beam-your-iphones-contact-data-with-a-shake">http://lifehacker.com/398228/friend-book-to-beam-your-iphones-contact-data-with-a-shake</a></p>
<p>Here is an except about what Friend Book does:</p>
<blockquote style="MARGIN-RIGHT: 0px" dir="ltr"><p>The coolest feature without a doubt is the new &#8220;Handshake&#8221;: put two iPhones running Friend Book together, shake them up and down, and the personal contact information of the phones&#8217; owners will be beamed through the net to the paired phones. Handshake doesn&#8217;t work through a device-to-device connection, but instead passes location data back to Tapulous&#8217; servers &#8211; two shaking phones in the same location means it&#8217;s time to swap information.</p>
</blockquote>
<p style="MARGIN-RIGHT: 0px" dir="ltr">Okay&#8230;.. is it just me, or is this idea just bad? If I see to people shaking their phones together, I can shake mine too and see if I can&#8217;t leach of a few contacts. No to mention &#8220;Wii&#8221; syndrom where iPhones will be flying out of people&#8217;s hands. I&#8217;m sorry, but this &#8220;feature&#8221; seems just crazy to me.</p>


<p>Related posts:<ol><li><a href='http://www.justincarmony.com/blog/2008/02/19/starting-book-reviews/' rel='bookmark' title='Starting Book Reviews'>Starting Book Reviews</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/05/20/iphone-sdk-learning-the-basics-by-removing-the-touch/' rel='bookmark' title='iPhone SDK &#8211; Learning the Basics by Removing the Touch'>iPhone SDK &#8211; Learning the Basics by Removing the Touch</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/06/12/iphone-3g-my-personal-perspective/' rel='bookmark' title='iPhone 3G &#8211; My Personal Perspective'>iPhone 3G &#8211; My Personal Perspective</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.justincarmony.com/blog/2008/07/09/alright-an-iphone-app-that-is-definitly-going-te-cause-horror-stories-friend-book/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>_CGRectZero Error with UITableViewCell</title>
		<link>http://www.justincarmony.com/blog/2008/07/04/_cgrectzero-error-with-uitableviewcell/</link>
		<comments>http://www.justincarmony.com/blog/2008/07/04/_cgrectzero-error-with-uitableviewcell/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 17:06:11 +0000</pubDate>
		<dc:creator>Justin Carmony</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Errors]]></category>
		<category><![CDATA[iPhone SDK]]></category>

		<guid isPermaLink="false">http://www.justincarmony.com/blog/2008/07/04/_cgrectzero-error-with-uitableviewcell/</guid>
		<description><![CDATA[Preface If you haven&#8217;t agreed to the iPhone SDK License Agreement and NDA, please ignore this post, or Apple might hunt you down with their lawyers&#8230; and what a horrible death that would be. Problem I keep getting a build error when trying to subclass the UITableViewCell Solution Add the CoreGraphics.framework to your project Resource ...


Related posts:<ol><li><a href='http://www.justincarmony.com/blog/2008/01/31/asp-net-systemthreadingthreadabortexception-error/' rel='bookmark' title='ASP .NET &amp; System.Threading.ThreadAbortException Error'>ASP .NET &#038; System.Threading.ThreadAbortException Error</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/05/16/iphone-sdk-dna-a-frustrating-issue/' rel='bookmark' title='iPhone SDK DNA &#8211; A Frustrating Issue'>iPhone SDK DNA &#8211; A Frustrating Issue</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/05/20/iphone-sdk-learning-the-basics-by-removing-the-touch/' rel='bookmark' title='iPhone SDK &#8211; Learning the Basics by Removing the Touch'>iPhone SDK &#8211; Learning the Basics by Removing the Touch</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<h3>Preface</h3>
<p>If you haven&#8217;t agreed to the iPhone SDK License Agreement and NDA, please ignore this post, or Apple might hunt you down with their lawyers&#8230; and what a horrible death that would be.</p>
<h3>Problem</h3>
<p>I keep getting a build error when trying to subclass the UITableViewCell</p>
<h3>Solution</h3>
<p>Add the CoreGraphics.framework to your project</p>
<h3>Resource</h3>
<p>Found my a<a href="http://forums.macrumors.com/showthread.php?t=505359">nswer at the MacRumors forums</a>.</p>


<p>Related posts:<ol><li><a href='http://www.justincarmony.com/blog/2008/01/31/asp-net-systemthreadingthreadabortexception-error/' rel='bookmark' title='ASP .NET &amp; System.Threading.ThreadAbortException Error'>ASP .NET &#038; System.Threading.ThreadAbortException Error</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/05/16/iphone-sdk-dna-a-frustrating-issue/' rel='bookmark' title='iPhone SDK DNA &#8211; A Frustrating Issue'>iPhone SDK DNA &#8211; A Frustrating Issue</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/05/20/iphone-sdk-learning-the-basics-by-removing-the-touch/' rel='bookmark' title='iPhone SDK &#8211; Learning the Basics by Removing the Touch'>iPhone SDK &#8211; Learning the Basics by Removing the Touch</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.justincarmony.com/blog/2008/07/04/_cgrectzero-error-with-uitableviewcell/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mac Keyboard Quirks &#8211; Making Mac more like Windows</title>
		<link>http://www.justincarmony.com/blog/2008/07/03/mac-keyboard-quirks-making-mac-more-like-windows/</link>
		<comments>http://www.justincarmony.com/blog/2008/07/03/mac-keyboard-quirks-making-mac-more-like-windows/#comments</comments>
		<pubDate>Thu, 03 Jul 2008 16:16:00 +0000</pubDate>
		<dc:creator>Justin Carmony</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[OS X]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://www.justincarmony.com/blog/2008/07/03/mac-keyboard-quirks-making-mac-more-like-windows/</guid>
		<description><![CDATA[Alright, the sound of dying Apple fanboys are crying through out the internet at the posting of this entry, but there are two things I can&#8217;t stand about the Mac: Command &#38; Control are switched &#8211; this is a major pain, especially when using a KVM to switch between a Windows, Mac, and Linux machine. ...


Related posts:<ol><li><a href='http://www.justincarmony.com/blog/2008/06/29/lifehacker-making-your-mac-sing/' rel='bookmark' title='Lifehacker &#8211; Making your Mac sing!'>Lifehacker &#8211; Making your Mac sing!</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/06/17/os-x-and-tabs-skipping-drop-down-controls/' rel='bookmark' title='OS X and Tabs &#8211; Skipping Drop Down Controls'>OS X and Tabs &#8211; Skipping Drop Down Controls</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/07/02/apple-needs-to-stop-being-misleading-viruses-malware/' rel='bookmark' title='Apple Needs to Stop Being Misleading &#8211; Viruses &amp; Malware'>Apple Needs to Stop Being Misleading &#8211; Viruses &#038; Malware</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Alright, the sound of dying Apple fanboys are crying through out the internet at the posting of this entry, but there are two things I can&#8217;t stand about the Mac:</p>
<p>Command &amp; Control are switched &#8211; this is a major pain, especially when using a KVM to switch between a Windows, Mac, and Linux machine. It is just crazy!</p>
<p>Home &amp; End &#8211; They don&#8217;t work like they should on every other OS. I&#8217;ve never really figured out exactly what they do on Mac, but on Windows they go to the beginning or end of a line.</p>
<p>So here are some simple free fixes to change these behaviors on your Mac:</p>
<p><a href="http://www.mac-forums.com/forums/showthread.php?t=70193">Fix Command &amp; Control</a></p>
<p><a href="http://www.starryhope.com/tech/apple/2006/keyfixer/">Fix Home &amp; End</a></p>
<p>Another issue I&#8217;ve had is Alt-Tab doesn&#8217;t exists on Mac, its Ctrl-Tab and the functionality isn&#8217;t the same. I like Ctrl-Tab, but sometimes I&#8217;ve very accustom to my Alt-Tab. I found this program called <a href="http://www.manytricks.com/witch/">Witch</a> that enables Alt-Tab, and all sorts of other cool features. It isn&#8217;t free, it is shareware, but I haven&#8217;t seen any annoying notices to buy it, so we&#8217;ll see how it works out.</p>


<p>Related posts:<ol><li><a href='http://www.justincarmony.com/blog/2008/06/29/lifehacker-making-your-mac-sing/' rel='bookmark' title='Lifehacker &#8211; Making your Mac sing!'>Lifehacker &#8211; Making your Mac sing!</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/06/17/os-x-and-tabs-skipping-drop-down-controls/' rel='bookmark' title='OS X and Tabs &#8211; Skipping Drop Down Controls'>OS X and Tabs &#8211; Skipping Drop Down Controls</a></li>
<li><a href='http://www.justincarmony.com/blog/2008/07/02/apple-needs-to-stop-being-misleading-viruses-malware/' rel='bookmark' title='Apple Needs to Stop Being Misleading &#8211; Viruses &amp; Malware'>Apple Needs to Stop Being Misleading &#8211; Viruses &#038; Malware</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.justincarmony.com/blog/2008/07/03/mac-keyboard-quirks-making-mac-more-like-windows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 36/131 queries in 0.064 seconds using memcached
Content Delivery Network via Rackspace Cloud Files: c747925.r25.cf2.rackcdn.com

Served from: www.justincarmony.com @ 2012-02-07 20:31:12 -->
