<?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"
	>

<channel>
	<title>JasonCypret.com</title>
	<atom:link href="http://jasoncypret.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jasoncypret.com</link>
	<description>Jason Cypret - Web + Graphic + Flash +Video + 3D + CSS = Designer</description>
	<pubDate>Fri, 16 May 2008 17:04:02 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5</generator>
	<language>en</language>
			<item>
		<title>My CSS Techniques for working with browser bugs</title>
		<link>http://jasoncypret.com/2008/05/09/my-css-techniques-for-working-with-browser-bugs/</link>
		<comments>http://jasoncypret.com/2008/05/09/my-css-techniques-for-working-with-browser-bugs/#comments</comments>
		<pubDate>Fri, 09 May 2008 16:12:55 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
		
		<category><![CDATA[Web Design]]></category>

		<category><![CDATA[CCS]]></category>

		<category><![CDATA[CSS browser bugs]]></category>

		<category><![CDATA[ie6]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/?p=228</guid>
		<description><![CDATA[I have been wanting to write a post for some time now over CSS. I started to think about what I could write about that has not already been said. I mean there is already so much documentation, tutorials, and beautiful examples already. What more could I bring? So I will take this in another [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://jasoncypret.com/wp-content/uploads/2008/05/css.gif" alt="" title="css" />I have been wanting to write a post for some time now over CSS. I started to think about what I could write about that has not already been said. I mean there is already so much documentation, tutorials, and beautiful examples already. What more could I bring? So I will take this in another direction, and let you know what have been some of the struggles I have faced with CSS and how I was able to work around them.</p>
<p>First off let me say I am not a CSS guru. I work creating CSS sites on a daily basis, however I will be the first to admit that I do not know 1/5th of everything that can an can&#8217;t be done through CSS. With that begin said if you see an easier or better method, then post a comment below or email me. I will do my best to include and update on this post.</p>
<h3>PNG Image Transparency - Cross Browser Problem</h3>
<p><img style="float:right; margin-left:10px;" src="http://jasoncypret.com/wp-content/uploads/2008/05/pngproblem.jpg" alt="pngproblem" />Having PNG images in CSS designers arsenal very beneficial as it can cut down on the amount of images used as well and some of the code that its use. PNG images can also open up design possibilities that you never knew were possible. See example below.</p>
<p><a class="link-block" href="http://www.levelopacity.com/">http://www.levelopacity.com/</a><br />
Check out the use of the PNG image in the footer.</p>
<p><a class="link-block" href="http://www.alexbuga.com/">http://www.alexbuga.com/</a><br />
Alex uses transparency throughout his page.</p>
<p><a class="link-block" href="http://silverbackapp.com/">http://silverbackapp.com/</a><br />
When you resize your browser the PNG background images give a sense of depth of field.</p>
<p>PNG&#8217;s are awesome, however, if you are designing your sites to work correctly in IE6 (as you should be) then you know that PNG&#8217;s don&#8217;t work correctly. There are several ways of getting your PNG images to work in IE, however depending where and how you want to display your images will depend on what fix you will put in place.</p>
<p>If you have an image much like my logo in which uses an image tag, then you can go with the AlphaImageLoader fix. Target IE using *html. It is best to include you IE <span style="text-decoration: line-through;">hacks</span> fixes in a separate style sheet. Be aware, if you decide to use this method on repeating backgrounds, it will make any text un-selectable and any links un-clickable in the target element.</p>
<p><code>* html img#swoop {<br />
	background: none;<br />
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='navCorner.png', sizingMethod='scale');</code></p>
<p>The next methods are great for deploying fixes site-wide if you have lots of PNG&#8217;s. First Twin Helix iepngfix.htc. This one is considered a hack, and will un-validate your css. However it works great and if you place it in a second stylesheet for IT your valid code will not be affected. There are some limitations though. For 100% dependability, your elements should not have any auto-widths or heights. Sometimes you’ll get flickering. It’ll display the broken png for a second before the script kicks in. Can’t be used on repeating background images. You can get the script here: <a href="http://www.twinhelix.com/css/iepngfix/">http://www.twinhelix.com</a></p>
<p><code>img{<br />
	behavior: url(iepngfix.htc);<br />
}<br />
/* or you can target specific elements and their backgrounds /*</p>
<p>#header{<br />
	width: 800px;<br />
	height: 200px;<br />
	background: url(path/to/image.png);<br />
	behavior: url(iepngfix.htc);<br />
}</code></p>
<p>The last is a Jquery method. With the jquery.ifixpng plugin you can replace all the images on the page or you can target certain elements on the page. For this fix you will need a blank or one pixel gif, Jquery and of course the ifixpng plugin. This fix also has its limitations. Always defaults to &#8220;background-position:top left&#8221; and you cannot reposition it. Also doesn’t work on repeated backgrounds.</p>
<p>   <code> Example - applying filters to .png for correct ie6 display</p>
<p>    $(document).ready(function() {<br />
    	// apply to all images<br />
    	$(’img[@src$=.png]’).ifixpng(); </p>
<p>    	// apply to target elements<br />
    	$(’img[@src$=.png], div#header’).ifixpng();<br />
    });</code></p>
<p>If you still have questions, here is a <a href="http://www.dedestruct.com/2008/01/13/cross-browser-transparency-with-png/">good resource</a> to start with.</p>
<h3>min-width Property and IE</h3>
<p>Always something with IE, huh? Say you wanted to have your page be scalable, but once the user rescaled the page to a certain width, the page would stop scaling. This property s called min-width and is used by most of the current browsers today. Again, min-width wont work in IE6. Thanks again Microsoft. You can make it work by using an IE Dynamic Expression to set the width. </p>
<p><code>div.something {<br />
width: 100%;<br />
min-width: 900px;</p>
<p>/* IE Dynamic Expression to set the width */<br />
width: expression(document.body.clientWidth < 910 ? "900px" : "100%" );<br />
}</code></p>
<h3>IE6 Double Margin Bug &#038; Clearing Floats</h3>
<p><a href='http://jasoncypret.com/wp-content/uploads/2008/05/float-problem.jpg' rel="facebox"><img style="float:right; margin-left:10px;" src="http://jasoncypret.com/wp-content/uploads/2008/05/float-problem-300x232.jpg" alt="" title="float-problem" width="300" height="232" /></a>First lets get the easy one out of the way. If you have a floated element such as a div and you place margin-right or margin-left on that element, our most beloved IE6 will double that margin value. To fix this simply add display:inline; to your floating element. Thanks <a href="http://www.jaymeblackmon.com/ie6-double-margin-bug-fix">Jamye</a></p>
<p>Clearing floats is a whole other issue in itself. There are some many do&#8217;s and don&#8217;t of clearing floats. I remember when I used to clear floats by adding an empty div and add a clear element to it. Don&#8217;t try that by they way. Most of the time the problem with a float is the containing div. The containing div does not cover the floated element, thus resulting in pages that look so jacked up you want to go back to table design (j/k). When ever you float an element add an overflow:hidden property to it. Suddenly that div is now seeing the floating div. Also adding a hard width and height can fix this as well, but who works in absolutes (pun intended).</p>
<p>I know some people who just stay away from floats because they can&#8217;t get them to work. If you uses this simple method you will get your floats to work like you want them. After you have implemented both of these methods you will have some code kinda like this:</p>
<p><code>div.right-well-container {<br />
overflow:hidden;<br />
}</p>
<p>div.right-well {<br />
margin: 10px 4px 0px 4px;<br />
float: left;<br />
display: inline;<br />
}</code></p>
<h3>Background Images on Empty Elements</h3>
<p><a href='http://jasoncypret.com/wp-content/uploads/2008/05/broken-font-size.gif' rel="facebox"><img style="float:right; margin-left:10px;" src="http://jasoncypret.com/wp-content/uploads/2008/05/broken-font-size-300x177.gif" alt="" title="broken-font-size" width="300" height="177"/></a>From time to time I will be in the need to add a extra element or rounded corners on to existing code. Sometimes it is just easier to add an empty div to accommodate this change rather than recoding the bulk of your already finished code. However you may run into another IE6 bug that will add margin around the element. After multiple tests to see what is exactly causing the problem I found that it was the font size. My workaround has been to change the font size to 1px. This seems to get rid of the problem. I am sure there is a better explanation for what is going on, but I don&#8217;t have it. Feel free to comment below.</p>
<p><code>div#profile-top {<br />
	font-size: 1px;<br />
	height: 3px;<br />
	background: url(details_top.gif) no-repeat;<br />
}</code></p>
<div style="overflow:hidden;">
<h3>Ordered List Background Mystery</h3>
<p><a href='http://jasoncypret.com/wp-content/uploads/2008/05/broken-ol.gif' rel="facebox"><img style="float:right; margin-left:10px;" src="http://jasoncypret.com/wp-content/uploads/2008/05/broken-ol-219x300.gif" alt="" title="broken-ol" width="219" height="300" class="alignnone size-medium wp-image-234" /></a>This last one is a mystery. I was not able to solve this one, and I was also under a time crunch so I restyled it without using ordered lists. However I would still like to figure out what the problem was and what could be done to solve it.</p>
<p>Basically this is an IE6 &#038; 7 problem. When you have a background image on a numbered list, the list does not recognize the padding as well as fails to actually number in order. You know how CSS designers love styling lists, and I really wonder what the problem is, and if there is an easy way to fix it. If you know comment or email me.</p>
<p><a href="http://jasoncypret.com/wp-content/uploads/2008/05/browser-issue.zip">Download Sample Files</a></div>
<h3>CSS links for beginners and experts</h3>
<p>if you are getting into CSS it can be dawning at first, however once it clicks with you,you&#8217;ll have no problem tackling the hardest projects. I found out that the best program for a beginner to learn on is <a href="http://macrabbit.com/cssedit/">CSSEdit</a>. While it is not a program for beginners, it helps you understand code and view items that cane be styled. Everybody has his or her own method to try to solve things and we all have our favorite tools. CSSEdit&#8217;s Preview feature in combination with the XRay can allow you to pull any site and look at the CSS and see how they set it up. When you are in XRay mode you simply select an element, and you&#8217;ll see its margins and padding (if any) and the space this element takes. At the top of the Preview page you see the all the parent elements with classes and id naming etc. Very kool stuff. Below are some links for you to get started.</p>
<p><a href="http://veerle.duoh.com/blog/comments/starting_with_css_and_bug_fixing_tips/">http://veerle.duoh.com</a><br />
She knows her CSS and has tons of links to CSS tutorials, examples, and more.</p>
<p><a href="http://www.blog.spoongraphics.co.uk/freebies/five-free-css-sliding-door-tab-menus">http://www.blog.spoongraphics.co.uk</a><br />
A great site for anything design related. Here is a free CSS menu for you to dissect and understand.</p>
<p>For those experts out there check out the links below. See what other creative people like your self are doing with CSS.</p>
<p><a href="http://www.noupe.com/css/using-css-to-do-anything-50-creative-examples-and-tutorials.html">50 Creative CSS Examples</a></p>
<p><a href="http://www.cssartillery.com/">http://www.cssartillery.com/</a><br />
Is becoming one of my favorite CSS gallery sites</p>
]]></content:encoded>
			<wfw:commentRss>http://jasoncypret.com/2008/05/09/my-css-techniques-for-working-with-browser-bugs/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Animoto - Web 2.0 Meets Photo SlideShows</title>
		<link>http://jasoncypret.com/2008/04/25/animoto-web-20-meets-photo-slideshows/</link>
		<comments>http://jasoncypret.com/2008/04/25/animoto-web-20-meets-photo-slideshows/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 19:13:02 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
		
		<category><![CDATA[Photography]]></category>

		<category><![CDATA[Reviews]]></category>

		<category><![CDATA[Animoto]]></category>

		<category><![CDATA[Leo Laporte]]></category>

		<category><![CDATA[net@night]]></category>

		<category><![CDATA[slide shows]]></category>

		<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/2008/04/25/animoto-web-20-meets-photo-slideshows/</guid>
		<description><![CDATA[
I just listened to episode 49 of net@night with Amber MacArthur and Leo Laporte. This week they had Brad Jefferson on the show. Brad is the co-founder of Animoto. I really got excited when I heard what Animoto is and how easy it is to use the service.
I have been creating video slide shows for [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://jasoncypret.com/wp-content/uploads/2008/04/animoto-slideshows.jpg' alt='animoto-slideshows.jpg' /></p>
<p>I just listened to episode 49 of <a href="http://www.twit.tv/natn">net@night</a> with Amber MacArthur and Leo Laporte. This week they had Brad Jefferson on the show. Brad is the co-founder of Animoto. I really got excited when I heard what Animoto is and how easy it is to use the service.</p>
<p>I have been creating video slide shows for years now. I used to build the entire slide show in Final Cut Pro and manually set the ken burns effect by hand. Over the years it is getting easier and easier to build high quality slide shows that look amazing with little effort.</p>
<p>I am currently making a slide show using iPhoto for my father in laws 60th birthday. I found it really easy to quickly create awesome slide shows in minutes with little effort. However, these slide shows look a lot like some of my first slide shows I ever created. They look good, but do not have very much depth and emphasis to match the music, and highlight certain photos. To do this I would need to go into Motion and spend an afternoon using 3D effects, transitions, and motion effects to make the slide show look truly amazing. Who has that kind of time though, and we are just talking about a photo slide show here.</p>
<p>Enter Animoto. Animoto allows me to create the types of videos I mentioned with roughly no effort on my part. Simply upload your photos to Animoto, or choose existing photos online (Flickr). Select a song from their music library, or upload your own. Animoto will analyze the song&#8217;s tempo and emotion, and add motion effects to match the beat. It is truly amazing. But don&#8217;t take my word for it, <a href="http://animoto.com/">try it out</a> yourself. Also check out what I quickly made in 5 minutes.</p>
<div align="center"><script type="text/javascript" src="http://widgets.clearspring.com/o/46928cc51133af17/4812051ffecf75db/46928cc5788deb29/27c6f710/widget.js"></script></div>
<p>I really would like to use this for <a href="http://www.jcphotographydallas.com/">my photography business</a>, however Animoto is really not set up for commercial use at the moment. Brad mentioned they are looking at a commercial version for professional use in the near future. When that comes out I will adopt Animoto for all of my slide show projects.</p>
]]></content:encoded>
			<wfw:commentRss>http://jasoncypret.com/2008/04/25/animoto-web-20-meets-photo-slideshows/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hacked! My favorite iPhone Applications</title>
		<link>http://jasoncypret.com/2008/04/15/hacked-my-favorite-iphone-applications/</link>
		<comments>http://jasoncypret.com/2008/04/15/hacked-my-favorite-iphone-applications/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 17:01:17 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
		
		<category><![CDATA[Apple]]></category>

		<category><![CDATA[Reviews]]></category>

		<category><![CDATA[iPhone]]></category>

		<category><![CDATA[iPhone Applications]]></category>

		<category><![CDATA[Jailbreak]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/2008/04/15/hacked-my-favorite-iphone-applications/</guid>
		<description><![CDATA[
I&#8217;ve got to say, living in an iPhone world is great. I have an awesome phone, an even better iPod, and web browsing in Safari is the best on any mobile phone. Everything I mentioned is the default on all iPhone&#8217;s. These services are great, but I really want a phone that can do it [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://jasoncypret.com/wp-content/uploads/2008/04/iphone-jailbreaking.jpg' alt='iphone-jailbreaking.jpg' /></p>
<p>I&#8217;ve got to say, living in an iPhone world is great. I have an awesome phone, an even better iPod, and web browsing in Safari is the best on any mobile phone. Everything I mentioned is the default on all iPhone&#8217;s. These services are great, but I really want a phone that can do it all, and do it well. There is so much power packed into this tiny device, and I want to use all of it to its full extent. Jailbreak, is the answer to unlocking this power.</p>
<p>  I really don&#8217;t want to talk to much about the process of Jail-breaking your iPhone. There are so many different ways of unlocking your iPhone its really just a matter of which option to choose. However for those of you who are missing out, one word, &#8220;<a href="http://download.ziphone.org/">ziPhone</a>&#8220;.</p>
<p>Now that we got the housekeeping out of the way, lets talk about all of the great applications you can get from jailbreaking your iPhone. This list is in no particular order, nor is it a definitive list. This is simply a list of the applications I have fell in love with and keep using on a daily basis. I test drive a lot of applications. To be quite honest, most of the applications are stinkers. However, every now and then you will find an application that works perfectly, and makes you wonder it if was build by a developer working for Apple. These apps listed below are those types of applications. They are, the cream of the crop. So lets get down to business, shall we? Oh, and one last thing, everything here is FREE! </p>
<div style="overflow:hidden; margin-top:10px;"><a href="http://jasoncypret.com/wp-content/uploads/2008/mobilescrobbler-2.JPG" rel="facebox"><img src="http://jasoncypret.com/wp-content/uploads/2008/mobilescrobbler-2.JPG" alt="mobile scrobbler for iphone" width="157" height="235" border="0" style="float:right;"></a><a href="http://jasoncypret.com/wp-content/uploads/2008/mobilescrobbler.JPG" rel="facebox"><img  src="http://jasoncypret.com/wp-content/uploads/2008/mobilescrobbler.JPG" alt="mobile scrobbler for iphone" width="157" height="235" border="0" style="float:right; margin-left:10px; margin-right:10px;"></a></p>
<h3 style="margin-top:0px;">MobileScrobbler</h3>
<p>Even though these are not in a particular order I must say that Mobile Scrobbler is probably my favorite application. If you are a heavy LastFM user (like me) and can&#8217;t stand that your tracks do not get recorded on the go, then this app is for you. You can also use it to discover new music based on the music you listen to. Basically you can stream recommended high quality music from LastFM. This is great if you are starting to get board with your current music collection.</p></div>
<div style="overflow:hidden;  margin-top:10px;">
<h3 style="margin-top:0px;"><a href="http://jasoncypret.com/wp-content/uploads/2008/mobile-chat.JPG" rel="facebox"><img src="http://jasoncypret.com/wp-content/uploads/2008/mobile-chat.JPG" alt="mobile chat for iphone"  width="157" height="235" border="0" style="float:right; margin-left:200px;"></a>Mobile Chat</h3>
<p>Mobile Chat supports several IM services. I use it for AIM and MSN Messenger. If you want to quickly jump online and see what your buddies are up to, then MobileChat is the answer. If you want a more advanced version, better bust out the laptop.</p></div>
<div style="overflow:hidden;  margin-top:10px;">
<h3 style="margin-top:0px;"><a href="http://jasoncypret.com/wp-content/uploads/2008/twinkle.JPG" rel="facebox"><img src="http://jasoncypret.com/wp-content/uploads/2008/twinkle.JPG" alt="Twinkle" width="157" height="235" border="0" style="float:right;"></a><a href="http://jasoncypret.com/wp-content/uploads/2008/mobile-twitter.JPG" rel="facebox"><img  src="http://jasoncypret.com/wp-content/uploads/2008/mobile-twitter.JPG" alt="mobile twitter for iphone" width="157" height="235" border="0" style="float:right; margin-left:10px; margin-right:10px;"></a>Mobile Twitter &amp; Twinkle</h3>
<p>If you follow me on Twitter and Pownce you will notice that I use Pownce way more frequently. However the amount of people on Twitter and with these great iPhone applications, Twitter is starting to bring me back. First off, Mobile Twitter is an awesome native version of Twitter. Basically it works just as if you were twittering on the website. If you are a heavy Twitter user, Mobile Twitter will bring your addiction to a new level. Twinkle is also very good. If you are looking to find other Twitter friends in your area, Twinkle with help you out. It allows you to find Twitter friends in your area, and does much more.</p></div>
<div style="overflow:hidden;  margin-top:10px;">
<h3 style="margin-top:0px;"><a href="http://jasoncypret.com/wp-content/uploads/2008/wallpaper-2.JPG" rel="facebox"><img src="http://jasoncypret.com/wp-content/uploads/2008/wallpaper-2.JPG" alt="Wallpaper" width="157" height="235" border="0" style="float:right;"></a><a href="http://jasoncypret.com/wp-content/uploads/2008/wallpaper.JPG" rel="facebox"><img  src="http://jasoncypret.com/wp-content/uploads/2008/wallpaper.JPG" alt="Wallpaper for iphone" width="157" height="235" border="0" style="float:right; margin-left:10px; margin-right:10px;"></a>Wallpaper</h3>
<p>Board with those wallpapers that came with your iPhone. Refresh your phone with new wallpaper daily. Wallpaper is basically a community of iPhone users who share their wallpapers. Once launched, a new wallpaper will display every 15 seconds or so. If you like what you see add it as your wallpaper or add it to your gallery to browse and add later. Isn&#8217;t shareing fun! </p></div>
<div style="overflow:hidden;  margin-top:10px;">
<h3 style="margin-top:0px;"><a href="http://jasoncypret.com/wp-content/uploads/2008/iflix.JPG" rel="facebox"><img src="http://jasoncypret.com/wp-content/uploads/2008/iflix.JPG" alt="iFlix for iphone"  width="157" height="235" border="0" style="float:right; margin-left:200px;"></a>iFlix</h3>
<p>iFlix is almost more fun than actually visiting Netflix.com. This application feels natural, like it was made by Steve himself. I just  wish there was a way to view all of those <a href="http://jasoncypret.com/2008/02/20/screw-you-netflix-watch-it-now-is-a-joke/">watch it now movies on my iPhone</a>. I also wish you could rate your movies on iFlix. Maybe we will see more features when iPhone 2.0 firmware is released.</div>
<div style="overflow:hidden;  margin-top:10px;">
<h3 style="margin-top:0px;"><a href="http://jasoncypret.com/wp-content/uploads/2008/isolitare.jpg" rel="facebox"><img src="http://jasoncypret.com/wp-content/uploads/2008/isolitare.jpg" alt="iSolitare for iPhone" width="335" height="222" border="0"  style="float:right; margin-left:10px;"></a>iSolitare</h3>
<p>I have a whole application screen dedicated to my games. Solitaire is a beautiful looking game and functions as you would think. It uses touch very well and is a good waiting room game.</p></div>
<div style="overflow:hidden;  margin-top:10px;">
<h3 style="margin-top:0px;"><a href="http://jasoncypret.com/wp-content/uploads/2008/tris.jpg" rel="facebox"><img src="http://jasoncypret.com/wp-content/uploads/2008/tris.jpg" alt="Tetris for iphone"  width="157" height="235" border="0" style="float:right; margin-left:200px;"></a>Tris</h3>
<p>Tetris is also another favorite of mine. I have loved Tetris ever since my GameBoy days. It is always a great mobile game and this version is beautiful. It uses the touch to move the pieces and tapping the screen rotates the pieces. Lots of fun.</p></div>
<div style="overflow:hidden;  margin-top:10px;">
<h3 style="margin-top:0px;"><a href="http://jasoncypret.com/wp-content/uploads/2008/iscores-2.JPG" rel="facebox"><img src="http://jasoncypret.com/wp-content/uploads/2008/iscores-2.JPG" alt="iScores" width="157" height="235" border="0" style="float:right;"></a><a href="http://jasoncypret.com/wp-content/uploads/2008/iscores.JPG" rel="facebox"><img  src="http://jasoncypret.com/wp-content/uploads/2008/iscores.JPG" alt="iScores for iphone" width="157" height="235" border="0" style="float:right; margin-left:10px; margin-right:10px;"></a>iScores</h3>
<p>For the sports fans out there this is the app for you. Love getting sports scores and updates in real time? Soccer, Tennis, Baseball, Hockey, Basketball, and Football are all available in iScores via <a href="http://scorespro.com/">ScoresPro.com</a>. Once you are in the sport of your choice it will update every 30 minutes. Very cool. Go Mavs!</div>
<div style="overflow:hidden;  margin-top:10px;">
<h3 style="margin-top:0px;"><a href="http://jasoncypret.com/wp-content/uploads/2008/iCave.gif" rel="facebox"><img src="http://jasoncypret.com/wp-content/uploads/2008/iCave.gif" alt="iCave for iPhone" width="335" height="222" border="0"  style="float:right; margin-left:10px;"></a>iCave</h3>
<p>Old Skool graphics and touch screen fun. This is a really fun game. How far can you get?</p></div>
<div style="overflow:hidden;  margin-top:10px;">
<h3 style="margin-top:0px;"><a href="http://jasoncypret.com/wp-content/uploads/2008/iZoo.JPG" rel="facebox"><img src="http://jasoncypret.com/wp-content/uploads/2008/iZoo.JPG" alt="iZoo for iphone"  width="157" height="235" border="0" style="float:right; margin-left:200px;"></a>iZoo</h3>
<p>A great Bejeweled clone. This game have several different themes that completely change the way you will look at this classic puzzle game.</p></div>
<div style="overflow:hidden;  margin-top:10px;">
<h3 style="margin-top:0px;"><a href="http://jasoncypret.com/wp-content/uploads/2008/No-Game.JPG" rel="facebox"><img src="http://jasoncypret.com/wp-content/uploads/2008/No-Game.JPG" alt="NoIZ2SA for iphone"  width="157" height="235" border="0" style="float:right; margin-left:200px;"></a>NoIZ2SA</h3>
<p>Long live the side scroll shooter. This one reminds me of Tron mixed with with a little Rez. This is a very addictive side scroll shooter. A must have.</p></div>
<div style="overflow:hidden;  margin-top:10px;">
<h3 style="margin-top:0px;"><a href="http://jasoncypret.com/wp-content/uploads/2008/ttr.JPG" rel="facebox"><img src="http://jasoncypret.com/wp-content/uploads/2008/ttr.JPG" alt="TTR for iphone"  width="157" height="235" border="0" style="float:right; margin-left:200px;"></a>TTR</h3>
<p>Much like Dance Dance Revolution or even Guitar Hero but without all that dancing and guitar picking. The cool part is you can use your own songs from your iTunes library. Let the revolution begin. </p></div>
<div style="overflow:hidden;  margin-top:10px;">
<h3 style="margin-top:0px;">Pushr</h3>
<p><a href="http://jasoncypret.com/wp-content/uploads/2008/pusher.JPG" rel="facebox"><img src="http://jasoncypret.com/wp-content/uploads/2008/pusher.JPG" alt="Pusher for iphone"  width="157" height="235" border="0" style="float:right; margin-left:200px;"></a></p>
<p>Flickr + iPhone = Lots of embarrassing photos of me. iFlickr also uploads yoru photos to Flickr, but uploads every image you take. However, I don&#8217;t want to upload every picture I take to Flickr. Pushr lets me choose which images I want to upload. Very simple and work great.</p></div>
<div style="overflow:hidden;  margin-top:10px;">
<h3 style="margin-top:0px;"><a href="http://jasoncypret.com/wp-content/uploads/2008/iphysics-crayon.jpg" rel="facebox"><img src="http://jasoncypret.com/wp-content/uploads/2008/iphysics-crayon.jpg" alt="iphysics for iPhone" width="200" height="132" border="0"  style="float:right; "></a><a href="http://jasoncypret.com/wp-content/uploads/2008/pinball.jpg" rel="facebox"><img src="http://jasoncypret.com/wp-content/uploads/2008/pinball.jpg" alt="iphysics for iphone"  width="116" height="132" border="0" style="float:right; margin-left:10px; margin-right:10px;"></a>iPhysics &amp; iPinball</h3>
<p>First off download iPhysics and play the games that come bundled with iPhysics. Crayon Physics is awesome, but the killer iPhysics app for me is iPinball. iPinball lets me re-live the days when arcades were boss. I used to dropped endless quarters on those awesome pinball games.</p></div>
<div style="overflow:hidden;  margin-top:10px;">
<h3 style="margin-top:0px;"><a href="http://jasoncypret.com/wp-content/uploads/2008/pool.jpg" rel="facebox"><img src="http://jasoncypret.com/wp-content/uploads/2008/pool.jpg" alt="Pool for iPhone" width="335" height="222" border="0"  style="float:right; margin-left:10px;"></a>Pool</h3>
<p>What else can I say. Its lots of fun but has a stiff learning curve. It&#8217;s very sensitive, so practice make perfect.</p></div>
<div style="overflow:hidden;  margin-top:10px;">
<h3 style="margin-top:0px;"><a href="http://jasoncypret.com/wp-content/uploads/2008/yeti3d.jpg" rel="facebox"><img src="http://jasoncypret.com/wp-content/uploads/2008/yeti3d.jpg" alt="Yeti 3D for iPhone" width="335" height="222" border="0"  style="float:right; margin-left:10px;"></a>Yeti 3d</h3>
<p>If you just can&#8217;t wait until <a href="http://www.youtube.com/watch?v=kvci1vTXyUo">Quake 3</a> is released to the public, then Yeti 3D will give you your 3D fix. This is more of a proof of concept for this 3D engine running on the iPhone.</div>
<div style="overflow:hidden;  margin-top:10px;">
<h3 style="margin-top:0px;"><a href="http://jasoncypret.com/wp-content/uploads/2008/sketches.JPG" rel="facebox"><img src="http://jasoncypret.com/wp-content/uploads/2008/sketches.JPG" alt="Sketches for iphone"  width="157" height="235" border="0" style="float:right; margin-left:200px;"></a>Sketches</h3>
<p>Reminiscence over the good ol&#8217; Etch A Sketch days. Draw by touching the screen. When you want to start over, just shake iPhone. The accelerometer does it magic and the screen is ready again for your next masterpiece.</p></div>
<div style="overflow:hidden;  margin-top:10px;">
<h3 style="margin-top:0px;"><a href="http://jasoncypret.com/wp-content/uploads/2008/summerboard-2.JPG" rel="facebox"><img src="http://jasoncypret.com/wp-content/uploads/2008/summerboard-2.JPG" alt="Summerboard" width="157" height="235" border="0" style="float:right;"></a><a href="http://jasoncypret.com/wp-content/uploads/2008/summerboard.JPG" rel="facebox"><img  src="http://jasoncypret.com/wp-content/uploads/2008/summerboard.JPG" alt="Summerboard for iphone" width="157" height="235" border="0" style="float:right; margin-left:10px; margin-right:10px;"></a>Sumerboard</h3>
<p>This is usually the first app  jail-breakers put on their iPhone&#8217;s. Summerboard lets you take control over your iPhone&#8217;s appearance. There are some beautiful themes out there, and more and more are added all the time. <a href="http://www.spaziocellulare.com/ispazio/themes/theme_categories2.php">iSpazio</a> is a good resource for some of the better looking themes.</div>
<div style="overflow:hidden;  margin-top:10px;">
<h3 style="margin-top:0px;"><a href="http://jasoncypret.com/wp-content/uploads/2008/towers.gif" rel="facebox"><img src="http://jasoncypret.com/wp-content/uploads/2008/towers.gif" alt="Towers of Hanoi for iPhone" width="335" height="222" border="0"  style="float:right; margin-left:10px;"></a>Towers of Hanoi</h3>
<p>A very addictive game. Once you got it, well you got it. However I do find myself going back to it time after time if I have a few minutes to kill. This is a game that could use come graphic improvements, but what do you expect for free?</p></div>
<div style="overflow:hidden;  margin-top:10px;">
<h3 style="margin-top:0px;"><a href="http://jasoncypret.com/wp-content/uploads/2008/ssnaptature.JPG" rel="facebox"><img  src="http://jasoncypret.com/wp-content/uploads/2008/ssnaptature.JPG" alt="Snapature for iphone" width="157" height="235" border="0" style="float:right; margin-left:200px; margin-right:10px;"></a>Snapture</h3>
<p>Snapture, gives you more control over your iPhone&#8217;s camera features. You can take multiple shots at once, take black and white photos, and even zoom. Snapture has a sleek user interface, and allows you to take photos by touching anywhere on the screen, or by using the volume button. Taking pictures this way really make sense when yo think about it. Why didn&#8217;t Apple think of this? </p></div>
<div style="overflow:hidden;  margin-top:10px;">
<h3 style="margin-top:0px;"><a href="http://jasoncypret.com/wp-content/uploads/2008/capture.JPG" rel="facebox"><img  src="http://jasoncypret.com/wp-content/uploads/2008/capture.JPG" alt="Capture for iphone" width="157" height="235" border="0" style="float:right; margin-left:200px; margin-right:10px;"></a>Capture</h3>
<p>How else do you think I get these wonderful screen shots. Very simple and easy to use.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://jasoncypret.com/2008/04/15/hacked-my-favorite-iphone-applications/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Is the Playstation 3 relevant yet?</title>
		<link>http://jasoncypret.com/2008/03/27/is-the-playstation-3-relevant-yet/</link>
		<comments>http://jasoncypret.com/2008/03/27/is-the-playstation-3-relevant-yet/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 19:52:09 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
		
		<category><![CDATA[Video Games]]></category>

		<category><![CDATA[blu-ray]]></category>

		<category><![CDATA[playstation 3]]></category>

		<category><![CDATA[ps3]]></category>

		<category><![CDATA[xbox 360]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/2008/03/27/is-the-playstation-3-relevant-yet/</guid>
		<description><![CDATA[ I recently read an article from PS3 Fanboy stating the reasons PS3 is relevant again. I found this article very interesting since the format war is over. Is the PS3 relevant now? Below is PS3 Fanboy&#8217;s reasons as well as what I think.
1) Blu-Ray won the Format War.
PS3 Fanboy
With Blu-Ray having won the format [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://jasoncypret.com/wp-content/uploads/2008/03/ps3_relevant.jpg' alt='ps3_relevant.jpg' /> I recently read an article from <a href="http://www.ps3fanboy.com/photos/ten-reasons-why-the-ps3-is-still-relevant/">PS3 Fanboy</a> stating the reasons PS3 is relevant again. I found this article very interesting since the format war is over. Is the PS3 relevant now? Below is PS3 Fanboy&#8217;s reasons as well as what I think.</p>
<h3>1) Blu-Ray won the Format War.</h3>
<p>PS3 Fanboy</p>
<blockquote><p><span>With Blu-Ray having won the format war, the PS3 is looking more and more tempting for AV-philes. Not only is it one of the cheapest Blu-Ray players on the market today, it&#8217;s completely future proof with future Blu-Ray profiles&#8230; </span></p></blockquote>
<p>What I Think</p>
<blockquote><p><span> They are right on. The reason I bought the PS3 is because of the Blu-Ray capabilities. Of course I am an avid gamer, but right now I see the PS3 as a Blu-Ray player only. Now that Blu-Ray won the format war more PS3&#8217;s will be sold as Blu-Ray only players. Lets face it, it is definitely the best valued Blu-Ray player.</span></p></blockquote>
<h3>2) High Quality PSN Games</h3>
<p>PS3 Fanboy</p>
<blockquote><p><span>The quality of games on the PlayStation Network speaks for itself. Sony seeks out the most innovative and experimental content for its downloadable game service such as flOw and Everyday Shooter&#8230; Finally, Super Stardust HD remains one of the system&#8217;s best titles - not bad for less than 10 dollars.</span></p></blockquote>
<p>What I Think</p>
<blockquote><p><span>This is where I dissagree. First off the playstation store (PSN) is a joke. It is basically a web page you have to navigate awkwardly with a controller. It is not intuitive nor is it user friendly. That aside lets chat about games. PSN does not have the amount or quality of games that its main competitor has in Xbox Live Arcade. Sure there are come good ones like Calling All Cars, and Everyday Shooter, but the majority of the games can be found on other networks where there are many more game offerings. What I care about is exclusives, and so far the exclusives on Xbox 360 far outweigh those on PS3.</span></p></blockquote>
<h3>3) Great DLC support for first party titles</h3>
<p>PS3 Fanboy</p>
<blockquote><p><span>First party PS3 games receive excellent downloadable content. Motorstorm, even a year after its release, still continues to receive updates in the form of new tracks and vehicles. Both Warhawk and Resistance receive free updates and improvements as well as purchasable map packs&#8230;</span></p></blockquote>
<p>What I Think</p>
<blockquote><p><span>Blah Blah Blah. Sounds like company PR to me. Downloadable content, to me, has been a way for publishers/developers to squeeze every last drop of money they can from you. I don&#8217;t think any company can really brag about their downloadable content unless it was free. I mean lets look at horse armor. Yeah that went over well. The best downloadable content I think have been the map packs and the additional songs you can download for Rock Band and Guitar Hero. Although I really don&#8217;t think these are good reasons why the PS3 is now relevant.</span></p></blockquote>
<h3>4) DualShock 3</h3>
<p>PS3 Fanboy</p>
<blockquote><p><span>The DualShock 3 reintroduces rumble to the PlayStation brand. SIXAXIS motion sensing is implemented into most new releases, with developers like Rockstar and Kojima Productions discovering that less is more&#8230;</span></p></blockquote>
<p>What I Think</p>
<blockquote><p><span>The DualShock 3 reintroduces rumble to the PS3, something it should have had from the beginning. Despite the new <strong style="text-decoration: line-through;">old</strong> rumble, the SIXAXIS control is very cool if it is used sparingly. I recently played through Uncharted, and Heavenly Sword and I thought the use of the SIXAXIS control was used very well. Still I don&#8217;t think this technology merits that much acclaim. Until there is a game that is revolutionary enough to take full advantage of the SIXAXIS I don&#8217;t it is that credible.</span></p></blockquote>
<h3>5) Value for money</h3>
<p>PS3 Fanboy</p>
<blockquote><p><span>Sony lowered the price during 2007 from the ludicrous $600 starting price tag to a much better value $400. The PS3 is one of the cheapest Blu-Ray players on the market and is guaranteed to contain a HDD, built in wifi and a free online service&#8230;</span></p></blockquote>
<p>What I Think</p>
<blockquote><p><span>I agree totally. The PS3 is a great value for any video lover. For the hardcore gamer, the jury is still out for me.</span></p></blockquote>
<h3>6) Regular firmware updates</h3>
<p>PS3 Fanboy</p>
<blockquote><p><span>Sony continually updates the system to improve the user experience. Over the last twelve months we&#8217;ve been given DivX support, backwards downloading, Remote Start, Folding@Home, themes, Blu-Ray profile 1.1, DVD upscaling and more&#8230;</span></p></blockquote>
<p>What I Think</p>
<blockquote><p><span>I think firmware updates are great, especially when they bring new features. However, PS3 has a long way to go in improving their system update process. When you first start up the system there is no indication that a firmware update is available unless you visit the system update or the Playstation Store. After you manually search and find an update you start the download, which in my experience has taken a very long time. When downloading an update you cannot do anything else on the machine until the download has completed. After the download has completed next the system starts the actual update (remember kids don&#8217;t turn off your system). the whole process is cumbersome and time consuming. Also don&#8217;t even get me started on the whole cross media bar (it should be scrapped).</span></p></blockquote>
<h3>7) Remote Play</h3>
<p>PS3 Fanboy</p>
<blockquote><p><span>PSP owners can interact with their PS3s even when they&#8217;re in a different room (or country) thanks to Remote Play. Once your PSP is synced up to your PS3 you can turn it on and off from anywhere with wifi access&#8230;</span></p></blockquote>
<p>What I Think</p>
<blockquote><p><span>Unfortunately I do not own a PSP so I cannot comment on that. However I do think that if you are a PSP fan, the PS3 ties in very nicely with that lifestyle. For me, my portable gaming device will be the <a href="http://jasoncypret.com/2008/03/05/iphone-the-future-of-gaming/">iPhone.</a></span></p></blockquote>
<h3>8 ) Metal Gear Solid 4</h3>
<p>PS3 Fanboy</p>
<blockquote><p><span>The final chapter in the Metal Gear Solid saga is arguably the most anticipated PlayStation 3 title this year. Sony recently announced a worldwide June 12 release date for the game&#8230;</span></p></blockquote>
<p>What I Think</p>
<blockquote><p><span>While I am totally stoked for Metel Gear Solid 4, and even more excited for Killzone, I think that Sony need to secure more exclusives to make it relevant. Don&#8217;t get me wrong, those games are system sellers, however so are the dozens of blockbuster exclusive titles that have already been released on Xbox 360. Anyone ever heard of Halo 3? Just look at <a href="http://jasoncypret.com/2008/01/09/my-favorite-games-of-2007/">my list of top games</a>, there is only one PS3 exclusive game. Most of the top games are on 360. Bottom line exclusives sell systems.</span></p></blockquote>
<h3>9) LittleBigPlanet</h3>
<p>PS3 Fanboy</p>
<blockquote><p><span>Originally shown off at GDC 2006, LittleBigPlanet captured gamers&#8217; imaginations with its adorable characters and innovative gameplay. The biggest draw of the game, which sees its release later this year&#8230;</span></p></blockquote>
<p>What I Think</p>
<blockquote><p><span>I am not that excited about LittleBigPlanet. I think it looks like a fun game, but it is certainly not a system seller. I cannot imagine anyone going into BestBuy and saying ,&#8221;I&#8217;m gonna buy a PS3 to play LittleBigPlanet.&#8221; Seems to me LittleBigPlanet is more suited for the Wii audience. However I&#8217;ll reserve my final judgements until it comes out.</span></p></blockquote>
<h3>10) Home</h3>
<p>PS3 Fanboy</p>
<blockquote><p><span>Sony&#8217;s ambitious answer to Xbox Live is coming on in leaps and bounds recently. With news that first party titles will receive their own Home spaces, complete with mini games&#8230;</span></p></blockquote>
<p>What I Think</p>
<blockquote><p><span>If I wanted to play the Sims, I&#8217;d play the Sims. Home is a poor excuse for an Xbox Live competitor. I want to quickly jump online see if my friends are on and jump into a game. I am busy with work and home life, and I barely have enough time to jump into a long online game. I don&#8217;t need to waist any time. Here is what Sony should have done do have a decent competitor; re think your cross media bar , look at what Xbox has done, copy it, and make it better.</span></p></blockquote>
<p>The bottom line is that Sony needs to secure more exclusive titles for it to become relevant. Right now I just see mine as a Blu-Ray player, that may one day will become a great gaming system. If a game is released for both systems I snatch up the Xbox version for the gamer points (I know mine is low but I still like them). Sony first party needs to step it up and produce some blockbuster games in a hurry.</p>
]]></content:encoded>
			<wfw:commentRss>http://jasoncypret.com/2008/03/27/is-the-playstation-3-relevant-yet/feed/</wfw:commentRss>
		</item>
		<item>
		<title>iPhone, the Future of Gaming?</title>
		<link>http://jasoncypret.com/2008/03/05/iphone-the-future-of-gaming/</link>
		<comments>http://jasoncypret.com/2008/03/05/iphone-the-future-of-gaming/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 17:49:08 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
		
		<category><![CDATA[Apple]]></category>

		<category><![CDATA[Video Games]]></category>

		<category><![CDATA[EA]]></category>

		<category><![CDATA[id Games]]></category>

		<category><![CDATA[iPhone]]></category>

		<category><![CDATA[iPhone SDK]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/2008/03/05/iphone-the-future-of-gaming/</guid>
		<description><![CDATA[
  If your an Apple fanboy/girl, you are aware that tomorrow Apple is holding a press conference. They are supposedly going to reveal (not release) the long awaited iPhone SDK (software development kit for you n00bs). Most iPhone users have been waiting for this since the iPhone was first released. This will allow third [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://jasoncypret.com/wp-content/uploads/2008/03/iphonegaming.jpg' alt='iphonegaming.jpg' /></p>
<p>  If your an Apple fanboy/girl, you are aware that tomorrow Apple is holding a press conference. They are supposedly going to reveal (not release) the long awaited iPhone SDK (software development kit for you n00bs). Most iPhone users have been waiting for this since the iPhone was first released. This will allow third party developers to create applications specifically made for the iPhone. There is already a method for getting an application on the iPhone, but it requires the user to jailbreak the iPhone. However with a jailbroken iPhone, you already have access to some great apps that are extremely useful in your day to day life. Now with the SDK in hand developers can make these apps and many more available to all users of the iPhone and iPod Touch.</p>
<p>  The announcement also brings speculation regarding gaming finally coming to the iPhone. Thus far gaming has only been allowed by Apple on the iPod classic and older models of the iPod. Needless to say the users are ready for Games on their iPhone. I have played several games on my once jailbroken iPhone. Many of these jailbroken games were sub par on graphics, but were extremely addicting and functional. Now that the SDK will be released it also allows the big studios to jump into the game. This could fix the problems with some of the sub par games as well has create a higher standard for independent developers to strive for. EA and id Games have been strong supporters of the Mac. You know they are anxious to get their games on the iPhone and iPod Touch. There have also <a href="http://twit.tv/mbw79">been rumors</a> around and announcement from EA. This is all speculation at the moment.</p>
<p>  What possibilities lie in the iPhone? It has a gorgeous multi touch sensitive screen. The iPhone has several sensors in it, one to recognize when you have the phone next to your face, and the other is an accelerometer. The accelerometer can sense motion, and which way the device is begin held. The iPhone has a camera, speakers and a microphone. You add all of these together are you have the ability to have a highly interactive game in a small hand held device. Look at what the <a href="http://www.joystiq.com/2007/01/25/nintendo-ds-tops-10-million-in-western-hemisphere/">Nintendo DS</a> is doing with their touch sensitive hand held.</p>
<p>  I recently <a href="http://www.tuaw.com/2008/02/29/trism-matches-the-iphones-accelerometer-with-puzzle-gameplay/">read a post</a> highlighting an independent games developer that has made an iPhone game that uses some of the iPhone&#8217;s features. The game is called Trism. It&#8217;s a Bejeweled-like gem matching puzzle game. Pretty straight forward right? Take a closer look. This game uses the iPhone&#8217;s accelerometer to tell the gems which direction to fall.</p>
<p>  This game is working on a Jailbroken iPhone. He mentions he wants to put it on the iPhone through the SDK.The game is still a work in progress, but shows you some of the capabilities for the iPhone in terms of gaming. Check out the video below, you will be amazed.</p>
<div align="center">
<object	type="application/x-shockwave-flash"
			data="http://www.youtube.com/v/hy0ptZisr70"
			width="425"
			height="355">
	<param name="movie" value="http://www.youtube.com/v/hy0ptZisr70" />
	<param name=wmode" value="transparent" />
</object></div>
]]></content:encoded>
			<wfw:commentRss>http://jasoncypret.com/2008/03/05/iphone-the-future-of-gaming/feed/</wfw:commentRss>
		</item>
		<item>
		<title>50 Reasons to Switch to a Mac</title>
		<link>http://jasoncypret.com/2008/02/27/50-reasons-to-switch-to-a-mac/</link>
		<comments>http://jasoncypret.com/2008/02/27/50-reasons-to-switch-to-a-mac/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 23:12:33 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
		
		<category><![CDATA[Apple]]></category>

		<category><![CDATA[Boot Camp]]></category>

		<category><![CDATA[Chris Pirillo]]></category>

		<category><![CDATA[Mac]]></category>

		<category><![CDATA[Macbook]]></category>

		<category><![CDATA[OS X]]></category>

		<category><![CDATA[Parallels]]></category>

		<category><![CDATA[Vista]]></category>

		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/2008/02/27/50-reasons-to-switch-to-a-mac/</guid>
		<description><![CDATA[

I was recently reading Chris Pirillo&#8217;s 50 Reasons to Switch to a Mac blog post. It really seems like everyone is moving to a mac these days. Avid Mac hater John C. Dvorak is now a happy Mac owner and user. Mac market share is higher that it has ever been. So what is causing [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://jasoncypret.com/wp-content/uploads/2008/02/macflush.jpg' alt='macflush.jpg' /><br />

<p>I was recently reading <a href="http://chris.pirillo.com/2008/02/14/50-reasons-to-switch-from-microsoft-windows-to-apples-mac-os-x/">Chris Pirillo&#8217;s 50 Reasons to Switch to a Mac</a> blog post. It really seems like everyone is moving to a mac these days. Avid Mac hater <a href="http://www.dvorak.org/blog/">John C. Dvorak</a> is now a happy Mac owner and user. Mac market share is higher that it has ever been. So what is causing people make the switch?</p>
<p>
<p>I pondered this question as I read Chris&#8217;s post. My Wife, a lifetime Windows user, just got Her first Macbook. I kept Her old PC on her desk in case she needed it, but to my surprise She has been using the Mac 100% ever since She got it. Now I just need to add Parallels to Her Macbook for those 1 or 2 Windows applications She needs. She won&#8217;t admit it to me, because I was right, but She secretly loves it.</p>
<p>
<p>So again, what is causing people make the switch? Here are some of my personal favorite reasons Chris gave for making the switch. </p>
<ul>
<li>Excellent power management in OS X. When I close the lid to my MacBook Pro, it falls asleep. When I open the lid to my MacBook Pro, it wakes up. Imagine that! Seems to be the case 99% of the time, and it happens quickly.</li>
<li>I&#8217;m ready to experience different frustrations. OS X isn&#8217;t perfect, certainly - but I already see its noticeably more stable than Windows Vista has been. Kernel Panics at least look prettier than BSODs. <img src='http://jasoncypret.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> Seriously, I just find OS X&#8217;s update schedule to be more to my liking - instead of waiting for gigantic service packs, I get minor point releases along the way to major revisions to the OS. Bugs are going to happen, but knowing that showstopping / security bugs are likely to be squished quicker gives me amazing peace of mind.</li>
<li> There&#8217;s more interesting, useful, beautiful, and affordable software being developed for OS X. If you still believe that there&#8217;s no software for &quot;the Mac,&quot; you&#8217;re simply a fool who hasn&#8217;t done his or her research.</li>
<li>I love the fact that most programs and their associated libraries are self-contained (apps). There&#8217;s no stress in installing / uninstalling most programs, and for true cleanup jobs there&#8217;s always AppZapper.</li>
<li>I&#8217;m not a huge fan of the Dock for task management, but Quicksilver has virtually no Windows equivalent (in terms of elegance and scriptability, although it&#8217;s still completely overwhelming to me right now). The dock isn&#8217;t a shining example of where OS X is &quot;better,&quot; but I do appreciate the context menu options for each of the Dock&#8217;s icons for &quot;Open at Login&quot; management.</li>
<li>The spyware / malware / virus threat is diminished by an extreme degree. Not to say that one should avoid running protective layers of software or hardware, but… I&#8217;m just not as nervous when I try a new app on OS X.</li>
<li>Time Machine. Wow. Can it really be this simple? &quot;Simply select your AirPort Disk as the backup disk for each computer and the whole family can enjoy the benefits of Time Machine.&quot; Do you understand what that means? And no, Windows Volume Shadow Copy is not the SAME thing.</li>
<li> You never need to defrag a Mac&#8217;s hard disk.</li>
<li>Joining wireless networks in OS X is easier and more refined, easily accessible. The tools for networking don&#8217;t seem overly complex, either.</li>
<li>Erasing deleted files placed in your trash (also known as a Recycle Bin in Windows) can be securely erased in OS X. No need to mess with third-party software.</li>
<li>Microsoft doesn&#8217;t have an iLife. Not even close. It has a set of multimedia applications, but they don&#8217;t seem to be cohesive in the slightest. Maybe things will get better as Live continues to evolve?</li>
<li>The Preview tool ain&#8217;t no joke - with annotations, basic image editing, Core Animation zooming and scrolling, GPS Metadata support, batch operations, etc. It&#8217;s all at your fingertips.</li>
<li>Expose works. ‘Nuff said. The only thing that surpasses OS X&#8217;s open window management is Compiz Fusion. None of this Flip3D nonsense.</li>
<p>  I love the Universal Access zoom feature - and have used it so many times for countless reasons. Really comes in handy when you&#8217;re trying to show something to someone from across the room. Never found anything close to its simplicity anywhere else.
</ul>
<p>
<p>Chris put together a great list. I agree with everything that Chris said and I think you can grasp an overall theme apparent in everything he said. The Mac just works. For example I did not purchase Microsoft Office for my Wife&#8217;s Macbook. I instead told my Wife to give iWork a try and if you don&#8217;t like it I will set you up with Office. After a week of using it She hasn&#8217;t looked back. The Mac also comes with so many applications just like iWork, and they all just work. Programs like the ones included in ilife that allow users to easily design, edit, create anything they want without becoming an expert. It puts the power in the hands normal people, not avid experts.</p>
<p>
<p>Everything about the system just works. We had printer sharing issues back when my Wife was on XP. Also, sharing files was a chore. It seemed to be easy to share files one way but harder to share them both ways. Now that we are a 100% Mac home everything works perfectly. We can print from any computer, perform backups easily, stream, and share files like a breeze.</p>
<p>
<p>Speaking of applications, OSX has more than just the applications that come with your system. There is a slew of excellent Mac developers out there making smart, clean, and easy to use applications. Quicksilver alone could be a reason to switch. All of Adobe&#8217;s applications run smoothly on the Mac. There are some great open source applications on the mac that are more than excellent. More than likely you can find your Windows comparable application running on a Mac. However, if you can&#8217;t find your program, there is <a href="http://www.parallels.com/">Parallels</a>, <a href="http://www.vmware.com/">VMWare</a>, and <a href="http://www.apple.com/macosx/features/bootcamp.html">Boot Camp</a> to assist you.</p>
<p>
<p>I&#8217;m not saying that Apple is the perfect solution for everybody, however it does seem to be causing quite the switch-a-rama lately, especially since Vista. My last advise to those of you who still think that Windows is better (which it may be in your case), just take a look at a Mac. Go into an Apple Store, or borrow a friends. Once you really sit down and play with it, you too may be switchin&#8217; too.</p>
]]></content:encoded>
			<wfw:commentRss>http://jasoncypret.com/2008/02/27/50-reasons-to-switch-to-a-mac/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Screw You Netflix - Watch it Now is a Joke</title>
		<link>http://jasoncypret.com/2008/02/20/screw-you-netflix-watch-it-now-is-a-joke/</link>
		<comments>http://jasoncypret.com/2008/02/20/screw-you-netflix-watch-it-now-is-a-joke/#comments</comments>
		<pubDate>Wed, 20 Feb 2008 18:25:37 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
		
		<category><![CDATA[Apple]]></category>

		<category><![CDATA[Home Theater]]></category>

		<category><![CDATA[Blockbuster]]></category>

		<category><![CDATA[blu-ray]]></category>

		<category><![CDATA[Netflix]]></category>

		<category><![CDATA[ps3]]></category>

		<category><![CDATA[Watch It Now]]></category>

		<category><![CDATA[xbox 360]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/2008/02/20/screw-you-netflix-watch-it-now-is-a-joke/</guid>
		<description><![CDATA[
Strong title for my strong feelings. The watch it now feature has been festering inside me for a long time, but it has just finally reached boiling point.
Before I get into my rant let me first sing the praises of Netflix so you can see my perspective. I have been a Netflix subscriber for almost [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://jasoncypret.com/wp-content/uploads/2008/02/netflixsucks.jpg' alt='Netflix Sucks' /></p>
<p>Strong title for my strong feelings. The watch it now feature has been festering inside me for a long time, but it has just finally reached boiling point.</p>
<p>Before I get into my rant let me first sing the praises of Netflix so you can see my perspective. I have been a Netflix subscriber for almost 2 years now. Not once in my 2 year history have I  even thought about switching to Blockbuster or other movies by mail offerings. Now that I get Blu-Ray movies for no additional charge makes me even more happy. I typically ask my wife as soon as I get home, &#8220;did my Netflix movie arrive yet&#8221;? It really is the best service out there for online movie rentals.</p>
<p>With that begin said, I have had a huge problem with Netflix&#8217;s watch it now feature ever since it came out. First off let me say that if this feature was available for an extra charge (and it worked for me) I would be more than willing to pay. It is not a matter of me complaining about a free service. My complaint is strictly about Netflix&#8217;s apparent <a href="http://www.tuaw.com/2007/01/18/boo-hiss-no-netflix-watch-now-for-the-mac/">&#8220;screw you&#8221;</a> attitude when it comes to Mac users.</p>
<p>Netflix&#8217;s watch it now feature only works with computers that are running Windows. It must be watched in Internet Explorer (the absolute worst browser on the planet). Watch it now, won&#8217;t even worn on Firefox on the windows side. It is highly DRM&#8217;d so you need all the latest firmware, and the DRM ridden Windows Media Player 11.</p>
<p>Netflix, for some time now, has mentioned that it is working on support for Apple users. However, It has been over a year and we haven&#8217;t still seen any progress regarding Mac support. Last week Netflix announced &#8220;<a href="http://www.engadget.com/2008/02/11/mynetflix-beta-vista-media-center-plugin-released/">MyNetflix (beta) Vista Media Center plug in</a> with Watch Now streaming&#8221;. There is also rumors that Netflix will be adding watch it now to Xbox 360 and PS3.</p>
<p>This infuriates me, as an avid Mac user. while I will finally be able to use this feature on ether my 360 or my PS3, I still won&#8217;t be able to watch it on my Macs. Why would Netflix go out of their way to screw over Mac users. Instead of working on a Mac solution they decide to focus on a fragmented video game market, (most the users probably won&#8217;t even have a Netflix account) and also focus on the even smaller market of Window Media Center users.</p>
<p>I am not saying we need an a full blown solution or media center functionality, just get it working in the browsers. The Mac developers will take whatever you put out and make it more feature robust, and or write plug ins to additional applications. Apple may be closed to putting this feature on the AppleTV or in front row, but it doesn&#8217;t mean you can&#8217;t develop a watch it now application. Netflix, don&#8217;t abandon your mac users. Look at your site numbers, I&#8217;m sure you have many users of your site who use other browsers, are on the Mac, and an even greater number of users who would love this feature on the iPhone.</p>
<p>While I mention it, the iPhone would be perfect for this feature. I could watch a movie at work with ease. Studies just showed that 50% of all smart phone searches are done from an iPhone. Basically people using iPhones are using the web. Netflix&#8217;s watch it now feature would fit in great with the iPhone. Netflix, be the company I want to love. Make your watch it now feature available to everyone!</p>
]]></content:encoded>
			<wfw:commentRss>http://jasoncypret.com/2008/02/20/screw-you-netflix-watch-it-now-is-a-joke/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Jason&#8217;s New Computers 2008 - Live Blog</title>
		<link>http://jasoncypret.com/2008/02/16/jasons-new-computers-2008-live-blog/</link>
		<comments>http://jasoncypret.com/2008/02/16/jasons-new-computers-2008-live-blog/#comments</comments>
		<pubDate>Sat, 16 Feb 2008 17:06:06 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
		
		<category><![CDATA[Apple]]></category>

		<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/2008/02/16/jasons-new-computers-2008-live-blog/</guid>
		<description><![CDATA[11:41 AM - Jason anxiously waits at the front door. He has a puzzled look on his face while exclaiming, &#8220;They should have been here by now.&#8221;
11:57 AM - The FEDEX guy arrives with two boxes. Jason furiously signs for the order.

11:59 AM - Jason rips into the packaging starting with the MacBook, as it [...]]]></description>
			<content:encoded><![CDATA[<p><strong>11:41 AM </strong>- Jason anxiously waits at the front door. He has a puzzled look on his face while exclaiming, &#8220;They should have been here by now.&#8221;</p>
<p><strong>11:57 AM</strong> - The FEDEX guy arrives with two boxes. Jason furiously signs for the order.</p>
<p><a href="http://www.flickr.com/photos/jcvideopro/2275200217"><img src='http://jasoncypret.com/wp-content/uploads/2008/02/macbook_macpro.jpg' rel="facebox" alt='MacBook &#038; MacPro Box' /></a><br />
<strong>11:59 AM</strong> - Jason rips into the packaging starting with the MacBook, as it is the daintiest of the two.</p>
<p><a href="http://www.flickr.com/photos/jcvideopro/2275993970/"><img src='http://jasoncypret.com/wp-content/uploads/2008/02/macbook.jpg' rel="facebox" alt='MacBook' /></a><br />
<strong>12:01 PM</strong> - Jason carefully takes the MacBook out of it&#8217;s packaging. He&#8217;s starting to get goose bumps.</p>
<p><a href="http://www.flickr.com/photos/jcvideopro/2275994032"><img src='http://jasoncypret.com/wp-content/uploads/2008/02/macbookcu.jpg' rel="facebox" alt='MacBook' /></a><br />
<strong>12:03 PM</strong> - He speeds through the setup process. &#8220;It now time for the big boy&#8221;.</p>
<p><a href="http://www.flickr.com/photos/jcvideopro/2275200339/"><img src='http://jasoncypret.com/wp-content/uploads/2008/02/macprobox.jpg' rel="facebox" alt='MacPro' /></a><br />
<strong>12:07 PM</strong> - &#8220;This one requires a little more muscle,&#8221; He exclaims and grunts as he pulls the Quad Core MacPro from its lonely box.</p>
<p><a href="http://www.flickr.com/photos/jcvideopro/2275200379"><img src='http://jasoncypret.com/wp-content/uploads/2008/02/macpro_inside.jpg' rel="facebox" alt='MacPro Inside' /></a><br />
<strong>12:11 PM</strong> - He pulls open the computer to reveal the insides. He is checking out the drive bays now. I think he will fill these up quickly.</p>
<p><strong>12:13 PM</strong> - He violently removes his old Mac from its normal spot. Looks like it has been replaced indefinitely. &#8220;Perhaps I will use it as a media center.&#8221;</p>
<p><a href="http://www.flickr.com/photos/jcvideopro/2275994176"><img src='http://jasoncypret.com/wp-content/uploads/2008/02/macpro_startup.jpg' rel="facebox" alt='MacPro Startup' /></a><br />
<strong>12:18 PM</strong> - The computer starts up. Jason exclaims, &#8220;life is good.&#8221;</p>
<p>Cheers</p>
<p>-JC</p>
]]></content:encoded>
			<wfw:commentRss>http://jasoncypret.com/2008/02/16/jasons-new-computers-2008-live-blog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Smashing Magazine&#8217;s Best of January 2008</title>
		<link>http://jasoncypret.com/2008/02/05/smashing-magazines-best-of-january-2008/</link>
		<comments>http://jasoncypret.com/2008/02/05/smashing-magazines-best-of-january-2008/#comments</comments>
		<pubDate>Tue, 05 Feb 2008 22:03:04 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
		
		<category><![CDATA[Web Design]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[fonts]]></category>

		<category><![CDATA[icons]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[logos]]></category>

		<category><![CDATA[png images]]></category>

		<category><![CDATA[ui]]></category>

		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/2008/02/05/smashing-magazines-best-of-january-2008/</guid>
		<description><![CDATA[
So I usually don&#8217;t post about other websites blog posts, but Smashing Magazine&#8217;s Best of January 2008 list is one to talk about. First off if you do not frequent Smashing Magazine, and you are a web designer, into CSS, photoshop, or just curious about the web, stop what your doing and go read the [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://jasoncypret.com/wp-content/uploads/2008/02/bestofjan.jpg' alt='Smashing Magazine’s Best of January 2008' /><br />
So I usually don&#8217;t post about other websites blog posts, but <a href="http://www.smashingmagazine.com/2008/01/25/best-of-january-2008/">Smashing Magazine&#8217;s Best of January 2008</a> list is one to talk about. First off if you do not frequent Smashing Magazine, and you are a web designer, into CSS, photoshop, or just curious about the web, stop what your doing and go read the site. I usually end up bookmarking most of their posts as they are so informational and full of useful resources.</p>
<p>Now that I&#8217;ve given them a glorious praise. Let me break down the links that I felt were important to me and bookmarked. Trust me there is lots more on the full list, if you see one that is important to you that I didn&#8217;t include, comment and share it with everybody.</p>
<p><a href="http://ui-patterns.com/">UI Patterns</a><br />
UI Patterns is basically a library of commonly used UI solutions that most of  us have run across. Personally this is great if you are adding a section to your site, and are wondering, &#8220;what should be the best way to present my information.&#8221;</p>
<p><a href="http://wpcandy.com/the-wordpress-help-sheet/">WP Candy - WP Help Sheet</a><br />
You know I love Wordpress. I now have 4 sites running it. This is a Wordpress help or cheat sheet. You can get Wordpress information, as well as download working PHP files.</p>
<p><a href="http://cssglobe.com/lab/textgradient/">CSS Globe - CSS Text Gradients</a><br />
I saw this done recently with a grunge effect, but this is the first time I&#8217;ve seen it with gradients. Same principle, but very nicely implemented.</p>
<p><a href="http://pooliestudios.com/projects/iconize/">Poolie Studios - Iconize Textlinks with CSS</a><br />
Icons in web design are a great was to visually speak to your audience in a very quick and easy way. I would love to roll this out on my sites.</p>
<p><a href="http://cssglobe.com/lab/searchfield/">CSS Globe - SearchField</a><br />
A very pretty search field. I will probably pick it apart and reassemble something more fitting to my sites. Still very nice.</p>
<p><a href="http://www.jameswhittaker.com/blog/article/em-based-layouts-vertical-rhythm-calculator/">James Whittaker - Em based layouts - Vertical rhythm calculator</a><br />
If you have ever dealt with EM&#8217;s in CSS you know that they can be difficult to use. I find myself quickly switching back to pixels. However EM&#8217;s are very important for a flexible expandable CSS design. James made a EM calculator that helps you convert your PX to EM&#8217;s.</p>
<p><a href="http://www.wakeuplater.com/website-building/use-your-own-fonts-a-simple-sifr-guide.aspx">Wake Up Later - sIFR Tutorial</a><br />
I never have personally used this method, but you never know when you may be faced with a project where it is absolutely necessary. Use your own fonts on a web page. I am also a big fan of not using images for text as much as possible. This solves  that problem.</p>
<p><a href="http://www.dedestruct.com/2008/01/13/cross-browser-transparency-with-png/">DeDestruct -  Cross Browser Transparency with .PNG</a><br />
As a designer I love begin able to use PNG images when possible. However all web developers know that PNG&#8217;s do not work correctly in all browsers. There are many methods for using PNG images, this is another one.</p>
<p><a href="http://www.dragnet.se/webbdesign/button_collection.html">Button collection</a><br />
I am always looking for inspiration. At my new job we use call to action buttons all the time. It is always good to see what other designers are doing.</p>
<p><a href="http://yugushare.blogspot.com/2007/12/kick-ass-creative-logos-trilogy-final.html">Creative Logos</a><br />
What more can I say. These are some really great looking logo designs.</p>
<p><a href="http://vandelaydesign.com/blog/design/minimalistic-web-designs/">25 Beautiful, Minimalistic Website Designs</a><br />
Sometimes you can say more with less. These websites definitely achieve minimalism in a big way.</p>
<p><a href="http://www.logotemplater.com/">Logo Templater</a><br />
Ever needed to through a logo on a comp on the fly. I have. This is a great site for free great looking logos.</p>
<p><a href="http://dryicons.com/free-icons/">Dry Icons - Free Icons</a><br />
Same as the last one. a good resource to throwing icons on a site in a hurry.</p>
]]></content:encoded>
			<wfw:commentRss>http://jasoncypret.com/2008/02/05/smashing-magazines-best-of-january-2008/feed/</wfw:commentRss>
		</item>
		<item>
		<title>It can&#8217;t be True. Goodbye Hilton. Hello Metric Interactive</title>
		<link>http://jasoncypret.com/2008/01/31/it-cant-be-true-goodbye-hilton-hello-metric-interactive/</link>
		<comments>http://jasoncypret.com/2008/01/31/it-cant-be-true-goodbye-hilton-hello-metric-interactive/#comments</comments>
		<pubDate>Fri, 01 Feb 2008 00:13:40 +0000</pubDate>
		<dc:creator>Jason Cypret</dc:creator>
		
		<category><![CDATA[Personal]]></category>

		<category><![CDATA[Web Design]]></category>

		<category><![CDATA[Hilton Hotels]]></category>

		<category><![CDATA[Metric Interactive]]></category>

		<category><![CDATA[Webmaster]]></category>

		<guid isPermaLink="false">http://jasoncypret.com/2008/01/31/it-cant-be-true-goodbye-hilton-hello-metric-interactive/</guid>
		<description><![CDATA[
Well I left the mother ship. I am venturing out into new territory. I accepted a new position at Metric Interactive, a sibling company of True.com. I will be working along side some great minds at True.com and Ad Shuffle (another sibling). Before I get into to much detail in regards to the new gig, [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://jasoncypret.com/wp-content/uploads/2008/02/metric.jpg' alt='Metric Interactive' /><br />
Well I left the mother ship. I am venturing out into new territory. I accepted a new position at Metric Interactive, a sibling company of <a href="http://www.true.com">Tr<u>u</u>e.com</a>. I will be working along side some great minds at Tr<u>u</u>e.com and <a href="http://www.adshuffle.com/">Ad Shuffle</a> (another sibling). Before I get into to much detail in regards to the new gig, let me say my farewells to <a href="http://www1.hilton.com">Hilton</a>.</p>
<p>I have had some great times at Hilton. I met so many great people, many of whom I now consider great friends. These people are what make Hilton a great company to work for. I gained some great knowledge about the corporate environment, and I fell I have have grown up a great deal while I was there. I took on several new rolls and responsibilities while I was at Hilton. Each task I encountered help grow my knowledge base of programs, design, and web accessibility and standards. I also brushed up on my flash, video, photoshop, css, and php skills while I was at Hilton. So this is a big thank you to all of the people who had an influence in my time there. You will all be greatly missed.</p>
<p>I have almost completed my first week with Metric Interactive. I am the new Webmaster for the creative team. Basically I will assist in the coding of new site functionality and CSS, flash action scripting, and possibly some design work here and there. The thing I love most about this company is the future opportunities. They shoot video and photography in house, which you know is my cup of tea. You never know when I may be asked to help edit or shoot something here at Metric. Also building flash ads and getting back into flash as a whole is very exciting as well. I look froward to a long working relationship with Metric Interactive.</p>
]]></content:encoded>
			<wfw:commentRss>http://jasoncypret.com/2008/01/31/it-cant-be-true-goodbye-hilton-hello-metric-interactive/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
